/* ============================================================
   Hunter — GrowthArk sourcing landing page
   Design system translated from "Sourcing v4 Mozart" prototype.
   Palette: dark "Ink" theme with lime accent (#C9F24E).
   ============================================================ */

:root {
  /* "Bone" warm-paper theme with the coral brand accent. */
  --ink: #F4F1EA;
  --ink2: #ECE8DE;
  --panel: #FFFFFF;
  --panel2: #F7F4ED;
  --line: rgba(0, 0, 0, 0.10);
  --text: #16140F;
  --muted: #5E5C54;
  --muted2: #97948B;
  --accent: #FF6B57;
  --accent-deep: #E04A36;

  --maxw: 1240px;
  --gutter: 48px;
  --section-pad: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #0A0A0B; }

a { color: inherit; text-decoration: none; }

.page { position: relative; overflow: hidden; background: var(--ink); }

/* ---------- Keyframes ---------- */
@keyframes glowpulse { 0%, 100% { opacity: .5; } 50% { opacity: .85; } }
@keyframes barrise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-in { animation: fadeUp .7s cubic-bezier(.2, .7, .2, 1) both; }

/* ---------- Shared type helpers ---------- */
.serif {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.serif-inline {
  font-family: 'Newsreader';
  font-style: italic;
  color: var(--accent);
}
.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.container-narrow { max-width: 900px; }

.section { border-top: 1px solid var(--line); }
.section-alt { background: var(--ink2); }

.eyebrow {
  font-family: 'Geist Mono';
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 22px;
}
.eyebrow-lg { margin-bottom: 40px; }
.eyebrow-wide { letter-spacing: 0.18em; }

h1 {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

h2 {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.h2-sm {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h3 {
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 18px;
}

.mw-18 { max-width: 18ch; }
.mw-20 { max-width: 20ch; }

.lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.section-lede {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: filter .18s ease, transform .18s ease;
}
.btn-primary {
  padding: 14px 24px;
  background: var(--accent);
  color: #0A0A0B;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-nav {
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 17px;
  background: var(--accent);
  color: #0A0A0B;
}
.btn-nav:hover { filter: brightness(1.08); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 15.5px; }

.link-ghost {
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}
.link-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--ink) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-name {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  color: var(--muted);
}
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 84px var(--gutter) 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-glow-wrap {
  position: absolute;
  top: -120px;
  right: -40px;
  width: 680px;
  height: 520px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 520px;
  height: 340px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 20%, transparent), transparent 66%);
  filter: blur(40px);
  animation: glowpulse 7s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 56px;
  align-items: center;
}
/* On desktop, give the film column more room so it's easily viewable. */
@media (min-width: 901px) {
  .hero-grid { grid-template-columns: 1fr 1.3fr; }
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: 'Geist Mono';
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.eyebrow-rule { width: 18px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 15ch; }
.hero-lede {
  margin-top: 26px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 54ch;
}
.hero-ctas {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Hero film (click-to-play) ---------- */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 30px 80px -40px color-mix(in srgb, var(--text) 34%, transparent);
}
.hero-video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--panel);
}
/* Full-cover overlay: click anywhere on the poster to play. Hidden once playing. */
.hero-video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  cursor: pointer;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  transition: background .2s ease;
}
.hero-video-play:hover { background: color-mix(in srgb, var(--ink) 15%, transparent); }
.hero-video.is-playing .hero-video-play { display: none; }
.hvp-icon {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #0A0A0B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* optically centre the ▶ glyph */
  font-size: 22px;
  box-shadow: 0 14px 34px -12px color-mix(in srgb, var(--accent) 60%, transparent);
  transition: filter .18s ease, transform .18s ease;
}
.hero-video-play:hover .hvp-icon { filter: brightness(1.08); transform: scale(1.04); }
.hvp-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.hvp-sub {
  margin-top: 3px;
  font-family: 'Geist Mono';
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- Split head (meet) ---------- */
.split-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  align-items: start;
}

/* ---------- Hairline grid ---------- */
.hairline-grid {
  margin-top: 44px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.cols-250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.cols-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cols-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.hl-cell { background: var(--panel); padding: 30px 28px; }
.hl-cell h3 { margin-top: 14px; }
.hl-cell p { margin-top: 9px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.tag {
  font-family: 'Geist Mono';
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ---------- State of AI stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.big-stat {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: clamp(64px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.big-stat .pct { font-size: 0.42em; }
.big-stat-copy {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34ch;
}
.big-stat-copy strong { color: var(--text); font-weight: 600; }
.cite {
  margin-top: 10px;
  display: inline-block;
  font-family: 'Geist Mono';
  font-size: 11px;
  color: var(--muted2);
  border-bottom: 1px solid var(--line);
  transition: color .18s ease, border-color .18s ease;
}
.cite:hover { color: var(--accent); border-color: var(--accent); }
.fail-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fail-list div {
  display: flex;
  gap: 11px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.fail-list .idx { color: var(--muted2); }
.fail-close {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* ---------- Card grid ---------- */
.card-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}
.section .card-grid.cols-300 { margin-top: 44px; }
.card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
.card h3 { margin-top: 16px; }
.card p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.card-stat {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
}

/* ---------- Steps timeline ---------- */
.steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  align-items: start;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}
.step-final {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--panel));
}
.step-num {
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-deep);
}
.step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.step-title {
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.step-time { font-family: 'Geist Mono'; font-size: 11px; color: var(--muted2); }
.step p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 74ch;
}

/* ---------- Callout ---------- */
.callout {
  margin-top: 30px;
  background: var(--ink2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
}
.callout-badge {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Schibsted Grotesk';
  font-weight: 800;
  font-size: 17px;
  color: #0A0A0B;
}
.callout p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--muted);
}
.callout strong { color: var(--text); font-weight: 600; }

/* ---------- The standard ---------- */
.rule-head { display: flex; align-items: center; gap: 12px; }
.check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}
.rule-label {
  font-family: 'Geist Mono';
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.rule-copy {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.rule-copy strong { color: var(--text); font-weight: 600; }
.standard-close {
  margin: 40px auto 0;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.45;
  color: var(--text);
  max-width: 48ch;
}

/* ---------- Four levels ---------- */
.levels-grid { margin-top: 44px; border-radius: 18px; }
.level { padding: 32px 28px; }
.level-hot { background: color-mix(in srgb, var(--accent) 7%, var(--panel)); }
.level h3 {
  margin-top: 14px;
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 21px;
}
.level p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.level-tag {
  font-family: 'Geist Mono';
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted2);
}
.level-note {
  margin-top: 18px;
  font-family: 'Geist Mono';
  font-size: 10.5px;
  color: var(--muted2);
}

/* ---------- Proof ---------- */
.proof-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.terminal {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  overflow: hidden;
  font-family: 'Geist Mono';
}
.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--muted);
}
.terminal-status { display: flex; align-items: center; gap: 7px; font-size: 11px; }
.terminal-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.terminal-body {
  padding: 22px;
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--muted);
}
.t-row { display: flex; gap: 12px; }
.t-key { width: 72px; flex: none; color: var(--muted2); }
.t-key.accent { color: var(--accent); }
.t-val { flex: 1; }
.t-strong { color: var(--text); }
.t-sep { margin: 12px 0; border-top: 1px dashed var(--line); }
.t-foot { display: flex; gap: 16px; flex-wrap: wrap; }
.t-foot b { color: var(--text); font-weight: 500; }
.t-foot b.accent { color: var(--accent); }

/* ---------- Proof chart ---------- */
.chart-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
}
.chart-label { font-size: 13px; color: var(--muted); }
.chart-title {
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 15px;
  margin-top: 3px;
}
.chart {
  margin-top: 28px;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
  min-height: 200px;
  border-bottom: 1px solid var(--line);
}
.chart-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 9px;
}
.chart-num {
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.chart-num.muted { color: var(--muted); }
.bar {
  width: 100%;
  border-radius: 5px 5px 0 0;
  transform-origin: bottom;
}
.bar-agent { background: var(--accent); }
.bar-review { background: var(--accent); opacity: .6; }
.bar-manual { background: var(--accent-deep); opacity: .4; }
.chart-axis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.chart-axis div { text-align: center; font-size: 11px; color: var(--muted2); }

.pull-quote {
  margin: 52px auto 0;
  max-width: 24ch;
  text-align: center;
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  color: var(--text);
}
.quote-attr {
  margin-top: 18px;
  text-align: center;
  font-family: 'Geist Mono';
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Who Hunter is for ---------- */
.fit-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.fit-card { border-radius: 18px; padding: 32px 30px; }
.fit-good {
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  background: color-mix(in srgb, var(--accent) 5%, var(--panel));
}
.fit-bad {
  border: 1px solid var(--line);
  background: var(--panel);
}
.fit-tag {
  font-family: 'Geist Mono';
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted2);
  margin-bottom: 6px;
}
.fit-card h3 {
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 20px;
}
.fit-bad h3 { color: var(--muted); }
.fit-list { display: flex; flex-direction: column; gap: 14px; }
.fit-list div {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.fit-bad .fit-list div { color: var(--muted2); }
.fit-list strong { color: var(--text); font-weight: 600; }
.fit-mark { flex: none; }
.center-cta { margin-top: 36px; text-align: center; }

/* ---------- Pricing ---------- */
.pricing-wrap {
  margin-top: 44px;
  position: relative;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-stamp {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 2;
  transform: rotate(3deg);
  background: var(--accent);
  color: #0A0A0B;
  border-radius: 8px;
  padding: 8px 13px;
  font-family: 'Geist Mono';
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pricing-card {
  position: relative;
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px color-mix(in srgb, var(--accent) 40%, transparent);
}
.pricing-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 40%);
  pointer-events: none;
}
.pricing-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.pricing-col { padding: 30px 28px; border-right: 1px solid var(--line); }
.pricing-col:last-child { border-right: none; }
.pricing-tag {
  font-family: 'Geist Mono';
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
}
.pricing-col h3 { margin-top: 14px; }
.pricing-col p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.pricing-foot {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Geist Mono';
  font-size: 11.5px;
  color: var(--muted);
}
.pricing-note {
  margin: 34px auto 0;
  max-width: 58ch;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-title { margin-bottom: 40px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Schibsted Grotesk';
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .2s ease;
}
.faq-icon {
  flex: none;
  font-size: 22px;
  color: var(--muted);
  transition: transform .3s ease, color .2s ease;
  line-height: 1;
}
.faq-answer { overflow: hidden; height: 0; transition: height .35s cubic-bezier(.2, .7, .2, 1); }
.faq-answer p {
  padding: 0 0 26px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 72ch;
}
.faq-item[data-open] .faq-btn { color: var(--accent); }
.faq-item[data-open] .faq-icon { transform: rotate(45deg); color: var(--accent); }

/* ---------- Final CTA ---------- */
.final-cta {
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}
.final-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 104px var(--gutter);
  text-align: center;
}
.final-inner h2 {
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0 auto;
}
.final-inner p {
  margin: 22px auto 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
}
.final-btn { margin-top: 36px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--ink); }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand span { font-family: 'Schibsted Grotesk'; font-weight: 800; font-size: 14px; }
.footer-copy { font-family: 'Geist Mono'; font-size: 11.5px; color: var(--muted2); }
.footer-link {
  font-family: 'Geist Mono';
  font-size: 11.5px;
  color: var(--muted);
  transition: color .18s ease;
}
.footer-link:hover { color: var(--accent); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  background: var(--accent);
  color: #0A0A0B;
  border-radius: 100px;
  box-shadow: 0 14px 34px -12px color-mix(in srgb, var(--accent) 60%, transparent);
  transform: translateY(140%);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.mobile-cta.is-visible { transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --gutter: 28px; --section-pad: 64px; }
  .proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bar { transform: none !important; }
}
