/* =========================================================================
   Duel Casino Faceoff — design system
   Premium crypto-casino verdict desk. Gold (winner / CTA) vs cyan (challenger).
   Deep indigo base. No external fonts. Tokens in :root.
   ========================================================================= */

:root {
  /* palette */
  --ink: #0b0e16;
  --felt: #14213d;       /* deep indigo — "arena" gradient */
  --felt-2: #1b2c50;     /* lighter indigo */
  --bone: #f3f1ea;
  --muted: #99a6c0;
  --accent: #f6b41a;     /* gold — CTA + winner energy */
  --accent-ink: #241500; /* deep brown — AA-safe text ON gold fills */
  --accent-2: #46d0ff;   /* electric cyan — links + challenger highlight */
  --line: rgba(243, 241, 234, .12);
  --line-2: rgba(243, 241, 234, .22);

  /* derived surfaces */
  --panel: #111624;
  --panel-2: #151c2e;
  --danger: #ff5a5f;
  --danger-ink: #2a0001; /* AA-safe text ON danger fills */

  /* type stacks */
  --font-display: 'Archivo Black', 'Arial Narrow Bold', Impact, Haettenschweiler, sans-serif;
  --font-body: -apple-system, 'Segoe UI', Roboto, Inter, system-ui, sans-serif;

  /* scale */
  --maxw: 1100px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --radius-sm: 8px;

  /* glow */
  --glow-accent: 0 0 0 1px rgba(246, 180, 26, .35), 0 8px 30px rgba(246, 180, 26, .35);
  --glow-soft: 0 6px 24px rgba(0, 0, 0, .45);

  /* motion */
  --t-fast: 140ms ease;
  --t-med: 240ms ease;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
/* a11y: in running prose, links must not rely on colour alone -> underline them.
   Chrome links (nav, cards, buttons, chips, footer lists) opt out below. */
.flow p a,
.hero p a,
.faq__body a,
.moment__src a,
.rg-block p a,
.disclosure p a,
.footer-legal a {
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 2px;
}
.flow p a:hover,
.hero p a:hover,
.faq__body a:hover,
.moment__src a:hover,
.rg-block p a:hover,
.disclosure p a:hover,
.footer-legal a:hover { text-decoration-color: currentColor; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0 0 .4em;
  color: var(--bone);
}
h1 { font-size: clamp(2.1rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin: 0 0 1rem; }

/* ---------- scanline / grain texture (late-night broadcast) ----------
   Two fixed layers, both pointer-events:none, both BELOW interactive z-indices
   so they can never wash out CTAs or hurt readability:
   ::before = CRT scanlines, ::after = corner vignette. Kept under ~3% ink. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(244, 239, 230, .028) 0,
    rgba(244, 239, 230, .028) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: .9;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(130% 110% at 50% 35%, transparent 58%, rgba(0, 0, 0, .55) 100%);
}
/* keep real content above the texture layers.
   main/.rg-block/.site-footer are static -> set position:relative to enable z-index.
   header/cta-sticky already establish a stacking context via
   sticky/fixed + their own z-index, so they sit above the texture already. */
main, .rg-block, .site-footer {
  position: relative;
  z-index: 2;
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: clamp(2.5rem, 7vw, 5rem); }
.section--tight { padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.stack > * + * { margin-top: 1rem; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 10000;
  background: var(--accent-2);
  color: var(--ink);
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 13, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .7rem;
}
.brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.brand:hover { text-decoration: none; color: var(--accent-2); }
.brand b { color: var(--accent); }

/* 18+ badge */
.badge-18 {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: 0;
  background: var(--danger);
  color: var(--danger-ink);
  border-radius: 999px;
  padding: .15rem .55rem;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(.3rem, 1.4vw, 1rem);
}
.nav-cb { display: none; }
.nav-toggle { display: none; }
.nav-group > summary,
.nav-flat {
  color: var(--muted);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  white-space: nowrap;
}
.nav-flat { padding: .4rem .2rem; }
.nav-flat:hover { color: var(--bone); text-decoration: none; }
.nav-group { position: relative; }
.nav-group > summary {
  list-style: none;
  cursor: pointer;
  padding: .4rem .2rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { content: "\25BE"; font-size: .7em; opacity: .65; }
.nav-group > summary:hover,
.nav-group[open] > summary { color: var(--bone); }
.nav-sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  background: rgba(12, 18, 15, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  z-index: 200;
}
.nav-sub a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: .5rem .6rem;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-sub a:hover { color: var(--bone); background: rgba(246, 180, 26, .14); text-decoration: none; }
.nav-cta { margin-left: .3rem; padding: .45rem .9rem; font-size: .82rem; white-space: nowrap; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    cursor: pointer;
    background: none;
    border: 0;
    padding: .45rem;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--bone); border-radius: 2px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .1rem;
    margin: 0;
    padding: .6rem 1rem 1.1rem;
    background: rgba(10, 15, 13, .99);
    border-bottom: 1px solid var(--line);
    max-height: 82vh;
    overflow-y: auto;
  }
  .nav-cb:checked ~ .site-nav { display: flex; }
  .nav-group,
  .nav-flat { width: 100%; }
  .nav-group > summary,
  .nav-flat { padding: .75rem .1rem; font-size: 1rem; }
  .nav-sub {
    position: static;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 .4rem .9rem;
  }
  .nav-cta { width: 100%; text-align: center; margin: .5rem 0 .2rem; }
}

/* No age-gate entry modal by design (house rule): 18+ badge in header +
   responsible-gambling block on every page cover compliance instead. */

/* ---------- buttons / CTA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 1rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--cta {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  box-shadow: var(--glow-accent);
}
.btn--cta:hover { box-shadow: 0 0 0 1px rgba(246, 180, 26, .5), 0 12px 38px rgba(246, 180, 26, .5); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent-2); }
.btn--sm { padding: .5rem .9rem; font-size: .85rem; }

/* ---------- kicker (tabloid label) ----------
   Hand-set sticker: slight rotation, hard offset shadow, no rounded softness.
   This is the site's editorial signature — keep it punchy. */
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .8rem;
  color: var(--ink);
  background: var(--accent-2);
  padding: .28rem .65rem;
  border-radius: 2px;
  transform: rotate(-1.4deg);
  margin-bottom: .9rem;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
}
.kicker--magenta { background: var(--accent); color: var(--accent-ink); }
/* a kicker immediately followed by a heading pulls tighter together */
.kicker + h1, .kicker + h2, .kicker + h3 { margin-top: .1rem; }
.hero__onair + .kicker { margin-top: .2rem; }

/* ---------- hero (late-night broadcast lower-third) ----------
   NOT a centered gradient blob: an asymmetric studio frame. Felt at the top-left
   like a table under a key light, a hard magenta baseline rule, and an ON-AIR
   status strip. Text is left-aligned and ragged like a broadcast caption. */
.hero {
  position: relative;
  background:
    linear-gradient(200deg, var(--felt-2) 0%, var(--felt) 22%, var(--ink) 64%),
    var(--ink);
  border-bottom: 2px solid var(--accent);
  box-shadow: inset 0 -1px 0 rgba(246, 180, 26, .5);
  overflow: hidden;
}
/* faint felt weave only inside the hero — subtle, decorative */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(244,239,230,.022) 0 2px, transparent 2px 7px);
  mix-blend-mode: screen;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.4rem, 7vw, 4.6rem);
  display: grid;
  gap: .35rem;
  justify-items: start;
}
/* ON AIR status strip — broadcast identity, not generic badge */
.hero__onair {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--bone);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .28rem .7rem .28rem .55rem;
  margin-bottom: .4rem;
}
.hero__onair .dot {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 90, 95, .25);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__onair .dot { animation: fc-pulse 1.8s ease-in-out infinite; }
}
@keyframes fc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.hero h1 {
  max-width: 18ch;
  text-wrap: balance;
}
/* magenta underscore on the headline — editorial, hand-set feel */
.hero h1 .hl {
  background: linear-gradient(transparent 62%, rgba(246, 180, 26, .55) 62%);
  padding-inline: .04em;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  color: var(--bone);
  max-width: 54ch;
  line-height: 1.5;
  margin-top: .6rem;
}
.hero p.lede strong { color: var(--accent-2); font-weight: 700; }
.hero__meta {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-2);
  width: 100%;
  max-width: 54ch;
}
.hero__cta { margin-top: 1.5rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- moment card ---------- */
.moment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: var(--gap);
}
.moment {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--line-2);
  border-radius: var(--radius-sm) var(--radius) var(--radius) var(--radius-sm);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform var(--t-med), border-color var(--t-med);
}
.moment:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  border-left-color: var(--accent);
}
.moment__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.moment__date {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.moment__what {
  font-size: 1.02rem;
  line-height: 1.45;
  margin: 0;
}
.moment__tags { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.moment__src { font-size: .82rem; color: var(--muted); margin-top: auto; }
.moment__src a { color: var(--accent-2); }

/* ---------- character chip (pill) ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  background: var(--accent-2);
  color: var(--ink);
  padding: .22rem .6rem;
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}

/* ---------- type badge ---------- */
.type-badge {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  padding: .18rem .5rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--panel-2);
}
.type-badge[data-type="founder"]     { color: var(--accent-2); border-color: rgba(70,208,255,.4); }
.type-badge[data-type="controversy"] { color: var(--danger);   border-color: rgba(255,90,95,.4); }
.type-badge[data-type="guest"]       { color: var(--accent);   border-color: rgba(246,180,26,.4); }
.type-badge[data-type="cosplay"]     { color: #6fd3ff;         border-color: rgba(111,211,255,.4); }

/* ---------- NSFW badge ---------- */
.nsfw-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .04em;
  background: var(--danger);
  color: var(--danger-ink);
  padding: .16rem .45rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ---------- hype-meter ---------- */
.hype {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--muted);
}
.hype__bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.hype__fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: var(--hype, 50%);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 999px;
}

/* ---------- timeline rail ---------- */
.timeline { position: relative; padding-left: 1.6rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--felt-2));
}
.timeline__item { position: relative; padding-block: .8rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(246, 180, 26, .18);
}

/* ---------- filter / tracker controls ---------- */
.tracker__controls {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.filter-group { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.filter-group__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-right: .2rem;
}
.filter-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  background: var(--panel-2);
  color: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .3rem .75rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.filter-chip:hover { border-color: var(--accent-2); }
.filter-chip[aria-pressed="true"] {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 700;
}
.tracker__empty { color: var(--muted); font-style: italic; }

/* ---------- card grid (page links) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--gap);
}
.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.2rem;
  color: var(--bone);
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
  counter-increment: filecount;
}
/* hand-set file numeral, top-right — zine index energy, not a stock card */
.link-card::before {
  content: counter(filecount, decimal-leading-zero);
  position: absolute;
  top: .6rem;
  right: .9rem;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--line-2);
  letter-spacing: -.04em;
  transition: color var(--t-med);
}
/* thin felt rule that grows on hover — broadcast tick */
.link-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width var(--t-med);
}
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--panel-2);
  text-decoration: none;
}
.link-card:hover::after,
.link-card:focus-visible::after { width: 100%; }
.link-card:hover::before,
.link-card:focus-visible::before { color: var(--accent); }
.link-card h3 { font-size: 1.12rem; margin: 0; max-width: 16ch; }
.link-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.link-card__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent);
}
/* counter origin lives on the grid so numbering restarts per section */
.card-grid { counter-reset: filecount; }

/* ---------- CTA banner + disclosure ---------- */
.cta-banner {
  position: relative;
  background:
    linear-gradient(180deg, var(--felt-2) 0%, var(--panel-2) 70%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  overflow: hidden;
}
/* halftone dot field in the corner — print/zine texture, never over the text */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(rgba(246, 180, 26, .22) 1px, transparent 1.4px) 0 0 / 10px 10px;
  -webkit-mask-image: linear-gradient(225deg, #000, transparent 42%);
          mask-image: linear-gradient(225deg, #000, transparent 42%);
  opacity: .8;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: .3em; }
.cta-banner p { color: var(--bone); max-width: 52ch; margin-inline: auto; }
.cta-banner .cta-offer { color: var(--muted); }
.cta-banner .btn { margin-top: 1.2rem; }
.cta-offer {
  margin-top: .9rem;
  font-size: .82rem;
  color: var(--muted);
}

/* sticky CTA banner variant (unobtrusive) */
.cta-sticky {
  position: sticky;
  bottom: 0;
  z-index: 80;
  background: rgba(13, 20, 17, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.cta-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
  flex-wrap: wrap;
}
.cta-sticky p { margin: 0; font-size: .9rem; color: var(--muted); }

/* disclosure box */
.disclosure {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-size: .85rem;
  color: var(--muted);
  margin-block: 1.2rem;
}
.disclosure b { color: var(--bone); font-weight: 700; }
.disclosure__icon { color: var(--accent-2); flex: none; line-height: 1.4; }

/* ---------- responsible-gambling block ---------- */
.rg-block {
  background: var(--panel-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rg-block__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-block: 1.3rem;
}
.rg-block__badge {
  font-family: var(--font-display);
  background: var(--danger);
  color: var(--danger-ink);
  padding: .3rem .7rem;
  border-radius: 8px;
  font-size: 1rem;
  flex: none;
}
.rg-block p { margin: 0; font-size: .88rem; color: var(--muted); }
.rg-block a { color: var(--accent-2); }

/* ---------- breadcrumb ---------- */
.breadcrumb { padding-block: 1rem; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  padding: 0;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: .4rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--bone); }
.breadcrumb [aria-current="page"] { color: var(--bone); }

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  flex: none;
  transform-origin: center;
  transition: transform var(--t-fast), color var(--t-fast);
}
.faq__item[open] summary::after { transform: rotate(45deg); } /* + -> x, transform-only */
.faq__item summary:hover,
.faq__item summary:focus-visible { color: var(--accent-2); background: var(--panel-2); }
.faq__item[open] summary { color: var(--accent-2); }
.faq__body { padding: 0 1.2rem 1.1rem; color: var(--muted); }
.faq__body p { margin: 0 0 .6rem; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-block: 2.2rem;
  font-size: .85rem;
  color: var(--muted);
}
.site-footer a { color: var(--accent-2); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--gap);
}
.footer-grid h4 {
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--bone);
  margin-bottom: .6rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.footer-legal {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  line-height: 1.6;
}
.footer-license { color: var(--muted); }

/* ---------- decorative svg as img ---------- */
.media {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--felt);
}
.media img { display: block; width: 100%; height: auto; }
/* portrait / small screenshots: cap width and centre so they don't upscale */
.media--narrow { max-width: 460px; margin-inline: auto; }
/* responsive grid of screenshot figures */
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--gap); }
.shots .media { margin: 0; }

/* ---------- tables (comparison / facts) ---------- */
.media table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.media caption { text-align: left; }
.media th, .media td {
  padding: .7rem .85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.media thead th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: .76rem;
  color: var(--muted);
  background: var(--panel-2);
}
.media tbody th[scope="row"] { color: var(--bone); font-weight: 600; }
.media tbody tr:last-child td, .media tbody tr:last-child th { border-bottom: 0; }
.media tfoot th, .media tfoot td {
  border-top: 2px solid var(--line-2);
  font-family: var(--font-display);
  color: var(--bone);
}
/* head-to-head comparison table (faceoff + static versus tables) */
table.cmp td { text-align: center; font-variant-numeric: tabular-nums; }
table.cmp th[scope="col"]:first-child, table.cmp th[scope="row"] { text-align: left; }
table.cmp thead th:nth-child(2) { color: var(--accent); }       /* Duel column */
table.cmp td.is-win { color: var(--accent); font-weight: 700; background: rgba(246, 180, 26, .09); }

/* ---------- Duel Scorecard (proprietary) ---------- */
.scorecard {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.scorecard__head { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.3rem; }
.scorecard__score { display: flex; align-items: baseline; gap: .2rem; }
.scorecard__num { font-family: var(--font-display); font-size: clamp(2.8rem, 9vw, 4rem); line-height: 1; color: var(--accent); }
.scorecard__max { color: var(--muted); font-family: var(--font-display); }
.scorecard__grade {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
  color: var(--accent-ink);
  background: var(--accent);
  padding: .2rem .6rem;
  border-radius: 4px;
}
.scorecard__name { margin: .45rem 0 0; font-weight: 600; color: var(--bone); }
.scorecard__note { margin: .2rem 0 0; font-size: .8rem; color: var(--muted); }
.scorecard__rows { display: grid; gap: .85rem; }
.crit__top { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .32rem; }
.crit__label { font-size: .9rem; color: var(--bone); }
.crit__weight {
  font-size: .68rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .05rem .4rem; margin-left: .25rem; white-space: nowrap;
}
.crit__val { font-family: var(--font-display); color: var(--bone); }
.crit__max { color: var(--muted); font-size: .8em; }
.crit__bar { height: 9px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.crit__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent-2), var(--accent)); border-radius: 999px; }

/* ---------- Faceoff (interactive head-to-head) ---------- */
.faceoff__controls { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.faceoff__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.faceoff__select {
  font-family: var(--font-body); font-size: 1rem; color: var(--bone);
  background: var(--panel-2); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); padding: .5rem .8rem; cursor: pointer;
}
.faceoff__tally {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em;
  color: var(--accent); margin: 0 0 .8rem; font-size: 1.05rem;
}
.faceoff__src { font-size: .8rem; margin-top: .7rem; }
.win-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; padding: .12rem .45rem; border-radius: 4px;
}
.win-badge--duel { background: var(--accent); color: var(--accent-ink); }
.win-badge--rival { background: var(--accent-2); color: #06222e; }
.win-badge--tie { background: var(--panel-2); color: var(--muted); border: 1px solid var(--line); }

/* ---------- pros / cons ---------- */
.prosncons { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: var(--gap); }
.prosncons__col { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.prosncons__col--pros { border-top: 3px solid #39d98a; }
.prosncons__col--cons { border-top: 3px solid var(--danger); }
.prosncons__col h3 { font-size: 1.05rem; margin-bottom: .7rem; }
.prosncons ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.prosncons li { position: relative; padding-left: 1.6rem; font-size: .92rem; color: var(--bone); }
.pros li::before { content: "\2713"; position: absolute; left: 0; color: #39d98a; font-weight: 700; }
.cons li::before { content: "\2715"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* ---------- verdict callout ---------- */
.verdict {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.verdict h3 { color: var(--accent-2); margin-bottom: .3em; }
.verdict p:last-child { margin-bottom: 0; }

/* ---------- quick facts grid ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: .8rem; list-style: none; padding: 0; margin: 0; }
.facts li { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; }
.facts b { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .15rem; font-weight: 700; }
.facts span { color: var(--bone); }

/* ---------- utilities ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  color: var(--accent);
}
.muted { color: var(--muted); }
.center { text-align: center; }
.flow > * + * { margin-top: clamp(1rem, 2.5vw, 1.6rem); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
}
.byline b { color: var(--bone); }

/* spacing + measure utilities (avoid inline style attributes) */
.mt-1 { margin-top: 1.2rem; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 1.6rem; }
.measure { max-width: 60ch; }
.measure-wide { max-width: 72ch; }

/* ---------- focus visibility ---------- */
:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .moment:hover,
  .link-card:hover,
  .link-card:focus-visible,
  .btn:hover { transform: none; }
  .hero__onair .dot { animation: none !important; }
}

/* ---------- small screens ---------- */
@media (max-width: 600px) {
  .site-header__inner { flex-wrap: wrap; }
  .site-nav { width: 100%; margin-left: 0; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
}
