/* ============================================================
   BANNED WIPE — HUD / MONOCHROME THEME
   Modelled on angular stream-overlay panels: chamfered frames,
   hairline outlines, condensed uppercase type, greeble details.

   Monochrome by rule: black -> white greyscale for everything
   structural. Exactly ONE hue, --accent, is allowed, and only on
   dividers, ticks, indicators, focus rings and data marks.
   Change --accent below to re-tint the entire site.
   ============================================================ */

:root {
  /* Site default accent. Structural chrome stays monochrome; anything that
     represents a specific platform overrides --accent with its brand hue
     via a .br-* class below, and every accent mark inside re-derives. */
  --accent: #22e8ff;

  /* greyscale ramp */
  --bg: #000000;
  --ink: #ffffff;
  --ink-2: #b6b6bd;
  --ink-3: #5a5a64;
  --ink-mute: #9a9aa6;

  /* frame + glass */
  --line: rgba(255, 255, 255, 0.52);
  --line-soft: rgba(255, 255, 255, 0.16);

  /* Glass fills sit directly on top of the frame layer, so they need an
     almost-opaque dark base — a fully translucent fill would let the white
     frame bleed through and wash the whole panel out to grey. The 8%
     that IS translucent still lets the background grid read through. */
  --glass: linear-gradient(158deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015)), rgba(6, 6, 10, 0.92);
  --glass-2: linear-gradient(158deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)), rgba(8, 8, 13, 0.92);
  --glass-3: linear-gradient(158deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)), rgba(10, 10, 16, 0.92);

  /* chamfer size */
  --cut: 14px;
  --cut-sm: 9px;

  --font: "Bahnschrift", "DIN Alternate", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;
}

/* Chamfered silhouettes. Kept as variables so the frame and its inner
   glass fill can share one shape. */
.oct {
  clip-path: polygon(
    var(--c, var(--cut)) 0,
    calc(100% - var(--c, var(--cut))) 0,
    100% var(--c, var(--cut)),
    100% calc(100% - var(--c, var(--cut))),
    calc(100% - var(--c, var(--cut))) 100%,
    var(--c, var(--cut)) 100%,
    0 calc(100% - var(--c, var(--cut))),
    0 var(--c, var(--cut))
  );
}
.notch {
  clip-path: polygon(
    var(--c, var(--cut-sm)) 0,
    100% 0,
    100% calc(100% - var(--c, var(--cut-sm))),
    calc(100% - var(--c, var(--cut-sm))) 100%,
    0 100%,
    0 var(--c, var(--cut-sm))
  );
}

/* Declared on every element, not :root, so the tints re-derive from whatever
   --accent is in scope. Declaring them once on :root would bake in the
   default hue and brand overrides would have no effect on them. */
*, *::before, *::after {
  --accent-dim: color-mix(in srgb, var(--accent) 34%, transparent);
  --accent-ghost: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* ---------- brand accents ---------- */

.br-twitch    { --accent: #9146ff; }
.br-youtube   { --accent: #ff0033; }
.br-tiktok    { --accent: #fe2c55; }
.br-x         { --accent: #e7e9ea; }  /* X's own palette is monochrome */
.br-instagram { --accent: #e1306c; }
.br-discord   { --accent: #5865f2; }
.br-amazon    { --accent: #ff9900; }

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100%;
  padding: clamp(14px, 2.6vw, 36px) clamp(12px, 3vw, 30px) 64px;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Grid + scanlines. Fixed layer so long pages never repaint it. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.030) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.022) 0 1px,
    transparent 1px 3px
  );
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

/* ---------- frames ---------- */

/* One element, two layers: the element itself is the hairline frame,
   ::before is the glass fill inset by 1px and clipped to the same shape.
   Both variants declare the full structure — .panel-sub is used standalone,
   not stacked on .panel, so it cannot rely on .panel's rules. */
.panel,
.panel-sub {
  position: relative;
  background: var(--line);
  clip-path: polygon(
    var(--c) 0, calc(100% - var(--c)) 0,
    100% var(--c), 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, var(--c) 100%,
    0 calc(100% - var(--c)), 0 var(--c)
  );
}
.panel::before,
.panel-sub::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  clip-path: inherit;
}
.panel > *,
.panel-sub > * { position: relative; z-index: 1; }

.panel { --c: var(--cut); padding: clamp(16px, 2.2vw, 26px); }

/* Nested panel: smaller chamfer, fainter frame so it reads as a child. */
.panel-sub {
  --c: var(--cut-sm);
  padding: clamp(13px, 1.7vw, 18px);
  background: var(--line-soft);
}
.panel-sub::before { background: var(--glass-2); }

/* Inner corner brackets — pure decoration, drawn on the frame. */
.brackets::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid transparent;
  border-image: none;
  background:
    linear-gradient(var(--accent), var(--accent)) 0 0 / 12px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 0 0 / 1px 12px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 100% 100% / 12px 1px no-repeat,
    linear-gradient(var(--accent), var(--accent)) 100% 100% / 1px 12px no-repeat;
  opacity: 0.55;
}

/* ---------- greebles ---------- */

/* Slanted tally marks, as seen top-right on the reference panels. */
.ticks {
  display: inline-flex;
  gap: 3px;
  flex: 0 0 auto;
}
.ticks i {
  display: block;
  width: 3px;
  height: 9px;
  background: var(--accent);
  transform: skewX(-22deg);
  opacity: 0.9;
}
.ticks i:nth-child(2) { opacity: 0.6; }
.ticks i:nth-child(3) { opacity: 0.32; }

/* Four indicator squares, bottom-right on the reference panels. */
.dots {
  display: inline-flex;
  gap: 4px;
  flex: 0 0 auto;
}
.dots i {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--accent);
}
.dots i:nth-child(1) { opacity: 1; }
.dots i:nth-child(2) { opacity: 0.7; }
.dots i:nth-child(3) { opacity: 0.45; }
.dots i:nth-child(4) { opacity: 0.22; }

/* The accent rule that separates icon from label. */
.sep {
  flex: 0 0 auto;
  width: 2px;
  align-self: stretch;
  min-height: 22px;
  background: var(--accent);
}

/* ---------- type ---------- */

h1, h2, h3, .eyebrow, .stat-key, .btn, .chip, .tag, .plat-name b, th {
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 0;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
}
h2 {
  margin: 0;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.eyebrow-mute { color: var(--ink-mute); }

.lede {
  margin: 14px 0 0;
  max-width: 48ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  text-transform: none;
}
.muted {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

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

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.section-head .muted { margin-left: auto; }

/* Hairline rule with a short accent lead-in. */
.rule {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(90deg, var(--accent) 0 34px, var(--line-soft) 34px);
}

/* ---------- grid ---------- */

.grid { display: grid; gap: clamp(12px, 1.6vw, 18px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-hero { grid-template-columns: 1.3fr 1fr; }
.g-side { grid-template-columns: 1.55fr 1fr; }

/* ---------- top bar ---------- */

.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.avatar {
  --c: 10px;
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--line);
  clip-path: polygon(
    var(--c) 0, calc(100% - var(--c)) 0, 100% var(--c),
    100% calc(100% - var(--c)), calc(100% - var(--c)) 100%,
    var(--c) 100%, 0 calc(100% - var(--c)), 0 var(--c)
  );
}
.avatar::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0a0a0c;
  clip-path: inherit;
}
.avatar > * { position: relative; }
.avatar img {
  position: relative;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  clip-path: inherit;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-sub {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}

.topbar-actions { margin-left: auto; display: flex; gap: 8px; }

.icon-btn {
  --c: 7px;
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  text-decoration: none;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
  transition: color 0.15s linear, background 0.15s linear;
}
.icon-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #08080a;
  clip-path: inherit;
}
.icon-btn svg { position: relative; width: 17px; height: 17px; }
.icon-btn:hover { color: var(--accent); background: var(--accent-dim); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  overflow: hidden;
}
.hero::after {
  /* faint accent wash, the one place colour bleeds into the surface */
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  z-index: 0;
  background: radial-gradient(55% 100% at 50% 100%, var(--accent-ghost), transparent 72%);
  pointer-events: none;
}

.wave { display: block; width: 100%; height: auto; margin-top: 16px; }

/* ---------- stat strip ---------- */

.stat-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin-top: 14px;
}
.stat-strip > div {
  padding: 12px 8px;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.stat-strip > div:first-child { border-left: 0; }
.stat-val {
  display: block;
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat-key {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
}

/* ---------- social squares ---------- */

.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.soc {
  --c: 8px;
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  text-decoration: none;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
  transition: background 0.15s linear, color 0.15s linear;
}
.soc::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #08080a;
  clip-path: inherit;
}
.soc svg { position: relative; width: 20px; height: 20px; }
.soc:hover { background: var(--accent); }
.soc:hover::before { background: #05070a; }
.soc:hover svg { color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  --c: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  background: var(--ink);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
  transition: background 0.15s linear, color 0.15s linear;
}
.btn svg { width: 15px; height: 15px; }
.btn:hover { background: var(--accent); }
.btn-block { width: 100%; }

.btn-ghost {
  color: var(--ink);
  background: var(--line-soft);
}
.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: #08080a;
  clip-path: inherit;
}
.btn-ghost:hover { background: var(--accent); color: #000; }
.btn-ghost:hover::before { opacity: 0; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- tiles ---------- */

.tile {
  --c: var(--cut-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, calc(100% - var(--c)) 0, 100% var(--c),
    100% calc(100% - var(--c)), calc(100% - var(--c)) 100%,
    var(--c) 100%, 0 calc(100% - var(--c)), 0 var(--c)
  );
  transition: background 0.15s linear;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--glass-2);
  backdrop-filter: blur(10px);
  clip-path: inherit;
}
.tile > * { position: relative; }
.tile:hover { background: var(--accent-dim); }

.tile-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--line-soft);
}
.tile-icon svg { width: 17px; height: 17px; }
.tile-body p {
  margin: 5px 0 0;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  word-break: break-word;
}

.pill {
  align-self: flex-start;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: var(--accent-ghost);
}
.pill-solid { color: #000; background: var(--accent); border-color: var(--accent); }
.pill-mute { color: var(--ink-mute); border-color: var(--line-soft); background: none; }

/* Live indicator — the one blinking element. */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #000;
  background: var(--accent);
}
.live-badge[hidden] { display: none; }
.live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  animation: blink 1.4s steps(1, end) infinite;
}
@keyframes blink { 0%, 55% { opacity: 1; } 56%, 100% { opacity: 0.15; } }

/* ---------- form ---------- */

.field { display: block; margin-bottom: 13px; }
.field > span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s linear, background 0.15s linear;
}
.field textarea { min-height: 108px; resize: vertical; }
.field select option { background: #08080a; color: var(--ink); }
/* Placeholders were ~2.6:1 against the field — legible enough to look
   designed, not enough to actually read. ~5.5:1 now. */
.field input::placeholder,
.field textarea::placeholder { color: #8d8d99; }
.field :focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}
.form-note {
  margin: 11px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
}

/* ---------- key/value + tags ---------- */

.kv { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.kv li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.kv li:last-child { border-bottom: 0; }
.kv li svg { width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }
.kv .val { margin-left: auto; font-family: var(--mono); font-size: 12.5px; color: var(--ink); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  padding: 6px 11px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  border: 1px solid var(--line-soft);
}

/* ---------- chips ---------- */

.chips {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px;
}
.chip {
  --c: 8px;
  position: relative;
  padding: 13px 10px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
  transition: background 0.15s linear, color 0.15s linear;
}
.chip::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #08080a;
  clip-path: inherit;
}
.chip > * { position: relative; }
.chip span { position: relative; }
.chip small {
  position: relative;
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.chip:hover { background: var(--accent); }
.chip:hover::before { background: #05070a; }

/* ---------- metrics ---------- */

.metric {
  --c: var(--cut-sm);
  position: relative;
  padding: 16px;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
}
.metric::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--glass-2);
  backdrop-filter: blur(10px);
  clip-path: inherit;
}
.metric > * { position: relative; }
.metric .stat-val {
  margin-top: 8px;
  font-size: clamp(22px, 2.6vw, 28px);
  text-align: left;
}
.metric .delta {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.metric .delta.flat { color: var(--ink-mute); }

/* ---------- platform table ---------- */

.plat-row {
  display: grid;
  grid-template-columns: 42px 1.2fr repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s linear;
}
.plat-row:hover { background: rgba(255, 255, 255, 0.05); }
.plat-row.head {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.plat-row.head span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.plat-row.head:hover { background: none; }

.badge-icon {
  --c: 7px;
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, 100% 0, 100% calc(100% - var(--c)),
    calc(100% - var(--c)) 100%, 0 100%, 0 var(--c)
  );
}
.badge-icon::before { content: ""; position: absolute; inset: 1px; background: #08080a; clip-path: inherit; }
.badge-icon svg { position: relative; width: 16px; height: 16px; }

.plat-name {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.plat-name small {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-mute);
}
.plat-row b {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.plat-row .sub {
  display: block;
  margin-top: 2px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.plat-row .up { color: var(--accent); }

/* Each row inherits its platform's hue from the .br-* class on the anchor,
   so the badge frame, glyph, divider rule and delta all shift together.
   Metric values stay white — colouring those would make the columns harder
   to compare across rows. */
.plat-row .badge-icon { background: var(--accent); }
.plat-row .badge-icon svg { color: var(--accent); }

.plat-row .plat-name {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.plat-row:hover { background: var(--accent-ghost); }

/* Short accent lead-in on the row's dividing rule, echoing .rule */
.plat-row { position: relative; }
.plat-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.plat-row.head::after { display: none; }

/* ---------- charts ---------- */

/* Donut: accent arc on a dark track, monochrome legend. */
.donut-wrap { display: grid; place-items: center; gap: 14px; }
.donut {
  --size: 150px;
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 19px;
  background: #050506;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
}
.donut-center { position: relative; z-index: 1; text-align: center; }
.donut-center b {
  display: block;
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 600;
}
.donut-center span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

ul.legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; width: 100%; }
.legend li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.legend .dot { width: 9px; height: 9px; flex: 0 0 auto; }
.legend .val { margin-left: auto; color: var(--ink); }

/* Bars: accent fill, hairline track. */
.bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.bar-row {
  display: grid;
  grid-template-columns: 62px 1fr 42px;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.bar-track {
  display: block;
  height: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-soft);
}
.bar-fill { display: block; height: 100%; background: var(--accent); }
.bar-fill.half { background: var(--accent-dim); }
.bar-row .val { text-align: right; color: var(--ink); }

/* Column chart */
.cols { display: flex; align-items: flex-end; gap: 8px; height: 160px; margin-top: 16px; }
.col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
  height: 100%;
}
.col i {
  display: block;
  width: 100%;
  min-height: 4px;
  background: linear-gradient(to top, var(--accent), var(--accent-dim));
}
.col span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.hero .col i { background: linear-gradient(to top, var(--ink), rgba(255, 255, 255, 0.25)); }
.hero .col span { color: var(--ink-2); }

/* ---------- rate cards ---------- */

.rate {
  --c: var(--cut-sm);
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--line-soft);
  clip-path: polygon(
    var(--c) 0, calc(100% - var(--c)) 0, 100% var(--c),
    100% calc(100% - var(--c)), calc(100% - var(--c)) 100%,
    var(--c) 100%, 0 calc(100% - var(--c)), 0 var(--c)
  );
}
.rate::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--glass-2);
  backdrop-filter: blur(10px);
  clip-path: inherit;
}
.rate > * { position: relative; }
.rate.featured { background: var(--accent-dim); }
.rate b {
  font-family: var(--mono);
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 600;
}
.rate .feat {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.rate .feat li::before { content: "▸ "; color: var(--accent); }

/* ---------- notice ---------- */

.notice {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 15px;
  margin-bottom: clamp(13px, 1.6vw, 18px);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--ink-2);
  border: 1px solid var(--accent-dim);
  background: var(--accent-ghost);
}
.notice svg { flex: 0 0 auto; margin-top: 1px; color: var(--accent); }
.notice b { color: var(--accent); }

/* ---------- footer ---------- */

.foot {
  margin: 22px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.foot a { color: var(--ink-2); }

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

@media (max-width: 900px) {
  .g-hero, .g-side, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plat-row.head { display: none; }
  .plat-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px 16px;
  }
  .plat-row .badge-icon { flex: 0 0 auto; }
  .plat-row .plat-name { flex: 1 1 60%; }
  .plat-row > span:not(.badge-icon):not(.plat-name) { flex: 1 1 calc(50% - 44px); }
  .chips { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .g-2, .g-3, .g-4, .g-hero, .g-side { grid-template-columns: minmax(0, 1fr); }
  .stat-strip { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); }
  .chips { grid-template-columns: repeat(2, 1fr); }
  .cols { height: 132px; gap: 5px; }
  .plat-row > span:not(.badge-icon):not(.plat-name) { flex: 1 1 calc(50% - 30px); }
}

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