/* SiteGrab — "Cyanotype" design system (BRAND.md, direction A).
   Dark blueprint ground, chalk linework, one accent, measurements set in mono. */

:root {
  --blueprint: #0a1826;
  --blueprint-2: #0f2234;
  --blueprint-3: #16304a;
  --chalk: #eaf1f7;
  --chalk-soft: #a9bdd1;
  --chalk-faint: #6b839b;
  --rule: rgba(234, 241, 247, .14);
  --flare: #ff6a3d;
  --flare-deep: #d8420f;
  --verified: #3fcf8e;
  --drift: #ffc14d;
  --paper: #f7f8f6;
  --ink: #0a1826;

  --display: 'Sora', 'Inter', system-ui, sans-serif;
  --ui: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --shell: 1200px;
  --shadow: 0 24px 60px -32px rgba(0, 0, 0, .7);
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  position: relative;
  background:
    radial-gradient(120% 60% at 50% 0%, var(--blueprint-2), transparent 60%),
    var(--blueprint);
  color: var(--chalk);
  font: 400 17px/1.65 var(--ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* A film of grain over the whole page: flat dark screens band, grain hides it
   and keeps the surfaces from looking like plastic. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

a { color: inherit; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; }
h1 { font-size: clamp(42px, 6.4vw, 88px); line-height: .98; letter-spacing: -.04em; font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.06; letter-spacing: -.035em; }
h3 { font-size: 20px; line-height: 1.3; letter-spacing: -.02em; }

/* The one phrase that carries the promise, marked rather than italicised. */
em {
  font-style: normal;
  color: var(--chalk);
  text-decoration: underline;
  text-decoration-color: var(--flare);
  text-decoration-thickness: .07em;
  text-underline-offset: .12em;
  text-decoration-skip-ink: none;
}

p { margin: 0 0 18px; color: var(--chalk-soft); }

.lede { max-width: 60ch; font-size: 18px; margin-top: 18px; }
.note { margin: 26px 0 0; font: 400 13px/1.6 var(--mono); color: var(--chalk-faint); }

img { display: block; max-width: 100%; height: auto; }

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }

.label {
  font: 500 12px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--chalk-faint);
}

/* The section label reads as a chip so a band announces itself before the
   heading does, the way the reference sites do it. */
.label--pill {
  display: inline-block;
  margin: 0 0 20px;
  padding: 8px 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(15, 34, 52, .7);
  color: var(--chalk-soft);
}

/* Centred section opener, kept for the one band that earns the spotlight. */
.sec-head { text-align: center; margin-bottom: 64px; }

/* Everywhere else a band opens the way a spread does: numbered label and
   heading on the left, the standfirst set beside it and baseline-aligned. */
.sec-head .lede, .lede--mid { margin-inline: auto; text-align: center; }

.sec-head--split { text-align: left; margin-bottom: 52px; }
.sec-head--split h2 { margin: 0; max-width: 20ch; }
.sec-head--split .lede { margin: 18px 0 0; margin-inline: 0; text-align: left; max-width: 44ch; }
@media (min-width: 1000px) {
  .sec-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 8px 64px;
    align-items: end;
  }
  .sec-head--split .lede { margin: 0 0 7px; }
}

/* The numeral does the work the pill used to do, without the chip. */
.label__no { margin-right: 12px; color: var(--flare); }
/* A second opener inside one section needs air above it, not a seam. */
.sec-head--again { margin-top: 92px; }
.sec-head--split .label { display: block; margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.sec-head .ladder { justify-content: center; margin: 26px 0 0; }

/* Motion: bands rise as they are reached, children a beat apart. Only armed
   once the observer exists, so nothing can be left invisible. */
.motion [data-reveal] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s cubic-bezier(.2, .8, .2, 1), transform .72s cubic-bezier(.2, .8, .2, 1);
}
.motion [data-reveal].is-in > * { opacity: 1; transform: none; }
.motion [data-reveal].is-in > *:nth-child(2) { transition-delay: .07s; }
.motion [data-reveal].is-in > *:nth-child(3) { transition-delay: .14s; }
.motion [data-reveal].is-in > *:nth-child(4) { transition-delay: .21s; }
.motion [data-reveal].is-in > *:nth-child(5) { transition-delay: .26s; }
.motion [data-reveal].is-in > *:nth-child(n+6) { transition-delay: .3s; }

.num { font: 500 inherit/inherit var(--mono); font-variant-numeric: tabular-nums; }

/* Nav ---------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 20;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 20px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(15, 34, 52, .72);
  backdrop-filter: blur(16px);
  transition: padding .3s cubic-bezier(.2, .8, .2, 1), background .3s, box-shadow .3s;
}

/* Once the hero is behind you the bar tightens and lifts off the page. */
.nav.is-stuck .nav__pill {
  padding: 7px 10px 7px 16px;
  background: rgba(10, 24, 38, .88);
  box-shadow: 0 22px 50px -28px rgba(0, 0, 0, .95);
}

.nav a { font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--chalk-soft); text-decoration: none; }
.nav a:hover { color: var(--chalk); }
.nav__mark { display: inline-flex; align-items: center; gap: 9px; font: 700 17px/1 var(--display); letter-spacing: -.03em; color: var(--chalk); text-transform: none; }

.nav__cta {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--flare);
  color: #150802 !important;
}
.nav__cta:hover { background: #ff7d55; }

@media (max-width: 720px) {
  .nav { position: static; inset: auto; padding: 14px 0 0; }
  .nav__pill { gap: 14px; padding: 10px 12px; flex-wrap: wrap; justify-content: center; }
  .nav__pill a:not(.nav__mark):not(.nav__cta) { display: none; }
}

/* The mark: the captured frame with its rebuild offset behind it. */
.mark {
  position: relative;
  width: 15px; height: 15px;
  border: 1.5px solid var(--chalk-soft);
  border-radius: 3px;
}
.mark::after {
  content: '';
  position: absolute;
  inset: 4px -5px -5px 4px;
  border-radius: 3px;
  background: var(--flare);
}

/* Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .2);
  background: var(--flare);
  color: #150802;
  font: 600 15px/1 var(--ui);
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 0 10px 24px -12px rgba(255, 106, 61, .6);
  transition: transform .14s, background .14s;
}

.btn:hover { transform: translateY(-1px); background: #ff7d55; }
.btn:active { background: var(--flare-deep); transform: none; }

.btn--lg { padding: 16px 18px 16px 28px; font-size: 16px; }
.btn--lg.btn--ghost { padding: 16px 28px; }

/* The arrow rides in its own disc and nudges on hover. */
.btn__arrow {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  font-size: 14px;
  transition: transform .2s cubic-bezier(.2, .8, .2, 1);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--chalk);
  border: 1px solid var(--rule);
  box-shadow: none;
}

.btn--ghost:hover { background: rgba(234, 241, 247, .05); }
.btn--block { display: flex; justify-content: center; width: 100%; margin-top: 22px; }

/* Sections ----------------------------------------------------------- */

section { position: relative; padding: 100px 0; border-top: 1px solid var(--rule); }
section:first-of-type, .hero + section { border-top: 0; }
@media (max-width: 620px) { section { padding: 76px 0; } }

/* Each seam gets a faint light on it so the bands read as separate rooms
   rather than one long scroll. */
section::before {
  content: '';
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 61, .45), transparent);
  opacity: .7;
  pointer-events: none;
}
section:first-of-type::before, .hero + section::before { display: none; }
@media (min-width: 900px) { section { padding: 116px 0; } }

/* Hero --------------------------------------------------------------- */

.hero { position: relative; padding: 132px 0 0; overflow: hidden; }
@media (min-width: 900px) { .hero { padding-top: 168px; } }

/* Rendered backdrop behind the fold, faded out before the copy starts. */
.hero__glow {
  position: absolute;
  inset: 0 0 auto;
  height: 1180px;
  background: url('/img/hero-bg.webp') top center / cover no-repeat;
  mask-image: linear-gradient(#000 58%, transparent);
  opacity: .9;
  pointer-events: none;
}

/* A faint blueprint grid so the ground reads as drafting paper, not a void. */
.hero__mesh {
  position: absolute;
  inset: 0 0 auto;
  height: 1100px;
  background-image:
    linear-gradient(rgba(234, 241, 247, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 241, 247, .05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(70% 60% at 50% 12%, rgba(0, 0, 0, .5), transparent 72%);
  pointer-events: none;
}

/* Two-column hero, used by the download page where the copy sits beside a
   facts card. */
.hero__grid { position: relative; display: grid; gap: 56px; }
@media (min-width: 1080px) {
  .hero__grid { grid-template-columns: minmax(0, 54fr) minmax(0, 46fr); align-items: center; gap: 48px; }
  .hero__grid--tight { grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); }
}
.hero__grid h1 { max-width: 22ch; font-size: clamp(38px, 4.6vw, 64px); line-height: 1.02; }
.hero__grid .hero__lede { margin-inline: 0; }
.hero__grid .hero__actions { justify-content: flex-start; }

.hero__inner { position: relative; text-align: center; }
.hero h1 { max-width: 18ch; margin: 0 auto 26px; }
.hero__lede { max-width: 62ch; margin-inline: auto; font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 18px; font: 400 13px/1.5 var(--mono); color: var(--chalk-faint); }

/* Claim strip under the buttons: numbers first, separated by hairlines. */
.chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 26px;
  margin: 30px 0 0; padding: 0;
  list-style: none;
  font: 400 13px/1 var(--ui);
  color: var(--chalk-faint);
}
.chips li { display: flex; align-items: center; gap: 8px; }
.chips li + li { padding-left: 26px; border-left: 1px solid var(--rule); }
.chips .num { font: 500 14px/1 var(--mono); color: var(--chalk); }
@media (max-width: 620px) { .chips li + li { padding-left: 0; border-left: 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 22px;
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font: 500 12px/1 var(--mono);
  letter-spacing: .06em;
  color: var(--chalk-soft);
  background: rgba(15, 34, 52, .6);
}
.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--verified); box-shadow: 0 0 0 4px rgba(63, 207, 142, .18); }

/* Proof numbers under the buttons: the claim and its unit, on a rule. */
.proof { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid var(--rule); list-style: none; }
.proof strong { display: block; font: 700 26px/1.1 var(--display); letter-spacing: -.03em; color: var(--chalk); }
.proof span { font: 400 12px/1.4 var(--mono); letter-spacing: .04em; color: var(--chalk-faint); }

/* Product shot: a browser frame holding a real rebuild, with the panel
   overlapping it and the measured score pinned to the corner. It tilts back
   until you reach it, then settles flat — driven by scroll position, so it
   tracks the reader rather than firing on a timer. */
.shot { position: relative; margin: 74px auto 0; }
.shot__rise { position: relative; transform-origin: 50% 0; will-change: transform; }

@keyframes settle {
  from { transform: perspective(1800px) rotateX(11deg) scale(.9); opacity: .35; }
  to { transform: none; opacity: 1; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .shot__rise {
      animation: settle linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 34%;
    }
  }
}

.frame {
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  background: var(--blueprint-2);
  box-shadow: 0 60px 120px -50px rgba(0, 0, 0, .9), 0 0 0 1px rgba(255, 255, 255, .03);
}
.frame__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--rule); background: rgba(10, 24, 38, .8); }
.frame__bar i { width: 8px; height: 8px; border-radius: 999px; background: var(--blueprint-3); }
.frame__url { margin-left: 12px; font: 400 11px/1 var(--mono); color: var(--chalk-faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.shot__panel {
  position: absolute;
  left: -14px;
  bottom: -56px;
  width: 156px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9);
}
@media (min-width: 1080px) { .shot__panel { left: -96px; bottom: -60px; width: 214px; } }
@media (min-width: 1360px) { .shot__panel { left: -132px; } }
@media (max-width: 620px) { .shot__panel { display: none; } }

.shot__badge {
  position: absolute;
  right: -8px; top: -14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--verified);
  color: #05271a;
  font: 500 12px/1 var(--mono);
  letter-spacing: .04em;
  box-shadow: 0 16px 34px -16px rgba(63, 207, 142, .8);
}
.shot figcaption { margin-top: 22px; text-align: center; font: 400 12px/1.6 var(--mono); color: var(--chalk-faint); }

/* Drag-to-compare: the original on the left of the handle, our rebuild on the
   right. Same screenshot pipeline that produces the scores. */
.compare { position: relative; --split: 50%; touch-action: pan-y; }
.compare img { width: 100%; }
.compare__b { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--split)); }
.compare__b img { height: 100%; object-fit: cover; object-position: top; }

.compare__tag {
  position: absolute;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font: 500 11px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(10, 24, 38, .84);
  color: var(--chalk-soft);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.compare__tag--a { left: 14px; }
.compare__tag--b { right: 14px; color: var(--verified); }

.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split);
  width: 2px;
  margin-left: -1px;
  background: var(--chalk);
  pointer-events: none;
}
.compare__handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid var(--chalk);
  background: rgba(10, 24, 38, .7);
  backdrop-filter: blur(6px);
}

.compare input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.compare input[type=range]::-webkit-slider-thumb { appearance: none; width: 44px; height: 100%; }
.compare input[type=range]:focus-visible { outline: 2px solid var(--flare); outline-offset: 3px; }

/* Price ladder: what the licence costs now and what it costs next. */
.ladder { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.ladder li { font: 500 12px/1 var(--mono); letter-spacing: .06em; color: var(--chalk-faint); padding: 8px 12px; border: 1px solid var(--rule); border-radius: 999px; }
.ladder li[aria-current] { color: #150802; background: var(--flare); border-color: transparent; }
.ladder li[aria-current] + li::before { content: 'then '; }
.ladder li.is-past { text-decoration: line-through; opacity: .5; }

/* How full the current step of the ladder is, read from the licence table. */
.meter { height: 5px; margin: 4px 0 10px; border-radius: 999px; background: var(--blueprint-3); overflow: hidden; }
.meter span { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--flare-deep), var(--flare)); transition: width 1s cubic-bezier(.2, .8, .2, 1); }
.meter__note { margin: 0 0 4px; font: 400 12px/1.5 var(--mono); color: var(--chalk-faint); }

/* Sticky bar: the offer stays reachable once the hero is gone. */
.sticky {
  position: fixed;
  z-index: 30;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  padding: 0 16px 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity .2s, transform .28s cubic-bezier(.2, .8, .2, 1);
}
.sticky.is-on { opacity: 1; transform: none; }
.sticky__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 12px 12px 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(15, 34, 52, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .9);
}
.sticky p { margin: 0; font: 500 13px/1.3 var(--ui); color: var(--chalk-soft); }
.sticky strong { color: var(--chalk); }
@media (max-width: 620px) { .sticky p { display: none; } .sticky__inner { padding: 10px; } }

/* Quote wall ---------------------------------------------------------- */

.quote { display: flex; flex-direction: column; gap: 16px; }
.quote blockquote { margin: 0; font: 500 17px/1.5 var(--ui); letter-spacing: -.01em; color: var(--chalk); }
.quote figcaption { display: flex; align-items: center; gap: 12px; font: 400 13px/1.3 var(--ui); color: var(--chalk-faint); margin-top: auto; }
.quote img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; }
.quote b { display: block; font-weight: 500; color: var(--chalk-soft); }

/* Fact list on the download card. */
.facts { margin: 18px 0 0; padding: 0; list-style: none; }
.facts li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--rule); font: 400 13px/1.4 var(--ui); }
.facts li span:first-child { font: 500 11px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--chalk-faint); }
.facts li span:last-child { color: var(--chalk-soft); text-align: right; }

/* Row of tested sites, closing the fold. It drifts, so the fold has one
   moving thing in it without anything blinking or counting. */
.marquee { margin-top: 84px; padding: 26px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; }
.marquee { mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__label { margin: 0 0 16px; text-align: center; }
.marquee__track { display: flex; width: max-content; gap: 34px; }
.marquee__row { display: flex; gap: 34px; font: 400 14px/1 var(--mono); color: var(--chalk-soft); white-space: nowrap; }
.marquee__row span::after { content: '\00b7'; margin-left: 34px; color: var(--chalk-faint); }

@keyframes drift { to { transform: translateX(calc(-50% - 17px)); } }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: drift 46s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
}

.grid { display: grid; gap: 24px; }
@media (min-width: 760px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } }

/* Bento: the first limit is the one people need to read, so it gets the
   width and the tint. */
@media (min-width: 760px) {
  .bento .card--wide { grid-column: span 2; }
  .bento .card--wide h3 { font-size: 24px; }
}
.bento .card--wide:first-child {
  background:
    radial-gradient(80% 140% at 8% 0%, rgba(255, 106, 61, .14), transparent 68%),
    var(--blueprint-2);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--blueprint-2);
  box-shadow: var(--shadow);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1), border-color .24s, box-shadow .24s;
}

/* A light that follows the pointer across a card. */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, -30%), rgba(255, 106, 61, .13), transparent 68%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card > * { position: relative; z-index: 1; }

.grid:not(.grid--2) .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 61, .35);
  box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .95);
}

.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* Closing call to action ---------------------------------------------- */

.band {
  position: relative;
  overflow: hidden;
  padding: 96px 48px 88px;
  border: 1px solid var(--rule);
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 118%, rgba(255, 106, 61, .26), transparent 68%),
    url('/img/band-bg.webp') center / cover no-repeat,
    var(--blueprint-2);
  box-shadow: var(--shadow);
}

/* Keeps the textured band dark enough under the display type. */
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 50% 118%, rgba(255, 106, 61, .34), transparent 66%),
    radial-gradient(58% 62% at 50% 34%, rgba(10, 24, 38, .8), rgba(10, 24, 38, .18));
  pointer-events: none;
}
.band > * { position: relative; }
.band h2 { font-size: clamp(34px, 5vw, 62px); }
.band p { max-width: 54ch; margin: 20px auto 32px; }
@media (max-width: 620px) { .band { padding: 60px 24px 56px; } }

/* Head to head ------------------------------------------------------- */

/* One page per band, four copies of it as lengths. Text alone hides the
   difference between an 88 and a 99; a bar cannot. */
.vs { margin: 0 0 30px; }
.vs__key { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 26px; padding: 0; list-style: none; font: 400 12px/1 var(--mono); color: var(--chalk-faint); }
.vs__key li { display: flex; align-items: center; gap: 8px; }
.vs__key i { width: 14px; height: 3px; border-radius: 2px; background: var(--blueprint-3); }
.vs__key li:first-child i { background: var(--verified); }

.vs__row { padding: 22px 0; border-top: 1px solid var(--rule); }
.vs__row:last-of-type { border-bottom: 1px solid var(--rule); }
.vs__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 0 0 14px; }
.vs__site { font: 600 15px/1.2 var(--ui); color: var(--chalk); }
.vs__site span { display: block; margin-top: 5px; font: 400 12px/1 var(--mono); color: var(--chalk-faint); }
.vs__lead { font: 500 12px/1 var(--mono); letter-spacing: .04em; color: var(--verified); white-space: nowrap; }
.vs__lead--loss { color: var(--drift); }

.vs__bars { display: grid; gap: 7px; }
.vs__bar { display: grid; grid-template-columns: 82px minmax(0, 1fr) 58px; align-items: center; gap: 12px; font: 400 12px/1 var(--mono); color: var(--chalk-faint); }
.vs__bar b { font-weight: 400; }
.vs__track { height: 8px; border-radius: 2px; background: rgba(234, 241, 247, .07); overflow: hidden; }
.vs__fill { display: block; height: 100%; width: var(--v); border-radius: 2px; background: rgba(155, 179, 201, .5); transform-origin: 0 50%; }
.vs__num { text-align: right; }
.vs__bar--us { color: var(--chalk); }
.vs__bar--us .vs__fill { background: linear-gradient(90deg, rgba(63, 207, 142, .35), var(--verified)); }
.vs__bar--us .vs__num { color: var(--verified); }

/* Narrow: the verdict drops under the site name rather than off the edge. */
@media (max-width: 700px) {
  .vs__head { display: block; }
  .vs__lead { white-space: normal; margin: 8px 0 0; }
  .vs__bar { grid-template-columns: 76px minmax(0, 1fr) 50px; gap: 8px; font-size: 11px; }
  .vs__bar b { white-space: nowrap; }
}

.motion .vs__fill { transform: scaleX(0); transition: transform .9s cubic-bezier(.2, .8, .2, 1); }
.motion .is-in .vs__fill { transform: none; }
.motion .is-in .vs__bar:nth-child(2) .vs__fill { transition-delay: .05s; }
.motion .is-in .vs__bar:nth-child(3) .vs__fill { transition-delay: .1s; }
.motion .is-in .vs__bar:nth-child(4) .vs__fill { transition-delay: .15s; }

/* The totals, read as a scoreboard rather than a fifth table row. */
.vs__totals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 30px 0 0; background: var(--rule); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
@media (min-width: 780px) { .vs__totals { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.vs__total { padding: 20px 18px; background: var(--blueprint-2); }
.vs__total--us { background: rgba(63, 207, 142, .07); }
.vs__total h4 { margin: 0; font: 500 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--chalk-faint); }
.vs__total strong { display: block; margin: 12px 0 6px; font: 700 30px/1 var(--display); letter-spacing: -.03em; color: var(--chalk); }
.vs__total--us strong { color: var(--verified); }
.vs__total p { margin: 0; font: 400 12px/1.5 var(--mono); color: var(--chalk-faint); }

/* Exhibit: the same band of one page, as three tools left it. */
.exhibit { display: grid; gap: 14px; margin: 34px 0 0; }
@media (min-width: 860px) { .exhibit { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.exhibit figure { margin: 0; border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; background: var(--blueprint-2); }
.exhibit img { display: block; width: 100%; height: auto; }
.exhibit figcaption { padding: 12px 14px; font: 400 12px/1.5 var(--mono); color: var(--chalk-faint); border-top: 1px solid var(--rule); }
.exhibit figcaption b { display: block; font-weight: 500; color: var(--chalk); }
.exhibit figure:last-child figcaption b { color: var(--verified); }

/* Measurement table -------------------------------------------------- */

table { width: 100%; border-collapse: collapse; font: 400 14px/1.4 var(--mono); font-variant-numeric: tabular-nums; }
th, td { padding: 12px 10px; text-align: right; border-bottom: 1px solid var(--rule); }
th:nth-child(2), td:nth-child(2) { text-align: left; }

/* Narrow screens scroll the table sideways rather than widening the page. */
.scroller { overflow-x: auto; }
.scroller .sheet { min-width: 560px; }

/* The measured table sits on its own card so it reads as an artefact. */
.sheet { border-collapse: separate; border-spacing: 0; }
.sheet tbody tr { transition: background .2s; }
.sheet tbody tr:hover { background: rgba(234, 241, 247, .04); }
.sheet tbody tr:last-child td { border-bottom: 0; font-weight: 500; color: var(--chalk); }
th:first-child, td:first-child { text-align: left; }
th { font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--chalk-faint); }
td { color: var(--chalk-soft); }
td.score { color: var(--verified); }
td.warn { color: var(--drift); }

/* A rule under each score, drawn to the score itself: the spread between a 91
   and a 99 is invisible as text and obvious as a length. */
.bar {
  position: absolute;
  right: 10px; bottom: -1px;
  width: var(--v);
  height: 2px;
  background: linear-gradient(90deg, rgba(63, 207, 142, .15), var(--verified));
  transform-origin: 100% 50%;
}
.bar--warn { background: linear-gradient(90deg, rgba(155, 179, 201, .15), var(--drift)); }
.th-note { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .04em; text-transform: none; color: var(--chalk-faint); opacity: .8; }
td.score, td.warn { position: relative; }

.motion .bar { transform: scaleX(0); transition: transform 1.1s cubic-bezier(.2, .8, .2, 1); }
.motion .is-in .bar { transform: none; }
.motion .is-in tr:nth-child(2) .bar { transition-delay: .06s; }
.motion .is-in tr:nth-child(3) .bar { transition-delay: .12s; }
.motion .is-in tr:nth-child(4) .bar { transition-delay: .18s; }
.motion .is-in tr:nth-child(5) .bar { transition-delay: .24s; }
.motion .is-in tr:nth-child(6) .bar { transition-delay: .3s; }
.motion .is-in tr:nth-child(7) .bar { transition-delay: .36s; }
.motion .is-in tr:nth-child(8) .bar { transition-delay: .42s; }
.motion .is-in tr:nth-child(9) .bar { transition-delay: .48s; }

/* Pricing ------------------------------------------------------------ */

.price { display: flex; align-items: baseline; gap: 10px; margin: 6px 0 18px; }
.price strong { font: 800 46px/1 var(--display); letter-spacing: -.03em; color: var(--chalk); }
.price span { font: 400 13px/1 var(--mono); color: var(--chalk-faint); }
.plan ul { margin: 0; padding: 0; list-style: none; }
.plan li { padding: 9px 0; border-top: 1px solid var(--rule); font-size: 15px; color: var(--chalk-soft); }
.plan li::before { content: '—'; margin-right: 10px; color: var(--flare); }
.plan { display: flex; flex-direction: column; }
.plan ul { flex: 1; }

.plan--lead { border-color: rgba(255, 106, 61, .45); box-shadow: 0 40px 90px -50px rgba(255, 106, 61, .5), var(--shadow); }
.plan__flag { margin: 0 0 10px; font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--flare); }

/* Steps -------------------------------------------------------------- */

.steps { counter-reset: step; margin: 44px 0 0; padding: 0; list-style: none; display: grid; gap: 0; }
.steps li { counter-increment: step; padding: 26px 0 26px 60px; border-top: 1px solid var(--rule); position: relative; color: var(--chalk-soft); }
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps h3 { margin-bottom: 8px; font-family: var(--ui); font-weight: 500; font-size: 18px; color: var(--chalk); }
.steps p { margin: 0; max-width: 76ch; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 999px;
  font: 500 12px/1 var(--mono); color: var(--flare);
  background: var(--blueprint-2);
}

code { font: 400 13px/1.5 var(--mono); background: var(--blueprint-3); padding: 2px 6px; border-radius: 4px; color: var(--chalk); }

@media (min-width: 760px) {
  .bento .card--full { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 8px 40px; align-items: baseline; }
  .bento .card--full .card__tag { grid-column: 1 / -1; }
  .bento .card--full h3 { font-size: 24px; margin: 0; }
}

.card__tag {
  display: flex; align-items: center; gap: 9px;
  margin: 0 0 14px;
  font: 400 11px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase;
  color: var(--chalk-faint);
}
.card__tag::before { content: ''; width: 5px; height: 5px; border-radius: 999px; background: var(--flare); box-shadow: 0 0 12px 2px rgba(255, 106, 61, .55); }

/* Numbers band ------------------------------------------------------- */

.stats {
  display: grid;
  gap: 26px;
  margin-top: 74px;
  padding: 34px 34px 30px;
  border: 1px solid var(--rule);
  border-radius: 22px;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(255, 106, 61, .10), transparent 60%),
    var(--blueprint-2);
  box-shadow: var(--shadow);
}
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.stat { padding: 0 26px; }
.stat strong {
  display: block;
  margin-bottom: 8px;
  font: 800 clamp(30px, 3.4vw, 44px)/1 var(--display);
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  color: var(--chalk);
}
.stat span { font: 400 13px/1.5 var(--ui); color: var(--chalk-faint); }
@media (min-width: 760px) { .stat + .stat { border-left: 1px solid var(--rule); } }

/* Walkthrough -------------------------------------------------------- */

.track { display: grid; gap: 40px; }
@media (min-width: 1000px) { .track { grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); gap: 64px; align-items: start; } }

.steps--track { margin-top: 0; }
.steps--track li { transition: opacity .4s, border-color .4s; }
@media (min-width: 1000px) {
  /* Only the step being read stays lit, so the column reads as a sequence
     rather than four equal paragraphs. */
  .steps--track li { opacity: .42; }
  .steps--track li.is-on { opacity: 1; border-color: rgba(255, 106, 61, .45); }
  .steps--track li.is-on::before { color: #150802; background: var(--flare); border-color: transparent; }
}

.stage { display: none; }
@media (min-width: 1000px) {
  .stage { display: block; }
  .stage__inner { position: sticky; top: 118px; height: 420px; }
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: 20px;
  background:
    radial-gradient(110% 130% at 100% 0%, rgba(63, 207, 142, .08), transparent 62%),
    var(--blueprint-2);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .5s cubic-bezier(.2, .8, .2, 1), transform .5s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
  overflow: hidden;
}
.slide.is-on { opacity: 1; transform: none; }

.slide img { border-radius: 12px; border: 1px solid var(--rule); height: 300px; object-fit: cover; object-position: top center; width: 100%; }
.slide figcaption { display: flex; align-items: center; gap: 9px; margin-top: 18px; font: 400 13px/1.4 var(--mono); color: var(--chalk-soft); }

.tick { width: 16px; height: 16px; flex: none; border-radius: 999px; background: rgba(63, 207, 142, .16); position: relative; }
.tick::after {
  content: '';
  position: absolute; left: 5px; top: 4px;
  width: 4px; height: 7px;
  border: 1.5px solid var(--verified);
  border-top: 0; border-left: 0;
  transform: rotate(42deg);
}

.code {
  margin: 0;
  padding: 20px;
  height: 300px;
  border-radius: 12px;
  border: 1px solid var(--rule);
  background: var(--blueprint);
  font: 400 13px/2 var(--mono);
  color: var(--chalk-soft);
  overflow: hidden;
}
.c-key { color: var(--drift); }
.c-val { color: var(--chalk); }
.c-cmt { color: var(--chalk-faint); }

.files, .blocks { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; height: 300px; align-content: center; }
.files li, .blocks li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rule); border-radius: 12px;
  background: var(--blueprint-3);
  font: 500 14px/1 var(--ui); color: var(--chalk);
}
.files em, .blocks em { margin-left: auto; text-decoration: none; font: 400 12px/1 var(--mono); color: var(--chalk-faint); }
.files__ext {
  display: grid; place-items: center;
  width: 42px; height: 26px; flex: none;
  border-radius: 6px;
  background: rgba(255, 106, 61, .16);
  font: 500 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--flare);
}
.blocks li span { font: 400 12px/1 var(--mono); color: var(--chalk-faint); }
.blocks li::before { content: ''; width: 14px; height: 14px; flex: none; border: 1px solid var(--chalk-faint); border-radius: 3px; }
.blocks li em { text-transform: none; }

/* Forms -------------------------------------------------------------- */

input, select, textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--blueprint-3);
  color: var(--chalk);
  font: 400 14px/1.4 var(--ui);
}

input:focus, select:focus, textarea:focus { outline: 2px solid var(--flare); outline-offset: 1px; }

.field { display: grid; gap: 6px; }
.field > span { font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--chalk-faint); }

.notice { padding: 12px 14px; border-radius: 8px; border: 1px solid var(--rule); font: 400 13px/1.5 var(--mono); }
.notice--ok { color: var(--verified); }
.notice--bad { color: var(--flare); }

footer { padding: 48px 0 64px; border-top: 1px solid var(--rule); color: var(--chalk-faint); font-size: 14px; }
footer a { text-decoration: none; margin-right: 18px; color: var(--chalk-soft); }
footer a:hover { color: var(--chalk); }

.foot__grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: minmax(0, 1fr) auto; align-items: start; } }
.foot__grid .note { max-width: 48ch; margin-top: 14px; }
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 0; font: 500 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
