/* ============================================================
   DAYLIGHT — AI in plain daylight
   paper / ink / cobalt / marigold · editorial grotesk
   ============================================================ */

:root {
  --paper: #fbf9f4;
  --paper-deep: #f3efe4;
  --ink: #1d1c1a;
  --ink-60: rgba(29, 28, 26, 0.62);
  --ink-40: rgba(29, 28, 26, 0.42);
  --ink-12: rgba(29, 28, 26, 0.12);
  --cobalt: #2547d0;
  --cobalt-deep: #1c38a8;
  --cobalt-soft: rgba(37, 71, 208, 0.08);
  --marigold: #f5a623;
  --marigold-soft: rgba(245, 166, 35, 0.14);
  --display: "Bricolage Grotesque", "Schibsted Grotesk", system-ui, sans-serif;
  --body: "Schibsted Grotesk", system-ui, sans-serif;
  --hand-font: "Caveat", cursive;
  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--marigold); color: var(--ink); }

a { color: inherit; }
h1, h2, h3 { font-family: var(--display); }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 6px;
}
section[id], #top { scroll-margin-top: 84px; }

.hand {
  font-family: var(--hand-font);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--cobalt);
  font-weight: 600;
}
.hand--marigold { color: var(--marigold); }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-spring), background 0.2s ease, color 0.2s ease;
  will-change: transform;
}
.btn--primary { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.btn--primary:hover { background: var(--cobalt-deep); border-color: var(--cobalt-deep); transform: translateY(-3px); box-shadow: 0 10px 24px -8px rgba(37, 71, 208, 0.55); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: 0 10px 22px -10px rgba(29, 28, 26, 0.4); background: var(--ink); color: var(--paper); }
.btn--big { font-size: clamp(1.15rem, 2.4vw, 1.5rem); padding: 1.1rem 2.4rem; }
.btn:active, .nav__cta:active { transform: translateY(0) scale(0.965); transition-duration: 0.12s; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem var(--pad);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-12);
}
.nav__brand {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  letter-spacing: 0.14em; text-decoration: none;
}
.nav__sun { width: 24px; height: 24px; flex: none; }
.nav__brand:hover .nav__sun { animation: sunspin 0.9s var(--ease-spring); }
@keyframes sunspin { to { transform: rotate(90deg); } }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; text-decoration: none; color: var(--ink-60);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--cobalt); transition: width 0.25s var(--ease-spring);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; color: var(--paper); background: var(--ink);
  padding: 0.55rem 1.15rem; border-radius: 999px;
  transition: background 0.2s ease, transform 0.25s var(--ease-spring);
}
.nav__cta:hover { background: var(--cobalt); transform: translateY(-2px); }
.nav__progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px; width: 100%;
  background: var(--cobalt);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* ============ CHAPTER RAIL ============ */
.rail {
  position: fixed;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.rail a {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.rail i {
  width: 9px; height: 9px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink-40);
  transition: all 0.3s var(--ease-spring);
  flex: none;
}
.rail span {
  font-size: 0.78rem; font-weight: 600; color: var(--ink);
  font-family: var(--display);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-spring);
  white-space: nowrap;
  background: var(--paper);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--ink-12);
}
.rail a:hover span { opacity: 1; transform: translateX(0); }
.rail a.is-active i { background: var(--cobalt); border-color: var(--cobalt); transform: scale(1.4); }
.rail a.is-active span { color: var(--cobalt); border-color: var(--cobalt-soft); }
/* the persistent label needs true margin space; below 1640px it would sit on copy */
@media (min-width: 1640px) {
  .rail a.is-active span { opacity: 1; transform: translateX(0); }
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 7.5rem var(--pad) 0;
  position: relative;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(3.2rem, 10.5vw, 8.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}
.hero__title em { font-style: normal; color: var(--cobalt); }
.reveal-line { display: block; overflow: visible; }
.hero__sub {
  max-width: 34em;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--ink-60);
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scribble-wrap { position: relative; display: inline-block; }
.scribble {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}
.scribble path {
  stroke: var(--marigold);
  stroke-width: 5;
  stroke-linecap: round;
  fill: none;
}
.scribble--underline {
  left: -2%; right: -2%; bottom: -0.12em;
  width: 104%; height: 0.22em;
}
.scribble--circle {
  left: -8%; top: -14%;
  width: 116%; height: 128%;
}
.scribble--circle path { stroke: var(--cobalt); stroke-width: 3.5; }

.hero__canvas-wrap {
  position: relative;
  flex: 1;
  min-height: 320px;
  max-height: 46vh;
  margin: 1.5rem calc(var(--pad) * -1) 0;
}
#spaghetti { width: 100%; height: 100%; display: block; }
.hero__note {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.hero__note--left { left: clamp(1rem, 6vw, 7rem); top: -0.5rem; }
.hero__note--right { right: clamp(1rem, 6vw, 7rem); top: -0.5rem; text-align: right; }
.hero__note--left .hand { transform: rotate(-2.5deg); }
.hero__note--right .hand { transform: rotate(2deg); }
.hand-arrow { width: 44px; height: 32px; margin-top: 1.4rem; }
.hand-arrow path { stroke: var(--cobalt); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.hero__note--right .hand-arrow path { stroke: var(--cobalt); }

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--ink-12);
  font-size: 0.85rem;
  color: var(--ink-40);
  font-weight: 500;
}
.hero__scrollhint { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__scrollhint svg { width: 13px; height: 17px; animation: hint-bob 2.2s ease-in-out infinite; }
@keyframes hint-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ============ STANCE ============ */
.stance {
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  background: var(--paper-deep);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad);
}
.stance__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.stance__line {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.stance__em { color: var(--cobalt); font-weight: 700; }
.stance__facts { list-style: none; display: grid; gap: 1.2rem; }
.stance__facts li {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--ink-12);
  padding-bottom: 1.1rem;
}
.stance__facts strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  min-width: 2ch;
}
.stance__facts span { color: var(--ink-60); font-size: 0.98rem; }

/* ============ SECTIONS ============ */
.section { padding: clamp(5rem, 10vw, 9rem) var(--pad); max-width: calc(var(--maxw) + 2 * 3.5rem); margin: 0 auto; }
.section__head { max-width: 46em; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--paper);
  background: var(--cobalt);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.section__title {
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
  text-wrap: balance;
}
.section__title-quiet { color: var(--ink-40); font-weight: 600; }
.section__lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-60); max-width: 38em; text-wrap: pretty; }
.section__head--dark .section__lede { color: rgba(251, 249, 244, 0.66); }
.section__head--dark .section__num { background: var(--marigold); color: var(--ink); }

/* ============ FLOW DIAGRAM ============ */
.flow {
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px -30px rgba(29, 28, 26, 0.25);
  overflow: hidden;
}
.flow__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--ink-12);
  background: var(--paper);
}
.flow__toggle {
  position: relative;
  display: inline-flex;
  background: var(--paper-deep);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
}
.flow__tbtn {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background: transparent;
  color: var(--ink-60);
  padding: 0.55rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease;
}
.flow__tbtn.is-active { color: #fff; }
.flow__thumb {
  position: absolute;
  z-index: 1;
  top: 4px; bottom: 4px; left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}
.flow__toggle.is-after .flow__thumb { transform: translateX(100%); background: var(--cobalt); }
.flow__total { text-align: right; }
.flow__total-label { display: block; font-size: 0.82rem; color: var(--ink-40); font-weight: 500; }
.flow__total-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.flow__total-num.is-after { color: var(--cobalt); }

.flow__stage {
  position: relative;
  height: clamp(430px, 52vw, 560px);
  background:
    radial-gradient(rgba(29,28,26,0.07) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.flow__edges { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow__edges path {
  fill: none;
  stroke: var(--ink-40);
  stroke-width: 2;
  stroke-dasharray: 6 7;
}
.flow__edges path.edge--ai { stroke: var(--cobalt); stroke-dasharray: none; stroke-width: 2.4; }

.fnode {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(128px, 16vw, 176px);
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 0.7rem 0.85rem 0.6rem;
  box-shadow: 0 6px 0 -2px rgba(29, 28, 26, 0.14);
  will-change: transform, opacity;
}
.fnode--ai { border-color: var(--cobalt); background: var(--cobalt); color: #fff; box-shadow: 0 6px 0 -2px rgba(37,71,208,0.35); }
.fnode--check { border-color: var(--marigold); border-width: 2px; background: #fffdf6; }
.fnode__who {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 0.25rem;
}
.fnode--ai .fnode__who { color: rgba(255,255,255,0.75); }
.fnode--check .fnode__who { color: #b57708; }
.fnode__title { font-family: var(--display); font-weight: 700; font-size: 0.92rem; line-height: 1.25; display: block; }
.fnode:hover { box-shadow: 0 12px 22px -8px rgba(29, 28, 26, 0.3); }
.fnode__time {
  display: inline-block;
  max-width: 100%;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--cobalt);
  background: var(--cobalt-soft);
  border-radius: 6px;
  padding: 0.08rem 0.45rem;
}
.fnode--ai .fnode__time { color: #fff; background: rgba(255,255,255,0.18); }
.fnode--check .fnode__time { color: #b57708; background: var(--marigold-soft); }

.flow__ghost {
  position: absolute;
  max-width: 15em;
  color: var(--cobalt);
  opacity: 0;
  pointer-events: none;
  transform: rotate(-2deg);
}
@media (max-width: 700px) { .flow__ghost { display: none; } }

.dot { display: inline-block; width: 11px; height: 11px; border-radius: 4px; margin-right: 0.45rem; vertical-align: -1px; border: 1.5px solid var(--ink); background: #fff; }
.dot--ai { background: var(--cobalt); border-color: var(--cobalt); }
.dot--check { background: #fffdf6; border-color: var(--marigold); border-width: 2px; }
.flow__legend {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.6rem 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-60);
  border-top: 1px solid var(--ink-12);
}
.flow__caveat {
  padding: 0.5rem 1.6rem 1.3rem;
  font-size: 0.9rem;
  color: var(--ink-60);
  max-width: 56em;
}

/* ============ CALCULATOR ============ */
.section--calc { position: relative; }
.calc {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px -30px rgba(29, 28, 26, 0.25);
}
.calc__controls { padding: clamp(1.6rem, 3.4vw, 3rem); display: grid; gap: 2rem; align-content: center; }
.calc__labelrow { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.7rem; }
.calc__labelrow label { font-weight: 600; font-size: 1rem; }
.calc__labelrow output {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cobalt);
  font-variant-numeric: tabular-nums;
  min-width: 3.2ch;
  text-align: right;
}
.calc__range-ends { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--ink-40); margin-top: 0.35rem; font-weight: 500; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 26px;
  background: transparent;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--cobalt) 0%, var(--cobalt) var(--fill, 50%), var(--ink-12) var(--fill, 50%));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--cobalt);
  margin-top: -9px;
  box-shadow: 0 2px 8px rgba(29,28,26,0.25);
  transition: transform 0.2s var(--ease-spring);
}
input[type="range"]:active::-webkit-slider-thumb,
input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.18); background: var(--marigold); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 3px; background: var(--ink-12); }
input[type="range"]::-moz-range-progress { height: 6px; border-radius: 3px; background: var(--cobalt); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--cobalt);
  box-shadow: 0 2px 8px rgba(29,28,26,0.25);
}

.calc__result {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.8rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.calc__result-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 0.8rem;
}
.calc__result-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.9rem;
}
.calc__dash { color: var(--marigold); padding: 0 0.18em; }
.calc__result-sub { font-size: 0.95rem; color: rgba(251,249,244,0.65); max-width: 30em; margin-bottom: 1.4rem; }
.calc__result-sub strong { color: var(--paper); }
.calc__hours {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--paper);
  border-top: 1px solid rgba(251,249,244,0.18);
  padding-top: 1.2rem;
  margin-bottom: 1.4rem;
}
.calc__hours span { color: var(--marigold); font-weight: 800; font-variant-numeric: tabular-nums; }
.calc__caveat {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(251,249,244,0.62);
  line-height: 1.5;
}
.calc__caveat svg { width: 18px; height: 18px; flex: none; color: var(--marigold); margin-top: 0.15rem; }
.calc__caveat em { color: var(--paper); font-style: italic; }

/* ============ TRUST LEDGER ============ */
.ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px -30px rgba(29, 28, 26, 0.25);
}
.ledger__col { padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.3rem, 2.4vw, 2.2rem); }
.ledger__col + .ledger__col { border-left: 1px solid var(--ink-12); }
.ledger__col h3 {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.ledger__mark { width: 14px; height: 14px; border-radius: 5px; flex: none; }
.ledger__mark--auto { background: var(--cobalt); }
.ledger__mark--hum { background: #fff; border: 2.5px solid var(--ink); }
.ledger__mark--nev { background: var(--marigold); }
.ledger__note {
  font-size: 0.88rem; color: var(--ink-40); font-weight: 500;
  margin-bottom: 1.6rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--ink-12);
}
.ledger__col ol { list-style: none; counter-reset: row; display: grid; gap: 1.15rem; }
.ledger__col li {
  counter-increment: row; display: grid; grid-template-columns: 1.6rem 1fr; column-gap: 0.35rem;
  padding: 0.35rem 0.5rem; margin: -0.35rem -0.5rem; border-radius: 10px;
  transition: background 0.2s ease, transform 0.25s var(--ease-spring);
}
.ledger__col li:hover { background: var(--cobalt-soft); transform: translateX(3px); }
.ledger__col--never li:hover { background: var(--marigold-soft); }
.ledger__col li::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  content: counter(row, decimal-leading-zero);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-40);
  padding-top: 0.3rem;
}
.ledger__col li strong { grid-column: 2; display: block; font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.ledger__col li span { grid-column: 2; display: block; font-size: 0.88rem; color: var(--ink-60); line-height: 1.45; }
.ledger__col--never { background: #fffaf0; }
.ledger__col--never li strong { color: var(--ink); }
.ledger__foot { text-align: right; margin-top: 1rem; padding-right: 0.6rem; }

/* ============ WON'T FIX ============ */
.wontfix {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  position: relative;
}
.wontfix__inner { max-width: var(--maxw); margin: 0 auto; }
.wontfix .section__title { color: var(--paper); }
.wontfix__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 4rem);
}
.wontfix__list li {
  display: flex;
  gap: 1.1rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(251, 249, 244, 0.16);
}
.wontfix__no {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--marigold);
  line-height: 1;
  flex: none;
  margin-top: 0.1rem;
}
.wontfix__list h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.wontfix__list p { color: rgba(251, 249, 244, 0.66); font-size: 0.98rem; }
.wontfix__kicker {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ============ PATH ============ */
.path { position: relative; display: grid; gap: clamp(2.5rem, 5vw, 4rem); padding-left: clamp(2.6rem, 5vw, 4rem); }
.path__line {
  position: absolute;
  left: calc(clamp(2.6rem, 5vw, 4rem) / 2 - 1px);
  top: 1.5rem; bottom: 1.5rem;
  width: 2px;
  background: var(--ink-12);
  border-radius: 2px;
  overflow: hidden;
}
.path__line span { display: block; width: 100%; height: 0%; background: var(--cobalt); }
.path__phase { position: relative; max-width: 46em; }
.path__dot {
  position: absolute;
  left: calc(clamp(2.6rem, 5vw, 4rem) * -1 + clamp(2.6rem, 5vw, 4rem) / 2 - 17px);
  top: 0.1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  z-index: 2;
}
.path__phase header { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.path__phase h3 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; }
.path__meta {
  font-family: var(--display); font-weight: 600; font-size: 0.92rem;
  color: var(--cobalt); background: var(--cobalt-soft);
  padding: 0.25rem 0.8rem; border-radius: 999px;
}
.path__phase > p { color: var(--ink-60); margin-bottom: 1.3rem; }
.path__phase h4 {
  font-family: var(--display); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-40);
  margin-bottom: 0.7rem;
}
.path__phase ul { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.3rem; }
.path__phase ul li {
  position: relative; padding-left: 1.6rem; font-size: 0.98rem;
}
.path__phase ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.52em;
  width: 0.85rem; height: 2.5px;
  background: var(--marigold); border-radius: 2px;
}
.path__exit {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-60);
  border-left: 3px solid var(--marigold);
  padding: 0.35rem 0 0.35rem 1rem;
  background: linear-gradient(to right, var(--marigold-soft), transparent 70%);
  border-radius: 0 8px 8px 0;
  max-width: 42em;
}

/* ============ CASES ============ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.case {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
}
.case:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -22px rgba(29, 28, 26, 0.35); }
.case__tag {
  align-self: flex-start;
  font-family: var(--display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--cobalt); background: var(--cobalt-soft);
  padding: 0.28rem 0.8rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.case h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.8rem; }
.case > p { font-size: 0.95rem; color: var(--ink-60); margin-bottom: 1.4rem; }
.case__stats {
  display: grid; grid-template-columns: repeat(3, auto);
  justify-content: space-between; gap: 0.8rem;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: 1rem 0;
  margin-bottom: 1.2rem;
}
.case__stats dt { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 0.2rem; }
.case__stats dd { font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.case__honest {
  margin-top: auto;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-60);
  background: var(--marigold-soft);
  border-left: 3px solid var(--marigold);
  padding: 0.8rem 1rem;
  border-radius: 0 10px 10px 0;
}
.case__honest strong { color: var(--ink); }

/* ============ FAQ ============ */
.section--faq { max-width: calc(880px + 2 * 3.5rem); }
.faq { display: grid; gap: 0; border-top: 1.5px solid var(--ink); }
.faq details { border-bottom: 1.5px solid var(--ink-12); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.3rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cobalt); }
.faq__plus {
  position: relative;
  width: 30px; height: 30px; flex: none;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-spring), background 0.25s ease, border-color 0.25s ease;
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease;
}
.faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq__plus { transform: rotate(135deg); background: var(--cobalt); border-color: var(--cobalt); }
.faq details[open] .faq__plus::before, .faq details[open] .faq__plus::after { background: #fff; }
.faq details p {
  padding: 0 0.3rem 1.6rem;
  max-width: 44em;
  color: var(--ink-60);
}
.faq details[open] summary { color: var(--cobalt); }

/* ============ CLOSER ============ */
.closer {
  padding: clamp(5rem, 11vw, 10rem) var(--pad);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 55% at 50% 110%, var(--marigold-soft), transparent),
    var(--paper);
  border-top: 1px solid var(--ink-12);
}
.closer__inner { max-width: 46em; margin: 0 auto; }
.closer h2 {
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.closer p { color: var(--ink-60); font-size: clamp(1rem, 1.6vw, 1.2rem); margin-bottom: 2.2rem; }
.closer__ps { margin-top: 2rem; }
.closer__ps .hand { color: var(--ink-40); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--paper); padding: clamp(3rem, 6vw, 5rem) var(--pad) 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  padding-bottom: 3rem;
}
.footer__brand { display: grid; grid-template-columns: 26px auto; align-items: center; gap: 0.6rem; align-content: start; }
.footer__brand > span { font-family: var(--display); font-weight: 800; letter-spacing: 0.14em; font-size: 1.1rem; }
.footer__brand p { grid-column: 1 / -1; margin-top: 0.8rem; font-size: 0.9rem; color: rgba(251,249,244,0.55); max-width: 24em; }
.footer__cols { display: flex; gap: clamp(2.5rem, 6vw, 6rem); }
.footer__cols h4 {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--marigold); margin-bottom: 1rem;
}
.footer__cols a {
  display: block; text-decoration: none; font-size: 0.95rem;
  color: rgba(251,249,244,0.72); padding: 0.28rem 0;
  transition: color 0.2s ease, transform 0.25s var(--ease-spring);
}
.footer__cols a:hover { color: var(--paper); transform: translateX(4px); }
.footer__legal {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid rgba(251,249,244,0.14);
  font-size: 0.85rem;
  color: rgba(251,249,244,0.5);
}
.footer__legal a { color: rgba(251,249,244,0.72); }
.footer__legal a:hover { color: var(--marigold); }

/* ============ REVEALS ============ */
.reveal, .reveal-line { opacity: 0; }
.no-js .reveal, .no-js .reveal-line,
.motion-off .reveal, .motion-off .reveal-line { opacity: 1 !important; transform: none !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .rail { display: none; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .stance__inner { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .ledger { grid-template-columns: 1fr; }
  .ledger__col + .ledger__col { border-left: none; border-top: 1px solid var(--ink-12); }
  .wontfix__list { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; max-width: 34rem; }
  .hero__note--left { left: 0.6rem; }
  .hero__note--right { right: 0.6rem; }
}
@media (max-width: 700px) {
  .flow__stage { height: 840px; }
  .fnode { width: min(150px, 42vw); padding: 0.55rem 0.7rem 0.5rem; }
  .fnode__title { font-size: 0.85rem; }
  .fnode__time { font-size: 0.72rem; }
  .flow__legend { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero { padding-top: 6rem; }
  .hero__canvas-wrap { min-height: 240px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hero__note .hand { font-size: 1.05rem; }
  .hand-arrow { width: 30px; }
  .case__stats { grid-template-columns: 1fr 1fr; }
  .footer__cols { flex-direction: column; gap: 1.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scrollhint svg { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
