/* =========================================================
   JIA — built on the Avenor template's visual system
   Display: Inter (display optical size) · Body/labels: Be Vietnam Pro
   ========================================================= */

:root {
  --bg: #ffffff;
  --ink: #161616;
  --ink-2: #4f4f4f;
  --muted: #757575;
  --faint: #b4b4b4;
  --line: #ededed;
  --soft: #f9fafb;
  --gray: #ededed;
  --dark: #161616;
  --accent: #217eff;
  --green: #2cde04;

  --pad: clamp(20px, 2.5vw, 40px);
  --section: clamp(96px, 12vw, 180px);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --f-display: "Inter", "Inter Display", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --f-body: "Be Vietnam Pro", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
[hidden] { display: none !important; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 12px; }
.skip:focus { left: 8px; }

.wrap { padding-left: var(--pad); padding-right: var(--pad); max-width: 1680px; margin-left: auto; margin-right: auto; }
.section { padding-top: var(--section); }
.muted { color: var(--muted); }

/* ---------- primitives ---------- */
.sq { display: inline-block; width: 7px; height: 7px; background: var(--accent); flex: none; }
.sq--green { background: var(--green); }

.label {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .02em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.label--center { justify-content: center; }
.label--dark { color: var(--faint); }

.display {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(56px, 10.5vw, 170px);
  line-height: .88;
  letter-spacing: -.055em;
  margin-left: -.04em;
}

.section-head { display: grid; gap: 20px; margin-bottom: clamp(48px, 6vw, 96px); }
.section-head--split { grid-template-columns: 1fr auto; align-items: end; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 18px;
  font-size: 13px; text-transform: uppercase; letter-spacing: .01em; font-weight: 400;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn .sq { transition: transform .4s var(--ease); }
.btn:hover .sq { transform: rotate(90deg) scale(1.15); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--gray); }
.btn--line { border: 1px solid var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--lg { height: 56px; padding: 0 26px; font-size: 14px; }

.link { display: inline-block; font-size: 13px; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: opacity .3s; }
.link:hover { opacity: .55; }
.link--light { color: #fff; }

.img { overflow: hidden; background: var(--line); position: relative; }
.img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }

/* ---------- reveal animations ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px); filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }

[data-scrub] .w { color: #d6d6d6; transition: color .25s linear; }
[data-scrub] .w.on { color: var(--ink); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: var(--pad);
  height: 68px; padding: 0 var(--pad);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  font-size: 13px; text-transform: uppercase;
}
.nav__logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; letter-spacing: .02em; }
.nav__links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 2.4vw, 40px); }
.nav__links > a:not(.btn) { position: relative; }
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__toggle { display: none; width: 40px; height: 40px; position: relative; justify-self: end; }
.nav__toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease), top .4s var(--ease); }
.nav__toggle span:first-child { top: 16px; }
.nav__toggle span:last-child { top: 23px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 19.5px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 19.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 68px 0 0; z-index: 49; background: #fff;
  padding: 32px var(--pad); display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu[hidden] { display: none; }
@media (min-width: 1001px) { .mobile-menu { display: none; } }
.mobile-menu a:not(.btn) { font-family: var(--f-display); font-weight: 600; font-size: 44px; letter-spacing: -.04em; line-height: 1.15; text-transform: uppercase; }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* =========================================================
   01 HERO
   ========================================================= */
.hero { padding-top: clamp(24px, 4vw, 56px); }
.hero__top { display: grid; grid-template-columns: 1fr minmax(200px, 22vw); gap: var(--pad); align-items: start; }
.hero__word {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-weight: 600; text-transform: uppercase;
  display: flex; flex-direction: column;
  font-size: clamp(54px, 12.5vw, 210px);
  line-height: .86; letter-spacing: -.055em; margin-left: -.05em;
}
.hero__word .cta__line {
  opacity: 0; filter: blur(22px);
  animation: lineIn 1.4s var(--ease) forwards;
  animation-delay: calc(.1s + var(--i) * .16s);
}
@keyframes lineIn { to { opacity: 1; filter: blur(0); } }
/* hero lines step right rather than hugging the portrait */
.hero__word .cta__line--mid { padding-left: 12%; }
.hero__word .cta__line--end { align-self: flex-start; padding-left: 24%; }

.hero__portrait .img { aspect-ratio: 4 / 5; }
.hero__portrait figcaption { margin-top: 12px; font-size: 13px; display: grid; gap: 4px; }
.hero__tagline { font-weight: 500; }
.hero__stars { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.stars { color: var(--accent); letter-spacing: 1px; font-size: 11px; }

.hero__strip {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr 1.9fr;
  gap: var(--pad); margin-top: clamp(56px, 7vw, 110px); align-items: start;
}
.tile .img { aspect-ratio: 3 / 4; }
.tile--b .img { aspect-ratio: 3 / 4.4; }
.tile--c .img { aspect-ratio: 4 / 4.9; }
.tile--d .img { aspect-ratio: 16 / 12; }
.tile figcaption { margin-top: 12px; display: grid; gap: 2px; font-size: 13px; }
.tile figcaption strong { font-weight: 500; }
.tile figcaption span { color: var(--muted); font-size: 12px; }
.tile:hover img, .card:hover img, .mini:hover img, .step:hover img { transform: scale(1.04); }

/* =========================================================
   03 MARQUEE
   ========================================================= */
.marquee {
  margin-top: var(--section);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: clamp(14px, 1.6vw, 26px) 0;
}
.marquee__track {
  display: flex; width: max-content; align-items: center;
  animation: marquee 36s linear infinite;
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 80px); letter-spacing: -.045em; line-height: 1;
}
.marquee__track span { padding: 0 .35em; }
.marquee__track i { font-style: normal; color: var(--accent); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   04 WORK
   ========================================================= */
.work__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--pad); }
.card { display: block; }
.card .img { height: clamp(380px, 40vw, 680px); }
.card__meta {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: start;
  padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--line);
}
.card__num { font-size: 12px; color: var(--muted); padding-top: 4px; }
.card h3 { font-family: var(--f-display); font-weight: 600; font-size: clamp(20px, 1.8vw, 28px); letter-spacing: -.03em; line-height: 1.15; }
.card--lg h3 { font-size: clamp(26px, 2.6vw, 42px); }
.card__meta p { color: var(--muted); font-size: 13px; }
.card__arrow { font-size: 20px; transition: transform .45s var(--ease); }
.card:hover .card__arrow { transform: translate(3px, -3px); color: var(--accent); }

/* =========================================================
   05 PROBLEM
   ========================================================= */
.problem__inner { max-width: 820px; text-align: center; display: grid; gap: 22px; justify-items: center; }
.problem__head {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -.045em; line-height: 1.02;
  font-size: clamp(38px, 5vw, 80px); margin: 8px 0 14px;
}
.problem p:not(.label) { font-size: clamp(16px, 1.3vw, 20px); color: var(--ink-2); max-width: 36em; }
.problem .problem__kicker { color: var(--ink); font-weight: 500; }

/* =========================================================
   06 HOW IT WORKS
   ========================================================= */
.process {
  display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--pad) * 2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(36px, 4vw, 64px) 0; align-items: start;
}
.process__steps { display: grid; gap: clamp(36px, 4.5vw, 72px); }
.process__step { display: grid; gap: 8px; }
.step__num { font-size: 13px; color: var(--muted); padding-top: .9em; }
.step__text h3 {
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(34px, 3.8vw, 62px); letter-spacing: -.055em; line-height: .92;
}
.step__text p { margin-top: clamp(18px, 2vw, 28px); max-width: 520px; color: var(--ink-2); font-size: 16px; }
.step__text p + p { margin-top: 14px; }

.process__pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.2vw, 20px); }
.step__img { position: relative; }
.step__img .img { aspect-ratio: 4 / 5; }
.step__img figcaption {
  position: absolute; left: 10px; top: 10px; background: #fff; font-size: 11px; text-transform: uppercase;
  padding: 3px 8px; letter-spacing: .02em;
}

/* =========================================================
   07 LINEUP
   ========================================================= */
.lineup { background: var(--soft); padding: clamp(64px, 7vw, 112px) 0; margin-top: var(--section); }
.lineup__count { font-size: 12px; text-transform: uppercase; color: var(--muted); }
.lineup .section-head { margin-bottom: clamp(28px, 3vw, 48px); }
.lineup__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1vw, 16px); }
.lu .img { aspect-ratio: 4 / 5; }
.lu figcaption { margin-top: 10px; font-size: 13px; line-height: 1.35; display: grid; gap: 2px; }
.lu figcaption span { font-size: 11px; color: var(--muted); }
.lineup__caption {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--pad); align-items: end;
  margin-top: clamp(48px, 6vw, 96px);
}
.lineup__caption h2 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(34px, 4.4vw, 72px); }
.lineup__caption p { font-size: 16px; color: var(--ink-2); max-width: 460px; }

/* =========================================================
   08 PRICING
   ========================================================= */
.pricing .display { font-size: clamp(52px, 10vw, 160px); }
.price { font-family: var(--f-display); font-weight: 600; letter-spacing: -.03em; }
.price--lg { font-size: clamp(44px, 4.4vw, 68px); line-height: 1; letter-spacing: -.05em; margin: 18px 0 6px; }
.tier__eyebrow { font-size: 12px; text-transform: uppercase; color: var(--muted); letter-spacing: .02em; }
.tier__sub { font-size: 13px; color: var(--muted); }

.ticks { display: grid; gap: 10px; font-size: 14px; }
.ticks li { position: relative; padding-left: 18px; }
.ticks strong { font-weight: 500; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; background: var(--accent); }

.free {
  display: grid; grid-template-columns: 1fr 1.4fr auto; gap: var(--pad); align-items: center;
  background: var(--soft); border: 1px solid var(--line); padding: clamp(24px, 3vw, 44px);
  margin-bottom: var(--pad);
}
.free h3 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.04em; font-size: clamp(32px, 3.2vw, 52px); line-height: 1; margin: 6px 0 8px; }
.free h3 .price { color: var(--accent); margin-left: .2em; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--pad); align-items: stretch; padding-top: 24px; }
.tier {
  position: relative; display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--line); padding: clamp(24px, 2.6vw, 40px);
  background: #fff;
}
.tier h3 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.035em; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.05; margin-top: 18px; }
.tier .ticks { margin: 26px 0; padding-top: 26px; border-top: 1px solid var(--line); }
.tier__note { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.tier .btn { margin-top: auto; justify-content: center; }
.tier--featured { background: var(--dark); color: #fff; border-color: var(--dark); }
@media (min-width: 1001px) {
  .tier--featured { margin-top: -24px; margin-bottom: 24px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.45); }
}
.tier--featured .tier__eyebrow, .tier--featured .tier__sub, .tier--featured .tier__note { color: var(--faint); }
.tier--featured .ticks { border-color: #2e2e2e; }
.tier__badge {
  position: absolute; top: 0; right: 0; background: var(--accent); color: #fff;
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em; padding: 6px 12px;
}

.addons {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); align-items: end;
  margin-top: clamp(40px, 5vw, 72px);
}
.addons__list { margin-top: 18px; max-width: 520px; }
.addons__list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.addons__list li span:last-child { font-family: var(--f-display); font-weight: 600; letter-spacing: -.01em; }
.scarcity { justify-self: end; display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { to { transform: scale(3); opacity: 0; } }

/* =========================================================
   09 SECONDARY
   ========================================================= */
.secondary__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); margin-top: 28px; }
.mini { display: grid; grid-template-columns: minmax(140px, 38%) 1fr; border: 1px solid var(--line); }
.mini .img { aspect-ratio: 4 / 5; height: 100%; }
.mini__body { padding: clamp(20px, 2.4vw, 36px); display: flex; flex-direction: column; gap: 12px; }
.mini h3 { font-family: var(--f-display); font-weight: 600; letter-spacing: -.035em; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.05; }
.mini p:not(.tier__eyebrow) { color: var(--ink-2); font-size: 14px; }
.mini .link { margin-top: auto; align-self: flex-start; }
.secondary__note { margin-top: 20px; font-size: 13px; color: var(--muted); font-style: italic; }

/* =========================================================
   10 ABOUT
   ========================================================= */
.about .label { margin-bottom: 28px; }
.about__head {
  font-family: var(--f-display); font-optical-sizing: auto;
  font-weight: 600; letter-spacing: -.045em; line-height: 1.02;
  max-width: 16.5em;
}
.about__body { margin-top: clamp(56px, 8vw, 120px); }
.about__head { font-size: clamp(32px, 4.6vw, 76px); max-width: 19em; }
.about__img .img { aspect-ratio: 3 / 4; }
.about__body { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; }
.about__img { flex: 0 1 380px; }
.about__copy { flex: 0 1 480px; }
.about__copy { color: var(--ink-2); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--pad); margin-top: clamp(80px, 10vw, 160px); }
.stat__num {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -.06em; line-height: .9;
  font-size: clamp(72px, 10vw, 170px); font-variant-numeric: tabular-nums;
}
.stat__label { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); text-transform: uppercase; font-size: 13px; }
.stat__desc { margin-top: 8px; color: var(--muted); font-size: 14px; max-width: 320px; }

.band { margin-top: var(--section); height: clamp(360px, 62vw, 900px); overflow: hidden; position: relative; background: #222; }
.band img { width: 100%; height: 130%; object-fit: cover; position: absolute; top: -15%; left: 0; will-change: transform; }

/* =========================================================
   11 TESTIMONIALS
   ========================================================= */
.quotes { background: var(--dark); color: #fff; padding-bottom: var(--section); }
.quotes__inner { display: grid; grid-template-columns: 1fr minmax(220px, 24vw); gap: calc(var(--pad) * 2); align-items: start; }
.quotes__main { display: flex; flex-direction: column; gap: 36px; min-width: 0; }
.quotes__stage { display: grid; }
.quote { grid-area: 1 / 1; opacity: 0; transform: translateY(16px); filter: blur(6px); transition: opacity .7s var(--ease), transform .8s var(--ease), filter .7s var(--ease); pointer-events: none; }
.quote.is-active { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.quote p {
  font-family: var(--f-display); font-weight: 600; letter-spacing: -.035em; line-height: 1.15;
  font-size: clamp(26px, 3.2vw, 52px); max-width: 20em;
}
.quote footer { margin-top: 24px; font-size: 14px; color: var(--faint); }
.quote footer strong { color: #fff; font-weight: 500; }
.quotes__controls { display: flex; align-items: center; gap: 10px; }
.arrow { width: 40px; height: 40px; border: 1px solid #3a3a3a; display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s; }
.arrow:hover { background: #fff; color: var(--ink); border-color: #fff; }
.quotes__count { margin-left: 12px; font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.quotes .link { align-self: flex-start; }
.quotes__imgs { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #222; margin-top: 36px; }
.quotes__imgs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity 1s var(--ease), transform 1.6s var(--ease); }
.quotes__imgs img.is-active { opacity: 1; transform: none; }

/* =========================================================
   12 FAQ
   ========================================================= */
.faq { display: grid; grid-template-columns: 1fr 1.15fr; gap: calc(var(--pad) * 2); padding-bottom: var(--section); }
.faq__side { display: flex; flex-direction: column; gap: 20px; }
.faq__side .display { font-size: clamp(56px, 8.5vw, 140px); }
.faq__img { margin-top: auto; padding-top: 40px; width: min(390px, 85%); }
.faq__img .img { aspect-ratio: 3 / 4.4; }

.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  text-align: left; padding: 24px 0;
  font-family: var(--f-display); font-weight: 500; letter-spacing: -.02em; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.3;
  transition: color .3s;
}
.qa__q:hover { color: var(--muted); }
.qa__q i { position: relative; width: 14px; height: 14px; flex: none; }
.qa__q i::before, .qa__q i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: var(--ink); transition: transform .45s var(--ease); }
.qa__q i::after { transform: rotate(90deg); }
.qa__q[aria-expanded="true"] i::after { transform: rotate(0deg); }
.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.qa__a > div { overflow: hidden; }
.qa__a p { padding: 0 48px 26px 0; color: var(--ink-2); font-size: 15px; max-width: 42em; }
.qa.is-open .qa__a { grid-template-rows: 1fr; }

/* =========================================================
   13 BIG CTA
   ========================================================= */
.cta { background: var(--gray); padding: clamp(80px, 10vw, 160px) 0; overflow: hidden; }
.cta__head {
  display: flex; flex-direction: column;
  font-family: var(--f-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(44px, 12.5vw, 210px); line-height: .86; letter-spacing: -.06em;
}
.cta__line { display: block; will-change: transform; white-space: nowrap; }
.cta__line--mid { padding-left: 14%; }
.cta__line--end { align-self: flex-end; }
.cta__btn { margin-top: clamp(32px, 4vw, 64px); display: flex; justify-content: center; }

/* =========================================================
   14 FOOTER
   ========================================================= */
.footer { padding-top: clamp(72px, 8vw, 120px); }
.footer__grid { display: grid; grid-template-columns: 1fr minmax(200px, 22vw) 1fr; gap: calc(var(--pad) * 2); align-items: start; }
.footer__links { margin-top: 16px; display: grid; gap: 14px; }
.footer__links a { display: grid; gap: 2px; transition: color .3s; }
.footer__links span { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -.04em; line-height: 1.1; }
.footer__links em { font-style: normal; font-size: 13px; color: var(--muted); }
.footer__links a:hover { color: var(--muted); }
.footer__img .img { aspect-ratio: 4 / 5; }
.footer__img img { filter: grayscale(1); }
.footer__contact { justify-self: end; }
.footer__big { display: block; margin-top: 12px; font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 2.4vw, 38px); letter-spacing: -.035em; line-height: 1.1; font-variant-numeric: tabular-nums; }
a.footer__big:hover { color: var(--accent); }
.footer__gap { margin-top: 36px; }
.social { display: flex; gap: 10px; margin-top: 32px; }
.social a { width: 38px; height: 38px; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color .3s, background .3s; }
.social a:hover { border-color: var(--ink); }
.social svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social svg .fill { fill: var(--ink); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: clamp(56px, 7vw, 100px); padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid var(--line); font-size: 13px; color: var(--muted);
}
.footer__bottom a:hover { color: var(--ink); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .hero__top { grid-template-columns: 1fr; }
  .hero__word { font-size: clamp(48px, 16vw, 150px); }
  .hero__portrait { width: min(260px, 55%); justify-self: end; margin-top: -8vw; }
  .hero__strip { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .tile--c .img, .tile--d .img { aspect-ratio: 3 / 4; }


  .work__grid { grid-template-columns: 1fr 1fr; }
  .card--lg { grid-column: 1 / -1; }
  .card .img { height: clamp(300px, 56vw, 520px); }

  .process { grid-template-columns: 1fr; gap: calc(var(--pad) * 1.5); }
  .lineup__grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .lineup__caption { grid-template-columns: 1fr; }

  .free { grid-template-columns: 1fr 1fr; }
  .free .btn { grid-column: 1 / -1; justify-self: start; }
  .tiers { grid-template-columns: 1fr; max-width: 620px; }
  .addons { grid-template-columns: 1fr; }
  .scarcity { justify-self: start; }

  .secondary__grid { grid-template-columns: 1fr; }
  .quotes__inner { grid-template-columns: 1fr 34vw; }
  .faq { grid-template-columns: 1fr; }
  .faq__img { width: min(300px, 45%); padding-top: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__img { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .section-head--split { grid-template-columns: 1fr; }
  .hero__portrait { width: 62%; margin-top: 16px; justify-self: end; }
  .hero__strip { gap: 14px; row-gap: 28px; }


  .work__grid { grid-template-columns: 1fr; }
  .card .img { height: 118vw; }
  .card--lg .img { height: 80vw; }

  .process__pair { grid-template-columns: 1fr; gap: 16px; }

  .lineup__grid { grid-template-columns: 1fr 1fr; }
  .faq__img { display: none; }
  .free { grid-template-columns: 1fr; }
  .mini { grid-template-columns: 1fr; }
  .mini .img { aspect-ratio: 3 / 2; height: auto; }

  .stats { grid-template-columns: 1fr; gap: 48px; }
  .quotes__inner { grid-template-columns: 1fr; }
  .quotes__imgs { display: none; }
  .cta__line--mid { padding-left: 8%; }
  .footer__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__contact { justify-self: start; }
  .footer__bottom { flex-direction: column; }
}

/* Mobile: no entrance animations — people scroll faster than they can play */
@media (max-width: 1000px) {
  [data-reveal], [data-reveal].is-in { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  [data-scrub] .w { color: var(--ink) !important; }
  .hero__word .cta__line { opacity: 1; filter: none; animation: none; }
  .quote { transition: opacity .3s linear; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__word .char { opacity: 1; filter: none; transform: none; }
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}
