/* ScreenWhite — Clean Utility. One stylesheet, no build step. */

:root {
  --bg: #ffffff;
  --band: #fbfbfa;
  --surface: #ffffff;
  --border: #e6e6e3;
  --hairline: #f0f0ee;
  --ink: #16181c;
  --muted: #71757c;
  --accent: #2f6fed;
  --accent-text: #ffffff;
  --soft: #edf3fe;
  --r: 10px;
  --r-lg: 14px;
  --shadow: 0 1px 2px rgba(20, 22, 26, 0.04);
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3 { letter-spacing: -0.02em; margin: 0; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.vh {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.wrap { width: 100%; max-width: 1368px; margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */

.site-head { border-bottom: 1px solid var(--border); background: var(--surface); }
.head-inner { display: flex; align-items: center; gap: 34px; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 34px; height: 34px; border-radius: var(--r); background: var(--soft);
  display: grid; place-items: center; color: var(--accent);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.head-nav { display: flex; gap: 24px; font-size: 14.5px; font-weight: 500; }
.head-nav a { color: var(--muted); }

/* ---- colour strip ---- */

.strip { background: var(--band); border-bottom: 1px solid var(--border); }
.strip-inner {
  display: grid; grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 14px; padding-top: 16px; padding-bottom: 16px;
}
.strip-item { display: flex; flex-direction: column; gap: 9px; }
.strip-swatch {
  height: 58px; border-radius: var(--r); border: 1px solid rgba(22, 24, 28, 0.08);
  transition: transform 0.12s ease;
}
.strip-item:hover .strip-swatch { transform: translateY(-2px); }
.strip-item.is-current .strip-swatch { box-shadow: 0 0 0 2px var(--accent); }
.strip-label { font-size: 12.5px; color: var(--muted); text-align: center; }

/* ---- three column layout ---- */

.layout {
  display: grid;
  grid-template-columns: 306px minmax(0, 1fr) 306px;
  gap: 24px;
  padding-top: 26px;
  align-items: start;
}
.rail { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 16px; }
.rail-left { grid-column: 1; grid-row: 1; }
.tool { grid-column: 2; grid-row: 1; min-width: 0; }
.rail-right { grid-column: 3; grid-row: 1; }

.ad-slot {
  height: 250px; border: 1.5px dashed var(--border); border-radius: var(--r-lg);
  background: var(--band); display: grid; place-content: center; gap: 6px;
  text-align: center; color: #a9adb3; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.ad-size { letter-spacing: 0.06em; font-size: 12px; text-transform: none; }

.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 18px;
}
.panel-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.panel-list { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 12px; padding: 10px 2px; }
.row + .row { border-top: 1px solid var(--hairline); }
.row-chip { width: 28px; height: 28px; border-radius: 7px; border: 1px solid rgba(22, 24, 28, 0.1); flex-shrink: 0; }
.row-thumb { width: 46px; height: 32px; border-radius: 6px; flex-shrink: 0; background: #111; }
.row-name { flex: 1; font-size: 14.5px; }
.row-chev { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }
.panel-more {
  display: grid; place-items: center; height: 44px; margin-top: 14px;
  border-radius: var(--r); background: var(--soft); color: var(--accent);
  font-size: 14px; font-weight: 600;
}

/* ---- the tool ---- */

.tool h1 { font-size: 44px; font-weight: 800; line-height: 1.08; text-align: center; }
.lede { margin: 10px auto 0; max-width: 60ch; color: var(--muted); text-align: center; }

.preview {
  position: relative; margin-top: 20px; aspect-ratio: 16 / 9;
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-dark { background: #05070a; }
.preview-fs {
  position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px;
  border-radius: var(--r); border: 1px solid rgba(22, 24, 28, 0.12);
  background: rgba(255, 255, 255, 0.92); color: #3c3f45;
  display: grid; place-items: center;
}
.preview-fs svg { width: 19px; height: 19px; }
.stage-canvas, .stage-dom { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage-dom { display: grid; place-items: center; }

/* ---- controls ---- */

.controls {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  min-height: 62px; margin-top: 16px; padding: 10px 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.ctl { display: flex; align-items: center; gap: 8px; }
.ctl + .ctl { border-left: 1px solid var(--hairline); padding-left: 12px; }
.ctl-icon { display: grid; place-items: center; color: var(--ink); }
.ctl-icon svg { width: 17px; height: 17px; }
.ctl-value { font-size: 12.5px; color: var(--muted); min-width: 36px; font-variant-numeric: tabular-nums; }

.slider { -webkit-appearance: none; appearance: none; width: 66px; height: 18px; background: none; }
.slider::-webkit-slider-runnable-track { height: 4px; border-radius: 2px; background: var(--border); }
.slider::-moz-range-track { height: 4px; border-radius: 2px; background: var(--border); }
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 14px; height: 14px; margin-top: -5px;
  border-radius: 50%; background: var(--surface); border: 2px solid var(--accent);
}
.slider::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent); }
.slider-warm::-webkit-slider-runnable-track { background: linear-gradient(90deg, #ffb45c, #ffffff 52%, #bfd9ff); }
.slider-warm::-moz-range-track { background: linear-gradient(90deg, #ffb45c, #ffffff 52%, #bfd9ff); }

.switch { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch-track {
  position: relative; width: 34px; height: 19px; border-radius: 999px;
  background: var(--border); transition: background 0.15s ease; flex-shrink: 0;
}
.switch-track::after {
  content: ''; position: absolute; top: 2.5px; left: 2.5px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
  transition: transform 0.15s ease;
}
.switch input:checked + .switch-track { background: var(--accent); }
.switch input:checked + .switch-track::after { transform: translateX(15px); }
.switch input:focus-visible + .switch-track { outline: 2px solid var(--accent); outline-offset: 2px; }
.switch-label { font-size: 13.5px; font-weight: 600; white-space: nowrap; }

.select {
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--surface); padding: 6px 10px; font-size: 13.5px;
}

/* ---- calls to action ---- */

.ctas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.ctas-single { grid-template-columns: minmax(0, 1fr); }
.cta {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; text-align: left;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow); transition: border-color 0.12s ease;
}
.cta:hover { border-color: var(--accent); }
.cta-icon {
  width: 44px; height: 44px; border-radius: var(--r); background: var(--soft);
  color: var(--accent); display: grid; place-items: center; flex-shrink: 0;
}
.cta-icon svg { width: 21px; height: 21px; }
.cta-text { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cta-text strong { font-size: 16px; font-weight: 700; }
.cta-text small { font-size: 12.5px; color: var(--muted); }
.cta-chev { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }

/* ---- download panel ---- */

.dl-panel {
  margin-top: 16px; padding: 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.dl-panel[hidden] { display: none; }
.dl-head { font-size: 15px; font-weight: 700; }
.dl-head + * { margin-top: 11px; }
.seg { display: flex; gap: 10px; }
.size-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.seg-item, .size-item {
  flex: 1; display: flex; flex-direction: column; gap: 3px; text-align: left;
  padding: 10px 12px; border-radius: var(--r);
  border: 1.5px solid var(--border); background: var(--surface);
}
.seg-item strong, .size-item strong { font-size: 14px; font-weight: 700; }
.seg-item small, .size-item small { font-size: 11.5px; color: var(--muted); }
.seg-item.is-active, .size-item.is-active { border-color: var(--accent); background: var(--soft); }
.dl-head:not(:first-child) { margin-top: 20px; }

.dl-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 52px; margin-top: 18px; border: 0; border-radius: var(--r);
  background: var(--accent); color: var(--accent-text); font-size: 15px; font-weight: 700;
}
.dl-btn:disabled { opacity: 0.7; cursor: progress; }
.dl-btn svg { width: 19px; height: 19px; }
.dl-meta { margin: 13px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
.dl-meta span { opacity: 0.5; }
.dl-direct { margin: 8px 0 0; text-align: center; font-size: 12.5px; color: var(--muted); }
.dl-direct a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* ---- article ---- */

.content { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--border); }
.content h2 { font-size: 23px; font-weight: 700; margin-top: 26px; }
.content h2:first-child { margin-top: 0; }
.content p { margin: 12px 0 0; color: var(--muted); max-width: 68ch; }
.uses, .steps { margin: 14px 0 0; padding-left: 20px; color: var(--muted); max-width: 68ch; }
.uses li, .steps li { margin-bottom: 8px; }
.content strong { color: var(--ink); }
kbd {
  font-family: ui-monospace, Menlo, monospace; font-size: 12px;
  border: 1px solid var(--border); border-bottom-width: 2px;
  border-radius: 5px; padding: 1px 5px; background: var(--band); color: var(--ink);
}

.faq { margin-top: 26px; }
.faq h2 { font-size: 23px; font-weight: 700; }
.faq-item { border-bottom: 1px solid var(--hairline); padding: 14px 0; }
.faq-item summary { font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--muted); font-weight: 500; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 10px; }

.embed-snippet {
  display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 12px 14px;
  background: var(--band); border: 1px solid var(--border); border-radius: var(--r);
}
.embed-snippet code {
  flex: 1; min-width: 0; overflow-x: auto; white-space: nowrap;
  font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--muted);
}
.copy-btn {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 8px; padding: 7px 13px; font-size: 13px; font-weight: 600; flex-shrink: 0;
}

.more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.more-card {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  border: 1px solid var(--border); border-radius: var(--r); background: var(--surface);
}
.more-card:hover { border-color: var(--accent); }
.more-card span { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.more-card strong { font-size: 14px; font-weight: 700; }
.more-card small { font-size: 12px; color: var(--muted); }

/* ---- index pages ---- */

.index-page { padding-top: 34px; padding-bottom: 10px; }
.index-page h1 { font-size: 40px; font-weight: 800; text-align: center; }
.color-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.color-card { display: flex; flex-direction: column; gap: 9px; }
.color-card-fill { height: 92px; border-radius: var(--r-lg); border: 1px solid rgba(22, 24, 28, 0.08); }
.color-card:hover .color-card-fill { box-shadow: 0 0 0 2px var(--accent); }
.color-card-meta { display: flex; flex-direction: column; gap: 1px; }
.color-card-meta strong { font-size: 14px; font-weight: 700; }
.color-card-meta small { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---- fullscreen stage ---- */

.stage { position: fixed; inset: 0; z-index: 100; background: #fff; }
.stage[hidden] { display: none; }
.stage-tool { background: #05070a; }
.stage-slot {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  transition: opacity 0.4s ease; z-index: 2;
}
.stage.is-idle .stage-slot, .stage.is-idle .stage-exit { opacity: 0; pointer-events: none; }
.stage-exit {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  border: 0; border-radius: 999px; padding: 9px 16px;
  background: rgba(20, 22, 26, 0.55); color: #fff; font-size: 13px; font-weight: 600;
  transition: opacity 0.4s ease;
}
.stage .controls { box-shadow: 0 12px 36px rgba(20, 22, 26, 0.22); }

/* ---- bands and footer ---- */

.bands { margin-top: 34px; background: var(--band); border-top: 1px solid var(--border); }
.bands-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; padding: 26px 24px; }
.band { display: flex; align-items: center; gap: 14px; }
.band-icon {
  width: 42px; height: 42px; border-radius: var(--r); background: var(--soft);
  color: var(--accent); display: grid; place-items: center; flex-shrink: 0;
}
.band-icon svg { width: 19px; height: 19px; }
.band span span, .band > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.band strong { font-size: 14.5px; font-weight: 700; }
.band small { font-size: 13px; color: var(--muted); }

.site-foot { border-top: 1px solid var(--border); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 22px 24px; font-size: 13.5px; color: var(--muted); }
.foot-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-nav a { color: var(--muted); }

/* ---- tool thumbnails ---- */

.thumb-hacker { background: #05070a linear-gradient(#31d67b 0 0) 6px 8px / 30px 3px no-repeat, #05070a; }
.thumb-winupdate { background: radial-gradient(circle at 50% 50%, #fff 0 3px, transparent 4px), #0b5fa5; }
.thumb-macupdate { background: linear-gradient(90deg, #d8d8d8 0 55%, #3a3a3c 55%) center / 30px 5px no-repeat, #1c1c1e; }
.thumb-broken { background: linear-gradient(58deg, transparent 47%, #5b6069 47% 49%, transparent 49%), linear-gradient(-32deg, transparent 47%, #5b6069 47% 49%, transparent 49%), #c9ccd1; }
.thumb-bsod { background: linear-gradient(#fff 0 0) 7px 10px / 20px 2px no-repeat, #1058c6; }
.thumb-dvd { background: radial-gradient(ellipse 13px 6px at 50% 50%, #a855f7 0 100%, transparent 100%), #000; }
.thumb-matrix { background: repeating-linear-gradient(90deg, #31d67b 0 2px, transparent 2px 7px) 0 0 / 100% 60% no-repeat, #020603; }
.thumb-flipclock { background: linear-gradient(90deg, #2c3038 0 46%, transparent 46% 54%, #2c3038 54%) center / 30px 20px no-repeat, #111318; }
.thumb-clock { background: linear-gradient(#e8ebef 0 0) center / 22px 3px no-repeat, #000; }
.thumb-deadpixel { background: linear-gradient(90deg, #fff 0 20%, #000 20% 40%, #ff2e2e 40% 60%, #12c55b 60% 80%, #1e66ff 80%); }
.thumb-uniformity { background: linear-gradient(90deg, #000, #808080, #fff); }

/* ---- embed ---- */

.embed-body { margin: 0; height: 100vh; overflow: hidden; }
.embed-stage { position: relative; width: 100%; height: 100vh; background: #05070a; }
.embed-credit {
  position: absolute; right: 10px; bottom: 8px; z-index: 2;
  font-size: 11px; color: rgba(20, 22, 26, 0.45);
  background: rgba(255, 255, 255, 0.7); padding: 4px 9px; border-radius: 999px;
}
.embed-stage.is-dark .embed-credit { color: rgba(255, 255, 255, 0.6); background: rgba(0, 0, 0, 0.35); }

/* ---- responsive ---- */

@media (max-width: 1199px) {
  .layout { grid-template-columns: minmax(0, 1fr); }
  .rail { position: static; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .rail > * { flex: 1 1 300px; }
  .rail-left, .tool, .rail-right { grid-column: 1; }
  .tool { grid-row: 1; }
  .rail-left { grid-row: 2; }
  .rail-right { grid-row: 3; }
  .ad-slot { max-width: 336px; }
}

@media (max-width: 900px) {
  .strip-inner { display: flex; overflow-x: auto; scrollbar-width: none; }
  .strip-inner::-webkit-scrollbar { display: none; }
  .strip-item { flex: 0 0 108px; }
  .head-nav { display: none; }
  .tool h1 { font-size: 34px; }
  .size-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .more-grid, .bands-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .color-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .index-page h1 { font-size: 32px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 16px; }
  .ctas { grid-template-columns: minmax(0, 1fr); }
  .seg { flex-direction: column; }
  .controls { gap: 10px; }
  .ctl + .ctl { border-left: 0; padding-left: 0; }
  .ctl { flex: 1 1 100%; }
  .slider { flex: 1; width: auto; }
  .more-grid, .bands-inner { grid-template-columns: minmax(0, 1fr); }
  .color-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stage-slot { left: 12px; right: 12px; transform: none; }
  .stage .controls { width: 100%; }
  .embed-snippet { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- tool surfaces ------------------------------------------------------- */

.stage-dom { overflow: hidden; }

.hacker { background: #05070a; display: block; }
.hacker-out {
  margin: 0; padding: 18px 20px; width: 100%; height: 100%; overflow: hidden;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: clamp(11px, 1.15vw, 15px); line-height: 1.45;
  color: #31d67b; text-shadow: 0 0 6px rgba(49, 214, 123, 0.45);
  white-space: pre-wrap; word-break: break-word;
}
.hacker-out:focus-visible { outline: none; }

.fake-update { display: grid; place-items: center; text-align: center; padding: 24px; }
.fake-update-win { background: #0b5fa5; color: #fff; }
.fake-update-mac { background: #1c1c1e; color: #f2f2f7; }
.fu-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 44ch; }
.fu-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.28); border-top-color: #fff;
  animation: fu-spin 1.1s linear infinite;
}
@keyframes fu-spin { to { transform: rotate(360deg); } }
.fu-badge {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(160deg, #e9e9ec, #a9a9b2);
}
.fu-pct, .fu-line { margin: 0; font-size: clamp(15px, 1.7vw, 22px); font-weight: 600; }
.fu-sub { margin: 0; font-size: clamp(12px, 1.1vw, 15px); opacity: 0.72; }
.fu-bar { width: min(340px, 70vw); height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.22); overflow: hidden; }
.fu-bar span { display: block; height: 100%; width: 0; background: #f2f2f7; transition: width 1.2s linear; }

.bsod { background: #1058c6; color: #fff; display: grid; place-items: center; padding: 6% 8%; }
.bsod-inner { max-width: 62ch; }
.bsod-face { margin: 0; font-size: clamp(40px, 7vw, 96px); font-weight: 300; line-height: 1; }
.bsod-lead { margin: 18px 0 0; font-size: clamp(13px, 1.5vw, 20px); line-height: 1.4; }
.bsod-pct { margin: 18px 0 0; font-size: clamp(13px, 1.5vw, 20px); }
.bsod-stop { margin: 22px 0 0; font-size: clamp(11px, 1.1vw, 14px); opacity: 0.85; }

.flipclock { background: #0c0e12; display: grid; place-items: center; }
.fc { display: flex; align-items: center; gap: clamp(8px, 1.4vw, 20px); }
.fc-card {
  position: relative; background: #1b1e25; border-radius: clamp(6px, 0.9vw, 14px);
  padding: clamp(8px, 1.6vw, 26px) clamp(12px, 2.2vw, 34px);
  font-size: clamp(46px, 15vw, 190px); font-weight: 800; line-height: 1;
  color: #f2f4f7; font-variant-numeric: tabular-nums;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}
.fc-card::after { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0, 0, 0, 0.55); }
.fc-card.is-flipping { animation: fc-flip 0.42s ease; }
@keyframes fc-flip { from { transform: perspective(600px) rotateX(-32deg); } to { transform: none; } }
.fc-sep { font-size: clamp(30px, 8vw, 110px); font-weight: 700; color: #454b57; }
.fc-meridiem { align-self: flex-start; font-size: clamp(12px, 1.4vw, 22px); font-weight: 700; color: #6b7280; letter-spacing: 0.1em; }

.night-clock { background: #000; display: grid; place-items: center; }
.nc { text-align: center; }
.nc-time { margin: 0; font-size: clamp(52px, 17vw, 240px); font-weight: 700; line-height: 1; color: #e8ebef; font-variant-numeric: tabular-nums; }
.nc-date { margin: clamp(6px, 1vw, 16px) 0 0; font-size: clamp(12px, 1.8vw, 26px); color: #5b626c; }

.pixel-test { display: grid; place-items: end center; background: #fff; transition: background 0.12s linear; }
.pt-hint {
  margin: 0 0 clamp(10px, 2vh, 28px); padding: 0 16px;
  font-size: clamp(11px, 1.2vw, 15px); text-align: center; max-width: 60ch;
}
