/* Fresh Slates — dark city to clean slate. */

:root {
  --night: #050607;
  --ink: #0b0d10;
  --gun: #14171b;
  --gun2: #1b1e23;
  --smoke: #8b9098;
  --smoke2: #5d636b;
  --steel: #7f9bb8;
  --ivory: #f3efe6;
  --paper: #ece7dc;
  --text: #e7e3da;
  --muted: #a6a39c;
  --clean: #bdf3ee;          /* the one colour: resolved */
  --line: rgba(231, 227, 218, .12);
  --line2: rgba(231, 227, 218, .22);
  --dark: #111317;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --serif: "Newsreader", Georgia, serif;

  --gut: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font: 400 17px/1.6 var(--display);
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--clean); color: var(--night); }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; background: var(--ivory); color: var(--night); padding: 10px 14px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--clean); outline-offset: 3px; }

.wrap { width: min(1240px, 100% - 2 * var(--gut)); margin-inline: auto; }

#world { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; transition: opacity .2s linear; }
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-3%,2%)} 40%{transform:translate(2%,-3%)} 60%{transform:translate(-2%,-1%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }
main, .foot { position: relative; z-index: 2; }

/* ---------- type ---------- */
.kicker {
  font: 500 11.5px/1.4 var(--mono);
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--smoke); margin: 0 0 22px;
}
.mega, h1, h2 {
  font-family: var(--display); font-weight: 800; font-stretch: 68%;
  text-transform: uppercase; letter-spacing: -.005em; line-height: .88;
  margin: 0; text-wrap: balance;
}
.mega { font-size: clamp(3.1rem, 10.5vw, 10rem); }
.lede { max-width: 38em; color: var(--muted); font-size: clamp(17px, 1.4vw, 19px); }

/* ---------- buttons ---------- */
.btn {
  --bg: transparent; --fg: currentColor; --bd: currentColor;
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 15px 22px; border: 1px solid var(--bd); background: var(--bg); color: var(--fg);
  font: 600 12px/1 var(--display); font-stretch: 90%; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .35s var(--ease), border-color .35s;
}
.btn::before {  /* the wipe */
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--wipe, var(--clean));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--night); border-color: var(--wipe, var(--clean)); }
.btn .ar { font-style: normal; transition: transform .35s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn.solid { --bg: var(--ivory); --fg: var(--night); --bd: var(--ivory); }
.btn.ghost { --bd: var(--line2); padding: 12px 18px; }
.btn.dark { --bg: var(--dark); --fg: var(--ivory); --bd: var(--dark); --wipe: var(--night); }
.btn.dark::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--clean); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.btn.dark:hover { color: var(--ivory); }
.btn.dark:hover::after { transform: scaleX(1); }
.link { background: none; border: 0; padding: 0; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; cursor: pointer; font-size: 14px; }
.link:hover { color: var(--text); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 20px var(--gut);
  transition: background .4s, color .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(5, 6, 7, .72); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); padding-block: 12px; border-color: var(--line); }
.nav.light { color: var(--dark); background: rgba(243, 239, 230, .82); border-color: rgba(17, 19, 23, .1); }
.nav.light .btn.ghost { --bd: rgba(17, 19, 23, .3); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand .clean { stroke: var(--clean); }
.brand span { font: 400 21px/1 var(--display); font-stretch: 88%; letter-spacing: -.01em; }
.brand b { font-weight: 800; }
.nav.light .brand .clean, .foot .brand .clean { stroke: #3a9e97; }
.nav nav { margin-left: auto; }
.nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav nav a { font-size: 13px; text-decoration: none; color: inherit; opacity: .72; transition: opacity .2s; }
.nav nav a:hover { opacity: 1; }
@media (max-width: 980px) {
  .nav nav { display: none; }
  .nav .btn.ghost { margin-left: auto; }
}
@media (max-width: 480px) {
  .nav .btn.ghost span { display: none; }
  .nav .btn.ghost { padding: 10px 14px; }
  .nav .btn.ghost::after { content: "Enquire"; }
  .nav .btn.ghost .ar { display: none; }
}

/* ---------- 1. hero ---------- */
.hero {
  min-height: 100svh; padding: 120px var(--gut) 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  position: relative;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 30vh; background: linear-gradient(transparent, rgba(5, 6, 7, .9)); pointer-events: none; z-index: -1; }
.js .rise { opacity: 0; transform: translateY(14px); animation: rise 1.2s var(--ease) forwards; }
.js .search.rise { animation-delay: .25s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.search { width: min(680px, 100%); }
.search label { display: block; font-size: clamp(15px, 1.5vw, 17px); color: var(--muted); margin-bottom: 18px; }
.bar {
  display: flex; align-items: center;
  background: rgba(12, 14, 17, .62); border: 1px solid var(--line2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: border-color .3s, box-shadow .3s;
}
.bar:focus-within { border-color: rgba(231, 227, 218, .5); box-shadow: 0 30px 80px -30px #000, 0 0 0 4px rgba(189, 243, 238, .07); }
.bar input {
  flex: 1; min-width: 0; border: 0; background: none; outline: none;
  padding: 20px 22px; font-size: clamp(18px, 2.2vw, 22px); letter-spacing: .01em;
}
.bar input::placeholder { color: var(--smoke2); }
.bar input::-webkit-search-cancel-button { display: none; }
.bar button { flex: none; width: 64px; align-self: stretch; border: 0; border-left: 1px solid var(--line); background: none; cursor: pointer; display: grid; place-items: center; color: var(--text); }
.bar button:hover { background: rgba(255, 255, 255, .05); }
.bar svg, .bq svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.note { margin: 12px 0 0; font: 400 11px/1.4 var(--mono); letter-spacing: .08em; color: var(--smoke2); }

.serp { list-style: none; margin: 26px 0 0; padding: 0; width: min(680px, 100%); text-align: left; }
.serp li {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 16px;
  padding: 13px 18px; border: 1px solid var(--line); border-top: 0;
  background: rgba(10, 12, 15, .7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(-6px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.serp li:first-child { border-top: 1px solid var(--line); }
.serp li.in { opacity: 1; transform: none; }
.serp .u { font: 400 11px/1.3 var(--mono); color: var(--smoke); grid-column: 1; }
.serp .t { font-size: 16px; color: #d6dde6; text-decoration: underline; text-decoration-color: rgba(214, 221, 230, .2); text-underline-offset: 3px; grid-column: 1; }
.serp .d { font-size: 13px; color: var(--smoke); grid-column: 1; }
.serp .k { grid-column: 2; grid-row: 1 / span 3; align-self: center; font: 500 9.5px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); border: 1px solid var(--line2); padding: 6px 8px; white-space: nowrap; }
.serp .imgs { display: flex; gap: 6px; margin-top: 6px; grid-column: 1; }
.serp .imgs span { width: 52px; height: 40px; background: linear-gradient(135deg, #2a2e34, #15181c); filter: blur(1.5px); }
@media (max-width: 560px) { .serp .k { display: none; } .serp li { padding: 11px 14px; } .serp .d { display: none; } }

.verdict { margin-top: 56px; }
.js .verdict .l1, .js .verdict .l2, .js .verdict .change, .js .verdict .btn { opacity: 0; transform: translateY(18px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.verdict.s1 .l1, .verdict.s1 .l2 { opacity: 1; transform: none; }
.verdict.s1 .l2 { transition-delay: .35s; }
.verdict.s2 .change, .verdict.s2 .btn { opacity: 1; transform: none; }
.verdict.s2 .btn { transition-delay: .4s; }
.verdict h1 { font-size: clamp(2.6rem, 7.4vw, 6.8rem); }
.verdict h1 span { display: block; }
.verdict .l1 { font-weight: 300; font-stretch: 80%; font-size: .52em; letter-spacing: .12em; margin-bottom: .2em; color: var(--muted); }
.verdict .change { font: italic 300 clamp(22px, 2.6vw, 32px)/1.2 var(--serif); margin: 26px 0 30px; color: var(--clean); }

.cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); margin: 0; font: 500 10px/1 var(--mono); letter-spacing: .3em; text-transform: uppercase; color: var(--smoke2); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cue span { width: 1px; height: 38px; background: linear-gradient(transparent, var(--smoke)); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- 2. takeover ---------- */
.takeover { height: 520vh; position: relative; background: linear-gradient(rgba(5, 6, 7, 0), rgba(5, 6, 7, .82) 12vh, rgba(7, 8, 10, .9) 90%, #08090b); }
.pin {
  position: sticky; top: 0; height: 100svh;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 90px); align-items: center;
  padding: 90px var(--gut) 40px; max-width: 1400px; margin-inline: auto;
}
.tk-copy h2 { font-size: clamp(2.6rem, 5.6vw, 5.4rem); margin-bottom: 34px; }
.tk-copy h2 span { display: block; color: var(--smoke); }
.stages { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.stages li { position: relative; padding: 11px 0 11px 44px; border-top: 1px solid var(--line); color: var(--smoke2); transition: color .5s; counter-increment: s; }
.stages li::before { content: "0" counter(s); position: absolute; left: 0; top: 14px; font: 500 11px/1 var(--mono); letter-spacing: .1em; }
.stages li::after { content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0; background: var(--clean); transition: width .8s var(--ease); }
.stages b { display: block; font-weight: 700; font-stretch: 75%; font-size: 19px; letter-spacing: .14em; text-transform: uppercase; }
.stages span { display: block; max-height: 0; overflow: hidden; font-size: 14.5px; line-height: 1.5; opacity: 0; transition: max-height .6s var(--ease), opacity .6s; }
.stages li.on { color: var(--text); }
.stages li.on::after { width: 100%; }
.stages li.on span { max-height: 4.5em; opacity: .75; padding-top: 3px; }
.stages li.past { color: var(--smoke); }
.ownline { margin: 30px 0 0; font: 800 clamp(1.4rem, 2.6vw, 2.4rem)/.95 var(--display); font-stretch: 68%; text-transform: uppercase; color: var(--clean); opacity: 0; transform: translateY(12px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.ownline.on { opacity: 1; transform: none; }

.board { border: 1px solid var(--line2); background: rgba(9, 11, 14, .78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 40px 120px -40px #000; }
.board-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.bq { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.bq svg { width: 16px; height: 16px; color: var(--smoke); }
.meter { font: 400 11px/1 var(--mono); letter-spacing: .08em; color: var(--smoke); white-space: nowrap; }
.meter b { font-size: 15px; color: var(--text); font-weight: 500; transition: color .4s; }
.meter b.full { color: var(--clean); }
.rows { --rh: 42px; position: relative; overflow: hidden; height: calc(var(--rh) * 14 + 34px); }
.row {
  position: absolute; left: 0; right: 0; top: 0; height: var(--rh);
  display: flex; align-items: center; gap: 12px; padding: 0 16px;
  border-bottom: 1px solid rgba(231, 227, 218, .06);
  transition: transform 1.1s var(--ease), opacity .7s, color .6s;
  will-change: transform;
}
.row i { width: 3px; align-self: stretch; margin-block: 9px; background: var(--smoke2); flex: none; transition: background .6s; }
.row.bad i { background: repeating-linear-gradient(0deg, var(--smoke2) 0 3px, transparent 3px 5px); }
.row .rt { flex: 1; min-width: 0; font-size: 14px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row .rt small { display: block; font: 400 10.5px/1.3 var(--mono); color: var(--smoke2); overflow: hidden; text-overflow: ellipsis; }
.row em { font: 500 9px/1 var(--mono); font-style: normal; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke2); white-space: nowrap; }
.row.own em { color: var(--smoke); }
.row.low { color: var(--smoke2); }
.row.own.top i { background: var(--clean); }
.row.own.top em { color: var(--clean); }
.row.bad.top { color: var(--text); }
.row.new { opacity: 0; }
.fold {
  position: absolute; left: 0; right: 0; height: 34px; top: calc(var(--rh) * 8);
  display: flex; justify-content: space-between; align-items: center; padding: 0 16px;
  font: 500 9.5px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--smoke);
  background: repeating-linear-gradient(-45deg, rgba(231, 227, 218, .03) 0 6px, transparent 6px 12px);
  border-block: 1px dashed var(--line2);
}
.rows .row.p2 { transform-origin: left; }
.board .fine { margin: 0; padding: 10px 16px; border-top: 1px solid var(--line); font: 400 10.5px/1.5 var(--mono); color: var(--smoke2); }

@media (max-width: 860px) {
  .takeover { height: 560vh; }
  .pin { grid-template-columns: 1fr; align-content: start; gap: 14px; padding-top: 74px; padding-bottom: 14px; }
  .tk-copy h2 { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 10px; }
  .tk-copy h2 span { display: inline; }
  .tk-copy .kicker { margin-bottom: 8px; }
  .stages { display: flex; gap: 6px; }
  .stages li { flex: 1; padding: 22px 0 0; min-width: 0; }
  .stages li::before { top: 8px; font-size: 9px; }
  .stages b { font-size: 9.5px; letter-spacing: .03em; overflow: hidden; text-overflow: ellipsis; }
  .stages span { display: none; }
  .ownline { position: absolute; left: var(--gut); right: var(--gut); bottom: 18px; margin: 0; text-align: center; z-index: 3; text-shadow: 0 2px 20px #000; }
  .ownline br { display: none; }
  .row em { display: none; }
  .row .rt { font-size: 13px; }
  .board .fine { display: none; }
}

/* ---------- 3. memory ---------- */
.memory { position: relative; padding: 22vh 0 18vh; background: linear-gradient(#08090b, #0a0c0f); overflow: hidden; }
.torch {
  position: absolute; inset: 0; pointer-events: none;
  --mx: 50%; --my: 30%;
  -webkit-mask-image: radial-gradient(circle 260px at var(--mx) var(--my), #000 0, rgba(0, 0, 0, .35) 45%, transparent 75%);
  mask-image: radial-gradient(circle 260px at var(--mx) var(--my), #000 0, rgba(0, 0, 0, .35) 45%, transparent 75%);
}
.torch p { margin: -40px; font: 500 30px/1.5 var(--mono); letter-spacing: .06em; color: rgba(231, 227, 218, .12); word-spacing: .2em; text-align: justify; transform: rotate(-4deg); }
.torch::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle 300px at var(--mx) var(--my), rgba(214, 222, 232, .06), transparent 70%); }
.memory .wrap { position: relative; }
.memory .mega { font-size: clamp(3rem, 10vw, 9.5rem); }
.sources { font: 400 clamp(13px, 1.2vw, 15px)/1.8 var(--mono); letter-spacing: .06em; color: var(--smoke); margin: 26px 0 0; max-width: 46em; }
.sodo { margin-top: 32vh; color: var(--ivory); }
.memory .lede { margin: 28px 0 60px; }

.casefile { margin: 0; border: 1px solid var(--line2); background: rgba(8, 10, 13, .82); }
.casefile figcaption { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--line); font: 500 10px/1.4 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); }
.casefile figcaption span:nth-child(2) { color: var(--smoke2); }
@media (max-width: 700px) { .casefile figcaption span:nth-child(2) { display: none; } }
#case { width: 100%; height: auto; overflow: visible; }
#case text { font-family: var(--mono); fill: var(--smoke); paint-order: stroke; stroke: #0a0c0f; stroke-width: 5px; stroke-linejoin: round; }
#case .ax { stroke: var(--line2); stroke-width: 1; }
#case .grid { stroke: rgba(231, 227, 218, .05); }
#case .edge { fill: none; stroke: rgba(231, 227, 218, .3); stroke-width: 1; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 1.6s var(--ease); }
#case.in .edge { stroke-dashoffset: 0; }
#case .node circle { fill: #0a0c0f; stroke: var(--text); stroke-width: 1.3; transition: r .3s, stroke .3s; }
#case .node.bad circle.core { fill: var(--smoke); stroke: none; }
#case .node.own circle { stroke: var(--clean); }
#case .node.own circle.core { fill: var(--clean); }
#case .node .ring { fill: none; stroke: var(--text); stroke-width: 1; opacity: 0; }
#case .node.ping .ring { animation: ping 1.4s var(--ease); }
#case .node.own .ring { stroke: var(--clean); }
@keyframes ping { 0% { opacity: .8; r: 6; } 100% { opacity: 0; r: 30; } }
#case .node, #case .lab { opacity: 0; transition: opacity .6s var(--ease); }
#case.in .node, #case.in .lab { opacity: 1; }
#case .lab text.h { fill: var(--text); font-family: var(--display); font-size: 15px; }
#case .scan { stroke: var(--clean); stroke-width: 1; opacity: .5; }
#case .scanglow { fill: url(#scanfade); }
@media (max-width: 700px) { .casefile { overflow-x: auto; -webkit-overflow-scrolling: touch; } .casefile figcaption { position: sticky; left: 0; width: 100vw; max-width: calc(100vw - 2 * var(--gut)); } #case { width: 900px; max-width: none; } }

.mapped { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 50px 0 0; border-top: 1px solid var(--line); }
.mapped div { padding: 20px 20px 0 0; }
.mapped dt { font: 500 11px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.mapped dd { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .mapped { grid-template-columns: 1fr 1fr; } .mapped div:last-child { grid-column: span 2; } }

/* ---------- 4. honest ---------- */
.honest { padding: 18vh 0; background: linear-gradient(#0a0c0f, #0e1115); }
.qa { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 20px clamp(30px, 5vw, 90px); align-items: end; padding: 7vh 0; border-top: 1px solid var(--line); }
.qa h2 { font-size: clamp(2.6rem, 7vw, 7rem); }
.qa:nth-of-type(2) h2 { color: var(--smoke); }
.qa p { margin: 0 0 12px; color: var(--muted); font-size: clamp(16px, 1.3vw, 18px); }
.qa .how { font: 400 11.5px/1.8 var(--mono); letter-spacing: .04em; color: var(--smoke); }
@media (max-width: 860px) { .qa { grid-template-columns: 1fr; } }
.promise { margin-top: 10vh; padding: 12vh 0 0; border-top: 1px solid var(--line2); text-align: center; }
.promise h2 { font-size: clamp(2.3rem, 6.4vw, 6.2rem); color: var(--ivory); }
.promise p { font: italic 300 clamp(20px, 2.4vw, 30px)/1.3 var(--serif); color: var(--muted); margin: 26px 0 0; }

/* ---------- 5. verbs ---------- */
.verbs { padding: 16vh 0; background: linear-gradient(#0e1115, #14171b); }
.verb {
  position: relative; display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 4fr) minmax(0, 3fr); gap: 20px clamp(24px, 4vw, 60px);
  align-items: center; padding: 6vh 0; border-top: 1px solid var(--line);
}
.verb::before { content: attr(data-n); position: absolute; top: 18px; left: 0; font: 500 11px/1 var(--mono); letter-spacing: .2em; color: var(--smoke2); }
.verb h2 { font-size: clamp(3.4rem, 7vw, 7rem); line-height: .82; }
.vd p { margin: 0 0 14px; color: var(--muted); }
.vd ul { list-style: none; margin: 0; padding: 0; font: 400 12px/1.4 var(--mono); color: var(--smoke); }
.vd li { padding: 7px 0; border-top: 1px solid var(--line); }
.vd li::before { content: "— "; color: var(--smoke2); }
@media (max-width: 980px) { .verb { grid-template-columns: 1fr 1fr; } .verb h2 { grid-column: span 2; } }
@media (max-width: 600px) { .verb { grid-template-columns: 1fr; } .verb h2 { grid-column: auto; } .demo { display: none !important; } }

.demo { height: 150px; position: relative; border: 1px solid var(--line); background: rgba(5, 6, 7, .5); overflow: hidden; }
.d-remove { display: grid; place-items: center; font: 400 11px/1 var(--mono); }
.d-remove span { grid-area: 1 / 1; padding: 8px 10px; white-space: nowrap; }
.d-remove .line { color: var(--smoke); position: relative; }
.d-remove .line::after { content: ""; position: absolute; left: 0; top: 50%; height: 1px; width: 100%; background: var(--text); transform: scaleX(0); transform-origin: left; }
.d-remove .done { color: var(--clean); border: 1px solid rgba(189, 243, 238, .35); opacity: 0; }
.verb.in .d-remove .line::after { animation: strike 5s var(--ease) infinite; }
.verb.in .d-remove .line { animation: fadeout 5s var(--ease) infinite; }
.verb.in .d-remove .done { animation: fadein 5s var(--ease) infinite; }
@keyframes strike { 0%, 15% { transform: scaleX(0); } 35%, 100% { transform: scaleX(1); } }
@keyframes fadeout { 0%, 40% { opacity: 1; filter: none; } 55%, 88% { opacity: 0; filter: blur(4px); } 100% { opacity: 1; filter: none; } }
@keyframes fadein { 0%, 50% { opacity: 0; } 62%, 86% { opacity: 1; } 96%, 100% { opacity: 0; } }

.d-suppress .b { position: absolute; left: 16px; right: 16px; height: 18px; border: 1px solid var(--line2); }
.d-suppress .b.bad { top: 18px; background: repeating-linear-gradient(-45deg, rgba(231, 227, 218, .12) 0 3px, transparent 3px 7px); }
.d-suppress .b.own { border-color: rgba(189, 243, 238, .5); background: rgba(189, 243, 238, .08); }
.d-suppress .b.own:nth-child(1) { top: 46px; }
.d-suppress .b.own:nth-child(2) { top: 74px; }
.d-suppress .fl { position: absolute; left: 0; right: 0; top: 104px; border-top: 1px dashed var(--smoke2); }
.verb.in .d-suppress .b.bad { animation: sink 6s var(--ease) infinite; }
.verb.in .d-suppress .b.own:nth-child(1) { animation: lift 6s var(--ease) infinite; }
.verb.in .d-suppress .b.own:nth-child(2) { animation: lift 6s var(--ease) infinite .15s; }
@keyframes sink { 0%, 20% { transform: none; opacity: 1; } 50%, 85% { transform: translateY(94px); opacity: .45; } 100% { transform: none; opacity: 1; } }
@keyframes lift { 0%, 20% { transform: none; } 50%, 85% { transform: translateY(-28px); } 100% { transform: none; } }

.d-control { display: grid; place-items: center; }
.d-control .c { font: 700 12px/1 var(--display); letter-spacing: .2em; text-transform: uppercase; }
.d-control .dot { position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; margin: -4.5px; border: 1px solid var(--smoke); border-radius: 50%; transform: rotate(calc(var(--i) * 45deg)) translateY(-52px); }
.verb.in .d-control .dot { animation: claim 6s var(--ease) infinite; animation-delay: calc(var(--i) * .25s); }
@keyframes claim { 0%, 10% { background: transparent; border-color: var(--smoke2); } 25%, 80% { background: var(--clean); border-color: var(--clean); box-shadow: 0 0 12px rgba(189, 243, 238, .5); } 100% { background: transparent; border-color: var(--smoke2); } }

.triad { margin: 12vh 0 0; text-align: center; font: 800 clamp(1.6rem, 4.2vw, 3.8rem)/1.05 var(--display); font-stretch: 68%; text-transform: uppercase; }
.triad span { display: inline-block; }
.triad span:nth-child(1) { color: var(--smoke); }
.triad span:nth-child(3) { color: var(--clean); }

/* ---------- 6. search yourself ---------- */
.yourself { padding: 18vh 0; background: linear-gradient(#14171b, #181b20); }
.yourself .lede { margin: 26px 0 50px; }
.tool { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); border: 1px solid var(--line2); background: rgba(10, 12, 15, .6); }
.t-find { padding: clamp(20px, 3vw, 40px); border-right: 1px solid var(--line); }
.t-find > label, .t-lbl { display: flex; align-items: center; gap: 12px; font-size: 15px; margin: 0 0 12px; }
.t-find > label b, .t-lbl b { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line2); font: 500 11px/1 var(--mono); flex: none; }
.t-find input[type=text] { width: 100%; padding: 16px 18px; background: rgba(5, 6, 7, .6); border: 1px solid var(--line2); outline: none; font-size: 18px; }
.t-find input[type=text]:focus { border-color: rgba(231, 227, 218, .5); }
.open { display: inline-block; margin-top: 12px; font: 400 12px/1 var(--mono); color: var(--text); text-underline-offset: 4px; }
.open[aria-disabled=true] { opacity: .4; pointer-events: none; }
.open i { font-style: normal; }
.tip { font-size: 13px; color: var(--smoke); margin: 8px 0 34px; }
.slots { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.slots fieldset { border: 0; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.slots legend { float: left; width: 30px; padding: 0; font: 500 11px/28px var(--mono); color: var(--smoke); }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.slots label { flex: 1; position: relative; }
.slots input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.slots label span { display: block; text-align: center; padding: 7px 2px; border: 1px solid var(--line); font: 500 10px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--smoke); transition: all .2s; white-space: nowrap; }
.slots label:hover span { border-color: var(--line2); color: var(--text); }
.slots input:focus-visible + span { outline: 2px solid var(--clean); outline-offset: 1px; }
.slots input[value=own]:checked + span { background: rgba(189, 243, 238, .12); border-color: var(--clean); color: var(--clean); }
.slots input[value=neutral]:checked + span { background: rgba(231, 227, 218, .08); border-color: var(--smoke); color: var(--text); }
.slots input[value=bad]:checked + span { background: var(--text); border-color: var(--text); color: var(--night); }
.key { font-size: 12.5px; color: var(--smoke); margin: 16px 0 10px; line-height: 1.6; }
.key b { color: var(--text); font-weight: 600; }
.t-actions { display: flex; gap: 22px; }
@media (max-width: 1100px) { .slots { grid-template-columns: 1fr; } }

.readout { padding: clamp(20px, 3vw, 40px); display: flex; flex-direction: column; }
.ro-h { font: 500 11px/1 var(--mono); letter-spacing: .28em; text-transform: uppercase; color: var(--smoke); margin: 0 0 22px; }
.m { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin-bottom: 18px; }
.m > span:first-child { font-size: 14px; }
.m b { font: 500 14px/1 var(--mono); text-align: right; }
.blocks { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(10, 1fr); gap: 3px; }
.blocks i { height: 16px; background: rgba(231, 227, 218, .06); transition: background .35s var(--ease); transition-delay: calc(var(--d, 0) * 30ms); }
.m[data-k=own] .blocks i.on { background: var(--clean); }
.m[data-k=neutral] .blocks i.on { background: var(--smoke); }
.m[data-k=bad] .blocks i.on { background: var(--text); }
.expo { margin: 18px 0 6px; padding-top: 22px; border-top: 1px solid var(--line); font: 500 11px/1.4 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--smoke); }
.expo b { display: block; margin-top: 8px; font: 800 clamp(2rem, 3.6vw, 3.2rem)/1 var(--display); font-stretch: 68%; letter-spacing: 0; color: var(--text); }
.expo b.low { color: var(--clean); }
.expo-t { font-size: 14.5px; color: var(--muted); margin: 6px 0 26px; min-height: 4.8em; }
.readout .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 860px) {
  .tool { grid-template-columns: 1fr; }
  .t-find { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- 7. urgent ---------- */
.urgent { padding: 22vh 0; background: linear-gradient(rgba(24, 27, 32, 1), rgba(20, 23, 27, .55) 30%, rgba(20, 23, 27, .55) 70%, #1b1e23); }
.urgent .mega { font-size: clamp(3.2rem, 11vw, 10.5rem); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 44px 0 34px; max-width: 900px; }
.chips button { padding: 12px 18px; border: 1px solid var(--line2); background: rgba(5, 6, 7, .5); cursor: pointer; font-size: 15px; transition: all .25s; }
.chips button::before { content: ""; display: inline-block; width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; margin-right: 10px; vertical-align: 1px; transition: all .25s; }
.chips button:hover { border-color: var(--text); }
.chips button[aria-pressed=true] { background: var(--ivory); color: var(--night); border-color: var(--ivory); }
.chips button[aria-pressed=true]::before { background: var(--night); }
.u-note { color: var(--muted); margin: 24px 0 0; max-width: 34em; }

/* ---------- 8. dawn + final (light) ---------- */
.dawn {
  height: 110vh; position: relative; overflow: hidden;
  background: linear-gradient(#1b1e23 0%, #25282c 16%, #4a4c4e 38%, #8f8f8b 56%, #cbc7bd 74%, #e9e5db 88%, var(--ivory) 100%);
}
.dawn .sweep { position: absolute; left: 0; right: 0; top: 58%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .9), transparent); transform: scaleX(0); transition: transform 2.4s var(--ease); }
.dawn.in .sweep { transform: scaleX(1); }

.final { background: var(--ivory); color: var(--dark); padding: 6vh 0 16vh; color-scheme: light; }
.final ::selection { background: var(--dark); color: var(--ivory); }
.final h2 { font-size: clamp(2.8rem, 8.6vw, 8.6rem); color: var(--dark); }
.final .beat { margin-top: 18vh; }
.wipe { position: relative; }
.js .wipe { -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 55%); mask-image: linear-gradient(90deg, #000 45%, transparent 55%); -webkit-mask-size: 240% 100%; mask-size: 240% 100%; -webkit-mask-position: 100% 0; mask-position: 100% 0; transition: -webkit-mask-position 1.8s var(--ease), mask-position 1.8s var(--ease); }
.js .wipe.in { -webkit-mask-position: 0 0; mask-position: 0 0; }
.pdsd { margin: 40px 0 0; font: 500 12px/1 var(--mono); letter-spacing: .34em; text-transform: uppercase; color: #6d6a63; }
.pdsd span + span::before { content: "·"; margin-right: .9em; }

.enquiry { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(30px, 6vw, 100px); margin-top: 20vh; padding-top: 60px; border-top: 1px solid rgba(17, 19, 23, .15); }
.enq-intro h3 { margin: 0 0 16px; font: 800 clamp(2rem, 3.4vw, 3rem)/.95 var(--display); font-stretch: 68%; text-transform: uppercase; }
.enq-intro p { color: #55534e; margin: 0 0 22px; }
.enq-intro ol { list-style: none; margin: 0 0 30px; padding: 0; counter-reset: n; }
.enq-intro li { position: relative; padding: 12px 0 12px 38px; border-top: 1px solid rgba(17, 19, 23, .12); color: #55534e; counter-increment: n; font-size: 15.5px; }
.enq-intro li::before { content: "0" counter(n); position: absolute; left: 0; top: 15px; font: 500 11px/1 var(--mono); color: #8a877f; }
.enq-intro li b { color: var(--dark); }
.direct { font-size: 15px; }
.direct a { color: var(--dark); text-underline-offset: 4px; }
@media (max-width: 900px) { .enquiry { grid-template-columns: 1fr; margin-top: 12vh; } }

#enquiry { --fbd: rgba(17, 19, 23, .22); }
.seg { border: 0; margin: 0 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.seg legend { width: 100%; margin-bottom: 10px; font: 500 11px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: #6d6a63; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span { display: block; padding: 12px 18px; border: 1px solid var(--fbd); font-size: 15px; transition: all .2s; }
.seg input:checked + span { background: var(--dark); color: var(--ivory); border-color: var(--dark); }
.seg input[value=now]:checked + span { box-shadow: inset 0 -2px 0 var(--clean); }
.seg input:focus-visible + span { outline: 2px solid var(--dark); outline-offset: 2px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.f.wide { grid-column: 1 / -1; }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }
.f label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.f label small { font-weight: 400; color: #8a877f; margin-left: 4px; }
.f input, .f select, .f textarea {
  width: 100%; padding: 13px 14px; background: rgba(255, 255, 255, .55); border: 1px solid var(--fbd); border-radius: 0;
  font-size: 16px; color: var(--dark); outline: none; transition: border-color .2s, background .2s;
}
.f select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, #55534e 50%), linear-gradient(135deg, #55534e 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.f textarea { resize: vertical; min-height: 3.2em; }
.f input:focus, .f select:focus, .f textarea:focus { border-color: var(--dark); background: #fff; }
.f.bad input, .f.bad select, .f.bad textarea { border-color: #8c2f2f; }
.err { min-height: 1.4em; margin: 4px 0 8px; font-size: 13px; color: #8c2f2f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.send { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.status { margin: 0; font-size: 14.5px; color: #55534e; }
.status.bad { color: #8c2f2f; }
.privacy { font-size: 13px; color: #6d6a63; margin: 22px 0 0; max-width: 40em; }
.done { padding: 40px 0; }
.done h3 { margin: 0 0 12px; font: 800 clamp(2rem, 4vw, 3.4rem)/.95 var(--display); font-stretch: 68%; text-transform: uppercase; }
.done h3::after { content: ""; display: block; width: 60px; height: 2px; background: #3a9e97; margin-top: 18px; }
.done p { color: #55534e; max-width: 34em; }

/* ---------- footer ---------- */
.foot { background: var(--paper); color: var(--dark); padding: 56px 0 40px; border-top: 1px solid rgba(17, 19, 23, .1); }
.foot .wrap { display: grid; grid-template-columns: auto 1fr; gap: 14px 40px; align-items: center; }
.foot .tag { margin: 0; font: 500 10.5px/1 var(--mono); letter-spacing: .26em; text-transform: uppercase; color: #6d6a63; justify-self: end; }
.foot ul { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 18px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(17, 19, 23, .1); }
.foot ul a { font-size: 14px; color: #55534e; text-decoration: none; }
.foot ul a:hover { color: var(--dark); text-decoration: underline; }
.foot ul li:last-child { margin-left: auto; }
.legal { grid-column: 1 / -1; margin: 10px 0 0; font-size: 12.5px; color: #8a877f; }
@media (max-width: 700px) { .foot .wrap { grid-template-columns: 1fr; } .foot .tag { justify-self: start; } .foot ul li:last-child { margin-left: 0; } }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .rv, .js .rise, .js .verdict *, .serp li, .js .wipe { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; -webkit-mask-image: none !important; mask-image: none !important; }
  .verb.in .demo *, .cue span { animation: none !important; }
  .row { transition: none; }
}
