/* buzzcut-pr.pages.dev · AI yaps, we cut.
   Sharp edges only: no border-radius anywhere. Dark by design; the receipt is the only paper. */
:root {
  --bg: #0b0a09;
  --bg-2: #100f0e;
  --panel: #131211;
  --line: #221f1b;
  --line-2: #34302a;
  --bone: #f3ede2;
  --muted: #a39b8e;
  /* --dim is the quietest text color that still passes WCAG AA (5.2:1 on --bg);
     --faint is for rules and marks only, never for text */
  --dim: #8a8275;
  --faint: #6f675c;
  --red: #ff4b36;
  --red-deep: #c9281a;
  --blue: #4a72ff;
  --gold: #f6bd4a;
  --mint: #6fdc9f;
  --paper: #f4eee2;
  --paper-ink: #1c1915;
  --paper-dim: #6a6256;
  --paper-ok: #17703d;
  --paper-meh: #8a5a00;
  --paper-line: #b9ae9b;
  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(88px, 10vw, 136px);
  --head-gap: clamp(40px, 5vw, 60px);
  --nav-h: 56px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--bone);
  font: 17px/1.6 var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; }
button { font: inherit; color: inherit; }
code { font-family: var(--mono); font-size: 0.86em; background: #1a1815; border: 1px solid var(--line-2); padding: 1px 5px; }
p code { white-space: nowrap; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.035em; margin: 0; }
p { margin: 0; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--bone); color: var(--bg); padding: 8px 12px; z-index: 60; }
.skip:focus { left: 12px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
summary:focus-visible { outline-offset: 4px; }
.nav nav a:focus-visible, .foot ul a:focus-visible { color: var(--bone); }
::selection { background: var(--red); color: var(--bg); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }

/* ─── barber pole ─────────────────────────────────────────────────────────── */
.pole { position: relative; display: inline-block; width: 10px; height: 24px; overflow: hidden; vertical-align: middle; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4); }
.pole::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -17px;
  bottom: 0;
  background: repeating-linear-gradient(135deg, var(--red) 0 3px, var(--bone) 3px 6px, var(--blue) 6px 9px, var(--bone) 9px 12px);
  animation: pole-y 1.2s linear infinite;
}
@keyframes pole-y { to { transform: translateY(16.97px); } }

.stripe { position: relative; height: 6px; overflow: hidden; }
.stripe::before {
  content: "";
  position: absolute;
  inset: 0 -60px 0 0;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, var(--bone) 10px 20px, var(--blue) 20px 30px, var(--bone) 30px 40px);
  opacity: 0.85;
  animation: pole-x 2.4s linear infinite;
}
@keyframes pole-x { to { transform: translateX(-56.57px); } }

/* ─── nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(11, 10, 9, 0.8);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-in { height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 800 20px/1 var(--display); letter-spacing: -0.03em; text-decoration: none; }
.nav nav { display: flex; gap: 26px; margin-left: auto; font: 500 14px var(--display); }
.nav nav a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav nav a:hover { color: var(--bone); }
.nav-gh { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 12px; border: 1px solid var(--line-2); font: 500 13.5px var(--display); color: var(--bone); text-decoration: none; transition: border-color 0.15s, background 0.15s; }
.nav-gh svg { width: 15px; height: 15px; }
.nav-gh:hover { border-color: #50483e; background: #161412; }
.nav-install { font: 500 13px var(--mono); background: var(--bone); color: var(--bg); border: 0; height: 34px; padding: 0 14px; cursor: pointer; transition: background 0.15s; white-space: nowrap; }
.nav-install::before { content: "$ "; color: var(--red-deep); }
.nav-install:hover { background: #fff; }
.nav-install:active { background: #e2dccf; }

/* ─── shared bits ─────────────────────────────────────────────────────────── */
.label { display: flex; align-items: center; gap: 12px; font: 500 12px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.label b { color: var(--red); font-weight: 700; }
.label::after { content: ""; flex: 0 0 40px; height: 1px; background: var(--faint); }
h2 { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.02; max-width: 17ch; text-wrap: balance; }
h3 { letter-spacing: -0.02em; }
.sub { color: var(--muted); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; max-width: 540px; }
.split-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: end; margin-bottom: var(--head-gap); }
.fine { color: var(--dim); font-size: 14px; }
.fine a { color: var(--muted); }

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  background: var(--red);
  color: #0b0a09;
  border: 0;
  font: 700 16px/1 var(--display);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-red:hover { background: #ff6552; }
.btn-red:active { background: #e8402c; transform: translateY(1px); }
.btn-red:disabled { cursor: progress; }
.btn-red.small { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-red[aria-busy="true"] { cursor: progress; background: repeating-linear-gradient(-45deg, var(--red) 0 10px, #ff6a57 10px 20px); background-size: 28.28px 28.28px; animation: busy 0.6s linear infinite; }
@keyframes busy { to { background-position: 28.28px 0; } }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  font: 500 14px var(--display);
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line-2);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.btn svg { width: 14px; height: 14px; }
.btn:hover { background: #1a1816; border-color: #50483e; }
.btn:active { background: #221f1c; transform: translateY(1px); }
.btn.done { color: var(--mint); }

/* A command never clips: it wraps at spaces (and only breaks a word if one word can't fit) */
.cmd { --py: 15px; display: inline-flex; align-items: stretch; background: #000; border: 1px solid var(--line-2); font: 15px/1.45 var(--mono); max-width: 100%; text-align: left; }
.cmd .nb { white-space: nowrap; }
.cmd .prompt { flex: none; padding: var(--py) 4px var(--py) 16px; color: var(--red); user-select: none; }
.cmd code { flex: 1 1 auto; min-width: 0; background: none; border: 0; padding: var(--py) 16px var(--py) 6px; font-size: inherit; line-height: inherit; color: var(--bone); white-space: pre-wrap; overflow-wrap: anywhere; }
.copy { flex: none; border: 0; border-left: 1px solid var(--line-2); background: #151311; color: var(--muted); font: 500 13px var(--mono); padding: 0 16px; cursor: pointer; min-width: 78px; transition: color 0.15s, background 0.15s; }
.copy:hover { color: var(--bone); background: #1f1c19; }
.copy:active { background: #262320; }
.copy:focus-visible { outline-offset: -2px; }
.copy.done, .nav-install.done { color: var(--mint); }
.nav-install.done { background: var(--bone); }

/* ─── hero: the stripe ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  min-height: clamp(660px, calc(100svh - var(--nav-h)), 960px);
  padding: clamp(84px, 12vh, 150px) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.yap { z-index: 0; cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='20' viewBox='0 0 36 20'%3E%3Crect x='1' y='1' width='26' height='18' fill='%23f3ede2' stroke='%230b0a09' stroke-width='2'/%3E%3Cpath d='M27 2h6v16h-6z' fill='%23ff4b36'/%3E%3Cpath d='M29 2v16M31 2v16' stroke='%230b0a09' stroke-width='1'/%3E%3C/svg%3E") 30 10, crosshair; }
/* the yap fades into the page at the edges, so the wall reads as texture, not a bug */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg) 0, rgba(11, 10, 9, 0.7) 12%, transparent 30%, transparent 80%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0, transparent 12%, transparent 88%, var(--bg) 100%);
}
.fx { z-index: 3; pointer-events: none; }
.hero-band { position: relative; z-index: 2; width: 100%; padding: clamp(40px, 5.5vw, 72px) 0; pointer-events: none; }
.hero-band::before, .hero-band::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent); opacity: 0.8; }
.hero-band::before { top: 0; }
.hero-band::after { bottom: 0; }
.hero-in { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; pointer-events: auto; }
h1 { font-size: clamp(58px, 11.6vw, 176px); line-height: 0.86; letter-spacing: -0.052em; margin: 0 0 clamp(18px, 2.2vw, 28px); }
h1 span { display: inline-block; }
.cut { color: var(--red); }
/* the price board over the shop door: what a cut costs, in dotted leaders */
.menu { display: inline-grid; grid-template-columns: repeat(4, auto); gap: 6px 34px; margin: 0 0 clamp(22px, 2.6vw, 32px); padding: 10px 2px; list-style: none; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); font: 12.5px/1.4 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.menu li { display: flex; align-items: baseline; gap: 8px; }
.menu i { flex: 1; min-width: 30px; border-bottom: 1px dotted var(--faint); transform: translateY(-3px); }
.menu b { color: var(--bone); font-weight: 700; }
.menu li:first-child b { color: var(--red); }
.tagline { font: 500 clamp(20px, 2.3vw, 30px)/1.25 var(--display); letter-spacing: -0.02em; color: var(--bone); margin-bottom: clamp(16px, 1.8vw, 22px); text-wrap: balance; }
.lede { max-width: 600px; margin: 0 auto clamp(28px, 3vw, 38px); color: var(--muted); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; }
.hero-cmd { --py: 17px; font-size: 16px; }
.hero-cmd .copy { background: var(--red); color: #0b0a09; border-left: 0; font-weight: 700; min-width: 88px; }
.hero-cmd .copy:hover { background: #ff6552; color: #0b0a09; }
.hero-cmd .copy.done { color: #0b0a09; background: var(--mint); }
.works-in { margin-top: 24px; font: 12.5px var(--mono); color: var(--dim); letter-spacing: 0.02em; }
.hero-hint { position: absolute; z-index: 2; left: 50%; bottom: 18px; transform: translateX(-50%); font: 12px/1.3 var(--mono); color: var(--dim); pointer-events: none; white-space: nowrap; transition: opacity 0.6s; }
.hero-hint.gone { opacity: 0; }

/* the clippers: a blade with comb teeth that sweeps the stripe */
.clipper { position: absolute; z-index: 4; left: 0; top: 0; width: 26px; height: 0; pointer-events: none; opacity: 0; will-change: transform; }
.clipper i {
  position: absolute;
  inset: -10px 0;
  background:
    linear-gradient(90deg, #d9d2c6 0 14px, transparent 14px),
    repeating-linear-gradient(180deg, var(--bone) 0 4px, transparent 4px 7px) 14px 0 / 8px 100% no-repeat;
  border-right: 2px solid var(--red);
  box-shadow: 8px 0 24px -4px rgba(255, 75, 54, 0.75), 2px 0 0 rgba(255, 255, 255, 0.35);
}
.clipper.on { opacity: 1; }

/* before the stripe is cut, the words wait underneath: the clippers reveal them as they pass */
.js .hero-band { clip-path: inset(0 100% 0 0); }
.js .hero.revealed .hero-band { clip-path: none; }

/* ─── sections ────────────────────────────────────────────────────────────── */
main > section:not(.hero) { padding: var(--section-y) 0; border-top: 1px solid var(--line); }
main > .roast { border-top: 0; padding-top: clamp(56px, 6vw, 88px); }
/* the FAQ runs straight into the closing call, with the barber stripe between them */
main > .faqs { padding-bottom: clamp(64px, 7vw, 96px); }
main > .last { position: relative; border-top: 0; padding: clamp(72px, 8vw, 112px) 0 clamp(80px, 9vw, 120px); }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ─── 01 try it ───────────────────────────────────────────────────────────── */
.roast { background: radial-gradient(1100px 520px at 88% 18%, rgba(255, 75, 54, 0.055), transparent 60%), var(--bg); }
.roast-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: clamp(40px, 6vw, 96px); align-items: start; }
.roast-copy h2 { margin-bottom: 18px; }
.roast-copy .sub { margin-bottom: 30px; }
.seat { display: flex; max-width: 600px; border: 1px solid var(--line-2); background: #000; transition: border-color 0.15s; }
.seat:focus-within { border-color: var(--muted); }
.seat:has(input:focus-visible) { outline: 2px solid var(--red); outline-offset: 2px; }
.seat input { flex: 1 1 auto; min-width: 0; height: 54px; padding: 0 16px; font: 14px var(--mono); color: var(--bone); background: transparent; border: 0; outline: none; }
.seat input::placeholder { color: var(--dim); }
.seat .btn-red { height: 54px; flex: none; }

/* the queue: three made-up PRs, like a reviewer's inbox */
.queue { max-width: 600px; margin-top: 28px; }
.queue-h { font: 500 11.5px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.queue-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--line-2); }
.queue-list li + li { border-top: 1px solid var(--line-2); }
.pr-row {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 16px 12px 14px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.pr-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: transparent; transition: background 0.15s; }
.pr-row:hover { background: #121110; }
.pr-row:active { background: #181614; }
.pr-row:focus-visible { outline-offset: -2px; }
.pr-row[aria-pressed="true"] { background: #151311; }
.pr-row[aria-pressed="true"]::before { background: var(--red); }
.pr-row .g { display: grid; place-items: center; width: 36px; height: 36px; font: 800 17px var(--display); color: var(--bg); }
.g.A { background: var(--mint); }
.g.B { background: var(--gold); }
.g.C { background: #e89a3c; }
.g.D, .g.F { background: var(--red); }
.pr-row .t { display: block; font: 600 15px/1.3 var(--display); color: var(--bone); text-wrap: pretty; }
.pr-row .m { display: block; margin-top: 3px; font: 12px/1.5 var(--mono); color: var(--dim); text-wrap: balance; }
.pr-row .go { font: 12px var(--mono); color: var(--dim); transition: color 0.15s, transform 0.15s; }
.pr-row:hover .go, .pr-row[aria-pressed="true"] .go { color: var(--bone); }
.pr-row:hover .go { transform: translateX(3px); }
.pr-row[aria-pressed="true"] .go { color: var(--red); }
.status { margin-top: 16px; min-height: 1.6em; color: var(--muted); font: 13px/1.6 var(--mono); max-width: 600px; }
.status.err { color: var(--red); }
.share { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 16px; max-width: 600px; margin-top: 28px; padding-top: 20px; border-top: 1px dashed var(--line-2); }
.share-h { font: 500 14px/1.4 var(--display); color: var(--muted); }
.share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.receipt-col { position: sticky; top: calc(var(--nav-h) + 28px); display: flex; justify-content: center; }

/* the receipt */
.ticket {
  position: relative;
  width: 100%;
  max-width: 470px;
  background: var(--paper);
  color: var(--paper-ink);
  font: 12.5px/1.45 var(--mono);
  padding: 18px 24px 26px;
  transform: rotate(-0.8deg);
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: opacity 0.25s, filter 0.25s;
  -webkit-mask: linear-gradient(#000 0 0) top / 100% calc(100% - 10px) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 14px 10px repeat-x;
  mask: linear-gradient(#000 0 0) top / 100% calc(100% - 10px) no-repeat, conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / 14px 10px repeat-x;
}
.ticket.print { animation: print 0.65s var(--ease); }
@keyframes print { from { clip-path: inset(0 0 100% 0); transform: rotate(-0.8deg) translateY(-18px); } to { clip-path: inset(0 0 0 0); transform: rotate(-0.8deg); } }
.ticket::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 7px; background: repeating-linear-gradient(-45deg, var(--red) 0 7px, var(--paper) 7px 14px, var(--blue) 14px 21px, var(--paper) 21px 28px); background-size: 39.6px 100%; }
.ticket.busy { opacity: 0.55; filter: saturate(0.6); }
.ticket.busy::before { animation: ticket-run 0.5s linear infinite; }
@keyframes ticket-run { to { background-position: 39.6px 0; } }
.t-shop { text-align: center; margin-top: 6px; font: 800 20px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; }
.t-sub { text-align: center; color: var(--paper-dim); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 5px; }
.t-rule { border: 0; border-top: 1.5px dashed var(--paper-line); margin: 10px 0; }
.t-ref { display: flex; justify-content: space-between; gap: 12px; font-weight: 700; }
.t-ref a { text-decoration: none; border-bottom: 1px solid var(--paper-line); }
.t-title { color: var(--paper-dim); margin-top: 2px; }
.t-basics { display: grid; grid-template-columns: 14px 104px minmax(0, 1fr); column-gap: 8px; row-gap: 5px; }
.t-basics .m { font-weight: 700; }
.t-basics .k { font-weight: 700; letter-spacing: 0.06em; font-size: 11px; line-height: 1.7; }
.t-basics .v { min-width: 0; overflow-wrap: anywhere; }
.m.ok { color: var(--paper-ok); }
.m.bad { color: var(--red-deep); }
.m.meh { color: var(--paper-meh); }
.m.none { color: var(--paper-dim); }
.t-basics .v.none { color: var(--paper-dim); }
.t-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, auto)); border: 1px solid var(--paper-line); }
.t-stats div { padding: 6px 8px 7px; border-right: 1px solid var(--paper-line); min-width: 0; }
.t-stats div:last-child { border-right: 0; }
.t-stats span { display: block; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-stats b { display: block; font-size: 13px; white-space: nowrap; }
.t-row { display: flex; gap: 8px; }
.t-row span:first-child { white-space: nowrap; }
.t-row .lead { flex: 1; border-bottom: 1.5px dotted var(--paper-line); transform: translateY(-5px); min-width: 10px; }
.t-row b { white-space: nowrap; }
.t-h { font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 10.5px; color: var(--paper-dim); margin-bottom: 5px; }
.t-line .t-h { display: inline; margin: 0 6px 0 0; }
.t-burn { display: flex; gap: 8px; margin: 2px 0; }
.t-burn i { font-style: normal; font-weight: 700; flex: none; width: 1em; }
.t-burn.error i { color: var(--red-deep); }
.t-burn.warn i { color: var(--paper-meh); }
.t-burn.info i { color: var(--paper-dim); }
.t-keep { border-left: 3px solid var(--gold); padding-left: 10px; margin: 5px 0; }
.t-none { color: var(--paper-dim); }
.t-seal { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.t-verdict { font: 700 17px/1.25 var(--display); letter-spacing: -0.01em; }
.t-foot { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: 12px; color: var(--paper-dim); font-size: 11px; }
.t-foot b { color: var(--paper-ink); }
.barcode { height: 24px; width: 124px; background: repeating-linear-gradient(90deg, var(--paper-ink) 0 2px, transparent 2px 4px, var(--paper-ink) 4px 5px, transparent 5px 8px, var(--paper-ink) 8px 11px, transparent 11px 12px); opacity: 0.85; }
.stamp {
  flex: none;
  transform: rotate(-7deg);
  border: 3px double currentColor;
  padding: 6px 12px 8px;
  text-align: center;
  font-family: var(--display);
  line-height: 1;
  opacity: 0.92;
  mix-blend-mode: multiply;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.9 1.25'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.9 1.25'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stamp .g { display: block; font-size: 42px; font-weight: 800; background: none; }
.stamp .s { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.stamp .p { display: block; font: 700 10.5px var(--mono); margin-top: 3px; }
.stamp.A, .stamp.B { color: var(--paper-ok); }
.stamp.C { color: var(--paper-meh); }
.stamp.D, .stamp.F { color: var(--red-deep); }
.t-board { width: 100%; border-collapse: collapse; font-size: 12px; }
.t-board td { padding: 3px 0; vertical-align: top; }
.t-board td.n { text-align: right; white-space: nowrap; padding-left: 10px; }
.t-board .mk { width: 1.2em; font-weight: 700; }
.t-board .mk.bad { color: var(--red-deep); }
.t-board .mk.ok { color: var(--paper-ok); }
.t-board a { text-decoration: none; }
.t-board .ttl { color: var(--paper-dim); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 250px; }

/* ─── 02 the problem ──────────────────────────────────────────────────────── */
.pr-panel { border: 1px solid var(--line-2); background: var(--bg-2); }
.pr-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line-2); padding-right: 16px; }
.tabs { display: flex; }
.tabs button { height: 48px; padding: 0 18px; background: transparent; border: 0; border-right: 1px solid var(--line-2); color: var(--dim); font: 500 13px var(--mono); cursor: pointer; position: relative; transition: color 0.15s, background 0.15s; }
.tabs button:hover { color: var(--bone); background: #121110; }
.tabs button:focus-visible { outline-offset: -2px; }
.tabs button[aria-selected="true"] { color: var(--bone); background: var(--panel); }
.tabs button[aria-selected="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red); }
.pr-count { font: 13px var(--mono); color: var(--muted); white-space: nowrap; }
.pr-count b { color: var(--bone); font-variant-numeric: tabular-nums; }
.pr-body { position: relative; padding: 26px 0 30px; overflow: hidden; }
.pr-view { font: 14px/1.6 var(--mono); }
.ln { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); gap: 32px; align-items: start; padding: 2px 28px; transition: opacity 0.4s, max-height 0.5s cubic-bezier(.4, 0, .2, 1), padding 0.5s; max-height: 8em; }
.ln .txt { color: #c4bcaf; overflow-wrap: anywhere; }
.ln.h .txt { color: var(--bone); font-weight: 700; }
.ln.h { margin-top: 12px; }
.ln.h:first-child { margin-top: 0; }
.ln .fact { color: var(--gold); }
.ln .note { font: 13px/1.5 var(--display); color: var(--muted); padding: 1px 0 1px 12px; border-left: 2px solid rgba(255, 75, 54, 0.5); margin-top: 2px; transition: opacity 0.3s; }
.ln .note::before { font: 700 12px var(--mono); margin-right: 7px; }
.ln.keep .note { color: var(--mint); border-color: rgba(111, 220, 159, 0.55); }
.ln.keep .note::before { content: "✓"; }
.ln.yap .note::before { content: "✂"; color: var(--red); }
.ln.gone { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; }
.ch { display: inline-block; white-space: pre; animation: fall var(--d, 900ms) cubic-bezier(.3, .1, .7, 1) forwards; }
@keyframes fall { to { transform: translate(var(--dx, 0), var(--dy, 260px)) rotate(var(--r, 0)); opacity: 0; } }
.blade { position: absolute; left: 0; right: 0; top: 0; height: 2px; opacity: 0; pointer-events: none; background: linear-gradient(90deg, transparent, var(--red) 10%, #fff 50%, var(--red) 90%, transparent); box-shadow: 0 0 18px 3px rgba(255, 75, 54, 0.55); transition: top 0.3s cubic-bezier(.4, 0, .2, 1), opacity 0.25s; }
.blade.on { opacity: 1; }
.after { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; padding: 0 28px; animation: rise 0.6s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
/* the after view is laid out like the GitHub PR page a reviewer opens */
.gh-head { padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.gh-title { margin: 0 0 12px; font: 600 clamp(22px, 2.4vw, 28px)/1.25 var(--display); letter-spacing: -0.02em; color: var(--bone); }
.gh-num { font-weight: 400; color: var(--dim); }
.gh-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; font: 14px/1.5 var(--display); color: var(--muted); }
.gh-meta b { color: var(--bone); font-weight: 600; }
.gh-meta code { font-size: 12.5px; color: #9fb4ff; background: rgba(74, 114, 255, 0.12); border-color: rgba(74, 114, 255, 0.3); }
.gh-state { display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 12px; background: #1a7f37; color: #fff; font: 600 13.5px var(--display); }
.gh-state svg { width: 14px; height: 14px; }
.gh-comment { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; align-items: start; }
.gh-avatar { width: 36px; height: 36px; background: repeating-linear-gradient(135deg, var(--red) 0 4px, var(--bone) 4px 8px, var(--blue) 8px 12px, var(--bone) 12px 16px); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4); }
.gh-box { border: 1px solid var(--line-2); background: var(--bg); min-width: 0; }
.gh-box-h { padding: 9px 16px; border-bottom: 1px solid var(--line-2); background: #171513; font: 13.5px/1.4 var(--display); color: var(--muted); }
.gh-box-h b { color: var(--bone); font-weight: 600; }
.pr-after { padding: 16px 18px 18px; }
.pr-after p { font: 16.5px/1.7 var(--display); color: #ddd6ca; max-width: 62ch; }
.pr-after ul { margin: 12px 0 14px; padding-left: 22px; font: 16.5px/1.7 var(--display); color: #ddd6ca; max-width: 62ch; }
.pr-after li + li { margin-top: 6px; }
.pr-after li::marker { color: var(--dim); }
.pr-after p.tested { color: #ddd6ca; }
.pr-after p.tested b { color: var(--bone); font-weight: 700; }
.pr-after mark { background: none; color: inherit; padding-bottom: 1px; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.pr-after mark.what { text-decoration-color: var(--blue); }
.pr-after mark.why { text-decoration-color: var(--red); }
.pr-after .fact { color: var(--gold); }
.key { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 16px 0 0 50px; font: 12.5px var(--mono); color: var(--dim); }
.key i { display: inline-block; width: 18px; height: 2px; vertical-align: middle; margin-right: 8px; }
.key .what i { background: var(--blue); }
.key .why i { background: var(--red); }
.key .fct i { height: 10px; width: 10px; background: var(--gold); }
.ledger { border-left: 1px solid var(--line-2); padding-left: 28px; }
.ledger-h { font: 700 11.5px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin: 6px 0 16px; }
.ledger ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ledger li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 10px; font: 13px/1.45 var(--display); color: var(--muted); }
.ledger li i { font-style: normal; font-weight: 700; color: var(--red); }
.ledger li.ok i { color: var(--mint); }
.ledger li b { display: block; font: 600 15px/1.35 var(--display); color: var(--bone); margin-bottom: 2px; }
.pr-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 16px 12px 28px; border-top: 1px solid var(--line-2); font: 12.5px var(--mono); color: var(--muted); }
.pr-foot b { color: var(--bone); font-weight: 500; }

.found { margin-top: clamp(48px, 5vw, 72px); display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.found-h { font: 700 clamp(22px, 2.1vw, 27px)/1.25 var(--display); letter-spacing: -0.02em; max-width: 18ch; }
.found-h b { color: var(--red); }
.found .fine { grid-column: 1; margin-top: -8px; max-width: 36ch; }
.bars { list-style: none; margin: 0; padding: 0; grid-column: 2; grid-row: 1 / span 2; border-top: 1px solid var(--line); }
.bars li { position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); }
.bars li::before { content: ""; position: absolute; left: 88px; bottom: -1px; height: 2px; width: calc((100% - 88px) * var(--v) / 24); background: var(--bone); opacity: 0.8; transform-origin: left; transform: scaleX(var(--grow, 1)); transition: transform 1.1s var(--ease); }
.bars li:first-child::before { background: var(--red); opacity: 1; }
.bars .n { font: 800 22px/1 var(--display); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.bars .t { color: var(--muted); font-size: 15.5px; }
.js .bars:not(.in) li { --grow: 0; }

/* ─── 03 how ──────────────────────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.term { background: #000; border: 1px solid var(--line-2); }
.term-bar { display: flex; align-items: center; gap: 10px; height: 40px; padding: 0 0 0 14px; border-bottom: 1px solid var(--line-2); font: 12px var(--mono); color: var(--dim); }
.term-bar .sq { width: 8px; height: 8px; background: var(--red); }
.replay { margin-left: auto; height: 100%; border: 0; border-left: 1px solid var(--line-2); background: transparent; color: var(--dim); font: 12px var(--mono); padding: 0 14px; cursor: pointer; }
.replay:hover { color: var(--bone); background: #0f0e0d; }
.replay:active { background: #171513; }
.replay:focus-visible { outline-offset: -2px; }
.term-log { list-style: none; margin: 0; padding: 18px; display: grid; gap: 12px; font: 13px/1.55 var(--mono); }
.term-log li { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 12px; }
/* during a replay, lines still to come stay on screen as a faint ghost and light up in turn */
.term-log li { transition: opacity 0.35s var(--ease); }
.term-log li.wait { opacity: 0.16; }
.term-log .who { color: var(--dim); text-align: right; }
.term-log .you .msg { justify-self: start; color: var(--bg); background: var(--bone); padding: 6px 10px; font: 500 14.5px/1.4 var(--display); }
.term-log .agent .msg { color: #d6cfc2; overflow-wrap: anywhere; }
.term-log .agent .msg code { background: #141210; color: var(--bone); border-color: var(--line); }
.term-log .bz .who { color: var(--red); }
.term-log .bz .msg { border-left: 2px solid var(--red); padding-left: 10px; color: var(--bone); }
.term-log .bz.ok .who { color: var(--mint); }
.term-log .bz.ok .msg { border-color: var(--mint); }
.caret::after { content: "▍"; color: var(--red); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps .n { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-2); font: 700 15px var(--mono); color: var(--red); }
.steps h3 { font-size: 20px; margin: 6px 0 8px; }
.steps p { color: var(--muted); font-size: 16px; }
.rules { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(40px, 5vw, 64px); border: 1px solid var(--line-2); }
.rule-col { padding: 26px 28px 28px; }
.rule-col + .rule-col { border-left: 1px solid var(--line-2); }
.rule-col h3 { display: flex; align-items: center; gap: 10px; font: 700 12.5px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.dot { width: 9px; height: 9px; }
.dot.bad { background: var(--red); }
.dot.note { background: var(--faint); }
.rule-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.rule-col li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.rule-col li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 8px; height: 1px; background: var(--faint); }

/* ─── 04 teams ────────────────────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.tier { display: flex; flex-direction: column; background: var(--bg); padding: 28px 22px 24px; }
.tier-k { font: 500 11.5px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.tier h3 { font-size: 22px; margin-bottom: 10px; }
.tier p:not(.tier-k) { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin-bottom: 22px; }
.tier p a { color: var(--bone); }
.tier .cmd { margin-top: auto; width: 100%; }
.cmd.small { --py: 12px; font-size: 12.5px; }
.cmd.small .prompt { padding-left: 12px; }
.cmd.small .copy { min-width: 60px; padding: 0 10px; font-size: 12px; }
.agents-line { margin-top: 26px; font: 13px/1.7 var(--mono); color: var(--muted); }
.agents-line span { color: var(--dim); margin-right: 10px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11.5px; }

/* ─── 05 proof ────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.stat { background: var(--bg); padding: 28px 24px 30px; }
.stat b { display: block; font: 800 clamp(34px, 4vw, 52px)/1 var(--display); letter-spacing: -0.04em; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.stat b small { font-size: 0.5em; color: var(--dim); letter-spacing: 0; font-weight: 700; }
.stat.red b { color: var(--red); }
.stat span { color: var(--muted); font-size: 15px; line-height: 1.45; display: block; }
.proof-src { margin-top: 18px; }

/* ─── last call ───────────────────────────────────────────────────────────── */
.last { text-align: center; background: radial-gradient(900px 400px at 50% 110%, rgba(255, 75, 54, 0.1), transparent 70%), var(--bg); }
.last > .stripe { position: absolute; left: 0; right: 0; top: 0; }
.last h2 { font-size: clamp(46px, 8vw, 112px); line-height: 0.92; letter-spacing: -0.05em; margin: 0 auto clamp(34px, 4vw, 48px); max-width: none; }
.cmd.big { --py: 18px; font-size: 17px; }
.cmd.big .copy { min-width: 90px; font-size: 14px; }
.last .fine { margin-top: 22px; }

/* ─── footer ──────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding: clamp(56px, 6vw, 80px) 0 0; overflow: hidden; background: var(--bg-2); }
.foot-in { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 40px 32px; }
.foot .logo { font-size: 22px; }
.foot .pole { width: 9px; height: 22px; }
.foot-tag { color: var(--bone); font: 600 17px/1.4 var(--display); letter-spacing: -0.01em; margin-top: 18px; max-width: 26ch; }
.foot-note { color: var(--dim); font: 12.5px/1.7 var(--mono); margin-top: 10px; }
.foot-gh { margin-top: 22px; }
.foot h4 { font: 500 11.5px/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin: 6px 0 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 15px; }
.foot ul a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.foot ul a:hover { color: var(--bone); }
/* the wordmark, set huge and quiet, cut off at the bottom like a fresh fade */
.foot-mark { max-width: 1200px; margin: clamp(48px, 6vw, 80px) auto 0; padding: 0 var(--gutter); height: clamp(64px, 14vw, 176px); overflow: hidden; font: 800 clamp(92px, 20vw, 252px)/0.78 var(--display); letter-spacing: -0.065em; color: #1a1714; user-select: none; white-space: nowrap; }
.foot-mark::before { content: "buzzcut"; }
.foot-base { border-top: 1px solid var(--line); }
.foot-base > div { max-width: 1200px; margin: 0 auto; padding: 18px var(--gutter) 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font: 12.5px var(--mono); color: var(--dim); }

/* ─── 06 faq ──────────────────────────────────────────────────────────────── */
.faq-more { margin-top: 20px; color: var(--muted); font-size: 16px; }
.faq-more a { color: var(--bone); text-underline-offset: 3px; }
.faq-more a:hover { color: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 0; cursor: pointer; list-style: none; font: 600 17.5px/1.35 var(--display); letter-spacing: -0.015em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 400 20px/1 var(--mono); color: var(--dim); transition: transform 0.2s, color 0.2s; }
.faq summary:hover { color: #fff; }
.faq summary:hover::after { color: var(--bone); }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq details p { color: var(--muted); font-size: 16px; line-height: 1.65; padding: 0 40px 22px 0; }

/* ─── smaller screens ─────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav nav { display: none; }
  .nav-gh { margin-left: auto; }
  .roast-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); }
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .split-head, .how-grid, .found { grid-template-columns: minmax(0, 1fr); }
  .split-head { align-items: start; }
  .roast-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); gap: 36px; }
  .seat { flex-direction: column; }
  .seat .btn-red { width: 100%; }
  .ticket { padding: 18px 18px 26px; font-size: 12px; }
  .t-stats div { padding: 6px 6px 7px; }
  .t-stats b { font-size: 12px; }
  .t-basics { grid-template-columns: 12px 92px minmax(0, 1fr); }
  .ln .note { margin: 4px 0 8px; }
  .bars, .found .fine { grid-column: 1; grid-row: auto; }
  .found .fine { margin-top: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .foot-in { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot-brand { grid-column: 1 / -1; }
  .ln { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .after { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .ledger { border-left: 0; border-top: 1px solid var(--line-2); padding: 22px 0 0; }
  .ledger ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
  .rule-col + .rule-col { border-left: 0; border-top: 1px solid var(--line-2); }
}
@media (max-width: 760px) {
  .roast-grid { grid-template-columns: minmax(0, 1fr); }
  .receipt-col { position: static; }
  /* on one column, the receipt comes right after the queue, before the share row */
  .roast-grid { gap: 0; }
  .roast-copy { display: contents; }
  .receipt-col { order: 1; margin: 28px 0 4px; }
  .share { order: 2; }
  .ticket { transform: none; max-width: 470px; }
  @keyframes print { from { clip-path: inset(0 0 100% 0); transform: translateY(-18px); } to { clip-path: inset(0 0 0 0); transform: none; } }
}
@media (max-width: 600px) {
  :root { --nav-h: 52px; }
  .nav-in { gap: 12px; }
  .nav nav { display: none; }
  .nav-gh span { display: none; }
  .hero { min-height: 0; padding: 92px 0 84px; }
  .hero-band { padding: 30px 0; }
  .hero-hint { display: none; }
  .cmd { font-size: 13px; width: 100%; }
  .hero-cmd, .cmd.big { --py: 15px; font-size: 14px; }
  .cmd code { padding-right: 10px; }
  .cmd .copy { min-width: 64px; padding: 0 12px; }
  .works-in { font-size: 11.5px; }
  .seat { flex-direction: column; }
  .seat .btn-red { width: 100%; }
  .pr-row { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 12px; padding: 11px 12px 11px 12px; }
  .pr-row .g { width: 32px; height: 32px; font-size: 15px; }
  .ticket { padding: 20px 16px 28px; font-size: 12px; }
  .t-basics { grid-template-columns: 12px 90px minmax(0, 1fr); }
  .stamp .g { font-size: 36px; }
  .t-board .ttl { max-width: 150px; }
  .tabs button { padding: 0 12px; font-size: 12px; }
  .pr-bar { padding-right: 12px; }
  .pr-count { display: none; }
  .ln, .after { padding-left: 16px; padding-right: 16px; }
  .pr-view { font-size: 12.5px; }
  .pr-after p, .pr-after ul { font-size: 15.5px; }
  .pr-after { padding: 14px 14px 16px; }
  .gh-comment { grid-template-columns: minmax(0, 1fr); }
  .gh-avatar { display: none; }
  .key { margin-left: 0; }
  .pr-foot { padding-left: 16px; }
  .term-log li { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .term-log .who { text-align: left; }
  .stats { grid-template-columns: 1fr; }
  .bars li { grid-template-columns: 60px minmax(0, 1fr); }
  .bars li::before { left: 76px; width: calc((100% - 76px) * var(--v) / 24); }
  .menu { grid-template-columns: repeat(2, auto); gap: 6px 22px; font-size: 11px; }
  .faq details p { padding-right: 0; }
  .foot-in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ledger ul { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
