:root {
  --paper: #ebe8df;
  --paper-2: #f3f1ea;
  --ink: #1c1c1c;
  --muted: #6d685d;
  --line: #c9c3b4;
  --blue: #6b8fd6;
  --orange: #e8613a;
  --yellow: #f2c530;
  --green: #4f9a6e;
  --display: "Courier Prime", "Courier New", monospace;
  --body: "Courier Prime", "Courier New", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
  isolation: isolate;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .055;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* An author display rule beats the browser's own [hidden] { display: none },
   so .btn[hidden] and the like stayed on screen. */
[hidden] { display: none !important; }

.paused, .paused * { animation-play-state: paused !important; }
.c-blue { fill: var(--blue); }
.c-orange { fill: var(--orange); }
.c-yellow { fill: var(--yellow); }
.c-green { fill: var(--green); }
.c-blue-bg { background: var(--blue); }
.c-orange-bg { background: var(--orange); }
.c-yellow-bg { background: var(--yellow); }
.c-ink-bg { background: var(--ink); }
.c-orange-text { color: var(--orange); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px 8px 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(-50%, -24px);
  opacity: 0;
  animation: nav-in .6s steps(4) .25s forwards;
}
@keyframes nav-in { to { opacity: 1; transform: translate(-50%, 0); } }

.brand {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  margin-right: 10px;
}
.brand svg { width: 14px; height: 16px; shape-rendering: crispEdges; }
.wordmark { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: .02em; }

.links { display: flex; gap: 2px; }
.links a {
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 12px;
  transition: background .15s steps(2), color .15s steps(2);
}
.links a:hover { background: var(--ink); color: var(--paper); }
.links a.active { box-shadow: inset 0 -2px 0 var(--ink); }
.links a.active:hover { box-shadow: none; }
/* The label is there for the stacked mobile menu, where a lone glyph in a
   column of words reads as a mistake. */
.links a.nav-x { display: inline-flex; align-items: center; padding-left: 10px; padding-right: 10px; }
/* An explicit size, because the reset's max-width resolves against a flex
   container this svg is itself sizing, and it collapses to zero width. */
.links a.nav-x svg { width: 14px; height: 14px; flex: none; }
.links a.nav-x span { display: none; }

.menu { display: none; width: 36px; height: 36px; position: relative; }
.menu span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); transition: transform .15s steps(2); }
.menu span:first-child { top: 14px; }
.menu span:last-child { top: 21px; }
.nav.open .menu span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav.open .menu span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .1s steps(2), box-shadow .1s steps(2);
}
.btn:hover { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.btn svg { width: 14px; height: 14px; }
.btn-blue { background: var(--blue); color: var(--ink); }
.btn-outline { background: var(--paper); color: var(--ink); }
.btn-ghost { border: none; box-shadow: none; padding: 12px 4px; }
.btn-ghost:hover { transform: none; box-shadow: none; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 104px 24px 64px;
  isolation: isolate;
  background: var(--paper);
}
.hero-art { position: absolute; top: 0; left: 0; right: 0; bottom: 40px; }
.marks { display: block; width: 100%; height: 100%; }
.palm {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  color: var(--paper);
  font-style: italic;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 3px var(--ink), 0 0 8px var(--ink);
  pointer-events: none;
  opacity: 0;
  animation: palm-in .1s steps(1) 1.3s forwards;
}
@keyframes palm-in { to { opacity: 1; } }

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 34px 32px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  will-change: transform, opacity;
}

.titlebar {
  height: 22px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  border-bottom-width: 1px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.titlebar span:first-child { width: 8px; height: 8px; margin-left: 10px; border: 1px solid var(--ink); background: var(--paper); position: relative; z-index: 1; }
.titlebar span:last-child {
  position: absolute;
  left: 26px;
  background: var(--paper);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  z-index: 1;
}
.hero-copy .titlebar { margin: -30px -34px 20px; }
.titlebar.sweep::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 24px;
  background: var(--paper);
  opacity: .9;
  animation: sweep .8s steps(8) 1.6s forwards;
}
@keyframes sweep { to { left: 100%; } }

.rv { opacity: 0; transform: translateY(14px); animation: rv .4s steps(4) var(--d, 0s) forwards; }
@keyframes rv { to { opacity: 1; transform: translateY(0); } }

.badge { display: inline-block; font-size: 13px; color: var(--ink); opacity: .55; margin-bottom: 16px; white-space: nowrap; }

h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .08em .05em 0; margin: -.08em -.05em 0; }
h1 .w span { display: inline-block; transform: translateY(115%); animation: rise .5s steps(5) var(--d, 0s) forwards; }
@keyframes rise { to { transform: translateY(0); } }

.lede { font-size: 15px; max-width: 44ch; margin: 16px auto 22px; }
.cta { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 60px;
  left: 50%;
  z-index: 1;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  transform: translateX(-50%) translateY(14px);
  animation-name: rv-cue;
  transition: opacity .3s ease;
}
@keyframes rv-cue { to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.scroll-cue span { display: inline-block; animation: bob 1.2s steps(2) infinite; }
@keyframes bob { 50% { transform: translateY(3px); } }
.scroll-cue.shown { opacity: 1; transform: translateX(-50%); }
.scroll-cue.gone { opacity: 0; pointer-events: none; }

.tape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  z-index: 2;
}
.tape-inner {
  display: flex;
  width: max-content;
  height: 100%;
  animation: tape 40s steps(160) infinite;
}
.tape-inner span {
  display: inline-block;
  line-height: 36px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: pre;
  padding-left: 24px;
}
@keyframes tape { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 128px 24px; }
.section-alt { position: relative; }
.section-alt::before, .section-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-conic-gradient(var(--ink) 0 25%, var(--paper) 0 50%) 0 0 / 4px 4px;
}
.section-alt::before { top: 0; }
.section-alt::after { bottom: 0; }
.wrap { max-width: 1120px; margin: 0 auto; }
.wrap.narrow { max-width: 760px; }

.eyebrow { font-size: 13px; color: var(--ink); opacity: .55; margin-bottom: 12px; }

h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}
.sub { margin-top: 20px; max-width: 40ch; font-size: 1.05rem; }

.split { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.split-head { position: sticky; top: 120px; }

.feature-list { border-top: 2px solid var(--ink); }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 30px 0; border-bottom: 2px solid var(--ink); }
.feature svg { width: 28px; height: 28px; shape-rendering: crispEdges; margin-top: 2px; }
.feature h3 { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: .01em; margin-bottom: 6px; }
.feature p { max-width: 50ch; }

.center-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }

/* statement band */
.statement { overflow: hidden; text-align: center; padding: 160px 24px; }
.statement .wrap { position: relative; z-index: 1; }
.big {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  min-height: 1em;
}
.cursor { display: inline-block; width: .55em; height: .9em; background: var(--ink); vertical-align: -.08em; margin-left: .04em; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.tagline { margin-top: 20px; font-size: 15px; color: var(--ink); opacity: .6; }
.scatter { position: absolute; inset: 12px 0; z-index: 0; pointer-events: none; }
.scatter i { position: absolute; display: block; }
.scatter i.round { border-radius: 50%; }

/* the wall */
.panel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 54px 32px 32px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
}
.panel .titlebar { position: absolute; top: 0; left: 0; right: 0; }
.wall-panel { max-width: 1120px; padding-bottom: 24px; }
.wall-svg { width: 100%; height: auto; display: block; overflow: visible; }
.wall-svg .box { fill: none; stroke: var(--ink); stroke-width: 2; shape-rendering: crispEdges; }
.wall-svg .thick { stroke-width: 3; }
.wall-svg .lane { stroke: var(--ink); stroke-width: 1; stroke-dasharray: 4 4; }
.wall-svg .wallseg { stroke: var(--ink); stroke-width: 3; animation: flash 6s steps(1) infinite; }
.wall-svg .lbl { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; fill: var(--ink); text-anchor: middle; }
.wall-svg .lbl.small { font-size: 10px; font-weight: 400; }
.wall-svg .lbl.agent { font-size: 14px; }
.wall-svg .dot { shape-rendering: crispEdges; animation-duration: 6s; animation-iteration-count: infinite; animation-timing-function: steps(14); animation-delay: var(--d, 0s); }
.wall-svg .l-right { animation-name: go-right; }
.wall-svg .l-left { animation-name: go-left; }
.wall-svg .l-bounce { animation-name: bounce; animation-timing-function: steps(5); }
.wall-svg .d-blue { fill: var(--blue); }
.wall-svg .d-orange { fill: var(--orange); }
.wall-svg .d-yellow { fill: var(--yellow); }
.wall-svg .d-ink { fill: var(--ink); }
@keyframes go-right { 0% { transform: translateX(0); opacity: 1; } 55% { transform: translateX(200px); opacity: 1; } 60%, 100% { transform: translateX(200px); opacity: 0; } }
@keyframes go-left { 0% { transform: translateX(0); opacity: 1; } 55% { transform: translateX(-200px); opacity: 1; } 60%, 100% { transform: translateX(-200px); opacity: 0; } }
@keyframes bounce { 0% { transform: translateX(0); } 38% { transform: translateX(154px); } 44% { transform: translateX(154px); } 58% { transform: translateX(70px); } 76%, 100% { transform: translateX(0); } }
@keyframes flash { 0%, 37% { stroke: var(--ink); stroke-width: 3; } 38%, 46% { stroke: var(--orange); stroke-width: 6; } 47%, 100% { stroke: var(--ink); stroke-width: 3; } }
.legend { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 20px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.legend li { display: inline-flex; align-items: center; gap: 10px; }
.sq { display: inline-block; width: 10px; height: 10px; }

/* cases */
.cases { border-top: 2px solid var(--ink); }
.cases li {
  display: grid;
  grid-template-columns: 56px 1.1fr 2fr 56px;
  align-items: baseline;
  gap: 24px;
  padding: 26px 8px;
  border-bottom: 2px solid var(--ink);
  transition: background .15s steps(3), color .15s steps(3);
  cursor: default;
}
.cases li:hover { background: var(--ink); color: var(--paper); }
.cases .n, .cases .t, .cases .d { transition: transform .15s steps(3); }
.cases li:hover .n, .cases li:hover .t, .cases li:hover .d { transform: translateX(8px); }
.cases .n { font-size: 12px; letter-spacing: .08em; color: var(--orange); }
.cases li:hover .n { color: inherit; }
.cases .t { font-family: var(--display); font-size: 1.05rem; font-weight: 700; }
.cases .a { opacity: 0; transform: translateX(-6px); transition: opacity .15s steps(3), transform .15s steps(3); white-space: nowrap; }
.cases li:hover .a { opacity: 1; transform: none; }
.cases .a::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 16px; vertical-align: 2px; background: var(--blue); box-shadow: 10px 0 0 var(--orange); opacity: 0; }
.cases li:hover .a::before { animation: pop .2s steps(2) forwards; }
@keyframes pop { to { opacity: 1; } }

/* compared */
.compare { max-width: 960px; padding: 54px 0 0; overflow: hidden; }
.compare table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 2px solid var(--ink); vertical-align: top; }
.compare thead th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.compare tbody th { font-weight: 400; width: 30%; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare .us { background: var(--paper-2); border-left: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.compare thead .us { border-top: 0; }
.mk { display: inline-block; width: 10px; height: 10px; margin-right: 10px; vertical-align: -1px; border: 2px solid var(--ink); }
.mk.yes { background: var(--ink); }
.mk.no { background: transparent; }
tr[data-reveal] { transform: none; }
tr[data-reveal].in { transform: none; }

/* what we can see */
.eye { position: relative; margin-top: 32px; max-width: 420px; aspect-ratio: 3 / 2; }
.eye .bar { position: absolute; left: 10%; right: 10%; top: 44%; height: 14%; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.eye.in .bar { animation: wipe .6s steps(6) forwards; }
@keyframes wipe { to { transform: scaleX(1); } }
.see-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; align-items: start; }
.see-cols { display: grid; gap: 40px; }
.list-head { margin: 0; padding: 18px 0 0; }
.line { padding: 14px 0; border-bottom: 2px solid var(--ink); }
.list-head + .line { margin-top: 12px; }

.receipt {
  position: relative;
  padding: 54px 0 24px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  background: var(--paper-2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 95% calc(100% - 10px), 90% 100%, 85% calc(100% - 10px), 80% 100%, 75% calc(100% - 10px), 70% 100%, 65% calc(100% - 10px), 60% 100%, 55% calc(100% - 10px), 50% 100%, 45% calc(100% - 10px), 40% 100%, 35% calc(100% - 10px), 30% 100%, 25% calc(100% - 10px), 20% 100%, 15% calc(100% - 10px), 10% 100%, 5% calc(100% - 10px), 0% 100%);
}
.receipt .titlebar { position: absolute; top: 0; left: 0; right: 0; }
.receipt .paper { padding: 8px 20px 12px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.receipt .ln { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; opacity: 0; }
.receipt .ln.on { opacity: 1; }
.receipt .ln.rule { height: 2px; padding: 0; margin: 10px 0; border-top: 2px dashed var(--ink); }
.receipt .k { color: var(--ink); opacity: .7; }
.receipt .v { text-align: right; }
.receipt .v.blank { color: var(--paper-2); background: var(--ink); padding: 0 6px; text-decoration: line-through; text-decoration-color: var(--paper-2); }

/* tiers */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; margin: 0 auto; }
.tier {
  position: relative;
  border: 2px solid var(--ink);
  padding: 54px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
}
.tier .titlebar { position: absolute; top: 0; left: 0; right: 0; }
.tier h3 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.price { font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1; margin-top: 4px; }
.tier-sub { margin-bottom: 12px; }
.tier ul { border-top: 2px solid var(--ink); padding-top: 16px; margin-bottom: 24px; display: grid; gap: 8px; font-size: 15px; }
.tier ul li { padding-left: 18px; position: relative; }
.tier ul li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; background: var(--yellow); }
.tier .btn { margin-top: auto; justify-content: center; }

/* boot terminal */
.term { max-width: 820px; margin-top: 20px; padding: 54px 28px 24px; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.term .titlebar { background: var(--ink); border-bottom-color: var(--paper); }
.term .titlebar span:first-child { border-color: var(--paper); background: var(--ink); }
.term .titlebar span:last-child { background: var(--ink); color: var(--paper); }
.screen { font-family: var(--body); font-size: 14px; line-height: 1.7; white-space: pre-wrap; min-height: 10em; }
.screen .cmd, .screen .out { display: inline; }
.screen .cur { display: inline-block; width: .6em; height: 1em; background: var(--paper); vertical-align: -.15em; animation: blink 1s steps(2) infinite; }

/* faq */
.faqs { display: grid; gap: 12px; }
.faq { border: 2px solid var(--ink); background: var(--paper); box-shadow: 2px 2px 0 var(--ink); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: repeating-linear-gradient(90deg, transparent 0 4px, transparent 4px 8px);
  transition: background .15s steps(2), color .15s steps(2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--ink); color: var(--paper); }
.faq .pm { position: relative; width: 14px; height: 14px; flex: none; border: 2px solid currentColor; }
.faq .pm::before, .faq .pm::after { content: ""; position: absolute; background: currentColor; }
.faq .pm::before { left: 2px; right: 2px; top: 4px; height: 2px; }
.faq .pm::after { top: 2px; bottom: 2px; left: 4px; width: 2px; }
.faq[open] .pm::after { display: none; }
.faq p { padding: 16px 16px 20px; border-top: 2px solid var(--ink); max-width: 60ch; }

/* reserve panel */
.form label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.form-row { display: flex; gap: 8px; }
.form input { flex: 1; min-width: 0; background: var(--paper); border: 2px solid var(--ink); padding: 12px; }
.form input:focus-visible { outline: 0; border-color: var(--blue); }
.form-note { font-size: 13px; margin-top: 12px; min-height: 20px; }

/* footer */
.footer { border-top: 2px solid var(--ink); padding: 64px 24px 72px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 48px; align-items: start; }
.colophon { margin-top: 16px; font-size: 13px; color: var(--muted); max-width: 40ch; }
.footer-links { display: grid; gap: 10px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.copy { margin-top: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.seal { width: 120px; height: 140px; justify-self: end; }


/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .5s ease-out var(--d, 0s), transform .3s steps(3) var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-head { position: static; }
  .cases li { grid-template-columns: 40px 1fr 24px; }
  .cases .d { grid-column: 2; }
  .cases .a { grid-column: 3; grid-row: 1; }
  .cases .a::before { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .section { padding: 96px 20px; }
  .statement { padding: 120px 20px; }
  .hero { display: block; height: auto; min-height: 100svh; padding: 104px 20px 88px; }
  .hero-art { position: relative; width: 100%; height: 40svh; bottom: auto; }
  .hero-copy { margin: 0 auto; max-width: 92vw; }
  .hero::after { bottom: 56px; }
  .scroll-cue { display: none; }
  .see-grid { grid-template-columns: 1fr; }
  .compare th, .compare td { padding: 12px 12px; font-size: 13px; }
  .compare tbody th { width: 34%; }
  .foot-grid { grid-template-columns: 1fr; }
  .seal { justify-self: start; }
  .trail { display: none; }
}
@media (max-width: 680px) {
  .nav { left: 16px; right: 16px; transform: translate(0, -24px); padding-left: 12px; }
  @keyframes nav-in { to { opacity: 1; transform: translate(0, 0); } }
  .brand { margin-right: auto; }
  .nav .btn-blue { display: none; }
  .links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--paper);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    padding: 8px;
  }
  .links a { font-size: 13px; padding: 12px 14px; }
  .links a.nav-x { gap: 10px; padding-left: 14px; }
  .links a.nav-x span { display: inline; }
  .nav.open .links { display: flex; }
  .menu { display: block; }
  .hero { min-height: 640px; }
  .hero-copy { padding: 32px 24px 28px; }
  .hero-copy .titlebar { margin: -32px -24px 20px; }
  .badge { font-size: 10px; letter-spacing: .06em; }
  .form-row { flex-direction: column; }
  .compare { padding-top: 54px; }
  .compare table { display: block; overflow-x: auto; }
  .wall-svg .lbl.small { display: none; }
  .wall-panel { padding: 40px 12px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav, .rv, h1 .w span, .scroll-cue, .palm { animation: none; opacity: 1; transform: none; }
  .nav { transform: translateX(-50%); }
  .palm { transform: translate(-50%, -50%); }
  .scroll-cue span, .tape-inner, .titlebar.sweep::after, .cursor, .screen .cur, .wall-svg .wallseg, .scatter i { animation: none; }
  .titlebar.sweep::after { display: none; }
  .wall-svg .dot { animation: none; }
  .wall-svg .l-right { transform: translateX(200px); }
  .wall-svg .l-left { transform: translateX(-200px); }
  .eye .bar { transform: scaleX(1); }
  .eye.in .bar { animation: none; }
  .receipt .ln { opacity: 1; }
  .cases .a::before { opacity: 1; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-copy { will-change: auto; }
  .trail { display: none; }
}
