/* ─────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-mid:       #111111;
  --text:         #F0EDE8;
  --muted:        rgba(240, 237, 232, 0.5);
  --accent-start: #FEA062;
  --accent-end:   #F45E7C;
  --gradient:     linear-gradient(135deg, #FEA062, #F45E7C);
  --font-display: 'Sora', sans-serif;
  --font-body:    'Sora', sans-serif;
  --nav-h:        72px;
  --section-px:   clamp(1.5rem, 7vw, 8rem);
}

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

/* Required by Lenis */
html { height: auto; overflow: auto; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}

.nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--text); }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 56px;
  background: var(--gradient);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn--nav {
  padding: 0.55em 1.4em;
  font-size: 0.875rem;
  box-shadow: 0 0 24px rgba(244, 94, 124, 0.25);
}

/* Menu button — hidden on desktop */
.btn--menu {
  display: none;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

/* Mobile fullscreen menu — hidden by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 30px 40px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding: 0 var(--section-px);
}
.mobile-menu__top .btn--menu {
  display: inline-block;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  padding: 0.4em 0;
  border-bottom: 1px solid #333;
  transition: color 0.2s;
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--accent-start); }

.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu__cta {
  width: 100%;
  text-align: center;
}
.mobile-menu__socials {
  display: flex;
  gap: 1.5rem;
}
.mobile-menu__socials a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu__socials a:hover { color: #fff; }

.btn--hero {
  padding: 1em 2.4em;
  font-size: 1.05rem;
  box-shadow: 0 8px 48px rgba(244, 94, 124, 0.38);
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Radial glow behind title */
.hero__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  translate: -50% -50%;
  width: 80vw;
  height: 65vh;
  background: radial-gradient(ellipse at center,
    rgba(254, 160, 98, 0.11) 0%,
    rgba(244, 94, 124, 0.07) 45%,
    transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) var(--section-px) 0;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
}

/* GSAP sets opacity on individual .word spans — keep container visible */
.hero__title .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.65;
  will-change: transform, opacity;
}

/* ─────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────── */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 2.5rem;
  z-index: 1;
  will-change: opacity;
}

/* Fade edges */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 18s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 10vw;
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────
   INTRO SECTION
───────────────────────────────────────────────── */
.intro {
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
  padding: clamp(6rem, 12vw, 12rem) var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
}

.intro__body {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

/* Floating creator images */
.floating-images-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.floating-img {
  position: absolute;
  width: 180px;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.floating-img--1 { top: 8%;  left: 6%;  }
.floating-img--2 { top: 5%;  right: 6%; }
.floating-img--3 { bottom: 12%; right: 10%; }
.floating-img--4 { bottom: 10%; left: 8%;   }

/* ─────────────────────────────────────────────────
   BENTO / STEPS SECTION
───────────────────────────────────────────────── */
.steps {
  background: var(--bg);
  /* height set by JS for card stacking scroll distance */
}

/* ── Sticky viewport container ── */
.steps__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;     /* clips cards outside the viewport frame */
  will-change: transform;
}

/* ── Base grid layout (shared) ── */
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(5rem, 10vw, 10rem) var(--section-px);
  min-height: 100vh;
}

/* ── Card stacking variant (steps 1-4) ── */
.step--card {
  position: absolute;
  inset: 0;
  height: 100svh;
  min-height: unset;
  padding: clamp(2rem, 5vw, 5rem) var(--section-px);
  background: var(--bg);
  will-change: transform;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

/* Ascending z-index so later cards slide OVER earlier ones */
#step-1 { z-index: 1; }
#step-2 { z-index: 2; }
#step-3 { z-index: 3; }
#step-4 { z-index: 4; }
#step-5 { z-index: 5; }

/* Step 2: reversed layout */
.step--reverse {
  direction: rtl;
}
.step--reverse > * {
  direction: ltr;
}

.step__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.step__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.step__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step__list li {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--muted);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}

.step__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-end);
  font-weight: 700;
}

/* App mockup placeholder */
.step__mockup {
  width: 100%;
  max-width: 300px;
  height: 652px;
  background: #1a1a1a;
  border-radius: 40px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  will-change: transform;
}

.step__mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Demo animation frames inside mockup */
.step__mockup--demo { position: relative; }
.demo-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
}
.demo-frame--1 { opacity: 1; z-index: 1; }
.demo-frame--2 { z-index: 2; transform: translateY(100%); }
.demo-frame--3 { z-index: 3; }
.demo-frame--4 { z-index: 4; }
.demo-frame--5 { z-index: 0; }

/* Subtle inner glow on mockup */
.step__mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(254, 160, 98, 0.08) 0%,
    transparent 65%);
}

/* ─────────────────────────────────────────────────
   STEP — SAFETY (full-width centered variant)
───────────────────────────────────────────────── */
.step--safety {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Radial glow centred on the lock icon (~40% from top) */
.step--safety::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 40%,
    rgba(254, 160, 98, 0.13) 0%,
    rgba(244, 94, 124, 0.09) 35%,
    transparent 72%
  );
  pointer-events: none;
}

.step__safety-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

/* Bigger title — matches the weight of other bento steps */
.step--safety .step__title {
  font-size: clamp(3rem, 6vw, 6rem);
}

/* ── Lock icon ── */
.step__lock-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__lock {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: rgba(254, 160, 98, 0.08);
  border: 1px solid rgba(254, 160, 98, 0.2);
  box-shadow:
    0 0 32px rgba(254, 160, 98, 0.18),
    0 0 64px rgba(244, 94, 124, 0.12);
}

/* ── Pulsing rings ── */
.lock-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  pointer-events: none;
  animation: lock-pulse 3.2s ease-out infinite;
}

.lock-ring--1 {
  width: 140px;
  height: 140px;
  border-color: rgba(254, 160, 98, 0.55);
  box-shadow: 0 0 14px rgba(254, 160, 98, 0.18);
  animation-delay: 0s;
}

.lock-ring--2 {
  width: 220px;
  height: 220px;
  border-color: rgba(254, 160, 98, 0.3);
  box-shadow: 0 0 22px rgba(244, 94, 124, 0.1);
  animation-delay: 1.05s;
}

.lock-ring--3 {
  width: 310px;
  height: 310px;
  border-color: rgba(244, 94, 124, 0.15);
  animation-delay: 2.1s;
}

@keyframes lock-pulse {
  0%   { transform: scale(0.88); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ── List (centred, no dash bullets) ── */
.step__list--centered {
  align-items: center;
  text-align: center;
}

.step__list--centered li {
  padding-left: 0;
}

.step__list--centered li::before {
  display: none;
}

/* ─────────────────────────────────────────────────
   STATS SECTION
───────────────────────────────────────────────── */
.stats-section {
  background: rgba(0, 0, 0, 0.92);
  padding: clamp(6rem, 12vw, 12rem) var(--section-px);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 6rem);
}

.stats-section__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.stats-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 700px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  will-change: transform, opacity;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.5rem;
}

.stat__desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
}

/* ─────────────────────────────────────────────────
   WHO IT'S FOR
───────────────────────────────────────────────── */
.who {
  background: var(--bg-mid);
  padding: clamp(6rem, 12vw, 12rem) var(--section-px);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.who__header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.who__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.who__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.who-card {
  border: 1px solid #333;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  will-change: transform, opacity;
  transition: border-color 0.3s;
}

.who-card:hover {
  border-color: rgba(254, 160, 98, 0.4);
}

.who-card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.who-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.who-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.who__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--muted);
  will-change: transform, opacity;
}

/* ─────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(7rem, 14vw, 14rem) var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(254, 160, 98, 0.08) 0%,
    rgba(244, 94, 124, 0.08) 100%
  );
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-typewriter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
}

.tw-cursor {
  animation: tw-blink 0.75s step-end infinite;
  font-weight: 300;
}

@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.cta-section__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--muted);
  font-weight: 400;
}

/* ─────────────────────────────────────────────────
   FEATURES GUIDE
───────────────────────────────────────────────── */
.features {
  background: var(--bg);
  padding: clamp(6rem, 12vw, 12rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.features__header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 var(--section-px);
}

.features__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.features__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.features-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem var(--section-px) 1rem;
  cursor: grab;
}

.features-carousel::-webkit-scrollbar { display: none; }
.features-carousel:active { cursor: grabbing; }

.feature-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(280px, 32vw, 400px);
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
  will-change: transform, opacity;
}

.feature-card:hover {
  border-color: rgba(254, 160, 98, 0.35);
}

.feature-card::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.carousel-nav {
  display: flex;
  gap: 0.75rem;
  padding: 0 var(--section-px);
}

.carousel-nav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #333;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.carousel-nav__btn:hover {
  border-color: var(--accent-start);
  background: rgba(254, 160, 98, 0.08);
}

/* ─────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────── */
.faq {
  background: var(--bg-mid);
  padding: clamp(6rem, 12vw, 12rem) var(--section-px);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.35s ease;
}

/* Plus icon drawn in CSS */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-start);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  translate: -50% -50%;
}
.faq-icon::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  translate: -50% -50%;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  height: 0;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #999;
  line-height: 1.75;
  max-width: 680px;
}

/* ─────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────── */
.final-cta {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  padding: clamp(8rem, 16vw, 16rem) var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 860px;
  will-change: transform, opacity;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.final-cta__tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────────────
   FOOTER XXL
───────────────────────────────────────────────── */
.footer {
  position: sticky;
  top: 0;
  min-height: 100vh;
  background: #000;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
  padding: clamp(5rem, 10vw, 10rem) var(--section-px) clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 440px;
}

.footer__cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.footer__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.footer__cols {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 100px;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.35);
  margin-bottom: 0.25rem;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(240, 237, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__col-links a:hover { color: var(--text); }

.footer__socials {
  display: flex;
  gap: 1.1rem;
}

.footer__social {
  color: rgba(240, 237, 232, 0.5);
  text-decoration: none;
  display: flex;
  transition: color 0.2s;
}

.footer__social:hover { color: var(--text); }

/* Massive watermark — full viewport width */
.footer-brand {
  font-family: var(--font-display);
  font-size: 21vw;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.85;
  color: #1a1a1a;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: visible;
  white-space: nowrap;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: auto;
  user-select: none;
  pointer-events: none;
  will-change: transform;
  padding: 0;
  display: block;
}

.footer__bottom {
  padding: 0.75rem var(--section-px) 1rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 12px;
  color: #666;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav__links { display: none; }
  .btn--menu { display: inline-block; }

  /* ── Intro — allow images to scroll without clipping ── */
  .intro { overflow: visible; }

  /* Disable hover effects in mobile menu */
  .mobile-menu a {
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-menu a:hover {
    color: inherit;
    background: none;
  }

  /* ── Hero ── */
  .hero__title { font-size: clamp(2.5rem, 8vw, 4rem); }

  /* ── Floating images — 3-column grid on mobile ── */
  .floating-images-wrapper {
    position: relative !important;
    inset: auto !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 15px;
    overflow: visible !important;
    margin-top: 2rem;
    transform: none !important;
  }
  .floating-img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    flex-shrink: 1;
    width: 30%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    animation: none !important;
  }
  .floating-img--4 { display: none; }
  .floating-img:nth-child(1) { margin-top: 0; }
  .floating-img:nth-child(2) { margin-top: 20px; }
  .floating-img:nth-child(3) { margin-top: -10px; }

  /* ── Marquee ── */
  .marquee__item { font-size: 15vw; }

  /* ── Steps bento — keep sticky + parallax, adapt layout ── */
  .step--card {
    padding: 80px 20px 40px;
  }
  .step {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
  .step--reverse { direction: ltr; }
  .step__title { font-size: clamp(2rem, 7vw, 3rem); }
  .step__list li {
    font-size: 14px;
    line-height: 1.6;
  }
  .step__mockup { height: 609px; max-width: 280px; margin: 0 auto; }
  .step__mockup img { object-fit: cover; object-position: top; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ── Who it's for ── */
  .who-grid { grid-template-columns: 1fr; }

  /* ── CTA typewriter ── */
  .cta-section__title { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* ── Features carousel ── */
  .features-carousel { gap: 16px; }
  .feature-card { flex: 0 0 clamp(260px, 80vw, 360px); }

  /* ── FAQ ── */
  .faq { padding: 40px 20px; }

  /* ── Final CTA ── */
  .final-cta__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* ── Footer ── */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer__cols { flex-wrap: wrap; gap: 2rem; }
  .footer-brand { font-size: 18vw; }
}

/* ─────────────────────────────────────────────────
   SMALL MOBILE (iPhone 15 / SE / 390px and below)
───────────────────────────────────────────────── */
@media (max-width: 400px) {

  /* ── Nav ── */
  .nav__logo span { font-size: 14px; letter-spacing: 2px; }
  .nav__logo img { width: 20px; height: 20px; }
  .btn--nav { font-size: 12px; padding: 8px 16px; }
  .btn--menu { font-size: 12px; padding: 8px 14px; }

  /* ── Hero ── */
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__sub { font-size: 0.9rem; }

  /* ── Intro ── */
  .intro__heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .floating-img { width: 28%; }
  .floating-img:nth-child(1) { margin-top: 0; }
  .floating-img:nth-child(2) { margin-top: 15px; }
  .floating-img:nth-child(3) { margin-top: -5px; }

  /* ── Bento ── */
  .step--card { padding: 70px 15px 30px; }
  .step__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .step__list li { font-size: 13px; }
  .step__mockup { max-width: 220px; height: 478px; }

  /* ── Stats ── */
  .stats-grid { gap: 15px; }
  .stat__number { font-size: clamp(2rem, 8vw, 2.5rem); }

  /* ── Who ── */
  .who-card__title { font-size: 1.1rem; }

  /* ── CTA ── */
  .cta-section__title { font-size: clamp(1.8rem, 8vw, 3rem); }

  /* ── Features ── */
  .feature-card { flex: 0 0 260px; }

  /* ── FAQ ── */
  .faq-question { font-size: 0.95rem; }

  /* ── Final CTA ── */
  .final-cta__title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* ── Footer ── */
  .footer-brand { font-size: 20vw; }
  .footer__top { padding-left: 15px; padding-right: 15px; }
  .footer__cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* ── Global padding ── */
  .intro,
  .stats-section,
  .who,
  .cta-section,
  .faq,
  .final-cta { padding-left: 15px; padding-right: 15px; }
}
