/* ═══════════════════════════════════════════
   ELOWEN — TikTok Agency
   Design System (IF Agency inspired)
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --paper:        #f5f2eb;
  --paper-alt:    #ece9e1;
  --ink:          #0c0b09;
  --muted:        #737166;
  --line:         rgba(12, 11, 9, 0.10);
  --line-strong:  rgba(12, 11, 9, 0.18);
  --accent:       #e62440;
  --accent-soft:  rgba(230,36,64,.10);
  --cyan:         #20d4ca;
  --cyan-soft:    rgba(32,212,202,.10);
  --max:          1200px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-2xl: 100px;
  --space-3xl: 130px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY SYSTEM ── */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -1.6px;
  text-transform: uppercase;
}
.display .hl,
.hl { color: var(--accent); font-style: normal; }

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 600px;
  margin-top: var(--space-sm);
}

.sect__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.sect__num--light { color: var(--cyan); }

.sect__head { margin-bottom: 64px; max-width: 800px; }
.sect__head--narrow { max-width: 420px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  padding: 15px 30px;
  border-radius: 60px;
  border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn--dark   { background: var(--ink); color: #fff; }
.btn--dark:hover   { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,36,64,.25); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #cc1e38; transform: translateY(-2px); }
.btn--sm     { padding: 11px 22px; font-size: 13px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,242,235,.80);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .35s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }

.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.nav__logo { height: 28px; width: auto; object-fit: contain; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__menu a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .28s cubic-bezier(.4,0,.2,1);
}
.nav__menu a:not(.btn):hover::after,
.nav__menu a:not(.btn)[aria-current="true"]::after { width: 100%; }
.nav__menu a:hover { color: var(--accent); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 44px; height: 44px;
  padding: 10px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }


/* ═══ HERO ═══ */
.hero {
  padding: 150px 0 90px;
  position: relative;
}
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 11vw, 140px);
  line-height: .92;
  letter-spacing: -2.8px;
  text-transform: uppercase;
  margin-bottom: 52px;
}
.hero__line { display: block; }
.hero__headline em.hl {
  font-style: normal;
  -webkit-text-stroke: 2.2px var(--ink);
  color: transparent;
  transition: color .4s;
}

/* Hero points */
.hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.hp__t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -.2px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp__d {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll-indicator span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
}
.hero__scroll-line {
  width: 40px; height: 1.5px;
  background: var(--line-strong);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(.4); opacity: .4; }
}


/* ═══ MARQUEE ═══ */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
}
.marquee {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .50;
  user-select: none;
}
.marquee__dot { opacity: .35; }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}


/* ═══ SECTIONS ═══ */
.sect { padding: var(--space-3xl) 0; }
.sect--alt { background: var(--paper-alt); }


/* ═══ STATS GRID ═══ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 40px 24px 40px 0; }
.stat--border-l { border-left: 1px solid var(--line); padding-left: 24px; padding-right: 24px; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.stat__label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: .2px;
}


/* ═══ CREATOR CARDS ═══ */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.creator-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              border-color .3s,
              box-shadow .3s;
  position: relative;
}
.creator-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}
.creator-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.creator-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-alt);
  flex-shrink: 0;
}
.creator-card__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 60px;
  background: var(--accent-soft);
  color: var(--accent);
}
.badge--live { animation: livePulse 2s infinite; }
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}

.creator-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.3px;
  margin-bottom: 2px;
}
.creator-card__handle {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.creator-card__metrics {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.creator-card__metrics div { display: flex; flex-direction: column; }
.creator-card__metrics dt {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.creator-card__metrics dd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
}

.creator-card__bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  margin-bottom: 14px;
  min-height: 42px;
}

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 13px;
  border-radius: 60px;
}


/* ═══ SERVICES ═══ */
.svc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.svc-col { padding: 40px 32px 40px 0; }
.svc-col--border { border-right: 1px solid var(--line); }
.svc-col:last-of-type { padding-right: 0; }
.svc-col__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .2px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-col__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Spotlight */
.spotlight { margin-top: 72px; display: flex; flex-direction: column; gap: 1px; }
.spotlight__item {
  padding: 44px 36px;
  border-radius: 16px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background .3s;
}
.spotlight__item:hover { transform: translateX(8px); }
.spotlight__item--alt { background: var(--paper-alt); }
.spotlight__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(115,113,102,.10);
  padding: 5px 13px;
  border-radius: 60px;
  margin-bottom: 18px;
}
.spotlight__tag--accent { color: var(--accent); background: var(--accent-soft); }
.spotlight__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.8vw, 30px);
  text-transform: uppercase;
  letter-spacing: -.4px;
  margin-bottom: 12px;
  line-height: 1.15;
}
.spotlight__item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 18px;
}
.arrow-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s, color .25s;
}
.arrow-link:hover { gap: 12px; color: var(--accent); }
.arrow-link--accent:hover { color: var(--accent); }


/* ═══ WORK / CASES ═══ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.case-cell { padding: 44px 28px 44px 0; }
.case-cell--border-r { border-right: 1px solid var(--line); }
.case-cell:last-child { padding-right: 0; }
.case-cell__metric {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -2px;
  color: var(--ink);
}
.case-cell__metric--accent { color: var(--accent); }
.case-cell__desc {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.55;
  max-width: 280px;
}
.case-cell__desc strong { color: var(--ink); font-weight: 600; }

/* Testimonial */
.testimonial {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 780px;
}
.testimonial p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -.3px;
}
.testimonial footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}


/* ═══ FAQ ═══ */
.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 23px);
  text-align: left;
  color: var(--ink);
  transition: color .2s;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-icon::before { top: 50%; left: 50%; width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { top: 50%; left: 50%; width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.is-open .faq-icon { color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-a p {
  padding: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 540px;
}


/* ═══ CTA BLOCK ═══ */
.cta-block {
  padding: 0;
}
.cta-inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 90px 60px;
  text-align: center;
  margin: 0 32px;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 7vw, 80px);
  line-height: .96;
  letter-spacing: -1.4px;
  text-transform: uppercase;
}
.cta-sub {
  color: rgba(245,242,235,.65);
  max-width: 500px;
  margin: 20px auto 34px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 15px;
  transition: border-color .25s;
}
.cta-form input:focus { outline: none; border-color: var(--cyan); }
.cta-form input::placeholder { color: rgba(255,255,255,.35); }

.cta-form-msg {
  min-height: 22px;
  margin-top: 14px;
  font-size: 14px;
}
.cta-form-msg.is-ok   { color: var(--cyan); }
.cta-form-msg.is-err  { color: #ff8a8a; }


/* ═══ FOOTER ═══ */
.foot {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.foot__main {
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 56px;
}
.foot__logo { height: 32px; width: auto; margin-bottom: 14px; }
.foot__blurb { color: var(--muted); font-size: 14px; max-width: 300px; line-height: 1.6; }

.foot__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.foot__col-t {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  margin-bottom: 16px;
  color: var(--ink);
}
.foot__col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}
.foot__col a:hover { color: var(--accent); }

.foot__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}


/* ═══ PARTNER BRANDS (scrolling wall) ═══ */
.brands { padding: 72px 0; border-top: 1px solid var(--line); }
.brands__head { margin-bottom: 36px; }
.brands__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 1;
}
.brands__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands__track {
  display: inline-flex;
  gap: 16px;
  padding: 4px 0;
  white-space: nowrap;
  animation: brandScroll 38s linear infinite;
  will-change: transform;
}
.brands__track:hover { animation-play-state: paused; }
.brand-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: transparent;
  transition: transform .3s, box-shadow .3s;
  user-select: none;
  flex-shrink: 0;
  min-height: 60px;
}
.brand-tile img {
  display: block;
  max-height: 54px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .3s, transform .3s;
}
.brand-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.5);
}
.brand-tile:hover img { opacity: 1; transform: scale(1.06); }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ CREATORS SCROLL (auto-scroll showcase) ═══ */
.creators-scroll {
  overflow: hidden;
  margin-bottom: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.creators-scroll__track {
  display: inline-flex;
  gap: 16px;
  padding: 6px 0;
  white-space: nowrap;
  animation: creatorScroll 34s linear infinite;
  will-change: transform;
}
.creators-scroll__track:hover { animation-play-state: paused; }

.csc {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 22px 12px 12px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.csc:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.csc__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-alt);
  flex-shrink: 0;
}
.csc__avatar img { width: 100%; height: 100%; object-fit: cover; }
.csc__meta { display: flex; flex-direction: column; line-height: 1.2; }
.csc__meta h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.2px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.csc__live {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 60px;
}
.csc__handle { color: var(--muted); font-size: 12px; }
.csc__followers {
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
@keyframes creatorScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══ REVEAL ANIMATIONS ═══ */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1),
              transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-up > .reveal-up:nth-child(1) { transition-delay: .05s; }
.stagger-up > .reveal-up:nth-child(2) { transition-delay: .12s; }
.stagger-up > .reveal-up:nth-child(3) { transition-delay: .19s; }
.stagger-up > .reveal-up:nth-child(4) { transition-delay: .26s; }


/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 1024px) {
  .hero__points  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); padding-left: 24px; padding-right: 0; }
  .creator-grid  { grid-template-columns: repeat(2, 1fr); }
  .svc-row       { grid-template-columns: 1fr; }
  .svc-col       { border-right: none !important; border-bottom: 1px solid var(--line); padding-bottom: 32px; padding-right: 0 !important; }
  .svc-col:last-of-type { border-bottom: none; padding-bottom: 0; }
  .case-grid     { grid-template-columns: repeat(2, 1fr); }
  .case-cell:nth-child(2n) { border-right: none; padding-right: 0; }
  .case-cell:nth-child(2n+1) { border-right: 1px solid var(--line); }
  .faq-layout    { grid-template-columns: 1fr; gap: 36px; }
  .foot__main    { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav__wrap { padding: 0 20px; }

  /* Mobile nav */
  .nav__burger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 8px 20px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav__menu a.btn {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }

  /* Hero mobile */
  .hero { padding: 120px 0 70px; }
  .hero__headline { font-size: clamp(40px, 12vw, 72px); letter-spacing: -2px; }
  .hero__points { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
  .hero__scroll-indicator { display: none; }
  .cta-inner { margin: 0 16px; padding: 56px 28px; border-radius: 18px; }

  /* Grids stack */
  .stats-grid,
  .creator-grid,
  .svc-row,
  .case-grid,
  .spotlight,
  .foot__links { grid-template-columns: 1fr; }

  /* Remove borders on single col */
  .stat, .stat--border-l,
  .svc-col, .svc-col--border,
  .case-cell, .case-cell--border-r {
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .stat:last-child,
  .svc-col:last-of-type,
  .case-cell:last-child { border-bottom: none; }

  /* Sections */
  .sect { padding: 80px 0; }
  .sect__head { margin-bottom: 44px; }
  .spotlight__item { padding: 32px 24px; }
  .spotlight__item:hover { transform: none; }

  .faq-q { font-size: 17px; padding: 20px 0; }
  .cta-form { flex-direction: column; }
  .cta-form input { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .marquee,
  .brands__track,
  .creators-scroll__track { animation: none; }
  .reveal-up { opacity: 1; transform: none; }
}