/* ============================================================
   AI Music Video Clip — Redesign
   Visual language: Technical modernist — geometric grotesk display,
   monospace micro-labels, sharp edges, left-aligned grid heads,
   hairline accents. Same palette & assets, different brand feel.
   ============================================================ */

:root {
  /* Original palette, unchanged */
  --bg:          #0D0D0D;
  --surface:     #1A1A1A;
  --elevated:    #202020;
  --surface-alt: #111111;
  --border:      #2E2E2E;
  --border-hi:   #3B3B3B;
  --text:        #FAFAFA;
  --muted:       #A3A3A3;
  --faint:       #5B5B5B;

  --purple:      #8E43FF;
  --purple-hi:   #B17EFF;
  --purple-tint: #CFB0FF;

  --glass:     rgba(255, 255, 255, 0.04);
  --glass-brd: rgba(255, 255, 255, 0.07);

  /* New: geometric grotesk display + monospace labels */
  --font-display: "Space Grotesk", "Inter", -apple-system, system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, system-ui, 'Segoe UI', sans-serif;
  --font-mono:    "Space Mono", ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --maxw:   1200px;
  --radius: 6px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 0; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); background-clip: padding-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }
a { color: inherit; text-decoration: none; }

/* ---- section flow re-order (visual only, DOM untouched) ---- */
main { display: flex; flex-direction: column; }
.hero        { order: 1; }
.how         { order: 2; }
.explore     { order: 3; }
#features     { order: 4; }
.showcase    { order: 5; }
.section[aria-labelledby="tst-title"] { order: 6; }
.faq         { order: 7; }
.cta         { order: 8; }

/* All headings: geometric grotesk, tight & upright */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.03em; font-weight: 600; }

::selection { background: var(--purple); color: #fff; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--purple); color: #fff; padding: 10px 16px; border-radius: 0; font-family: var(--font-mono); font-size: .8rem; }
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--purple-hi); outline-offset: 3px; border-radius: 0; }

/* ---- grad-text: purple gradient, upright (no italic) ---- */
.grad-text {
  background: linear-gradient(110deg, var(--purple-tint), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: normal;
}

/* ---- eyebrow label — monospace tag with square marker ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase;
  color: var(--purple-tint);
  border: 1px solid var(--border-hi);
  padding: 5px 12px;
  background: var(--glass);
  border-radius: 0;
}
.eyebrow::before { content: "//"; color: var(--purple); font-weight: 700; }
.eyebrow__dot { display: none; }

/* ---- primary CTA button — solid purple, sharp ---- */
.btn-create {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-mono); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; font-size: .85em;
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 6px 24px -6px rgba(142, 67, 255, 0.55);
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  filter: none;
}
.btn-create:hover { background: var(--purple-hi); transform: translateY(-1px); box-shadow: 0 10px 32px -6px rgba(142, 67, 255, 0.65); filter: none; }
.btn-create:active { transform: none; }
.btn-create__icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ---- app store buttons ---- */
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border-hi);
  color: var(--text); padding: 12px 22px; border-radius: 0;
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--purple-hi); background: var(--elevated); }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-btn__text small { font-size: .67rem; color: var(--muted); font-weight: 500; font-family: var(--font-mono); }
.store-btn__text strong { font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; }
.store-btn--sm { padding: 8px 14px; }
.store-btn--sm .store-btn__text strong { font-size: .9rem; }

/* ---- EQ animation ---- */
.eq { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.eq span {
  width: 4px; height: 100%; border-radius: 0;
  background: linear-gradient(var(--purple-hi), var(--purple));
  transform-origin: bottom; transform: scaleY(.25);
  animation: eq 1.1s ease-in-out infinite;
}
.eq span:nth-child(1)  { animation-delay: -.9s; }
.eq span:nth-child(2)  { animation-delay: -.2s; }
.eq span:nth-child(3)  { animation-delay: -.6s; }
.eq span:nth-child(4)  { animation-delay: -.1s; }
.eq span:nth-child(5)  { animation-delay: -.7s; }
.eq span:nth-child(6)  { animation-delay: -.35s; }
.eq span:nth-child(7)  { animation-delay: -.85s; }
.eq span:nth-child(8)  { animation-delay: -.15s; }
.eq span:nth-child(9)  { animation-delay: -.55s; }
.eq span:nth-child(10) { animation-delay: -.4s; }
.eq span:nth-child(11) { animation-delay: -.75s; }
.eq span:nth-child(12) { animation-delay: -.25s; }
@keyframes eq { 0%, 100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }

/* ---- phone mockup ---- */
.phone {
  position: relative; aspect-ratio: 9 / 19.5;
  background: #060606; border: 2px solid #242424; border-radius: 34px;
  padding: 8px;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.9), inset 0 0 0 1px #000;
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 20px; background: #000; border-radius: 0 0 14px 14px; z-index: 3;
}

/* ---- in-phone slider ---- */
.slider { position: absolute; inset: 8px; border-radius: 27px; overflow: hidden; background: #000; }
.slider .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s var(--ease); border-radius: 0; }
.slider .slide.is-active { opacity: 1; }
.slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 4; }
.slider__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 0; cursor: pointer; background: rgba(255,255,255,.38); transition: width .3s var(--ease), background .3s; }
.slider__dot.is-active { width: 22px; background: #fff; }

/* ============================================================
   NAV — transparent → solid dark on scroll
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Wordmark: grotesk, uppercase, tight */
.nav__brand { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; text-transform: uppercase; color: var(--text); }
.nav__name { color: var(--text); background: none; -webkit-background-clip: unset; white-space: nowrap; }

.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-family: var(--font-mono); font-weight: 400; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; transition: color .2s; }
.nav__links a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cta { font-size: .88rem; padding: 9px 18px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 0; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(13, 13, 13, 0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .3s, transform .3s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mobile-menu__links a { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; color: var(--text); transition: color .2s; }
.mobile-menu__links a:hover { color: var(--purple-tint); }
.mobile-menu__cta { margin-top: 10px; font-size: 1.05rem; padding: 14px 42px; }

/* ============================================================
   HERO — dark, large grotesk headline, faint technical grid
   ============================================================ */
.hero { position: relative; padding: 150px 24px 90px; overflow: hidden; background: var(--bg); }

/* faint blueprint grid */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .12;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000, transparent 80%);
}

/* Subtle purple radial */
.hero__bloom {
  position: absolute; top: -180px; right: -120px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(142, 67, 255, 0.14), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center;
  z-index: 1;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700; margin-bottom: 22px; color: var(--text); line-height: 1.0;
  letter-spacing: -0.035em;
}
.hero__sub { color: var(--muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 34px; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero__proof { color: var(--faint); font-family: var(--font-mono); font-size: .8rem; letter-spacing: .02em; }
.hero__proof strong { color: var(--muted); }
.stars { color: #F5B301; letter-spacing: 2px; }

.hero__stage { position: relative; display: flex; justify-content: center; order: -1; }
.hero__glow {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(142, 67, 255, 0.35), transparent 62%);
  filter: blur(48px); z-index: 0;
}
.eq--stage {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  height: 80px; z-index: 0; opacity: .25;
}
.phone--hero { position: relative; z-index: 1; width: min(280px, 80%); }

/* ============================================================
   EXPLORE REELS — surface-alt bg for visual separation
   ============================================================ */
.explore { position: relative; padding: 100px 0 90px; overflow: hidden; background: var(--surface-alt); }
.explore .section__head { padding-inline: 24px; }

.explore__stage { position: relative; display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.explore__viewport { width: 100%; overflow: hidden; padding: 30px 0; }
.explore__track { display: flex; gap: 26px; width: max-content; will-change: transform; transition: transform .55s var(--ease); }

.explore__arrow {
  position: absolute; z-index: 5; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 0; cursor: pointer;
  display: grid; place-items: center; color: var(--text);
  background: var(--elevated); border: 1px solid var(--border-hi);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.explore__arrow:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-50%) scale(1.04); }
.explore__arrow--prev { left: max(16px, calc(50% - 560px)); }
.explore__arrow--next { right: max(16px, calc(50% - 560px)); }

/* reel card */
.reel { flex: 0 0 auto; width: 280px; }
.reel .phone {
  width: 100%; cursor: pointer; overflow: hidden;
  transform: scale(.8); opacity: .35; filter: saturate(.5);
  transition: transform .55s var(--ease), opacity .55s var(--ease), filter .55s var(--ease), box-shadow .55s var(--ease);
}
.reel.is-active .phone {
  transform: scale(1); opacity: 1; filter: none;
  box-shadow: 0 30px 80px -20px rgba(142, 67, 255, 0.48), 0 0 0 1.5px rgba(177, 126, 255, 0.3);
}
.reel__video { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: cover; border-radius: 27px; background: #000; z-index: 0; }
.reel__scrim { position: absolute; inset: 8px; border-radius: 27px; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, transparent 22%, transparent 55%, rgba(0,0,0,.85) 100%); }
.reel__badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(13,13,13,.65); border: 1px solid rgba(177,126,255,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--purple-tint); font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 0;
}
.reel__info { position: absolute; left: 18px; right: 18px; bottom: 20px; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.reel__title { font-size: 1.2rem; font-weight: 700; line-height: 1.1; margin-bottom: 4px; font-family: var(--font-display); font-style: normal; letter-spacing: -0.02em; color: #fff; }
.reel__sub { font-family: var(--font-mono); font-size: .74rem; color: rgba(255,255,255,.65); }
.reel .reel__avatar { width: 44px; height: 44px; border-radius: 0; flex-shrink: 0; object-fit: cover; border: 2px solid rgba(255,255,255,.85); box-shadow: 0 6px 16px -6px rgba(0,0,0,.8); transform: none; transition: transform .3s var(--ease); }
.reel.is-active .reel__avatar:hover { transform: scale(1.06); }
.reel__bar { position: absolute; left: 8px; right: 8px; bottom: 8px; height: 2.5px; z-index: 3; background: rgba(255,255,255,.18); border-radius: 0; overflow: hidden; opacity: 0; transition: opacity .3s; }
.reel.is-active .reel__bar { opacity: 1; }
.reel__bar i { display: block; height: 100%; width: 0; background: var(--purple-hi); border-radius: 0; }
.reel__sound { position: absolute; top: 14px; right: 14px; z-index: 4; width: 36px; height: 36px; border-radius: 0; cursor: pointer; display: none; place-items: center; color: #fff; font-size: .9rem; background: rgba(13,13,13,.6); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background .2s; }
.reel.is-active .reel__sound { display: grid; }
.reel__sound:hover { background: var(--purple); border-color: transparent; }

.explore__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-inline: 24px; }
.explore__dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 0; cursor: pointer; background: var(--border-hi); transition: width .3s var(--ease), background .3s; }
.explore__dot.is-active { width: 22px; background: var(--purple); }

@media (max-width: 720px) {
  .explore { padding-top: 72px; }
  .reel { width: 250px; }
  .explore__arrow { display: none; }
  .explore__dots { max-width: 320px; margin-inline: auto; }
}

/* ============================================================
   GENERIC SECTION — left-aligned, grid-marked heads
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px 24px; }
.section__head { max-width: 760px; margin: 0 0 52px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; }
.section__sub { color: var(--muted); font-size: 1.05rem; }

/* ---- feature cards — technical panels with top hairline accent ---- */
.grid { display: grid; gap: 16px; }
/* bento: 2 columns, first card runs full-width as the lead feature */
.grid--features { grid-template-columns: repeat(2, 1fr); }
.grid--features .card:first-child { grid-column: 1 / -1; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0; padding: 28px 30px;
  display: grid; grid-template-columns: 46px 1fr; column-gap: 20px; row-gap: 6px; align-items: start;
  transition: transform .25s var(--ease), border-color .25s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: -1px; width: 2px; height: 0;
  background: var(--purple); transition: height .35s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--border-hi); }
.card:hover::before { height: 100%; }
.card__icon {
  grid-row: 1 / span 2; align-self: start;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 0; font-size: 1.35rem; margin: 0;
  background: rgba(142, 67, 255, 0.1); border: 1px solid rgba(142, 67, 255, 0.35);
}
.card__title { grid-column: 2; font-size: 1.15rem; font-weight: 600; margin: 0; letter-spacing: -0.02em; }
.card__body { grid-column: 2; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.grid--features .card:first-child .card__body { max-width: 60ch; }

/* ============================================================
   HOW IT WORKS — square markers, monospace numbers
   ============================================================ */
.timeline { list-style: none; display: flex; flex-direction: column; gap: 60px; position: relative; max-width: 900px; margin: 0 auto; }
/* zig-zag rows: image one side, copy the other, alternating */
.timeline__step {
  position: relative; z-index: 1; text-align: left;
  display: grid; grid-template-columns: 300px 1fr; column-gap: 52px; row-gap: 8px; align-items: center;
}
.timeline__step:nth-child(even) { grid-template-columns: 1fr 300px; }
.timeline__marker {
  grid-column: 2; grid-row: 1;
  width: 48px; height: 48px; border-radius: 0; display: grid; place-items: center;
  background: var(--bg); border: 1px solid var(--purple); margin: 0;
}
.timeline__step:nth-child(even) .timeline__marker { grid-column: 1; }
/* Number: monospace, purple */
.timeline__num { font-family: var(--font-mono); font-weight: 700; font-style: normal; color: var(--purple-tint); font-size: .95rem; }
.timeline .phone { grid-column: 1; grid-row: 1 / span 3; width: 100%; max-width: 260px; margin: 0; align-self: center; }
.timeline__step:nth-child(even) .phone { grid-column: 2; }
.timeline__title { grid-column: 2; grid-row: 2; font-size: 1.5rem; font-weight: 600; margin: 0; letter-spacing: -0.02em; }
.timeline__step:nth-child(even) .timeline__title { grid-column: 1; }
.timeline__body { grid-column: 2; grid-row: 3; color: var(--muted); max-width: 420px; font-size: 1rem; margin: 0; }
.timeline__step:nth-child(even) .timeline__body { grid-column: 1; }

/* ============================================================
   SHOWCASE CAROUSEL
   ============================================================ */
.showcase { max-width: none; padding-inline: 0; overflow: hidden; background: var(--surface-alt); }
.showcase .section__head { padding-inline: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.carousel { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.carousel__track { display: flex; gap: 26px; width: max-content; padding: 20px 24px; animation: marquee 50s linear infinite; }
.carousel:hover .carousel__track { animation-play-state: paused; }
.phone--shot { width: 210px; flex-shrink: 0; }
.phone--shot .phone__notch { display: none; }

/* ============================================================
   TESTIMONIALS — left-bar quote panels, upright text
   ============================================================ */
.masonry { column-count: 3; column-gap: 18px; }
.quote {
  position: relative;
  display: flex; flex-direction: column;
  break-inside: avoid; margin-bottom: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-left: 2px solid var(--purple);
  border-radius: 0; padding: 26px;
  transition: border-color .25s, background .25s;
}
.quote:hover { border-color: var(--border-hi); border-left-color: var(--purple-hi); background: var(--elevated); }
.quote blockquote {
  font-family: var(--font-body); font-style: normal;
  font-size: 1.02rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; color: var(--text);
}
.quote blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.2rem; line-height: .8; color: var(--purple); opacity: .5; display: block; margin-bottom: 8px; font-style: normal; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption span:last-child { display: flex; flex-direction: column; }
.quote figcaption strong { font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: -0.01em; }
.quote figcaption small { color: var(--faint); font-family: var(--font-mono); font-size: .74rem; }
.quote__avatar { width: 40px; height: 40px; border-radius: 0; flex-shrink: 0; object-fit: cover; background: var(--elevated); border: 1px solid var(--glass-brd); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 0; overflow: hidden;
  transition: border-color .25s;
}
.acc.is-open { border-color: var(--purple); }
.acc__q {
  width: 100%; background: none; border: 0; cursor: pointer; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-align: left; letter-spacing: -0.02em;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  line-height: 1.3;
}
.acc__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--purple-tint); border-radius: 0; transition: transform .3s var(--ease); }
.acc__icon::before { width: 14px; height: 1.5px; }
.acc__icon::after  { width: 1.5px; height: 14px; }
.acc.is-open .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__a p { padding: 0 24px 24px; color: var(--muted); font-size: .96rem; line-height: 1.7; }

/* ============================================================
   FINAL CTA — surface-alt for separation from rest
   ============================================================ */
.cta { position: relative; overflow: hidden; padding: 110px 24px; text-align: center; background: var(--surface-alt); }
.cta__bloom {
  position: absolute; inset: 0; margin: auto; width: 900px; height: 600px; max-width: 100%;
  background: radial-gradient(ellipse at center, rgba(142, 67, 255, 0.22), transparent 65%);
  filter: blur(24px); pointer-events: none;
}
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; z-index: 1; }
.eq--cta { height: 44px; margin-bottom: 26px; opacity: .5; }
.cta__title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 14px; line-height: 1.06; letter-spacing: -0.035em; }
.cta__sub { color: var(--muted); font-size: 1.1rem; margin-bottom: 34px; }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 60px; }
.phone--cta { width: min(270px, 72%); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 70px 24px 30px; background: var(--bg); }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .nav__brand { color: var(--text); }
.footer .nav__name { color: var(--text); background: none; -webkit-background-clip: unset; }
.footer__tagline { color: var(--muted); font-family: var(--font-mono); margin: 16px 0 20px; font-size: .82rem; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__heading { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; font-family: var(--font-mono); font-weight: 700; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--purple-tint); }
.footer__bar {
  max-width: var(--maxw); margin: 50px auto 0; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 12px;
  color: var(--faint); font-family: var(--font-mono); font-size: .78rem;
}
.footer__company { display: flex; flex-direction: column; gap: 4px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 120px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero__stage { order: 0; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__proof { justify-content: center; }

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

  /* zig-zag → stacked, centered */
  .timeline { gap: 50px; max-width: 440px; }
  .timeline__step,
  .timeline__step:nth-child(even) { grid-template-columns: 1fr; justify-items: center; text-align: center; row-gap: 16px; }
  .timeline__step > * ,
  .timeline__step:nth-child(even) > * { grid-column: 1 !important; grid-row: auto !important; }
  .timeline .phone { max-width: 220px; }
  .timeline__body { max-width: 340px; }

  .masonry { column-count: 2; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 72px 20px; }
  .hero { padding: 110px 20px 72px; }

  .section__head { align-items: center; text-align: center; }

  .grid--features { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }

  .hero__cta, .cta__buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; justify-content: center; max-width: 290px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
