/* ============================================================
   VICTORY STUDIO — soft premium, navy on light
   A calm, expensive studio: pale light, deep navy ink,
   generous whitespace, gentle motion. Promise-led single page.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color (OKLCH) — navy on soft light */
  --bg: oklch(0.986 0.005 255);
  --surface: oklch(0.955 0.009 255);
  --surface-2: oklch(0.925 0.012 255);
  --line: oklch(0.89 0.014 255);
  --line-soft: oklch(0.89 0.014 255 / 0.7);
  --ink: oklch(0.25 0.04 262);
  --muted: oklch(0.46 0.036 258);
  --primary: oklch(0.40 0.11 260);
  --primary-deep: oklch(0.30 0.095 262);
  --accent: oklch(0.55 0.14 255);
  --accent-soft: oklch(0.55 0.14 255 / 0.1);
  --on-primary: oklch(0.99 0 0);

  /* Typography — React Bits DNA: Bricolage Grotesque (voice) + code mono (labels) + script (signature) */
  --font-sig: "Romanesco", "Snell Roundhand", cursive;
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Google Sans Code", ui-monospace, "SF Mono", "SFMono-Regular", Menlo, monospace;

  --step--1: clamp(0.84rem, 0.8rem + 0.2vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.4rem, 1.2rem + 0.9vw, 1.95rem);
  --step-3:  clamp(1.85rem, 1.5rem + 1.6vw, 2.9rem);
  --step-4:  clamp(2.3rem, 1.6rem + 3.3vw, 4.4rem);
  --step-5:  clamp(3rem, 2rem + 5vw, 5.4rem);

  /* Space */
  --pad-x: clamp(1.15rem, 0.4rem + 3.8vw, 4.5rem);
  --section-y: clamp(5rem, 3.4rem + 8vw, 10rem);
  --maxw: 1240px;

  /* Radius / shadow (soft, navy-tinted) */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-soft: 0 18px 44px -22px oklch(0.40 0.11 260 / 0.28);
  --shadow-lift: 0 30px 70px -30px oklch(0.32 0.1 262 / 0.4);
  --ring: 0 0 0 1px var(--line);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.15, 1);

  /* z-index scale */
  --z-grain: 5;
  --z-nav: 100;
  --z-toast: 300;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }
::selection { background: var(--accent); color: var(--on-primary); }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
  text-wrap: balance;
  color: var(--ink);
}
p { text-wrap: pretty; }

/* Mono eyebrow — small technical labels, the "studio" precision voice */
.eyebrow, .section__tag, .plan__label, .footer__col h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ---------- Grain (subtle premium texture) ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Brand lockup ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.45rem, 0.35rem + 0.4vw, 0.7rem);
  color: var(--primary);
}
.brand__mark {
  width: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem);
  height: auto;
  aspect-ratio: 1;
  color: var(--primary);
  fill: currentColor;
  flex: none;
  transition: transform 0.9s var(--ease-out);
}
.brand:hover .brand__mark { transform: rotate(45deg); }
.brand__name {
  font-family: var(--font-sig);
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.4rem);
  line-height: 0.8;
  color: var(--primary);
  padding-block: 0.16em;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.55em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: -0.01em;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), background 0.4s var(--ease-out);
  will-change: transform;
}
.btn:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn .btn__arrow { transition: transform 0.5s var(--ease-out); }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--primary);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--primary); transform: translateY(-2px); }

.btn--lg { padding: 1.05em 1.9em; font-size: var(--step-1); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.7rem, 0.4rem + 1vw, 1.1rem) var(--pad-x);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, border-color 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: oklch(0.986 0.005 255 / 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line-soft);
}
/* Over the dark hero (before the nav sticks): light controls */
.nav:not(.is-stuck) .brand,
.nav:not(.is-stuck) .brand__mark,
.nav:not(.is-stuck) .brand__name { color: var(--bg); }
.nav:not(.is-stuck) .nav__links a:not(.btn) { color: oklch(0.88 0.025 255); }
.nav:not(.is-stuck) .nav__links a:not(.btn):hover { color: #fff; }
.nav:not(.is-stuck) .nav__cta .btn { --btn-bg: var(--bg); --btn-fg: var(--ink); box-shadow: none; }
.nav:not(.is-stuck) .nav__cta .btn:hover { --btn-bg: var(--accent); --btn-fg: #fff; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.6vw, 2.4rem);
  list-style: none;
}
.nav__links a:not(.btn) {
  font-family: var(--font-mono);
  font-size: calc(var(--step--1) - 0.02rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
@media (max-width: 860px) {
  .nav__links li:not(.nav__cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(7rem, 6rem + 6vw, 10rem) var(--section-y);
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
}
/* Orb (React Bits) — a full glowing sphere, right of the headline */
.hero__orb {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(-8%, -2vw, 3%);
  width: min(94vh, 680px);
  max-width: 116%;
  aspect-ratio: 1;
  translate: 0 -50%;
  pointer-events: none;
}
.hero__orb canvas { display: block; }
@media (max-width: 860px) {
  .hero__orb {
    top: clamp(0.5rem, -5rem + 24vw, 7rem);
    right: 50%;
    translate: 50% 0;
    width: min(96vw, 540px);
    opacity: 0.9;
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(102deg, oklch(0.18 0.045 262 / 0.95) 0%, oklch(0.18 0.045 262 / 0.72) 36%, oklch(0.18 0.045 262 / 0.34) 64%, oklch(0.18 0.045 262 / 0.08) 100%),
    linear-gradient(180deg, oklch(0.16 0.03 262 / 0.55), transparent 22%),
    linear-gradient(0deg, var(--bg) -3%, transparent 18%);
}
.hero .wrap { position: relative; z-index: 2; }

/* Hero sits on a dark background — light type + light-tuned controls.
   Compound selectors (.hero .hero__x) outrank the base light-theme rules. */
.hero .hero__badge { background: oklch(1 0 0 / 0.12); box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.24); color: #fff; }
.hero .hero__badge b { color: #fff; }
.hero .hero__badge .dot { box-shadow: 0 0 0 4px oklch(1 0 0 / 0.22); }
.hero .hero__title { color: #fff; }
.hero .hero__title .em { color: #fff; }
.hero .hero__lead { color: #fff; }
.hero .hero__price { color: #fff; }
.hero .hero__price b { color: #fff; }
.hero .hero__note { color: #fff; }
.hero .btn { --btn-bg: var(--bg); --btn-fg: var(--ink); }
.hero .btn:hover { --btn-bg: var(--accent); --btn-fg: #fff; }
.hero .btn--ghost { --btn-bg: transparent; --btn-fg: var(--bg); box-shadow: inset 0 0 0 1.5px oklch(1 0 0 / 0.32); }
.hero .btn--ghost:hover { background: oklch(1 0 0 / 0.08); box-shadow: inset 0 0 0 1.5px oklch(1 0 0 / 0.55); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 1em 0.5em 0.7em;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: var(--r-pill);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: clamp(1.4rem, 1rem + 1.4vw, 2rem);
}
.hero__badge b { color: var(--ink); font-weight: 600; }
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero__title {
  font-size: var(--step-5);
  max-width: 15ch;
  letter-spacing: -0.035em;
}
.hero__title .em {
  font-family: var(--font-sig);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0;
  padding-right: 0.06em;
}
.hero__lead {
  margin-top: clamp(1.3rem, 1rem + 1.4vw, 2rem);
  max-width: 52ch;
  color: var(--muted);
  font-size: var(--step-1);
  line-height: 1.55;
}
.hero__price {
  margin-top: 1.4rem;
  font-size: var(--step-1);
  font-weight: 500;
  color: var(--ink);
}
.hero__price b { color: var(--primary); font-weight: 700; }
.hero__actions {
  margin-top: clamp(1.8rem, 1.3rem + 1.8vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.hero__note {
  margin-top: 1.2rem;
  font-size: var(--step--1);
  color: var(--muted);
}

/* ---------- Marquee (quiet) ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: clamp(0.9rem, 0.7rem + 0.8vw, 1.4rem);
  overflow: hidden;
  background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 0.72rem + 0.5vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  white-space: nowrap;
}
.marquee__track span::before {
  content: "✦";
  color: var(--accent);
  font-size: 0.7em;
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--surface); border-block: 1px solid var(--line); }
.section__head {
  max-width: 46ch;
  margin-bottom: clamp(2.6rem, 1.8rem + 3vw, 4.5rem);
}
.section__tag {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1rem;
}
.section__title { font-size: var(--step-3); }
.section__title .sig {
  font-family: var(--font-sig);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0;
}
.section__intro { margin-top: 1.1rem; color: var(--muted); font-size: var(--step-1); }

/* ---------- What we do ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.6rem);
}
.offer {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s;
  will-change: transform;
}
/* Cursor spotlight — follows the pointer, lit only on hover */
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(260px 260px at var(--mx, 50%) var(--my, -20%), oklch(0.55 0.14 255 / 0.14), transparent 72%);
  transition: opacity 0.5s var(--ease-out);
}
.section--tint .offer { background: var(--bg); }
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: transparent; }
.offer:hover::before { opacity: 1; }
.offer__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.offer__icon svg { width: 24px; height: 24px; }
.offer h3 { font-size: var(--step-2); margin-bottom: 0.5rem; }
.offer p { color: var(--muted); font-size: var(--step-0); }
.offer__list {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.offer__list span {
  font-family: var(--font-mono);
  font-size: calc(var(--step--1) - 0.06rem);
  letter-spacing: 0.01em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.4em 0.8em;
  border-radius: var(--r-sm);
}
.section--tint .offer__list span { background: var(--surface-2); }

/* ---------- Process (the "1 day") ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.4rem, 1rem + 2vw, 2.4rem);
}
.step { position: relative; padding-top: 2.6rem; }
.step__num {
  position: absolute;
  top: 0; left: 0;
  font-size: var(--step-1);
  font-family: var(--font-sig);
  color: var(--primary);
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: 0.55rem; left: 3.2rem; right: 0;
  height: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { font-size: var(--step-2); margin-bottom: 0.55rem; }
.step p { color: var(--muted); font-size: var(--step-0); max-width: 34ch; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  align-items: stretch;
}
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; } }

.plan {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 1.3rem + 2vw, 3rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
}
.plan__glow {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  top: -20%; right: -12%;
  background: radial-gradient(circle, oklch(0.55 0.14 255 / 0.55), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}
.plan > * { position: relative; z-index: 1; }
.plan__label { font-size: var(--step--1); font-weight: 600; color: oklch(0.8 0.08 255); letter-spacing: 0.02em; }
.plan__price { margin-top: 0.6rem; display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.plan__amount { font-family: var(--font-display); font-size: var(--step-5); font-weight: 700; letter-spacing: -0.04em; line-height: 0.9; font-variant-numeric: tabular-nums; }
.plan__amount small { font-size: 0.42em; font-weight: 600; color: oklch(0.8 0.08 255); }
.plan__per { font-family: var(--font-mono); color: oklch(0.78 0.05 255); font-size: var(--step--1); letter-spacing: 0.02em; }
.plan__desc { margin-top: 1.1rem; color: oklch(0.86 0.03 255); max-width: 34ch; }
.plan__features { margin-top: 1.6rem; display: grid; gap: 0.75rem; list-style: none; }
.plan__features li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--step-0); color: var(--bg); }
.plan__features svg { width: 20px; height: 20px; flex: none; margin-top: 0.15em; color: oklch(0.72 0.13 255); }
.plan__cta { margin-top: auto; padding-top: 1.8rem; }
.plan__cta .btn { --btn-bg: var(--bg); --btn-fg: var(--ink); width: 100%; justify-content: center; }
.plan__cta .btn:hover { --btn-bg: var(--accent); --btn-fg: var(--on-primary); }

.pricing__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.7rem + 1vw, 1.6rem);
}
.addon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 1rem + 1vw, 1.8rem);
  flex: 1;
}
.addon h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.addon p { color: var(--muted); font-size: var(--step-0); }
.addon strong { color: var(--primary); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem) 0;
  text-align: left;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--primary); }
.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  position: relative;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute;
  background: var(--primary);
  transition: transform 0.4s var(--ease-out), background 0.4s;
}
.faq__icon::before { width: 11px; height: 1.7px; }
.faq__icon::after { width: 1.7px; height: 11px; }
.faq__item[open] .faq__icon { background: var(--primary); border-color: var(--primary); transform: rotate(90deg); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--on-primary); }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a {
  padding: 0 0 clamp(1.2rem, 1rem + 0.8vw, 1.7rem);
  color: var(--muted);
  font-size: var(--step-0);
  max-width: 62ch;
}
/* native <details> marker off */
.faq__q { list-style: none; }
.faq__q::-webkit-details-marker { display: none; }

/* ---------- CTA ---------- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta__inner {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 1.8rem + 4vw, 5rem) clamp(1.4rem, 0.8rem + 4vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.cta__glow {
  position: absolute; z-index: 0;
  width: 60%; aspect-ratio: 1;
  left: 50%; top: 8%; translate: -50% 0;
  background: radial-gradient(circle, oklch(0.55 0.14 255 / 0.45), transparent 66%);
  filter: blur(24px); pointer-events: none;
}
.cta__inner > * { position: relative; z-index: 1; }
.cta__sig { font-family: var(--font-sig); font-size: var(--step-3); color: oklch(0.78 0.1 255); }
.cta__title { font-size: var(--step-4); color: var(--bg); max-width: 18ch; margin-inline: auto; margin-top: 0.3rem; }
.cta__lead { margin-top: 1.2rem; color: oklch(0.86 0.03 255); font-size: var(--step-1); max-width: 46ch; margin-inline: auto; }
.cta__actions { margin-top: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta__inner .btn { --btn-bg: var(--bg); --btn-fg: var(--ink); }
.cta__inner .btn:hover { --btn-bg: var(--accent); --btn-fg: var(--on-primary); }
.cta__inner .btn--ghost { --btn-bg: transparent; --btn-fg: var(--bg); box-shadow: inset 0 0 0 1.5px oklch(0.99 0 0 / 0.25); }
.cta__inner .btn--ghost:hover { --btn-fg: var(--bg); background: oklch(0.99 0 0 / 0.08); box-shadow: inset 0 0 0 1.5px oklch(0.99 0 0 / 0.5); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 2.5rem + 5vw, 6rem);
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  background: var(--surface);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 2rem + 5vw, 6rem);
}
.footer__pitch { max-width: 32ch; }
.footer__pitch p { color: var(--muted); margin-top: 1rem; }
.footer__cols { display: flex; gap: clamp(2.5rem, 1rem + 6vw, 6rem); flex-wrap: wrap; }
.footer__col h4 { font-size: var(--step--1); color: var(--muted); font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.02em; }
.footer__col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer__col a { display: inline-block; font-size: var(--step-0); font-weight: 500; color: var(--ink); transition: color 0.3s, transform 0.3s var(--ease-out); }
.footer__col a:hover { color: var(--primary); transform: translateX(0.35rem); }
.footer__wordmark {
  font-family: var(--font-sig);
  font-size: clamp(3.5rem, 1.5rem + 14vw, 12rem);
  line-height: 0.9;
  color: var(--primary);
  text-align: center;
  padding-block: 0.14em 0.24em;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, oklch(0 0 0 / 0.28));
  mask-image: linear-gradient(180deg, #000 55%, oklch(0 0 0 / 0.28));
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: calc(var(--step--1) - 0.04rem);
  letter-spacing: 0.01em;
}
.footer__bottom a:hover { color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: opacity 0.3s; }
  .marquee__track { animation: none !important; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}
