/* ============================================================
   Yuna — AI Music Video Generator — landing page
   Design: "Beat-synced studio" — dark, purple, equalizer motif
   ============================================================ */

:root {
  /* palette (from brief) */
  --bg:          #0D0D0D;
  --surface:     #1A1A1A;
  --elevated:    #262626;
  --border:      #3B3B3B;
  --text:        #FAFAFA;
  --muted:       #A3A3A3;
  --faint:       #5B5B5B;
  --purple:      #8E43FF;
  --purple-hi:   #B17EFF;
  --purple-tint: #CFB0FF;

  --glass:       rgba(255, 255, 255, 0.035);
  --glass-brd:   rgba(255, 255, 255, 0.08);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

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

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* thin custom scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border); border-radius: 100px;
  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.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* no text selection anywhere */
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}

img {
  display: block; max-width: 100%;
  /* prevent drag-to-copy of images */
  -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; user-drag: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }

::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 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- shared bits ---------- */
.grad-text {
  background: linear-gradient(100deg, var(--purple-tint), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple-tint);
  background: rgba(142, 67, 255, 0.1);
  border: 1px solid rgba(142, 67, 255, 0.25);
  padding: 7px 14px; border-radius: 100px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-hi); box-shadow: 0 0 10px var(--purple-hi); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn--pill { border-radius: 100px; }
.btn--block { display: flex; width: 100%; }
.btn--purple {
  background: var(--purple); color: #fff;
  box-shadow: 0 8px 30px -8px rgba(142, 67, 255, 0.7);
}
.btn--purple:hover { background: var(--purple-hi); transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(142, 67, 255, 0.85); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--purple-hi); color: var(--purple-tint); transform: translateY(-2px); }

/* gradient CTA (from Figma) — look only, keeps Inter */
.btn-create {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid transparent; border-radius: 100px; color: #fff;
  /* fill gradient (padding-box) + gradient border (border-box) */
  background:
    linear-gradient(180deg, #8E43FF, #5B1AAF) padding-box,
    linear-gradient(180deg, #D1B2FF 0%, rgba(142, 67, 255, 0) 50%, #D1B2FF 100%) border-box;
  font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 0 32px 0 rgba(142, 67, 255, 0.5);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), filter .2s var(--ease);
}
.btn-create:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 0 40px 2px rgba(142, 67, 255, 0.65); }
.btn-create:active { transform: translateY(0); }
.btn-create__icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* app store buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: #000; border: 1px solid var(--border);
  color: #fff; padding: 11px 20px; border-radius: 14px;
  transition: transform .2s var(--ease), border-color .2s;
}
.store-btn:hover { transform: translateY(-2px); border-color: var(--purple-hi); }
.store-btn__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn__text small { font-size: .68rem; color: var(--muted); font-weight: 500; }
.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; }

/* equalizer signature motif */
.eq { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.eq span {
  width: 5px; height: 100%; border-radius: 4px;
  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 frame */
.phone {
  position: relative; aspect-ratio: 9 / 19.5;
  background: #060606; border: 2px solid #2a2a2a; border-radius: 40px;
  padding: 8px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9), inset 0 0 0 2px #000;
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
.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 crossfade slider */
.slider { position: absolute; inset: 8px; border-radius: 32px; 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: 100px; cursor: pointer;
  background: rgba(255, 255, 255, 0.45); transition: width .3s var(--ease), background .3s;
}
.slider__dot:hover { background: rgba(255, 255, 255, 0.75); }
.slider__dot.is-active { width: 22px; background: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.nav__logo { border-radius: 9px; }
.nav__name-accent { color: var(--purple-tint); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { font-size: .95rem; padding: 10px 20px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) 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: 30px;
  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: 22px; }
.mobile-menu__links a { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.mobile-menu__cta { margin-top: 10px; font-size: 1.05rem; padding: 15px 40px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 150px 24px 90px; overflow: hidden; }
.hero__bloom {
  position: absolute; top: -220px; right: -180px; width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(142, 67, 255, 0.28), transparent 62%);
  filter: blur(30px); pointer-events: none;
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; margin-bottom: 22px; }
.hero__sub { color: var(--muted); font-size: 1.16rem; max-width: 500px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero__proof { color: var(--muted); font-size: .95rem; }
.hero__proof strong { color: var(--text); }
.stars { color: #F5B301; letter-spacing: 2px; }

.hero__stage { position: relative; display: flex; justify-content: center; }
.hero__glow {
  position: absolute; inset: 0; margin: auto; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(142, 67, 255, 0.45), transparent 60%);
  filter: blur(40px); z-index: 0;
}
.eq--stage {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  height: 90px; z-index: 0; opacity: .35;
}
.phone--hero { position: relative; z-index: 1; width: min(290px, 78%); }

.chip {
  position: absolute; z-index: 3;
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 10px 15px; border-radius: 100px; font-size: .85rem; font-weight: 600;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.8);
  animation: float 4.5s ease-in-out infinite;
}
.chip--a { top: 12%; left: -4%; }
.chip--b { top: 44%; right: -8%; animation-delay: -1.5s; }
.chip--c { bottom: 12%; left: 0%; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* shared marquee keyframe (used by the showcase carousel) */
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   EXPLORE REELS (coverflow)
   ============================================================ */
.explore { position: relative; padding: 100px 0 90px; overflow: hidden; }
.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: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  background: rgba(20, 20, 20, 0.6); border: 1px solid var(--border);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s, transform .2s;
}
.explore__arrow:hover { background: var(--purple); border-color: var(--purple); }
.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: .4; filter: saturate(.7);
  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 -24px rgba(142, 67, 255, 0.55), 0 0 0 1px rgba(177, 126, 255, 0.35);
}
.reel__video {
  position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px);
  object-fit: cover; border-radius: 32px; background: #000; z-index: 0;
}
.reel__scrim {
  position: absolute; inset: 8px; border-radius: 32px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 22%, transparent 55%, rgba(0,0,0,.85) 100%);
}
.reel__badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(13, 13, 13, 0.6); border: 1px solid rgba(177, 126, 255, 0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--purple-tint); font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: 6px 11px; border-radius: 100px;
}
.reel__info {
  position: absolute; left: 20px; right: 20px; bottom: 22px; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.reel__title { font-size: 1.25rem; font-weight: 800; line-height: 1.1; margin-bottom: 4px; }
.reel__sub { font-size: .82rem; color: rgba(255, 255, 255, 0.72); }
.reel .reel__avatar {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85); box-shadow: 0 6px 16px -6px rgba(0,0,0,.8);
  transform: rotate(4deg); transition: transform .3s var(--ease);
}
.reel.is-active .reel__avatar:hover { transform: rotate(0deg) scale(1.05); }
.reel__bar { position: absolute; left: 8px; right: 8px; bottom: 8px; height: 3px; z-index: 3; background: rgba(255,255,255,.18); border-radius: 100px; 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: 100px; }
.reel__sound {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: none;
  place-items: center; color: #fff; font-size: 1rem;
  background: rgba(13, 13, 13, 0.55); border: 1px solid rgba(255, 255, 255, 0.2);
  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); }

.explore__dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 34px; padding-inline: 24px; }
.explore__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 100px; cursor: pointer; background: var(--border); transition: width .3s var(--ease), background .3s; }
.explore__dot.is-active { width: 24px; 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; }
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 100px 24px; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
.section__sub { color: var(--muted); font-size: 1.1rem; }

/* ---------- feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--features { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(142, 67, 255, 0.4); background: rgba(142, 67, 255, 0.05); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem; margin-bottom: 20px;
  background: rgba(142, 67, 255, 0.12); border: 1px solid rgba(142, 67, 255, 0.22);
}
.card__title { font-size: 1.28rem; font-weight: 700; margin-bottom: 10px; }
.card__body { color: var(--muted); font-size: 1rem; }

/* ============================================================
   HOW IT WORKS (timeline)
   ============================================================ */
.timeline { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 26px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 18px);
  z-index: 0;
}
.timeline__step { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.timeline__marker {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg); border: 2px solid var(--purple); margin-bottom: 26px;
  box-shadow: 0 0 26px -6px rgba(142, 67, 255, 0.7);
}
.timeline__num { font-family: var(--font-display); font-weight: 800; color: var(--purple-tint); font-size: 1.05rem; }
.timeline .phone { width: min(230px, 72%); margin-bottom: 24px; }
.timeline__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.timeline__body { color: var(--muted); max-width: 320px; }

/* ============================================================
   SHOWCASE CAROUSEL
   ============================================================ */
.showcase { max-width: none; padding-inline: 0; overflow: hidden; }
.showcase .section__head { padding-inline: 24px; }
.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: 28px; width: max-content; padding: 20px 24px; animation: marquee 45s linear infinite; }
.carousel:hover .carousel__track { animation-play-state: paused; }
.phone--shot { width: 220px; flex-shrink: 0; }
.phone--shot .phone__notch { display: none; }

/* ============================================================
   TESTIMONIALS (masonry)
   ============================================================ */
.masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  display: flex; flex-direction: column;
  background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 26px;
}
.quote blockquote { font-size: 1.08rem; line-height: 1.55; margin-bottom: 20px; flex-grow: 1; }
.quote figcaption { display: flex; align-items: center; gap: 13px; }
.quote figcaption span:last-child { display: flex; flex-direction: column; }
.quote figcaption strong { font-family: var(--font-display); font-weight: 700; }
.quote figcaption small { color: var(--faint); font-size: .85rem; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; 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: 14px; }
.acc { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .3s; }
.acc.is-open { border-color: rgba(142, 67, 255, 0.5); }
.acc__q {
  width: 100%; background: none; border: 0; cursor: pointer; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; text-align: left;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.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: 2px; transition: transform .3s var(--ease);
}
.acc__icon::before { width: 14px; height: 2px; }
.acc__icon::after  { width: 2px; 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); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; overflow: hidden; padding: 110px 24px; text-align: center; }
.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.3), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.cta__inner { position: relative; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.eq--cta { height: 52px; margin-bottom: 28px; }
.cta__title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 16px; }
.cta__sub { color: var(--muted); font-size: 1.2rem; margin-bottom: 34px; }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 60px; }
.phone--cta { width: min(280px, 74%); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 70px 24px 30px; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__tagline { color: var(--muted); margin: 16px 0 20px; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__heading { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--muted); font-size: .96rem; 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-size: .84rem;
}
.footer__company { display: flex; flex-direction: column; gap: 4px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s 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__sub { margin-inline: auto; }
  .hero__cta, .hero__proof { justify-content: center; }

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

  .timeline { grid-template-columns: 1fr; gap: 50px; max-width: 440px; margin-inline: auto; }
  .timeline::before { display: none; }

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

  .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 70px; }

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

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

  .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; }
}
