/* ============================================
   JUNIPER — Preorder Landing Page
   Brand palette: Lavender + Indigo + Teal + Pink + Saffron on warm cream
   Source of truth: 07 Brand & Sales/Brand Color Palette.md
   Fonts: Playfair Display (display), Inter (body), Amiri (Urdu)
   ============================================ */

:root {
  /* === Juniper brand palette ===
     Six brand hexes from the official palette card.
     Legacy variable names (--mauve*, --gold*) preserved so existing class
     references still resolve — values point to the new brand colors. */

  --lavender: #7E80E0;   /* primary surface — hero / closing CTA / footer */
  --indigo:   #3445A9;   /* deep accent — hover depth, secondary CTAs */
  --teal:     #3EA69B;   /* secondary accent — success state, future use */
  --pink:     #E07E9F;   /* warm accent — story link, error highlight */
  --saffron:  #FFA51B;   /* CTA + wordmark accent */
  --cream:    #F2E4DD;   /* story section background, warm canvas */

  /* === Legacy aliases (do not remove — used across existing CSS) === */
  --mauve:        #9292E5;  /* lighter lavender — nav scrolled tint */
  --mauve-dark:   #3445A9;  /* alias of --indigo */
  --mauve-deep:   #7E80E0;  /* alias of --lavender (primary bg) */
  --rose:         #E07E9F;  /* alias of --pink */
  --pink-light:   #E6E0F6;  /* desaturated lavender-cream for body on dark */
  --blush:        #F2E4DD;  /* alias of --cream (story bg) */
  --gold:         #FFA51B;  /* alias of --saffron */
  --gold-light:   #FFB840;  /* hover state */
  --gold-dark:    #D08510;  /* deeper saffron for footer text */

  /* === Page utilities === */
  --page-cream: #FFF8F0;   /* lighter cream for full-page bg if needed */
  --text-dark:  #2A2435;
  --text-body:  #4A3F4E;
  --text-muted: #7A7585;
  --white:      #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Section Tags & Titles ---- */

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* Indigo small-caps on cream — replaces pink which felt out of place
     since pink is barely used anywhere else on the site */
  color: var(--indigo);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-tag.light {
  /* Small-caps tag on lavender — cream for AA contrast (saffron fails) */
  color: var(--cream);
  opacity: 0.9;
  /* Keep tag from stretching full container width */
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.section-title.left {
  text-align: left;
}

/* ---- Nav ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  /* Indigo from brand palette (#3445A9) at 95% opacity */
  background: rgba(52, 69, 169, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 30px rgba(52, 69, 169, 0.18);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--gold);
}

.nav-logo-en {
  /* English JUNIPER wordmark — 50% larger than the original 24px */
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.3s, height 0.3s;
}

.nav-logo-ur {
  /* Urdu mark — sized to sit nicely under the wordmark, 70% opacity per design */
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s, height 0.3s;
}

.nav.scrolled .nav-logo-en {
  height: 28px;
}

.nav.scrolled .nav-logo-ur {
  height: 22px;
}

.nav-logo:hover .nav-logo-en,
.nav-logo:hover .nav-logo-ur {
  opacity: 0.85;
}

.nav-logo:hover .nav-logo-ur {
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--text-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ---- Hero ---- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mauve-deep);
  overflow: hidden;
}

.hero-overlay {
  /* Flat brand background — no gradients per brand rule */
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  /* Block context: each child centers via its own margin auto + max-width */
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  /* Hero small-caps tag on lavender — cream for AA contrast (saffron fails) */
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
  margin-bottom: 1.5rem;
}

.hero-title {
  /* Cap at 5.5rem so the title fits naturally at typical viewport widths */
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  /* Cream for highest contrast on lavender (~2.8:1; bump font size + weight to pass AA-large 3:1) */
  color: var(--cream);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  /* Cream for contrast on lavender — pink failed */
  color: var(--cream);
  opacity: 0.75;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--cream);
  opacity: 0.4;
  animation: scrollPulse 2s infinite;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  /* Saffron drop-shadow with brand hex (#FFA51B) */
  box-shadow: 0 8px 25px rgba(255, 165, 27, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  background: var(--mauve-deep);
  color: var(--cream);
  border-radius: 100px;
}

.btn-sm:hover {
  background: var(--mauve-dark);
  transform: translateY(-1px);
}

/* ---- Waitlist Form ---- */

.waitlist-form {
  display: flex;
  /* Pill shrink-wraps to exactly input + button — no dead air on the sides */
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.35rem 0.35rem 0.5rem;
  background: rgba(255, 248, 240, 0.08);
  border: 1px solid rgba(255, 248, 240, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
  transition: all 0.3s;
}

.waitlist-form:focus-within {
  /* Saffron focus ring with brand hex (#FFA51B) */
  border-color: rgba(255, 165, 27, 0.6);
  background: rgba(255, 248, 240, 0.12);
}

.waitlist-input {
  /* Narrow + left-aligned so placeholder hugs the start, button hugs the end —
     reads as one tight sentence rather than text floating in empty box */
  flex: 0 1 auto;
  width: 200px;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
}

.waitlist-input::placeholder {
  /* Cream at moderate opacity — readable on lavender glassmorphic pill */
  color: rgba(242, 228, 221, 0.75);
}

.waitlist-btn {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.waitlist-note {
  font-size: 0.78rem;
  /* Cream for contrast on lavender — pink fails AA */
  color: var(--cream);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeIn 0.8s 1.1s forwards;
  /* Center under the pill — no fixed width needed */
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-note.light {
  /* Lighter variant for closing CTA — still cream-based, no pink */
  color: var(--cream);
  opacity: 1;
}

/* Form states */

.waitlist-form.is-loading .waitlist-btn {
  opacity: 0.6;
  pointer-events: none;
}

.waitlist-form.is-success {
  /* Saffron tint success state with brand hex */
  background: rgba(255, 165, 27, 0.15);
  border-color: rgba(255, 165, 27, 0.4);
  justify-content: center;
  padding: 1rem 1.5rem;
}

.waitlist-form.is-success .waitlist-input,
.waitlist-form.is-success .waitlist-btn {
  display: none;
}

.waitlist-form.is-success::after {
  content: "✓  You're on the list.";
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  /* Cream for AA contrast on lavender — saffron fails */
  color: var(--cream);
  letter-spacing: 0.02em;
}

.waitlist-note.is-error {
  color: #F4A8A8;
}

/* Secondary form (on mauve-deep background — already dark, keep same style) */

.waitlist-form-secondary {
  margin-top: 1rem;
}

/* ---- Marquee ---- */

.marquee {
  background: var(--mauve-deep);
  padding: 1rem 0;
  overflow: hidden;
  /* Hairline cream borders to match original design */
  border-top: 1px solid rgba(242, 228, 221, 0.15);
  border-bottom: 1px solid rgba(242, 228, 221, 0.15);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  /* Track is twice viewport width (2 copies of content). Animating to -50%
     scrolls past exactly one copy, so the second copy fills its place
     seamlessly — no gap, no reset jump. */
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-content {
  /* Each copy is sized to its own content; flex parent lays them inline */
  flex-shrink: 0;
}

.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.1em;
  /* Cream italic on lavender — matches original */
  color: var(--cream);
  opacity: 0.85;
  padding-right: 2rem;
}

/* ---- Products ---- */

.products {
  padding: 7rem 0;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(94, 58, 72, 0.15);
}

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-placeholder {
  transform: scale(1.05);
}

.product-img-icon {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.product-info {
  padding: 1.75rem;
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mauve-deep);
}

/* ---- Story ---- */

.story {
  padding: 7rem 0;
  background: var(--blush);
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  /* No layout overrides — grid cell handles sizing */
}

.story-content {
  /* No layout overrides */
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  /* Subtle shadow to lift it off the cream background */
  box-shadow: 0 12px 40px rgba(52, 36, 53, 0.12);
}

.story-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  /* Indigo on cream — matches brand palette, replaces out-of-place pink */
  color: var(--indigo);
  text-decoration: none;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.story-link:hover {
  color: var(--lavender);
}

.story-content .section-tag {
  text-align: left;
}

.story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--indigo);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mauve-deep);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Process ---- */

.process {
  padding: 7rem 0;
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.process-step:nth-child(2).visible { transition-delay: 0.1s; }
.process-step:nth-child(3).visible { transition-delay: 0.2s; }
.process-step:nth-child(4).visible { transition-delay: 0.3s; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Preorder ---- */

.preorder {
  padding: 7rem 0;
  background: var(--mauve-deep);
}

.preorder-box {
  /* Block context: each child centers via its own margin auto + max-width.
     The container itself has no max-width; children control their own widths. */
  text-align: center;
}

.preorder-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.preorder-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  /* Saffron italic accent on lavender — passes AA-large at this size/weight */
  color: var(--gold);
  margin: 0 auto 3rem;
  max-width: 560px;
  font-weight: 400;
}

.preorder .btn:not(.waitlist-btn) {
  margin-bottom: 3rem;
}

.preorder-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pink-light);
  font-size: 0.85rem;
}

.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ---- Footer ---- */

.footer {
  /* Lavender bg to match the original mockup — no dark footer */
  background: var(--mauve-deep);
  padding: 2rem 0 0;
  text-align: center;
  overflow: hidden;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.7;
  padding: 0 0 2rem;
  letter-spacing: 0.05em;
}

/* Footer marks — JUNIPER on left, Urdu on right, with 10px breathing room */
.footer-brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem 10px 10px;
  width: 100%;
}

.footer-wordmark {
  /* Scaled down 20% from 70vw → 56vw, max-width also reduced 20%
     + 80% opacity for a softer, less shouty closing mark */
  height: auto;
  width: 56vw;
  max-width: 840px;
  display: block;
  opacity: 0.8;
}

.footer-urdu-mark {
  /* Scaled down 20% from 36vw → 29vw, 80% opacity to match wordmark */
  height: auto;
  width: 29vw;
  max-width: 432px;
  display: block;
  opacity: 0.8;
}

/* ---- Animations ---- */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 0.6; transform: scaleY(1); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .product-grid,
  .preorder-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-content .section-tag,
  .section-title.left {
    text-align: center;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .preorder-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  /* Hide nav text links on mobile, keep only the Join Waitlist CTA */
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  /* Tighter nav padding on small screens */
  .nav {
    padding: 0.75rem 1rem;
  }

  .nav.scrolled {
    padding: 0.5rem 1rem;
  }

  /* Shrink the stacked nav logo so it doesn't collide with the CTA */
  .nav-logo-en {
    height: 22px;
  }

  .nav-logo-ur {
    height: 16px;
  }

  .nav.scrolled .nav-logo-en {
    height: 20px;
  }

  .nav.scrolled .nav-logo-ur {
    height: 14px;
  }

  /* Smaller nav CTA so it fits */
  .nav-cta {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  /* Hero — tighter type so the title doesn't break word-by-word */
  .hero {
    min-height: 100vh;
    padding-top: 5rem;
  }

  .hero-content {
    padding: 1.5rem 1.25rem;
  }

  .hero-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* Section titles smaller on mobile */
  .section-title,
  .preorder-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .preorder-sub {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Story section: stack photo above text */
  .story {
    padding: 4rem 0;
  }

  .founder-photo {
    /* Less tall on mobile so it doesn't dominate the fold */
    aspect-ratio: 1/1;
  }

  /* Stack the footer logos vertically on mobile */
  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 10px 10px;
  }

  .footer-wordmark {
    width: 92vw;
    max-width: 480px;
  }

  .footer-urdu-mark {
    width: 60vw;
    max-width: 300px;
  }

  /* Stack waitlist form on mobile — input on top, button below */
  .waitlist-form {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 16px;
    width: 100%;
    max-width: 360px;
  }

  .waitlist-input {
    text-align: center;
    padding: 0.85rem 1rem;
    width: 100%;
  }

  .waitlist-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  /* Marquee — slightly smaller text on mobile */
  .marquee-track span {
    font-size: 0.75rem;
  }
}
