/* ============================================================
   IconFlow — Direction "Dynamique" (Tribu-style, lumineux)
   Bright paper bg, massive grotesk type, electric green,
   black/green color-block rhythm, tickers & video tiles.
   Reuses the same JS hooks as the nocturne build (app.js).
   ============================================================ */

:root {
  --paper: #F3F1E7;
  --paper-2: #ECE9DB;
  --card: #FBFAF4;
  --ink: #0C0C0A;
  --ink-soft: #2A2A26;
  --muted: #6A685E;
  --accent: #12C95E;       /* electric green */
  --accent-ink: #06140B;
  --line: rgba(12, 12, 10, 0.16);
  --line-2: rgba(12, 12, 10, 0.30);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-sans: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

/* Tweakable hero mode override sets these on <html data-hero> */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-ink);
  padding: 7px 13px; border-radius: 999px; font-weight: 700;
}
.eyebrow.bare { background: none; color: var(--muted); padding: 0; }
.eyebrow.bare::before { content: "\25CF"; color: var(--accent); font-size: 9px; }

.display {
  font-family: var(--font-display);
  font-weight: 800; line-height: 0.92; letter-spacing: -0.035em;
  margin: 0; text-wrap: balance;
}
.display em { font-style: normal; color: var(--accent); }

h2.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 6.4vw, 84px); line-height: 0.92; letter-spacing: -0.035em;
  margin: 0; text-transform: uppercase; text-wrap: balance;
}
h2.section-title em { font-style: normal; color: var(--accent); }
.lead { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 21px); max-width: 56ch; text-wrap: pretty; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 800; font-size: 16px; letter-spacing: -0.01em;
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-arrow svg { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow svg { transform: translate(3px, -3px); }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; transition: background 0.3s, border-color 0.3s; border-bottom: 2px solid transparent; }
.nav.scrolled { background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(12px); border-bottom-color: var(--ink); }
.nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em; font-size: 22px; text-transform: uppercase; }
.brand .mark { width: 36px; height: 36px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; overflow: hidden; }
.brand .mark img { width: 84%; }
.brand i { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-family: var(--font-sans); font-weight: 700; font-size: 15px; color: var(--ink); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2.5px; background: var(--accent); transition: width 0.25s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 900px) { .nav-links { display: none; } .nav-inner { gap: 12px; } }
@media (max-width: 560px) {
  .nav-inner { height: 64px; }
  .nav .btn-accent { padding: 11px 15px; font-size: 13.5px; gap: 6px; }
  .nav .btn-accent .btn-arrow { display: none; }
  .brand { font-size: 18px; gap: 9px; }
  .brand .mark { width: 31px; height: 31px; }
  .hero .eyebrow { white-space: nowrap; letter-spacing: 0.1em; font-size: 11px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 132px; padding-bottom: 40px; overflow: hidden; }
.hero-top { display: grid; grid-template-columns: 1.5fr 0.5fr; gap: 30px; align-items: start; }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 7.6vw, 104px); line-height: 0.88; letter-spacing: -0.045em; margin: 18px 0 0; text-transform: uppercase; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.06em; height: 0.10em; background: var(--accent); z-index: -1; }
.hero-sub { display: grid; gap: 22px; }
.hero .lead { margin: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars span { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--paper); margin-left: -12px; background-size: cover; background-position: center; }
.avatars span:first-child { margin-left: 0; }
.rate b { font-weight: 800; }
.rate .stars { color: var(--accent); letter-spacing: 1px; }
.rate small { color: var(--muted); display: block; font-size: 13px; }

/* spinning stamp */
.stamp { position: relative; width: clamp(104px, 11vw, 140px); aspect-ratio: 1; justify-self: end; align-self: start; margin-top: 6px; }
.stamp svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.stamp .dot { position: absolute; inset: 0; margin: auto; width: 34%; height: 34%; background: var(--accent); border-radius: 50%; display: grid; place-items: center; }
.stamp .dot svg { width: 46%; height: 46%; animation: none; color: var(--accent-ink); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .stamp svg { animation: none; } }

/* hero video strip */
.hero-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 46px; }
.hero-strip .vt { aspect-ratio: 9/13; border-radius: var(--radius); border: 2px solid var(--ink); overflow: hidden; position: relative; background: var(--paper-2); transition: transform 0.3s var(--ease); }
.hero-strip .vt:nth-child(even) { transform: translateY(16px); }
.hero-strip .vt:hover { transform: translateY(-4px) scale(1.02); }
.hero-strip .vt .ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 12px, var(--card) 12px, var(--card) 24px); }
.hero-strip .vt .badge { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; background: var(--accent); color: var(--accent-ink); padding: 4px 8px; border-radius: 999px; font-weight: 700; }
.hero-strip .vt .play { position: absolute; inset: 0; margin: auto; z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; transition: transform 0.25s var(--ease), background 0.25s var(--ease); }
.hero-strip .vt .thumb { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-strip .vt[data-yt] { cursor: pointer; }
.hero-strip .vt[data-yt]:hover .play { transform: scale(1.1); background: var(--accent); color: var(--accent-ink); }
.hero-strip .vt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
@media (max-width: 900px) { .hero-top { grid-template-columns: 1fr; } .stamp { justify-self: start; } .hero-strip { grid-template-columns: repeat(3, 1fr); } .hero-strip .vt:nth-child(n+4) { display: none; } }

/* ---------- Ticker ---------- */
.ticker { background: var(--ink); color: var(--paper); padding: 16px 0; overflow: hidden; transform: rotate(-1.4deg) scale(1.03); margin: 40px 0; }
.ticker.green { background: var(--accent); color: var(--accent-ink); transform: rotate(1.4deg) scale(1.03); }
.ticker .track { display: flex; gap: 0; width: max-content; animation: tick 26s linear infinite; }
.ticker:hover .track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker .track { animation: none; } }
.ticker .chip { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px, 2.4vw, 30px); text-transform: uppercase; letter-spacing: -0.02em; display: inline-flex; align-items: center; padding: 0 22px; white-space: nowrap; }
.ticker .chip::after { content: "\2726"; color: currentColor; opacity: 0.7; margin-left: 22px; font-size: 0.7em; }

/* ---------- Section scaffold ---------- */
section { position: relative; }
.section-pad { padding-block: clamp(70px, 11vh, 140px); }
.section-head { max-width: 820px; margin-bottom: clamp(36px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 22px; }

/* ---------- Stats (green block) ---------- */
.stats { background: var(--accent); color: var(--accent-ink); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 40px); border-left: 2px solid var(--accent-ink); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(54px, 8vw, 110px); line-height: 0.9; letter-spacing: -0.04em; }
.stat .lbl { margin-top: 14px; font-size: 16px; font-weight: 600; max-width: 26ch; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr; } .stat { border-left: none; border-top: 2px solid var(--accent-ink); } .stat:first-child { border-top: none; } }

/* ---------- Pain cards ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pain-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column; min-height: 250px; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s; }
.pain-card:hover { transform: translateY(-6px); background: var(--ink); color: var(--paper); }
.pain-card:hover .pain-icon { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.pain-card:hover .tag { border-color: rgba(255,255,255,0.3); color: var(--paper); }
.pain-num { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--accent); }
.pain-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--accent); color: var(--accent-ink); border: 2px solid var(--ink); display: grid; place-items: center; margin: 20px 0 22px; transition: all 0.25s; }
.pain-icon svg { width: 26px; height: 26px; }
.pain-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 23px; line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 12px; }
.pain-card p { font-size: 15.5px; margin: 0; color: inherit; opacity: 0.9; }
.pain-tags { margin-top: auto; padding-top: 20px; display: flex; gap: 7px; flex-wrap: wrap; }
.tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; border: 1.5px solid var(--line-2); border-radius: 999px; padding: 5px 10px; transition: all 0.25s; }
@media (max-width: 980px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } .pain-card { min-height: 0; } }

/* ---------- Portfolio ---------- */
.portfolio-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.creatives { margin-top: clamp(34px, 5vw, 52px); display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.crea { position: relative; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--ink); aspect-ratio: 9/16; background: var(--paper-2); transition: transform 0.25s var(--ease); cursor: pointer; }
.crea:hover { transform: translateY(-6px) rotate(-1deg); }
.crea.sq { aspect-ratio: 1/1; }
.crea .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 12px, var(--card) 12px, var(--card) 24px); }
.crea .ph svg { width: 30px; height: 30px; opacity: 0.7; }
.crea .ph span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.crea .badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: var(--accent-ink); border-radius: 999px; padding: 5px 9px; font-weight: 700; }
.crea .play { position: absolute; inset: 0; margin: auto; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; transform: scale(0.85); opacity: 0; transition: all 0.25s var(--ease); }
.crea:hover .play { transform: scale(1); opacity: 1; }
.crea[data-yt] .play { opacity: 0.96; transform: none; }
.crea[data-yt]:hover .play { transform: scale(1.08); background: var(--accent); color: var(--accent-ink); }
.crea .thumb { position: absolute; inset: 0; background-size: cover; background-position: center; }
.crea iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
@media (max-width: 900px) { .creatives { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .creatives { grid-template-columns: repeat(2, 1fr); } }
/* ---------- Process (ink block) ---------- */
.process { background: var(--ink); color: var(--paper); }
.process .eyebrow.bare { color: rgba(255,255,255,0.6); }
.process h2.section-title { color: var(--paper); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.steps-rail { display: flex; flex-direction: column; }
.step-btn { text-align: left; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.5); font-family: var(--font-sans); padding: 22px 0; border-top: 2px solid rgba(255,255,255,0.16); display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; transition: color 0.2s; }
.step-btn:first-child { border-top: none; }
.step-btn .si { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.step-btn .st { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.5vw, 30px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; transition: color 0.2s; }
.step-btn .chev { opacity: 0; transform: translateX(-6px); transition: all 0.2s var(--ease); }
.step-btn.active { color: var(--paper); }
.step-btn.active .st { color: var(--accent); }
.step-btn.active .chev { opacity: 1; transform: none; color: var(--accent); }
.step-btn:hover .st { color: var(--paper); }
.step-panel { background: var(--accent); color: var(--accent-ink); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); position: sticky; top: 100px; }
.step-panel .pc-num { font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.step-panel h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 40px); line-height: 0.96; letter-spacing: -0.03em; text-transform: uppercase; margin: 14px 0 16px; }
.step-panel p { margin: 0 0 24px; font-weight: 500; }
.step-panel ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.step-panel li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.step-panel li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.step-progress { display: flex; gap: 6px; }
.step-progress i { height: 5px; flex: 1; border-radius: 99px; background: rgba(6,20,11,0.2); transition: background 0.3s; }
.step-progress i.on { background: var(--accent-ink); }
@media (max-width: 820px) { .process-grid { grid-template-columns: 1fr; } .step-panel { position: relative; top: 0; } }

/* ---------- Compare ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(34px, 5vw, 52px); }
.compare-col { border-radius: var(--radius-lg); border: 2px solid var(--ink); padding: clamp(26px, 3.4vw, 40px); background: var(--card); }
.compare-col.us { background: var(--ink); color: var(--paper); }
.compare-col h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); margin: 4px 0 0; letter-spacing: -0.03em; text-transform: uppercase; }
.compare-col .ch-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.compare-col.us .ch-sub { color: var(--accent); }
.compare-col ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 15px; }
.compare-col li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.35; font-weight: 500; }
.compare-col li .ico { width: 23px; height: 23px; flex: none; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.compare-col.them li .ico { background: rgba(12,12,10,0.10); color: var(--ink); }
.compare-col.them li { color: var(--muted); }
.compare-col.us li .ico { background: var(--accent); color: var(--accent-ink); }
.compare-col li .ico svg { width: 13px; height: 13px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: clamp(34px, 5vw, 52px); }
.testi { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 9/14; border: 2px solid var(--ink); background: var(--paper-2); cursor: pointer; }
.testi iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.testi .thumb { position: absolute; inset: 0; background-size: cover; background-position: center; }
.testi .ov { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 14px; background: linear-gradient(180deg, rgba(0,0,0,0.12), transparent 32%, rgba(0,0,0,0.6)); transition: opacity 0.3s; }
.testi .ov .tag2 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); border-radius: 999px; padding: 5px 9px; align-self: flex-start; font-weight: 700; }
.testi .pbig { align-self: center; margin: auto; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; transition: transform 0.25s var(--ease); }
.testi:hover .pbig { transform: scale(1.1); }
.testi .who { color: #fff; }
.testi .who b { display: block; font-size: 15px; font-weight: 800; }
.testi .who span { font-size: 12px; opacity: 0.85; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 2vw, 23px); letter-spacing: -0.02em; text-transform: uppercase; padding: 24px 0; display: flex; gap: 20px; align-items: center; justify-content: space-between; }
.faq-q .pm { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; transition: all 0.25s var(--ease); }
.faq-item.open .pm { background: var(--ink); color: var(--paper); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--ink-soft); margin: 0 0 24px; max-width: 60ch; font-weight: 500; }
.faq-aside { position: sticky; top: 100px; }
.faq-card { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: 34px; }
.faq-card .av { display: flex; margin-bottom: 18px; }
.faq-card .av span { width: 46px; height: 46px; border-radius: 50%; margin-left: -14px; border: 2.5px solid var(--ink); background-size: cover; }
.faq-card .av span:first-child { margin-left: 0; }
.faq-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; text-transform: uppercase; margin: 0 0 8px; }
.faq-card p { color: rgba(255,255,255,0.7); margin: 0 0 22px; font-size: 15.5px; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } .faq-aside { position: relative; top: 0; order: -1; } }

/* ---------- Final CTA (green block) ---------- */
.cta { background: var(--accent); color: var(--accent-ink); border-radius: var(--radius-lg); padding: clamp(46px, 8vw, 104px) var(--gutter); text-align: center; position: relative; overflow: hidden; }
.cta .eyebrow { background: var(--accent-ink); color: var(--accent); }
.cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 7.4vw, 100px); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; margin: 22px auto 0; max-width: 14ch; }
.cta p { margin: 22px auto 0; max-width: 46ch; font-weight: 600; }
.cta .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta .btn-primary { background: var(--accent-ink); color: var(--accent); }
.cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.cta .mini { margin-top: 24px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--paper); margin-top: clamp(60px, 9vw, 120px); padding-block: clamp(50px, 7vw, 80px) 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .brand { color: var(--paper); }
.foot-brand .brand .mark { background: var(--accent); }
.foot-brand p { color: rgba(255,255,255,0.65); max-width: 34ch; margin: 18px 0 0; font-size: 15.5px; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 18px; }
.foot-col a { display: block; color: var(--paper); margin-bottom: 12px; font-size: 15px; opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.foot-col a:hover { color: var(--accent); opacity: 1; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(40px, 6vw, 60px); padding-top: 24px; border-top: 2px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.6); font-size: 13.5px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.22); display: grid; place-items: center; color: var(--paper); transition: all 0.2s var(--ease); }
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.socials svg { width: 16px; height: 16px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* ---------- Reveal ---------- */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.armed { opacity: 0; transform: translateY(24px); }
.reveal.armed.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.07s; }
.reveal[data-d="2"] { transition-delay: 0.14s; }
.reveal[data-d="3"] { transition-delay: 0.21s; }
.reveal[data-d="4"] { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.armed { opacity: 1; transform: none; transition: none; } }

/* step content micro-transition */
.step-panel > * { animation: stepIn 0.4s var(--ease) both; }
@keyframes stepIn { from { opacity: 0.3; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step-panel > * { animation: none; } }
