/* SiteSlurp.com — near-black, white, gray, and one acid line.
   Motion language: everything gets *drawn in*. Minimal surfaces, real movement. */

:root {
  --void:      #08080A;
  --surface:   #0F0F12;
  --surface-2: #17171C;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --white:     #FFFFFF;
  --gray:      #A2A2AC;   /* 9.5:1 on void */
  --gray-dim:  #74747E;   /* 5.1:1 on void — secondary only */
  --acid:      #CDFF3C;
  --acid-wash: rgba(205,255,60,.12);

  --paper:      #FFFFFF;
  --paper-ink:  #0A0A0C;
  --paper-2:    #5A5A63;   /* 6.4:1 on white */
  --paper-line: #E8E8E6;

  --display: "Instrument Sans", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;

  --wide: 1240px;
  --text: 640px;
  --e: cubic-bezier(.22,.9,.28,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray);
  background: var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--acid); color: #000; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.038em;
  font-weight: 600;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 8vw, 6.2rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 5vw, 3.7rem); }
h3 { font-size: 1.32rem; letter-spacing: -0.02em; }
h4 { font-size: 1.02rem; letter-spacing: -0.015em; }

.mono { font-family: var(--mono); font-size: 0.92em; }
.acid-t { color: var(--acid); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .74rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gray-dim);
  margin-bottom: 1.6rem;
}
.tick { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); flex: none; }

/* ───────── scroll progress rail ───────── */
.scroll-rail { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 90; pointer-events: none; }
.scroll-rail span {
  display: block; height: 100%; width: 100%; background: var(--acid);
  transform-origin: 0 50%; transform: scaleX(0);
}
@supports (animation-timeline: scroll()) {
  .scroll-rail span { animation: rail linear both; animation-timeline: scroll(root block); }
}
@keyframes rail { to { transform: scaleX(1); } }

/* ───────── buttons ───────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em;
  padding: .95rem 1.7rem; border-radius: 999px; cursor: pointer;
  transition: background-color .25s var(--e), color .25s var(--e),
              border-color .25s var(--e), transform .35s var(--e);
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-acid { background: var(--acid); color: #07070A; }
.btn-acid:hover { background: var(--white); }
.btn-line { border: 1px solid var(--line-2); color: var(--white); }
.btn-line:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.btn-small { padding: .58rem 1.2rem; font-size: .9rem; }
.btn-block { width: 100%; margin-top: auto; }

/* ───────── nav ───────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 80;
  background: rgba(8,8,10,.86);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--wide); margin: 0 auto;
  padding: .9rem 1.6rem; display: flex; align-items: center; gap: 2.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--white); }
.brand .mark { width: 30px; height: 30px; color: var(--acid); transition: transform .5s var(--e); }
.brand:hover .mark { transform: translateY(2px); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -.03em; }
.brand-name em { font-style: normal; font-weight: 500; color: var(--gray-dim); }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-links a {
  position: relative; font-size: .95rem; color: var(--gray);
  transition: color .2s var(--e);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: var(--acid); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .35s var(--e);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (max-width: 780px) { .nav-links { display: none; } .nav > .btn { margin-left: auto; } }
@media (max-width: 430px) {
  /* keep "SiteSlurp Studio" on one line beside the download button */
  .nav { padding: .8rem 1.1rem; }
  .brand-name { font-size: .98rem; white-space: nowrap; }
  .brand .mark { width: 26px; height: 26px; }
}

/* ───────── hero ───────── */
.hero { position: relative; padding: clamp(4.5rem, 11vh, 8rem) 1.6rem 0; overflow: hidden; }
.spotlight {
  position: absolute; inset: -20% -10% auto; height: 720px;
  background: radial-gradient(520px 420px at var(--mx, 50%) var(--my, 30%),
              rgba(205,255,60,.09), transparent 70%);
  pointer-events: none; transition: opacity .6s var(--e);
}
.hero-inner { position: relative; max-width: var(--wide); margin: 0 auto; text-align: center; }
.hero-h1 .line { display: block; }
.hero-h1 .word { display: inline-block; }
.drain { position: relative; }
.drain::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .09em;
  background: var(--acid); border-radius: 2px;
  transform-origin: 100% 50%;
}
.js .drain::after { animation: drain 4.5s var(--e) 1.4s infinite; }
@keyframes drain {
  0%   { transform: scaleX(1); transform-origin: 100% 50%; }
  22%  { transform: scaleX(0); transform-origin: 100% 50%; }
  23%  { transform: scaleX(0); transform-origin: 0 50%; }
  48%  { transform: scaleX(1); transform-origin: 0 50%; }
  100% { transform: scaleX(1); transform-origin: 0 50%; }
}
.lede {
  max-width: var(--text); margin: 2rem auto 0;
  font-size: clamp(1.06rem, 1.8vw, 1.22rem); color: var(--gray);
}
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.6rem; }
.micro { margin-top: 1.5rem; font-size: .86rem; color: var(--gray-dim); }
.micro.center { text-align: center; }

/* ───────── the app demo ───────── */
.stage { max-width: 1080px; margin: clamp(3.5rem, 8vh, 6rem) auto 0; padding-bottom: 1px; }
.app {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: 0 40px 120px -40px rgba(0,0,0,.9);
}
.app-bar {
  display: flex; align-items: center; gap: .45rem;
  padding: .75rem 1.1rem; border-bottom: 1px solid var(--line); background: #0B0B0E;
}
.tl { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.14); }
.app-bar .tl:first-child { background: var(--acid); }
.app-title, .panel-title {
  margin-left: .7rem; font-family: var(--mono); font-size: .74rem; color: var(--gray-dim);
}
.app-pills { margin-left: auto; display: flex; gap: .4rem; }
.pill-ok {
  font-family: var(--mono); font-size: .66rem; color: var(--gray);
  border: 1px solid var(--line); border-radius: 999px; padding: .2rem .6rem;
}
.app-main { display: grid; grid-template-columns: 148px 1fr; min-height: 300px; }
.rail { border-right: 1px solid var(--line); padding: 1rem .7rem; display: flex; flex-direction: column; gap: .25rem; }
.rail-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; color: var(--gray-dim);
  padding: .45rem .6rem; border-radius: 7px;
}
.rail-item svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.rail-item.on { color: var(--white); background: rgba(255,255,255,.06); }
.app-body { padding: 1.1rem 1.2rem 1.3rem; position: relative; min-width: 0; }

.capture { display: flex; gap: .6rem; }
/* min-width:0 or the typed URL refuses to shrink and shoves the button
   (and the whole card grid) past the window frame on narrow screens. */
.field {
  flex: 1; min-width: 0; display: flex; align-items: center;
  font-family: var(--mono); font-size: .84rem; color: var(--white);
  background: #0A0A0D; border: 1px solid var(--line); border-radius: 9px;
  padding: .6rem .9rem; overflow: hidden;
}
.typed { white-space: nowrap; overflow: hidden; width: 100%; }
.js .typed { width: 0; animation: type 12s steps(26) infinite; }
@keyframes type { 0%,10% { width: 0; } 27%,100% { width: min(26ch, 100%); } }
.caret { width: 1.5px; height: 1em; background: var(--acid); margin-left: 2px; flex: none; }
.js .caret { animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.go {
  flex: none; white-space: nowrap;
  font-family: var(--display); font-weight: 600; font-size: .88rem;
  background: var(--acid); color: #07070A; border-radius: 9px; padding: .6rem 1.15rem;
}
.js .go { animation: press 12s var(--e) infinite; }
@keyframes press { 0%,28% { transform: none; } 30% { transform: scale(.94); } 33%,100% { transform: none; } }

.progress { height: 2px; background: rgba(255,255,255,.08); border-radius: 2px; margin: .9rem 0 0; overflow: hidden; }
.bar { display: block; height: 100%; width: 100%; background: var(--acid); transform-origin: 0 50%; transform: scaleX(1); }
.js .bar { animation: fill 12s linear infinite; }
@keyframes fill { 0%,33% { transform: scaleX(0); } 62% { transform: scaleX(1); } 100% { transform: scaleX(1); } }

.stream { position: absolute; left: 1.2rem; right: 1.2rem; top: 4.2rem; height: 74px; pointer-events: none; overflow: hidden; }
.chip {
  position: absolute; top: 0; left: calc(4% + var(--i) * 13%);
  font-family: var(--mono); font-size: .62rem; color: var(--acid);
  background: var(--acid-wash); border-radius: 5px; padding: .12rem .45rem;
  opacity: 0;
}
.js .chip { animation: slurp 12s var(--e) infinite; animation-delay: calc(var(--i) * .22s); }
@keyframes slurp {
  0%, 34%  { opacity: 0; transform: translateY(-6px) scale(.94); }
  38%      { opacity: 1; transform: translateY(6px) scale(1); }
  56%      { opacity: 0; transform: translateY(64px) scale(.82); }
  100%     { opacity: 0; transform: translateY(64px) scale(.82); }
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-top: 1.5rem; }
.proj {
  display: flex; flex-direction: column; gap: .3rem;
  border: 1px solid var(--line); border-radius: 10px; padding: .7rem; background: #0B0B0E;
}
.shot {
  height: 46px; border-radius: 6px; background: var(--surface-2);
  padding: .4rem; display: flex; flex-direction: column; gap: .22rem; justify-content: center;
}
.shot i { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,.16); }
.shot i:nth-child(1) { width: 52%; background: rgba(255,255,255,.3); }
.shot i:nth-child(2) { width: 86%; }
.shot i:nth-child(3) { width: 68%; }
.shot.alt i:nth-child(1) { width: 40%; }
.shot.new i:nth-child(1) { background: var(--acid); }
.proj-name { font-size: .76rem; color: var(--white); margin-top: .25rem; }
.proj-meta { font-family: var(--mono); font-size: .62rem; color: var(--gray-dim); }
.badge {
  font-family: var(--mono); font-size: .62rem; border-radius: 999px;
  padding: .16rem .5rem; width: fit-content; margin-top: .15rem;
}
.badge.live { color: var(--acid); background: var(--acid-wash); }
.badge.idle { color: var(--gray-dim); border: 1px solid var(--line); }
/* The capturing card never leaves the grid — no hole opens up mid-loop.
   Its three badges share one slot: .idle holds the layout while .cap and
   .flip sit on top of it, and the label steps
   capturing… → Extracted → localhost:4302 as the run finishes. */
.proj.fresh { position: relative; }
.badge.cap { color: var(--white); background: rgba(255,255,255,.09); }
.badge.cap, .badge.flip { display: none; }
.js .proj.fresh { animation: freshen 12s var(--e) infinite; }
@keyframes freshen {
  0%, 33%  { border-color: var(--line); }
  40%, 76% { border-color: rgba(205,255,60,.45); }
  86%,100% { border-color: var(--line); }
}
.js .proj.fresh .badge.cap,
.js .proj.fresh .badge.flip { display: block; position: absolute; left: .7rem; bottom: .7rem; }
.js .proj.fresh .badge.cap  { animation: capOn 12s steps(1) infinite; }
.js .proj.fresh .badge.idle { animation: extractedOn 12s steps(1) infinite; }
.js .proj.fresh .badge.flip { animation: liveOn 12s steps(1) infinite; }
@keyframes capOn       { 0%,32% { opacity: 0; } 33%,63% { opacity: 1; } 64%,100% { opacity: 0; } }
@keyframes extractedOn { 0%,63% { opacity: 0; } 64%,78% { opacity: 1; } 79%,100% { opacity: 0; } }
/* Hosting also covers the head of the cycle, so the badge slot is never
   blank — it reads as re-slurping a client site that was already hosted. */
@keyframes liveOn      { 0%,32% { opacity: 1; } 33%,78% { opacity: 0; } 79%,100% { opacity: 1; } }

/* a capture scan-line sweeping the new thumbnail */
.shot.new { position: relative; overflow: hidden; }
.scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--acid); opacity: 0; }
.js .scan { animation: scan 12s var(--e) infinite; }
@keyframes scan {
  0%,33%   { opacity: 0; transform: translateY(0); }
  36%      { opacity: .9; transform: translateY(0); }
  60%      { opacity: .9; transform: translateY(44px); }
  64%,100% { opacity: 0; transform: translateY(44px); }
}

.rail-foot {
  margin-top: auto; padding: .6rem;
  font-family: var(--mono); font-size: .6rem; line-height: 1.6; color: #5C5C66;
}

.log { margin-top: 1rem; height: 1.1em; position: relative; font-family: var(--mono); font-size: .68rem; color: var(--gray-dim); }
.log-l { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; }
.js .log-l { animation: logline 12s steps(1) infinite; animation-delay: calc(var(--i) * 1.6s); }
@keyframes logline { 0%,3% { opacity: 0; } 4%,12% { opacity: 1; } 13%,100% { opacity: 0; } }

@media (max-width: 720px) {
  .app-main { grid-template-columns: 1fr; }
  .rail {
    flex-direction: row; border-right: 0; border-bottom: 1px solid var(--line);
    overflow-x: auto; scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail-item { white-space: nowrap; }
  .rail-foot { display: none; }
  .app-title { white-space: nowrap; }
  .app-pills { display: none; }
  .cards { grid-template-columns: 1fr; }
  .proj:nth-child(2) { display: none; }
  .stream { display: none; }
}

/* ───────── marquee ───────── */
.marquee {
  margin-top: clamp(4rem, 10vh, 7rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 2.2rem; width: max-content;
  font-family: var(--mono); font-size: .82rem; color: var(--gray-dim);
  white-space: nowrap;
}
.js .marquee-track { animation: slide 46s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee .sep { color: var(--acid); opacity: .5; }

/* ───────── section shells ───────── */
.sec-head { max-width: var(--wide); margin: 0 auto; padding: 0 1.6rem; }
.sec-head.center { text-align: center; }
.sec-lede { max-width: var(--text); margin-top: 1.4rem; font-size: 1.08rem; }
.sec-head.center .sec-lede { margin-inline: auto; }

.how { padding: clamp(6rem, 15vh, 11rem) 0 0; }
.steps {
  list-style: none; max-width: var(--wide); margin: clamp(3rem, 7vh, 5rem) auto 0;
  padding: 0 1.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem);
}
.step { position: relative; padding-top: 1.7rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line-2); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .9s var(--e);
}
.step.in::before { transform: scaleX(1); }
.step-n { font-family: var(--mono); font-size: .78rem; color: var(--acid); letter-spacing: .1em; }
.step h3 { margin: .8rem 0 .7rem; font-size: 1.5rem; }
.step p { font-size: .99rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; max-width: 620px; } }

/* ───────── studio (inverted slab) ───────── */
.studio {
  margin-top: clamp(6rem, 15vh, 11rem);
  background: var(--paper); color: var(--paper-2);
  padding: clamp(5rem, 12vh, 8rem) 0 clamp(5rem, 12vh, 8rem);
  border-radius: 28px 28px 0 0;
}
.studio h2, .studio h3, .studio h4 { color: var(--paper-ink); }
.studio .eyebrow { color: #83838C; }

.show {
  max-width: var(--wide); margin: clamp(3rem, 7vh, 5rem) auto 0; padding: 0 1.6rem;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.show-copy { display: flex; flex-direction: column; gap: 1px; }
.beat {
  padding: 1.7rem 0 1.7rem 1.5rem; border-left: 2px solid var(--paper-line);
  opacity: .42; transition: opacity .5s var(--e), border-color .5s var(--e);
}
.beat.on { opacity: 1; border-color: var(--paper-ink); }
.beat h3 { margin-bottom: .5rem; }
.beat p { font-size: .99rem; }

.show-stick { position: sticky; top: 96px; }
.panel {
  background: #0B0B0E; border: 1px solid #1D1D22; border-radius: 14px;
  overflow: hidden; box-shadow: 0 30px 70px -34px rgba(0,0,0,.55);
}
.panel-bar { display: flex; align-items: center; gap: .45rem; padding: .7rem 1rem; border-bottom: 1px solid #1D1D22; }
.state { display: none; padding: 1.2rem; }
.panel[data-state="0"] .s0,
.panel[data-state="1"] .s1,
.panel[data-state="2"] .s2 { display: block; animation: fadeUp .5s var(--e) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.mini { display: flex; flex-direction: column; gap: .25rem; border: 1px solid #1D1D22; border-radius: 9px; padding: .7rem; }
.mini-shot { display: block; height: 52px; border-radius: 6px; background: linear-gradient(150deg, #17171C, #0E0E11); border: 1px solid #1D1D22; }
.mini-shot.a { background: linear-gradient(150deg, #1B1B21, #101014); }
.mini-shot.b { background: linear-gradient(150deg, #141418, #0C0C0F); }
.mini-shot.c { background: linear-gradient(150deg, rgba(205,255,60,.16), #101014); }
.mini b { font-size: .76rem; font-weight: 500; color: #fff; }
.mini em { font-family: var(--mono); font-style: normal; font-size: .62rem; color: #74747E; }

.host-rows { display: flex; flex-direction: column; gap: .5rem; }
.host-row {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: #fff;
  border: 1px solid #1D1D22; border-radius: 9px; padding: .6rem .8rem;
}
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); flex: none; }
.host-row em { font-family: var(--mono); font-style: normal; font-size: .68rem; color: var(--acid); margin-left: auto; }
.host-row .sw { font-style: normal; font-size: .62rem; color: #74747E; font-family: var(--mono); }
.host-note { margin-top: .9rem; display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .68rem; color: #74747E; }
.ping { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); }
.js .ping { animation: ping 1.8s var(--e) infinite; }
@keyframes ping { 0%,100% { box-shadow: 0 0 0 0 rgba(205,255,60,.5); } 55% { box-shadow: 0 0 0 6px rgba(205,255,60,0); } }

.swatches { display: flex; gap: .5rem; flex-wrap: wrap; }
.sw-chip { width: 34px; height: 34px; border-radius: 8px; background: var(--c); border: 1px solid #26262C; }
.sw-chip.picked { outline: 2px solid var(--acid); outline-offset: 2px; }
.sw-note { margin-top: .9rem; font-family: var(--mono); font-size: .68rem; color: #74747E; }
.sw-bars { margin-top: .9rem; display: flex; flex-direction: column; gap: .4rem; }
.sw-bars i { display: block; height: 6px; border-radius: 3px; background: #1D1D22; }
.sw-bars i:nth-child(1) { width: 78%; background: var(--acid); opacity: .85; }
.sw-bars i:nth-child(2) { width: 54%; }
.sw-bars i:nth-child(3) { width: 88%; background: var(--acid); opacity: .35; }
.sw-bars i:nth-child(4) { width: 40%; }

@media (max-width: 900px) {
  .show { grid-template-columns: 1fr; }
  .show-stick { position: static; order: -1; }
  .beat { opacity: 1; border-left-color: var(--paper-ink); }
}

.feat-grid {
  max-width: var(--wide); margin: clamp(4rem, 9vh, 6rem) auto 0; padding: 0 1.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--paper-line);
}
.feat { padding: 2rem 1.6rem 2rem 0; border-bottom: 1px solid var(--paper-line); }
.feat h4 { margin-bottom: .45rem; }
.feat p { font-size: .94rem; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .feat-grid { grid-template-columns: 1fr; } }

/* ───────── review ───────── */
.review { padding: clamp(6rem, 15vh, 11rem) 0; }
.review-inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 1.6rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center;
}
/* Sized so "Point. Comment. Rate." holds its own line in this column
   instead of dropping "Rate." on a line by itself. */
.review h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.review-copy p { margin-top: 1.3rem; max-width: 34rem; }
.ticks { list-style: none; margin-top: 2rem; display: grid; gap: .8rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--white); font-size: .99rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: .9em; height: .5em; border-left: 2px solid var(--acid); border-bottom: 2px solid var(--acid);
  transform: rotate(-45deg);
}
.review-visual { display: flex; flex-direction: column; align-items: center; }
.anno {
  width: 100%; max-width: 400px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.1rem 1.3rem;
}
.anno-sel { font-family: var(--mono); font-size: .82rem; color: var(--acid); }
.anno-tags { display: flex; gap: .45rem; margin-top: .6rem; }
.tag { font-family: var(--mono); font-style: normal; font-size: .66rem; padding: .18rem .55rem; border-radius: 999px; }
.tag.sev { background: rgba(255,255,255,.08); color: var(--white); }
.tag.rate { background: var(--acid-wash); color: var(--acid); }
.anno-note { margin-top: .8rem; font-size: .95rem; }
.feed { width: 22px; height: 52px; color: var(--acid); opacity: .55; }
.js .feed { animation: feed 3s var(--e) infinite; }
@keyframes feed { 0%,100% { opacity: .3; transform: translateY(-2px); } 50% { opacity: .9; transform: translateY(2px); } }
.doc { width: 100%; max-width: 400px; background: #0B0B0E; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.doc-name { display: block; font-family: var(--mono); font-size: .72rem; color: var(--gray-dim); padding: .6rem 1.2rem; border-bottom: 1px solid var(--line); }
.doc-body { font-family: var(--mono); font-size: .78rem; line-height: 1.85; color: #C9CDBE; padding: 1rem 1.2rem 1.2rem; overflow-x: auto; }
@media (max-width: 920px) { .review-inner { grid-template-columns: 1fr; } }

/* ───────── download ───────── */
.download { padding: 0 0 clamp(6rem, 14vh, 9rem); }
.dl-grid {
  max-width: 900px; margin: clamp(3rem, 6vh, 4rem) auto 0; padding: 0 1.6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.dl {
  display: flex; flex-direction: column; gap: .6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 2rem 1.9rem;
  transition: border-color .3s var(--e), transform .4s var(--e);
}
.dl:hover { border-color: var(--line-2); transform: translateY(-3px); }
.dl-file { color: var(--acid); font-size: .84rem; }
.dl-copy { font-size: .96rem; margin-bottom: 1.2rem; }
@media (max-width: 720px) { .dl-grid { grid-template-columns: 1fr; } }

/* ───────── footer ───────── */
.footer { border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--wide); margin: 0 auto; padding: clamp(3.5rem, 8vh, 5rem) 1.6rem 2.2rem;
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; align-items: flex-start;
}
.footer-tag { font-size: .94rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .94rem; color: var(--gray); transition: color .2s var(--e); }
.footer-links a:hover { color: var(--acid); }
.footer-legal {
  max-width: var(--wide); margin: 0 auto; padding: 1.4rem 1.6rem 2.4rem;
  border-top: 1px solid var(--line); font-size: .8rem; color: var(--gray-dim);
}

/* ───────── reveal ───────── */
.js .rise, .js .reveal { opacity: 0; transform: translateY(18px); }
.js .rise { animation: rise .9s var(--e) both; animation-delay: var(--d, 0ms); }
.js .reveal { transition: opacity .8s var(--e), transform .8s var(--e); }
.js .reveal.in { opacity: 1; transform: none; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ───────── reduced motion: everything still, nothing hidden ───────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .rise, .js .reveal { opacity: 1 !important; transform: none !important; }
  .typed { width: auto !important; }
  .bar { transform: scaleX(1) !important; }
  .proj.fresh { opacity: 1 !important; transform: none !important; }
  .proj.fresh .badge.idle { visibility: hidden; }
  .proj.fresh .badge.cap { display: none !important; }
  .proj.fresh .badge.flip { display: block !important; opacity: 1 !important; }
  .scan { display: none; }
  .log-l { opacity: 0; }
  .log-l:last-child { opacity: 1; }
  .chip { display: none; }
  .step::before { transform: scaleX(1) !important; }
  .drain::after { transform: scaleX(1) !important; }
  .spotlight { display: none; }
}
