/* ============================================================
   inpik — minimal dark landing (matches getinpix.in identity)
   Black background · gold→orange accents · logo orange-red glow
   ============================================================ */

:root {
  /* primary accent = logo red-orange #E73604 (no yellow) */
  --gold: #e73604;   /* primary brand color */
  --amber: #d92400;  /* deeper shade for gradient depth */
  --brand-500: #ff540b;
  --brand-700: #e73604;
  --brand-800: #d92400;
}

/* loud expressive display font (Ultra) — big headlines + wordmark only */
.font-ultra {
  font-family: "Ultra", "Plus Jakarta Sans", Georgia, serif;
  font-weight: 400; /* Ultra ships a single ultra-heavy weight */
  letter-spacing: -0.01em;
}

/* ---- vertical marquee background (greeting cards, alternating columns) ---- */
.marquee-bg {
  position: fixed;
  inset: 0;            /* exactly the viewport — clips the oversized inner, so the page never overflows */
  z-index: 0;
  overflow: hidden;
  background: #000;
}
.marquee-inner {
  position: absolute;
  /* oversize + tilt so the angled grid covers every corner (no edge gaps) */
  top: -32%;
  left: -32%;
  right: -32%;
  bottom: -32%;
  display: flex;
  gap: 14px;
  transform: rotate(12deg); /* tilt to the right */
  transform-origin: center;
}
.marquee-col {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.marquee-track img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 12px;
}
/* track holds the images twice; -50% scrolls exactly one set → seamless loop */
.marquee-track.up   { animation: marq-up   var(--dur, 50s) linear infinite; }
.marquee-track.down { animation: marq-down var(--dur, 50s) linear infinite; }
@keyframes marq-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes marq-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}
/* dark overlay so the hero text stays readable */
/* viewport-aligned dark overlay (kept un-rotated so the hero text stays readable) */
.marquee-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    /* warm spotlight behind the phone (right side) */
    radial-gradient(50% 45% at 68% 42%, rgba(231, 54, 4, 0.20), transparent 72%),
    /* soft glow behind the headline (left) */
    radial-gradient(45% 40% at 24% 38%, rgba(255, 90, 30, 0.10), transparent 70%),
    /* vignette so edges fall off and content pops */
    radial-gradient(125% 125% at 50% 45%, transparent 38%, rgba(0, 0, 0, 0.65) 100%),
    /* near-opaque base so the marquee reads as a faint texture, not clutter */
    linear-gradient(180deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.93) 45%, rgba(0, 0, 0, 0.97) 100%);
}
@media (max-width: 640px) {
  .marquee-col:nth-child(n + 4) { display: none; } /* 3 columns on phones */
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track.up,
  .marquee-track.down { animation: none; }
}

/* ---- ambient warm glows on the black canvas ---- */

/* ---- ambient warm glows on the black canvas ---- */
.glow {
  position: fixed;
  z-index: 0;
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
}
.glow-gold {
  top: -10%;
  left: 50%;
  height: 38rem;
  width: 38rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(231, 54, 4, 0.22), transparent 65%);
}
.glow-brand {
  bottom: -20%;
  right: -10%;
  height: 30rem;
  width: 30rem;
  background: radial-gradient(circle, rgba(255, 84, 11, 0.20), transparent 65%);
}

/* logo / element glow shadow */
.shadow-glow {
  box-shadow: 0 18px 60px -18px rgba(255, 84, 11, 0.65);
}

/* ---- hero phone mockup (gentle float + depth shadow) ---- */
.hero-img {
  height: auto;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.55));
  animation: hero-float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
}

/* ---- tagline gradient text (orange → brand red, no yellow) ---- */
.tagline-gradient {
  background: linear-gradient(115deg, #ff6a2c 0%, var(--gold) 45%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Primary download button — gold → orange, black text
   (mirrors getinpix.in's .cta-button)
   ============================================================ */
.gold-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.9rem;
  padding: 0.95rem 2rem;
  font-family: "Plus Jakarta Sans", Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 16px 40px -12px rgba(255, 84, 11, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gold-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--amber), var(--gold));
  box-shadow: 0 22px 50px -12px rgba(255, 84, 11, 0.8);
}
.gold-button:active {
  transform: translateY(0);
}

/* ============================================================
   Footer links
   ============================================================ */
.footer-link {
  font-size: 0.875rem;
  color: #a1a1aa;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--gold);
}

/* ============================================================
   Focus-visible (keyboard accessibility)
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ============================================================
   Entrance animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Legal pages (Terms / Privacy / Contact)
   ============================================================ */
.legal-prose {
  color: #a1a1aa;
}
.legal-prose > h2 {
  font-family: "Plus Jakarta Sans", Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 0.65rem;
  scroll-margin-top: 5rem;
}
.legal-prose > h3 {
  font-weight: 600;
  color: #e4e4e7;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.legal-prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.legal-prose ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}
.legal-prose li {
  margin-bottom: 0.45rem;
  line-height: 1.7;
}
.legal-prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose strong {
  color: #e4e4e7;
  font-weight: 600;
}
.legal-prose .lead {
  font-size: 1.05rem;
  color: #d4d4d8;
}

/* table of contents / definition cards */
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1.25rem 1.4rem;
}

/* contact form fields */
.form-input {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder {
  color: #71717a;
}
.form-input:focus {
  outline: none;
  border-color: rgba(231, 54, 4, 0.65);
  box-shadow: 0 0 0 3px rgba(231, 54, 4, 0.2);
}

