@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jbmono-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("/assets/fonts/caveat-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --paper: #0a0a09;
  --paper-raised: #10100e;
  --paper-soft: #141411;
  --ink: #ece6d8;
  --ink-soft: #bbb4a7;
  --ink-dim: #837e75;
  --ink-faint: #55524d;
  --rule: rgba(236, 230, 216, 0.12);
  --rule-strong: rgba(236, 230, 216, 0.24);
  --proof: #c95830;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --hand: "Caveat", cursive;
  --max: 1344px;
  --pad: clamp(20px, 3vw, 42px);
  --nav-height: 68px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ink: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background-color: var(--paper);
  color: var(--ink);
  font: 400 15px/1.65 var(--sans);
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 999;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  background: rgba(236, 230, 216, 0.2);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  color: var(--paper);
  background: var(--ink);
  font: 400 12px/1 var(--mono);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.page-progress {
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.nav-sentinel {
  position: absolute;
  top: 0;
  width: 1px;
  height: 12px;
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background-color: rgba(10, 10, 9, 0.9);
  transition: border-color 180ms ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-nav.is-scrolled {
  border-bottom-color: var(--rule);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand svg {
  width: 23px;
  height: 21px;
}

.brand strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.folio {
  color: var(--ink-faint);
  font: 400 10px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links .nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: 400 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

section {
  padding-block: clamp(84px, 10vw, 148px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-dim);
  font: 400 10px/1.2 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 12px;
  height: 12px;
  flex: none;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 7.3vw, 100px);
  font-weight: 640;
  line-height: 0.96;
  letter-spacing: -0.058em;
}

h2 {
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 610;
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 760px;
}

.section-intro h2 {
  margin-top: 23px;
}

.section-intro > h2:first-child,
.memory-copy > h2:first-child,
.trust-heading > h2:first-child,
.final-inner > h2:first-child {
  margin-top: 0;
}

.section-intro > p:last-child {
  max-width: 610px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.02em;
  transition: color 150ms ease, background-color 150ms ease, transform 180ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  color: var(--paper);
  background: var(--ink);
}

.button-solid:hover {
  color: var(--ink);
  background: transparent;
}

.text-link {
  color: var(--ink-soft);
  font: 400 12px/1.4 var(--mono);
  text-decoration-color: var(--ink-faint);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: calc(var(--nav-height) + clamp(42px, 4.5vw, 66px));
  padding-bottom: clamp(38px, 4vw, 54px);
  overflow: hidden;
}

.hero-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(44px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(47px, 5.35vw, 74px);
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero h1 .ink-under {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: var(--ink-soft);
}

.ink-under > svg {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 92%;
  height: 16px;
  overflow: visible;
  color: var(--ink-dim);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.ink-under > svg path:last-child {
  opacity: 0.45;
  stroke-width: 1;
}

.hero-sub {
  max-width: 390px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.hero-side {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}

.idea-form {
  max-width: 440px;
  margin-top: 28px;
}

.idea-form > label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 560;
}

.idea-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--rule-strong);
  background: var(--paper-raised);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.idea-field:focus-within {
  border-color: rgba(201, 88, 48, 0.86);
  box-shadow: 0 0 0 3px rgba(201, 88, 48, 0.12);
}

.idea-field input,
.idea-field button,
.idea-examples button {
  font: inherit;
}

.idea-field input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 13px 14px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.idea-field input::placeholder {
  color: var(--ink-faint);
}

.idea-field button {
  min-height: 50px;
  padding-inline: 16px;
  border: 0;
  color: var(--paper);
  background: var(--ink);
  font: 500 11px/1 var(--mono);
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.idea-field button:hover {
  color: var(--ink);
  background: var(--proof);
}

.idea-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.idea-examples button {
  padding: 6px 8px;
  border: 1px solid var(--rule);
  color: var(--ink-dim);
  background: transparent;
  font: 400 9px/1 var(--mono);
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.idea-examples button:hover {
  border-color: var(--rule-strong);
  color: var(--ink);
}

.idea-form > p {
  margin-top: 10px;
  color: var(--ink-dim);
  font-size: 11px;
  line-height: 1.5;
}

.hero-proof-link {
  display: inline-block;
  margin-top: 18px;
}

.hero-side > .hand-note {
  width: max-content;
  max-width: 100%;
  margin: 34px 0 0 auto;
  transform: rotate(-3deg);
}

.hero-ghost-mark {
  position: absolute;
  z-index: 0;
  top: 3%;
  left: -120px;
  width: 490px;
  height: 450px;
  color: var(--ink);
  opacity: 0.018;
  pointer-events: none;
}

.hero-machine {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 3vw, 42px);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 88, 48, 0.5);
  overflow: hidden;
}

.hero-machine::before {
  position: absolute;
  z-index: 2;
  top: -7px;
  left: 7%;
  width: 116px;
  height: 13px;
  content: "";
  background: var(--proof);
  transform: rotate(-1.6deg);
}

.hero-machine > img {
  width: 100%;
  height: clamp(330px, 32vw, 440px);
  opacity: 0.94;
  object-fit: cover;
  object-position: center 49%;
}

.hero-machine figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: -2px;
  padding-inline: 18px;
  color: var(--ink-faint);
  font: 400 9px/1.5 var(--mono);
  letter-spacing: 0.13em;
}

.machine-trace {
  position: absolute;
  right: 4%;
  bottom: 9%;
  width: 56%;
  color: var(--proof);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
}

.hero-proof {
  position: relative;
  min-height: 630px;
}

.storyboard-sheet {
  position: absolute;
  z-index: 1;
  top: 52px;
  left: -7%;
  width: min(490px, 88%);
  padding: 10px;
  border: 1px solid var(--rule-strong);
  background: var(--paper-raised);
  transform: rotate(-1.8deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  padding: 4px 3px 11px;
  color: var(--ink-dim);
  font: 400 9px/1 var(--mono);
  letter-spacing: 0.13em;
}

.sheet-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.sheet-frames img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid var(--rule);
  filter: saturate(0.78) contrast(1.03);
}

.final-frame {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(268px, 50%);
  padding: 7px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  transform: rotate(2deg);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.48);
}

.final-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.final-frame figcaption {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 5px 5px;
  color: var(--ink-dim);
  font: 400 8px/1 var(--mono);
  letter-spacing: 0.13em;
}

.final-frame figcaption svg {
  width: 10px;
  height: 7px;
}

.proof-arrow {
  position: absolute;
  z-index: 4;
  top: 44%;
  right: 16%;
  width: 176px;
  height: 90px;
  overflow: visible;
  color: var(--ink-soft);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hand-note,
.hand-callout {
  color: var(--ink-dim);
  font: 600 clamp(18px, 2vw, 24px)/1.15 var(--hand);
}

.hero-proof > .hand-note {
  position: absolute;
  z-index: 5;
  right: 43%;
  bottom: 34px;
  width: 190px;
  transform: rotate(-5deg);
  text-align: center;
}

.evidence-strip {
  padding-block: 15px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.evidence-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  color: var(--ink-dim);
  font: 400 11px/1.5 var(--mono);
  letter-spacing: 0.02em;
}

.evidence-row svg {
  width: 8px;
  height: 6px;
  color: var(--ink-faint);
}

.run-section {
  position: relative;
  padding-block: clamp(62px, 6vw, 84px);
}

.run-section .section-intro {
  max-width: 960px;
}

.run-section .section-intro h2 {
  font-size: clamp(38px, 4.2vw, 60px);
}

.run-section .section-intro > p:last-child {
  max-width: 620px;
}

.run-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  margin-top: clamp(28px, 3vw, 42px);
}

.run-story {
  grid-column: 1 / 10;
  grid-row: 1;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--rule);
  background: var(--paper-raised);
  transform: rotate(-0.6deg);
}

.run-story img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.run-story figcaption {
  padding: 12px 4px 3px;
  color: var(--ink-dim);
  font-size: 12px;
}

.reel-preview {
  position: relative;
  z-index: 2;
  grid-column: 9 / 13;
  grid-row: 1;
  width: min(100%, 310px);
  justify-self: end;
  margin: -18px 2% 0 0;
  padding: 7px;
  border: 1px solid rgba(201, 88, 48, 0.7);
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transform: rotate(1.7deg);
  transition: transform 220ms var(--ease-out), border-color 180ms ease;
}

.reel-preview:hover {
  border-color: var(--proof);
  transform: rotate(0.4deg) translateY(-6px);
}

.reel-preview:active {
  transform: rotate(0.4deg) translateY(-2px);
}

.reel-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.reel-preview > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 5px 5px;
  text-align: left;
}

.reel-preview b {
  font: 500 11px/1.2 var(--mono);
}

.reel-preview small {
  color: var(--ink-dim);
  font: 400 9px/1 var(--mono);
}

.run-receipt {
  grid-column: 1 / 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding: 25px 28px;
  border-left: 5px solid var(--proof);
  background: rgba(201, 88, 48, 0.09);
}

.run-receipt > span {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.run-receipt small {
  color: var(--ink-dim);
  font: 400 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.run-receipt b {
  color: var(--ink);
  font-size: 20px;
  font-weight: 540;
}

.run-receipt .receipt-gate b {
  color: var(--proof);
}

.run-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(38px, 8vw, 120px);
  margin-top: clamp(58px, 7vw, 94px);
}

.run-log {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--rule);
  background: var(--paper-raised);
}

.corner-ticks {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  color: var(--ink-dim);
  fill: none;
  stroke: currentColor;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.run-log pre {
  overflow-x: auto;
  color: var(--ink-soft);
  font: 400 clamp(10px, 1vw, 13px)/1.95 var(--mono);
  letter-spacing: 0;
  white-space: pre;
}

.run-log pre span {
  display: block;
}

.run-log pre i {
  color: var(--ink-faint);
  font-style: normal;
}

.run-log pre b {
  color: var(--ink-dim);
  font-weight: 400;
}

.run-log pre em {
  color: var(--ink);
  font-style: normal;
}

.run-log pre .gate-line {
  color: var(--ink);
}

.terminal-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 4px;
  background: var(--ink);
  vertical-align: -2px;
}

.run-log figcaption,
.operation-plate figcaption,
.genome-sheet > figcaption {
  margin-top: 18px;
  color: var(--ink-faint);
  font: 400 9px/1.5 var(--mono);
  letter-spacing: 0.16em;
}

.run-video {
  position: relative;
  width: min(100%, 340px);
  justify-self: center;
}

.run-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--rule-strong);
  background: #000;
  object-fit: cover;
}

.run-video figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--ink-faint);
  font: 400 8px/1.5 var(--mono);
  letter-spacing: 0.12em;
}

.video-note {
  position: absolute;
  right: -82px;
  bottom: 90px;
  width: 90px;
  transform: rotate(5deg);
}

.wobble-divider {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--ink-faint);
}

.wobble-divider > svg:not(.divider-mark) {
  width: 100%;
  height: 8px;
}

.wobble-divider .divider-mark {
  width: 18px;
  height: 16px;
}

.method-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: 44px;
}

.method-heading > .hand-callout {
  padding-bottom: 10px;
  transform: rotate(-3deg);
  text-align: center;
}

.method-route {
  display: grid;
  grid-template-columns: 1.12fr 0.92fr 1.08fr 1fr 1.16fr;
  gap: 0;
  margin-top: clamp(42px, 5vw, 66px);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  list-style: none;
}

.method-route li {
  position: relative;
  min-height: 128px;
  padding: 24px 20px;
  border-right: 1px solid var(--rule);
  transition: color 180ms ease, background-color 180ms ease, transform 220ms var(--ease-out);
}

.method-route li:last-child {
  border-right: 0;
}

.method-route li::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -13px;
  width: 25px;
  content: "→";
  color: var(--proof);
  font: 400 22px/1 var(--hand);
  transform: translateY(-50%) rotate(-3deg);
}

.method-route li:last-child::after {
  display: none;
}

.method-route strong,
.method-route span {
  display: block;
}

.method-route strong {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.method-route span {
  margin-top: 12px;
  color: var(--ink-dim);
  font: 400 11px/1.4 var(--mono);
}

.method-route li.is-active {
  color: var(--paper);
  background: var(--proof);
}

.method-route li.is-active strong,
.method-route li.is-active span {
  color: var(--paper);
}

.storyboard-ribbon {
  position: relative;
  min-height: 450px;
  margin-top: clamp(44px, 5vw, 66px);
  overflow: hidden;
  border-top: 1px solid rgba(201, 88, 48, 0.45);
  border-bottom: 1px solid rgba(201, 88, 48, 0.25);
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 88, 48, 0.16), transparent 34%),
    var(--paper-soft);
}

.storyboard-ribbon::before {
  position: absolute;
  top: 9%;
  right: 8%;
  width: 160px;
  height: 25px;
  content: "";
  background: var(--proof);
  transform: rotate(3deg);
}

.storyboard-reel {
  position: absolute;
  display: block;
  width: min(23%, 220px);
  padding: 7px;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 180ms ease, transform 220ms var(--ease-out);
}

.storyboard-reel:nth-child(1) {
  top: 14%;
  left: 18%;
  transform: rotate(-4deg);
}

.storyboard-reel:nth-child(2) {
  z-index: 2;
  top: 5%;
  left: 41%;
  transform: rotate(1.5deg);
}

.storyboard-reel:nth-child(3) {
  top: 15%;
  right: 17%;
  transform: rotate(4deg);
}

.storyboard-reel:nth-child(1):hover {
  border-color: var(--proof);
  transform: rotate(-2deg) translateY(-6px);
}

.storyboard-reel:nth-child(2):hover {
  border-color: var(--proof);
  transform: rotate(0.5deg) translateY(-6px);
}

.storyboard-reel:nth-child(3):hover {
  border-color: var(--proof);
  transform: rotate(2deg) translateY(-6px);
}

.storyboard-ribbon-two .storyboard-reel:nth-child(1) {
  top: 13%;
  left: 28%;
}

.storyboard-ribbon-two {
  min-height: 490px;
}

.storyboard-ribbon-two .storyboard-reel:nth-child(2) {
  top: 7%;
  right: 28%;
  left: auto;
}

.storyboard-ribbon img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.storyboard-reel > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px 2px;
  text-align: left;
}

.storyboard-reel b {
  font: 500 9px/1.25 var(--mono);
}

.storyboard-reel small {
  flex: 0 0 auto;
  color: var(--ink-dim);
  font: 400 8px/1 var(--mono);
}

.storyboard-ribbon .hand-callout {
  position: absolute;
  right: 4%;
  bottom: 6%;
  color: #d37a58;
  font-size: clamp(22px, 2.6vw, 36px);
  transform: rotate(-5deg);
}

.operation-plate {
  position: relative;
  margin-top: clamp(54px, 7vw, 92px);
  padding: clamp(8px, 1.2vw, 16px);
  border: 1px solid var(--rule);
  background: var(--paper-raised);
}

.operation-plate::before,
.operation-plate::after {
  position: absolute;
  width: 26px;
  height: 26px;
  content: "";
  pointer-events: none;
}

.operation-plate::before {
  top: 6px;
  left: 6px;
  border-top: 1px solid var(--ink-dim);
  border-left: 1px solid var(--ink-dim);
}

.operation-plate::after {
  right: 6px;
  bottom: 36px;
  border-right: 1px solid var(--ink-dim);
  border-bottom: 1px solid var(--ink-dim);
}

.operation-plate img {
  width: 100%;
  height: auto;
  opacity: 0.92;
}

.operation-plate figcaption {
  padding-inline: 4px;
}

.operation-ledger {
  margin-top: 72px;
  list-style: none;
  border-top: 1px solid var(--rule-strong);
}

.operation-ledger li {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 160px;
  align-items: start;
  gap: clamp(20px, 4vw, 58px);
  padding-block: 34px;
  border-bottom: 1px solid var(--rule);
}

.step-no {
  position: relative;
  color: var(--ink-dim);
  font: 400 13px/1 var(--mono);
}

.step-no.circled::after {
  position: absolute;
  top: -16px;
  left: -19px;
  width: 57px;
  height: 39px;
  border: 1.5px solid var(--proof);
  border-radius: 49% 46% 52% 44%;
  content: "";
  transform: rotate(-8deg);
}

.operation-ledger h3 {
  font-size: clamp(20px, 2.2vw, 30px);
}

.operation-ledger p {
  max-width: 620px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

.step-artifact {
  justify-self: end;
  color: var(--ink-faint);
  font: 400 9px/1.5 var(--mono);
  letter-spacing: 0.12em;
}

.operation-ledger li.is-active::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 82px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.memory-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-raised);
}

.memory-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(8px, 1.1vw, 16px);
  content: "";
  background: var(--proof);
}

.memory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
}

.memory-copy h2 {
  margin-top: 24px;
}

.memory-copy > p:not(.eyebrow, .hand-callout) {
  max-width: 570px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 17px;
}

.memory-copy .hand-callout {
  width: max-content;
  margin: 28px 0 0 18%;
  transform: rotate(-4deg);
}

.genome-sheet {
  position: relative;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  transform: rotate(0.8deg);
}

.sheet-stamp {
  position: absolute;
  top: 22px;
  right: 24px;
  padding: 7px 9px;
  border: 1px solid var(--proof);
  color: var(--proof);
  font: 400 9px/1 var(--mono);
  letter-spacing: 0.16em;
  transform: rotate(4deg);
}

.genome-sheet > figcaption {
  margin: 0 0 30px;
}

.genome-sheet dl {
  display: flex;
  flex-direction: column;
}

.genome-sheet dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  padding-block: 18px;
  border-top: 1px solid var(--rule);
}

.genome-sheet dt {
  color: var(--ink-faint);
  font: 400 10px/1.6 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.genome-sheet dd {
  color: var(--ink-soft);
  font: 400 14px/1.6 var(--mono);
}

.genome-sheet .genome-gate dd {
  color: var(--ink);
}

.review-circle {
  position: absolute;
  right: 19px;
  bottom: 7px;
  width: 230px;
  height: 68px;
  overflow: visible;
  color: var(--proof);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
}

.trust-heading {
  max-width: 820px;
}

.trust-heading > p {
  max-width: 620px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
}

.human-gate {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  color: var(--paper);
  background: var(--proof);
  transform: rotate(0.8deg);
}

.human-gate > span {
  position: relative;
  z-index: 2;
  font: 400 10px/1 var(--mono);
  letter-spacing: 0.16em;
}

.gate-you {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.gate-you svg {
  position: absolute;
  top: -66px;
  right: -42px;
  width: 260px;
  height: 238px;
  opacity: 0.16;
}

.gate-you strong {
  position: relative;
  z-index: 1;
  font-size: clamp(82px, 9vw, 126px);
  font-weight: 680;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.human-gate > p {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: rgba(10, 10, 9, 0.74);
  font: 600 clamp(23px, 2.4vw, 32px)/1.05 var(--hand);
  transform: rotate(-4deg);
  text-align: right;
}

.trust-notes {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(52px, 6vw, 82px);
  padding-top: 30px;
  border-top: 1px solid var(--rule-strong);
}

.trust-notes p {
  color: var(--ink-soft);
  font-size: 14px;
}

.trust-notes strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 570;
}

.questions-section {
  border-top: 1px solid var(--rule);
}

.questions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 10vw, 150px);
}

.questions details {
  border-top: 1px solid var(--rule);
}

.questions details:last-child {
  border-bottom: 1px solid var(--rule);
}

.questions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 520;
  list-style: none;
}

.questions summary::-webkit-details-marker {
  display: none;
}

.questions summary span {
  color: var(--ink-dim);
  font: 400 18px/1 var(--mono);
  transition: transform 180ms ease;
}

.questions details[open] summary span {
  transform: rotate(45deg);
}

.questions details p {
  max-width: 630px;
  padding: 0 42px 26px 0;
  color: var(--ink-soft);
}

.final-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule-strong);
  background: var(--proof);
  color: #f5eee2;
}

.final-ghost-mark {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 620px;
  height: 570px;
  color: #35150d;
  opacity: 0.12;
}

.final-inner {
  position: relative;
  z-index: 1;
}

.final-section .eyebrow {
  color: rgba(53, 21, 13, 0.68);
}

.final-section h2 {
  margin-top: 26px;
  font-size: clamp(50px, 8vw, 108px);
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button-inverse {
  border-color: var(--paper);
  color: #f5eee2;
  background: var(--paper);
}

.button-inverse:hover {
  color: var(--paper);
  background: transparent;
}

.final-section .text-link {
  color: #35150d;
  text-decoration-color: rgba(53, 21, 13, 0.5);
}

.final-section .text-link:hover {
  color: #f5eee2;
  text-decoration-color: #f5eee2;
}

.final-section .hand-callout {
  position: absolute;
  right: 12%;
  bottom: 4px;
  color: rgba(53, 21, 13, 0.65);
  transform: rotate(-4deg);
}

.reel-dialog {
  width: min(92vw, 440px);
  max-height: 92dvh;
  margin: auto;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 88, 48, 0.75);
  color: var(--ink);
  background: var(--paper);
}

.reel-dialog::backdrop {
  background: rgba(10, 10, 9, 0.88);
}

.reel-dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 4px 12px;
  color: var(--ink-dim);
  font: 400 10px/1 var(--mono);
}

.reel-dialog-bar button {
  padding: 7px 9px;
  border: 1px solid var(--rule-strong);
  color: var(--ink);
  background: none;
  cursor: pointer;
  font: 400 10px/1 var(--mono);
}

.reel-dialog video {
  width: 100%;
  max-height: calc(92dvh - 54px);
  aspect-ratio: 9 / 16;
  background: #050505;
  object-fit: contain;
}

footer {
  padding-block: 64px 42px;
  border-top: 1px solid var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.65fr 0.65fr 1fr;
  gap: 44px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px 10px;
}

.footer-brand svg {
  width: 22px;
  height: 20px;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-brand span {
  grid-column: 1 / -1;
  max-width: 320px;
  color: var(--ink-dim);
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid nav a {
  color: var(--ink-dim);
  font-size: 12px;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--ink);
}

.footer-meta {
  justify-self: end;
  color: var(--ink-dim);
  font: 400 9px/1.8 var(--mono);
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  }

  .js-ready .reveal.in {
    opacity: 1;
    transform: none;
  }

  .js-ready .hero-copy h1 span {
    clip-path: inset(0 0 105% 0);
    transform: translateY(12px);
    animation: title-in 760ms var(--ease-out) forwards;
  }

  .js-ready .hero-copy h1 span:nth-child(2) {
    animation-delay: 90ms;
  }

  .js-ready .ink-under svg path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ink-draw 820ms var(--ease-ink) 840ms forwards;
  }

  .js-ready .ink-under svg path:last-child {
    animation-delay: 1040ms;
  }

  .js-ready .proof-arrow path,
  .js-ready .review-circle path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 800ms var(--ease-ink) 220ms;
  }

  .js-ready .hero-proof .proof-arrow path {
    animation: ink-draw 700ms var(--ease-ink) 720ms forwards;
  }

  .js-ready .machine-trace path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ink-draw 1100ms var(--ease-ink) 780ms forwards;
  }

  .js-ready .machine-trace path:last-child {
    animation-delay: 1580ms;
  }

  .js-ready .genome-sheet.in .review-circle path {
    stroke-dashoffset: 0;
  }

  .terminal-cursor {
    animation: blink 1.1s steps(1) infinite;
  }

  @keyframes title-in {
    to {
      clip-path: inset(0 0 -8% 0);
      transform: none;
    }
  }

  @keyframes ink-draw {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes blink {
    50% {
      opacity: 0;
    }
  }

  @supports (animation-timeline: scroll(root)) {
    .page-progress span {
      animation: progress linear both;
      animation-timeline: scroll(root);
    }

    @keyframes progress {
      to {
        transform: scaleX(1);
      }
    }
  }
}

@media (max-width: 1120px) {
  .hero-header {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
    gap: 42px;
  }

  .operation-ledger li {
    grid-template-columns: 58px minmax(0, 1fr) 130px;
  }

  .trust-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    gap: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 62px;
  }

  .folio {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .js-ready .nav-toggle {
    display: block;
  }

  .nav-links {
    position: static;
    display: flex;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: none;
  }

  .nav-links a {
    display: none;
  }

  .nav-links .nav-cta {
    display: block;
    margin-top: 0;
    padding: 10px 14px;
    border: 1px solid var(--rule-strong);
  }

  .js-ready .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--pad);
    left: var(--pad);
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--rule);
    background: var(--paper);
  }

  .js-ready .nav-links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .js-ready .nav-links a {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid var(--rule);
  }

  .js-ready .nav-links .nav-cta {
    margin-top: 8px;
    border: 1px solid var(--rule-strong);
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-side {
    max-width: 520px;
  }

  .run-layout {
    grid-template-columns: 1fr;
  }

  .run-story {
    grid-column: 1 / 11;
  }

  .reel-preview {
    grid-column: 9 / 13;
    width: min(100%, 240px);
  }

  .run-receipt {
    grid-column: 1 / 9;
  }

  .run-video {
    width: min(100%, 390px);
    margin-top: 28px;
  }

  .method-heading {
    grid-template-columns: 1fr;
  }

  .method-heading > .hand-callout {
    width: max-content;
    padding: 0;
    margin-left: auto;
  }

  .method-route {
    gap: 7px;
  }

  .method-route li {
    min-height: 128px;
    padding: 18px 12px;
  }

  .storyboard-ribbon {
    min-height: 410px;
  }

  .memory-layout {
    grid-template-columns: 1fr;
  }

  .genome-sheet {
    width: min(100%, 680px);
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .human-gate {
    width: min(100%, 560px);
  }

  .trust-notes {
    grid-template-columns: 1fr;
  }

  .questions-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 0.8fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  section {
    padding-block: 74px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero {
    padding-top: calc(var(--nav-height) + 48px);
  }

  .hero h1 .ink-under {
    width: auto;
  }

  .idea-field {
    grid-template-columns: 1fr;
  }

  .idea-field button {
    width: 100%;
  }

  .hero-machine {
    margin-top: 42px;
  }

  .hero-machine > img {
    height: auto;
  }

  .hero-machine figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-inline: 4px;
  }

  .machine-trace {
    right: 3%;
    bottom: 15%;
    width: 66%;
  }

  .evidence-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .evidence-row span {
    grid-column: auto;
  }

  .evidence-row svg {
    display: none;
  }

  .run-log {
    padding: 22px 16px;
  }

  .run-log pre {
    font-size: 9.5px;
  }

  .video-note {
    right: -10px;
    bottom: 72px;
  }

  .run-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .run-story {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 6px;
    transform: none;
  }

  .run-story figcaption {
    padding-inline: 2px;
  }

  .reel-preview {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin: 0;
    transform: rotate(-1deg);
  }

  .run-receipt {
    grid-column: 2;
    grid-template-columns: 1fr;
    align-self: stretch;
    gap: 16px;
    margin: 0;
    padding: 18px;
  }

  .run-receipt b {
    font-size: 16px;
  }

  .method-route {
    grid-template-columns: 1fr;
    margin-right: 0;
    padding: 0;
    overflow: visible;
  }

  .method-route li,
  .method-route li:nth-child(2),
  .method-route li:nth-child(3),
  .method-route li:nth-child(4) {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 76px;
    align-items: center;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    transform: none;
  }

  .method-route li::after {
    top: auto;
    right: 20px;
    bottom: -14px;
    transform: rotate(90deg);
  }

  .method-route li:last-child {
    border-bottom: 0;
  }

  .method-route strong {
    font-size: 30px;
  }

  .method-route span {
    margin-top: 0;
  }

  .storyboard-ribbon {
    min-height: 310px;
    margin-top: 44px;
  }

  .storyboard-ribbon::before {
    top: 7%;
    width: 84px;
    height: 14px;
  }

  .storyboard-reel {
    width: 29%;
    padding: 4px;
  }

  .storyboard-reel:nth-child(1) {
    top: 18%;
    left: 6%;
  }

  .storyboard-reel:nth-child(2) {
    top: 10%;
    left: 35%;
  }

  .storyboard-reel:nth-child(3) {
    top: 20%;
    right: 5%;
  }

  .storyboard-ribbon-two .storyboard-reel {
    width: 37%;
  }

  .storyboard-ribbon-two {
    min-height: 340px;
  }

  .storyboard-ribbon-two .storyboard-reel:nth-child(1) {
    top: 17%;
    left: 10%;
  }

  .storyboard-ribbon-two .storyboard-reel:nth-child(2) {
    top: 10%;
    right: 9%;
    left: auto;
  }

  .storyboard-reel > span {
    display: block;
    padding: 7px 1px 2px;
  }

  .storyboard-reel b {
    display: block;
    font-size: 7px;
  }

  .storyboard-reel small {
    display: block;
    margin-top: 3px;
    font-size: 6px;
  }

  .storyboard-ribbon .hand-callout {
    right: 3%;
    bottom: 3%;
    font-size: 21px;
  }

  .operation-plate {
    margin-right: calc(var(--pad) * -1);
    margin-left: calc(var(--pad) * -1);
    border-right: 0;
    border-left: 0;
  }

  .operation-ledger li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .step-artifact {
    grid-column: 2;
    justify-self: start;
    margin-top: 5px;
  }

  .genome-sheet {
    padding: 48px 20px 24px;
    transform: none;
  }

  .genome-sheet dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .review-circle {
    right: 0;
    bottom: 6px;
    width: 210px;
  }

  .human-gate {
    min-height: 300px;
    padding: 24px;
  }

  .gate-you {
    margin-top: 36px;
  }

  .human-gate > p {
    right: 24px;
    bottom: 22px;
  }

  .questions summary {
    font-size: 15px;
  }

  .final-section .hand-callout {
    position: static;
    width: max-content;
    margin: 34px 0 0 auto;
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-meta {
    grid-column: 1 / -1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
