/* Jackpot Draft — shared stylesheet */

/* ---------- 1. Tokens ---------- */
:root {
  --paper: #f2f3f5;
  --surface: #ffffff;
  --tint: #e8eaee;
  --tint-cobalt: #eaeefb;
  --tint-coral: #ffeeec;

  --ink: #14161c;
  --ink-mid: #494f5d;
  --ink-soft: #5f6675;

  --cobalt: #1f45c4;
  --cobalt-deep: #17359a;
  --coral: #ff5a49;
  --coral-deep: #b8331f;

  --rule: #c4c9d3;
  --rule-strong: #9aa1af;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;
  --s10: 128px;

  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --wrap: 1180px;
  --measure: 68ch;
}

/* ---------- 2. Elements ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-synthesis-weight: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.375rem, 6vw, 4.125rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
}

h4 {
  font-size: 1.0625rem;
  line-height: 1.3;
}

p {
  margin: 0 0 var(--s4);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* Links: underline slides in on hover */
a {
  color: var(--cobalt);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 180ms ease;
  padding-bottom: 1px;
}

a:hover,
a:focus-visible {
  background-size: 100% 1px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}

/* ---------- 3. Utility scaffolding ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--s5);
}

/* The reference grid needs ten columns side by side before it starts scrolling. */
.wrap--wide {
  max-width: 1360px;
}

.wrap--narrow {
  max-width: 820px;
}

.section {
  padding-block: var(--s9);
}

.section--tight {
  padding-block: var(--s7);
}

.section--tint {
  background-color: var(--tint);
}

.section + .section {
  border-top: 1px dashed var(--rule);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 var(--s4);
  display: block;
}

.label--accent {
  color: var(--coral-deep);
}

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: var(--measure);
}

.prose {
  max-width: var(--measure);
}

.prose h2 {
  margin-top: var(--s8);
  margin-bottom: var(--s4);
}

.prose h3 {
  margin-top: var(--s6);
  margin-bottom: var(--s3);
}

.prose > :first-child {
  margin-top: 0;
}

.prose ul,
.prose ol {
  margin: 0 0 var(--s4);
  padding-left: var(--s5);
}

.prose li {
  margin-bottom: var(--s2);
}

.prose li::marker {
  color: var(--coral-deep);
}

.rule-dashed {
  border: 0;
  border-top: 1px dashed var(--rule);
  margin-block: var(--s7);
}

.stack-md {
  margin-top: var(--s6);
}

.stack-lg {
  margin-top: var(--s8);
}

.accent-word {
  color: var(--coral-deep);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--s4);
  top: -60px;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  padding: var(--s2) var(--s4);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.skip-link:focus {
  top: var(--s2);
}

/* ---------- 4. Buttons & badges ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--s3) var(--s5);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background-image: none;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease;
}

.btn--primary {
  background-color: var(--coral);
  color: var(--ink);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #ff4331;
  color: var(--ink);
  background-image: none;
}

.btn--secondary {
  background-color: var(--cobalt);
  color: #fff;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--cobalt-deep);
  color: #fff;
  background-image: none;
}

.textlink {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--cobalt);
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px var(--s2);
  border-radius: 0;
  border: 1px dotted var(--rule-strong);
  background-color: var(--surface);
  color: var(--ink-mid);
}

.badge--cobalt {
  border-color: #93a6e4;
  background-color: var(--tint-cobalt);
  color: var(--cobalt-deep);
}

.badge--coral {
  border-color: #f1a396;
  background-color: var(--tint-coral);
  color: var(--coral-deep);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- 5. Age notice bar ---------- */
.age-bar {
  background-color: var(--ink);
  color: #f4f5f7;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.age-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--s2) var(--s4);
  padding-block: var(--s2);
}

.age-bar__flag {
  background-color: var(--coral);
  color: var(--ink);
  font-weight: 600;
  padding: 1px var(--s2);
}

.age-bar a {
  color: #ffd9d4;
}

/* ---------- 6. Header ---------- */
.site-header {
  background-color: var(--paper);
  border-bottom: 1px dashed var(--rule);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  padding-block: var(--s3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background-image: none;
  color: var(--ink);
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand__tld {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

.nav-toggle {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px dashed var(--ink-soft);
  color: var(--ink);
  padding: var(--s2) var(--s3);
  border-radius: 0;
  cursor: pointer;
  min-height: 44px;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--coral-deep);
  background-size: 100% 1px;
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--paper);
  background-image: url("/assets/hero-arcs.jpg");
  background-size: cover;
  background-position: 20% center;
  border-bottom: 1px dashed var(--rule);
}

.hero--grid {
  background-image: url("/assets/band-grid.jpg");
  background-position: center;
}

.hero__inner {
  padding-block: var(--s9) var(--s8);
}

.hero__title {
  max-width: 22ch;
}

.hero__support {
  margin-top: var(--s5);
  font-size: clamp(1.125rem, 1.7vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 58ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2) var(--s5);
  margin-top: var(--s6);
  padding-top: var(--s4);
  border-top: 1px dashed var(--rule);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.hero__notice {
  margin-top: var(--s6);
  border-left: 3px solid var(--coral);
  padding: var(--s3) 0 var(--s3) var(--s4);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 62ch;
}

.hero__notice strong {
  color: var(--ink);
}

/* ---------- 8. Stat strip ---------- */
.stat-strip {
  background-color: var(--ink);
  color: #eef0f3;
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: var(--s6);
  gap: var(--s5);
}

.stat {
  border-left: 1px dashed #3d4351;
  padding-left: var(--s4);
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat__figure {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.stat__figure span {
  color: var(--coral);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7aeba;
  margin-top: var(--s2);
}

/* ---------- 9. Two-column editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--s8);
  align-items: start;
}

.split--reverse .split__figure {
  order: -1;
}

.split__body > * + h3 {
  margin-top: var(--s6);
}

.figure {
  margin: 0;
  border: 1px dashed var(--rule);
  border-radius: var(--radius-md);
  background-color: var(--surface);
  padding: var(--s4);
}

.figure img {
  border-radius: var(--radius-sm);
  width: 100%;
}

.figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px dashed var(--rule);
}

.figure--wide {
  margin-bottom: var(--s7);
  max-width: 780px;
}

/* ---------- 10. Criteria list ---------- */
.criteria {
  list-style: none;
  margin: var(--s5) 0 0;
  padding: 0;
  counter-reset: crit;
}

.criteria li {
  counter-increment: crit;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: var(--s4);
  padding-block: var(--s4);
  border-top: 1px dashed var(--rule);
}

.criteria li:last-child {
  border-bottom: 1px dashed var(--rule);
}

.criteria li::before {
  content: counter(crit, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--coral-deep);
  padding-top: 3px;
}

.criteria h4 {
  margin-bottom: var(--s1);
}

.criteria p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-mid);
}

/* ---------- 11. Disclosure strip ---------- */
.disclosure {
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  background-color: var(--tint-coral);
  padding: var(--s5);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--s5);
  align-items: start;
  max-width: 800px;
}

.disclosure__tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: var(--coral);
  color: var(--ink);
  padding: var(--s1) var(--s2);
  white-space: nowrap;
}

.disclosure p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 78ch;
}

/* ---------- 12. Showcase / operator cards ---------- */
.showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30ch;
  align-items: end;
  gap: var(--s6);
  margin-bottom: var(--s6);
}

.showcase__note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  padding-bottom: 4px;
}

.op-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s6);
}

.op-card {
  background-color: var(--surface);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.op-card__head {
  background-color: var(--coral);
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3) var(--s5);
  padding: var(--s3) var(--s5);
}

.op-card__ident {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  min-width: 0;
}

.op-card__rank {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d0d04;
}

.op-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.1;
}

.op-card__score {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background-color: var(--cobalt);
  color: #fff;
  border-radius: 0;
  padding: var(--s1) var(--s3);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.op-card__score b {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.op-card__score span {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #c7d2f5;
}

.op-card__body {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: var(--s6);
  padding: var(--s6) var(--s5);
}

.op-logo {
  border: 1px dotted var(--rule-strong);
  border-radius: var(--radius-sm);
  background-color: #fff;
  height: 92px;
  display: grid;
  place-items: center;
  padding: var(--s3);
}

/* Operator marks arrive in wildly different aspect ratios, so both axes are
   capped to keep every tile optically the same weight. */
.op-logo img {
  max-height: 62px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.op-logo__fallback {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cobalt-deep);
  text-align: center;
  line-height: 1.2;
}

.op-card__text {
  font-size: 1rem;
  line-height: 1.62;
}

.op-card__text p {
  margin-bottom: var(--s4);
}

.op-spec {
  margin: var(--s4) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--s6);
}

.op-spec > div {
  display: grid;
  grid-template-columns: 8.5rem minmax(0, 1fr);
  gap: var(--s3);
  padding-block: var(--s2);
  border-top: 1px dashed var(--rule);
  font-size: 0.875rem;
}

.op-spec dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 3px;
}

.op-spec dd {
  margin: 0;
  color: var(--ink);
}

.op-card__badges {
  margin-top: var(--s5);
}

/* ticket-stub perforation before the CTA zone */
.op-card__perf {
  position: relative;
  height: 0;
  border-top: 2px dashed var(--rule-strong);
  margin-inline: var(--s5);
}

.op-card__perf::before,
.op-card__perf::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--paper);
  border: 1px dashed var(--rule-strong);
}

.op-card__perf::before {
  left: calc(-1 * var(--s5) - 11px);
}

.op-card__perf::after {
  right: calc(-1 * var(--s5) - 11px);
}

.op-card__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s4) var(--s6);
  align-items: center;
  padding: var(--s5);
}

.op-card__terms {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin: 0;
}

.op-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s4);
  justify-content: flex-end;
}

/* staggered reveal */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

  .js .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 13. Head-to-head duels ---------- */
.duel {
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  overflow: hidden;
}

.duel + .duel {
  margin-top: var(--s6);
}

.duel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) var(--s5);
  border-bottom: 2px dashed var(--rule-strong);
}

.duel__side {
  min-width: 0;
}

.duel__side--right {
  text-align: right;
}

.duel__name {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 600;
  line-height: 1.15;
  display: block;
}

.duel__score {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.duel__vs {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: var(--ink);
  color: #fff;
  padding: var(--s1) var(--s2);
}

.duel__rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.duel__row {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: var(--s3) var(--s5);
  padding: var(--s4) var(--s5);
}

.duel__row + .duel__row {
  border-top: 1px dashed var(--rule);
}

.duel__criterion {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 4px;
}

.duel__verdict {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.duel__verdict b {
  font-weight: 700;
}

.duel__close {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: var(--s3) var(--s5);
  padding: var(--s5);
  border-top: 2px dashed var(--rule-strong);
  background-color: var(--tint-cobalt);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.duel__close p {
  margin: 0;
}

/* ---------- 14. Comparison table ---------- */
.table-scroll {
  overflow-x: auto;
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  background-color: var(--surface);
}

.cmp {
  min-width: 900px;
  width: 100%;
  font-size: 0.875rem;
}

.cmp caption {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: var(--s4) var(--s5);
  border-bottom: 1px dashed var(--rule);
}

.cmp th,
.cmp td {
  text-align: left;
  padding: var(--s3) var(--s4);
  border-top: 1px dashed var(--rule);
  vertical-align: top;
}

.cmp thead th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 0;
  white-space: nowrap;
}

.cmp tbody th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.cmp td.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.cmp tbody tr:hover {
  background-color: var(--tint-cobalt);
}

/* ---------- 15. Safety resources ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s5);
  list-style: none;
  margin: var(--s6) 0 0;
  padding: 0;
}

.safety-card {
  display: block;
  background-color: var(--surface);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  padding: var(--s5);
  background-image: none;
  color: var(--ink);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.safety-card:hover,
.safety-card:focus-visible {
  border-color: var(--cobalt);
  background-color: var(--tint-cobalt);
  background-image: none;
}

.safety-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: var(--s4);
}

.safety-card__logo img {
  height: 48px;
  width: 156px;
  object-fit: contain;
  object-position: left center;
}

.safety-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  margin-bottom: var(--s2);
}

.safety-card__note {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0;
}

.safety-card__host {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--cobalt-deep);
  margin-top: var(--s3);
  display: block;
}

/* ---------- 16. FAQ ---------- */
.faq {
  list-style: none;
  margin: var(--s6) 0 0;
  padding: 0;
  max-width: 76ch;
}

.faq > li {
  border-top: 1px dashed var(--rule);
  padding-block: var(--s5);
}

.faq > li:last-child {
  border-bottom: 1px dashed var(--rule);
}

.faq h3 {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  margin-bottom: var(--s3);
}

.faq p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

.faq p:last-child {
  margin-bottom: 0;
}

/* ---------- 17. Panels, callouts, checklists ---------- */
.panel {
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  background-color: var(--surface);
  padding: var(--s6);
}

.panel--cobalt {
  background-color: var(--tint-cobalt);
}

.panel__title {
  margin-bottom: var(--s4);
}

.checklist {
  list-style: none;
  margin: var(--s5) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.checklist li {
  border-top: 1px dashed var(--rule);
  padding-block: var(--s4);
}

.checklist li:last-child {
  border-bottom: 1px dashed var(--rule);
}

.checklist h4 {
  margin-bottom: var(--s1);
}

.checklist p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  max-width: 72ch;
}

.timeline {
  list-style: none;
  margin: var(--s6) 0 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: var(--s5);
  padding-block: var(--s5);
  border-top: 1px dashed var(--rule);
}

.timeline li:last-child {
  border-bottom: 1px dashed var(--rule);
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--coral-deep);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.timeline h3 {
  font-size: 1.1875rem;
  margin-bottom: var(--s2);
}

.timeline p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-mid);
  max-width: 70ch;
}

/* Six operators divide evenly into three columns, so no half-empty final row. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s5);
  list-style: none;
  margin: var(--s6) 0 0;
  padding: 0;
}

.review-card {
  background-color: var(--surface);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

/* Two lines of headroom so the rule and the copy below it line up across the
   row even when an operator name wraps. */
.review-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 3.5rem;
  padding-bottom: var(--s3);
  border-bottom: 1px dashed var(--rule);
}

.review-card__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.15;
}

.review-card__score {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  background-color: var(--cobalt);
  color: #fff;
  padding: 2px var(--s2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.review-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-mid);
  margin: 0;
  flex: 1;
}

.review-card__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: auto;
}

.definition-list {
  margin: var(--s6) 0 0;
}

.definition-list > div {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: var(--s5);
  padding-block: var(--s4);
  border-top: 1px dashed var(--rule);
}

.definition-list > div:last-child {
  border-bottom: 1px dashed var(--rule);
}

.definition-list dt {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cobalt-deep);
  letter-spacing: 0.02em;
}

.definition-list dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-mid);
}

/* ---------- 18. Contact form ---------- */
.form {
  display: grid;
  gap: var(--s5);
  max-width: 560px;
  margin-top: var(--s6);
}

.field {
  display: grid;
  gap: var(--s2);
}

.field > span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Control outlines are darker than the decorative dashed rules so the field
   boundary clears the 3:1 non-text contrast threshold. */
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--surface);
  border: 1px dashed var(--ink-soft);
  border-radius: var(--radius-sm);
  padding: var(--s3) var(--s4);
  width: 100%;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form__note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.form__status {
  font-size: 0.9375rem;
  border-left: 3px solid var(--coral);
  padding-left: var(--s4);
  margin: 0;
}

/* ---------- 19. Disclaimer + footer ---------- */
.disclaimer {
  background-color: var(--tint);
  border-top: 1px dashed var(--rule);
}

.disclaimer p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 90ch;
  padding-block: var(--s6);
  margin: 0;
}

.site-footer {
  background-color: var(--ink);
  color: #ced3dc;
  font-size: 0.9375rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: var(--s7);
  padding-block: var(--s8);
}

.site-footer h2 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d95a3;
  margin-bottom: var(--s4);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s2);
}

.site-footer a {
  color: #eaedf2;
  font-size: 0.9375rem;
}

.site-footer__about p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #aeb5c1;
  max-width: 46ch;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s4);
}

.site-footer__brand svg {
  width: 30px;
  height: 30px;
}

.site-footer__brand span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px dashed #3d4351;
  padding-block: var(--s5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s5);
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: #8d95a3;
}

.site-footer__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s5);
}

.site-footer__marks img {
  height: 22px;
  width: 88px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 3px;
  padding: 4px var(--s2);
  box-sizing: content-box;
}

/* ---------- 20. Cookie banner ---------- */
.cookie {
  position: fixed;
  left: var(--s4);
  right: var(--s4);
  bottom: var(--s4);
  z-index: 50;
  background-color: var(--surface);
  border: 2px dashed var(--ink);
  border-radius: var(--radius-md);
  padding: var(--s5);
  max-width: 720px;
  margin-inline: auto;
  display: none;
  gap: var(--s5);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cookie[data-open="true"] {
  display: grid;
}

.cookie p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

.cookie__actions .btn {
  font-size: 0.875rem;
  padding: var(--s2) var(--s4);
}

.cookie__decline {
  background-color: transparent;
  border: 1px dashed var(--ink-soft);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--s2) var(--s4);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  .split {
    gap: var(--s6);
  }

  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s6);
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: var(--s8);
  }

  .split,
  .op-card__body,
  .showcase__head {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase__head {
    gap: var(--s4);
  }

  .split--reverse .split__figure {
    order: 0;
  }

  .op-spec {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s5);
  }

  .stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .op-logo {
    height: 76px;
    max-width: 220px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-header__inner {
    align-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: var(--s4);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
    padding-top: var(--s4);
    border-top: 1px dashed var(--rule);
  }

  .site-nav a {
    font-size: 0.875rem;
  }

  .hero__inner {
    padding-block: var(--s8) var(--s7);
  }

  .op-card__foot,
  .duel__head,
  .duel__row,
  .duel__close,
  .disclosure,
  .definition-list > div,
  .timeline li,
  .criteria li {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-card__actions {
    justify-content: flex-start;
  }

  .duel__side--right {
    text-align: left;
  }

  .duel__vs {
    justify-self: start;
    width: fit-content;
  }

  .cookie {
    grid-template-columns: minmax(0, 1fr);
  }

  .criteria li::before,
  .timeline__year {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --s9: 64px;
  }

  .wrap {
    padding-inline: var(--s4);
  }

  .safety-grid,
  .card-grid,
  .stat-strip__grid,
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 1px dashed #3d4351;
    padding-top: var(--s4);
  }

  .stat:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .op-card__head,
  .op-card__body,
  .op-card__foot,
  .duel__head,
  .duel__row,
  .duel__close {
    padding-inline: var(--s4);
  }

  .op-card__perf {
    margin-inline: var(--s4);
  }

  .op-card__perf::before {
    left: calc(-1 * var(--s4) - 11px);
  }

  .op-card__perf::after {
    right: calc(-1 * var(--s4) - 11px);
  }

  .panel {
    padding: var(--s5);
  }

  .btn {
    width: 100%;
  }

  .op-card__actions .textlink {
    width: auto;
  }
}
