/* Wager Quarter — Retro-Modern tokens + BEM */
:root {
  --bg: #F6F6F2;
  --bg-tint: #EEF3E0;
  --ink: #0A0A0A;
  --ink-soft: #2A2A2A;
  --muted: #5C5C5C;
  --line: rgba(10, 10, 10, 0.12);
  --accent: #C8FF00;
  --accent-ink: #0A0A0A;
  --tile: #FFFFFF;
  --rail-w: 15rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --radius: 0.75rem;
  --shadow-tile: 0 10px 28px rgba(10, 10, 10, 0.07);
  --inner-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 0 0 1px rgba(10, 10, 10, 0.04);
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 68rem;
  --content: 42rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 55% at 88% -10%, rgba(200, 255, 0, 0.22), transparent 55%),
    url("/assets/hero-bg.jpg");
  background-size: auto, 1200px auto;
  background-repeat: no-repeat, no-repeat;
  background-position: top right, top right;
  background-attachment: scroll;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 var(--space-4); max-width: 70ch; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }

/* Grain overlay */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Age notice — bottom persistent */
.age-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 0.55rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.age-notice a { color: var(--accent); text-decoration: none; }
.age-notice a:hover { text-decoration: underline; }
.age-notice__close {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 0.15rem 0.5rem;
  border-radius: 0.4rem;
  cursor: pointer;
}
body { padding-bottom: 3.25rem; }

/* Links — bracket motif */
.u-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.u-link::before { content: "["; color: var(--accent); margin-right: 0.15em; font-weight: 700; }
.u-link::after { content: "]"; color: var(--accent); margin-left: 0.15em; font-weight: 700; }
.u-link:hover { text-decoration: underline; text-underline-offset: 0.18em; }

/* Buttons — framed double-border */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--accent);
  border: 2px solid var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: var(--radius);
  padding: 0.7rem 1.15rem;
  box-shadow: var(--inner-shadow);
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}
.btn:hover { transform: translateY(-1px); background: #d6ff3d; }
.btn:active { transform: translateY(1px); }
.btn--ghost {
  background: transparent;
  outline-color: var(--ink);
}
.btn--ghost:hover { background: rgba(200, 255, 0, 0.25); }

/* Badges — tiny uppercase */
.badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.45rem;
  border-radius: 0.35rem;
  background: var(--ink);
  color: var(--accent);
  line-height: 1;
  box-shadow: var(--inner-shadow);
}
.badge--soft {
  background: rgba(200, 255, 0, 0.28);
  color: var(--ink);
}
.badge--outline {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

/* Layout shell — left rail desktop */
.shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.nav {
  background: var(--ink);
  color: #fff;
  padding: var(--space-4) var(--space-5);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav__brand img { width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; }
.nav__toggle {
  display: inline-flex;
  margin-left: auto;
  appearance: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 0.5rem;
  padding: 0.35rem 0.6rem;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav__menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: var(--space-4);
  list-style: none;
  padding: 0;
}
.nav__menu.is-open { display: flex; }
.nav__menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
}
.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
  background: rgba(200, 255, 0, 0.18);
  color: var(--accent);
}

.main {
  padding: var(--space-5) var(--space-4) var(--space-8);
  width: 100%;
  max-width: calc(var(--max) + 2rem);
}

@media (min-width: 960px) {
  .shell {
    grid-template-columns: var(--rail-w) 1fr;
  }
  .nav {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: var(--space-6) var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex;
    margin-top: 0;
    flex: 1;
  }
  .nav__meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.45;
  }
  .main {
    padding: var(--space-7) var(--space-7) var(--space-8);
  }
}

/* Offset asymmetric sections */
.section {
  margin: 0 0 var(--space-7);
  max-width: var(--max);
}
.section--offset {
  margin-left: clamp(0rem, 4vw, 2.5rem);
}
.section--offset-alt {
  margin-right: clamp(0rem, 4vw, 2.5rem);
  margin-left: 0;
}
.section__index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 0.3rem 0.55rem;
  border-radius: 0.4rem;
  margin-bottom: var(--space-3);
  box-shadow: var(--inner-shadow);
}

.divider {
  display: flex;
  justify-content: center;
  margin: var(--space-6) 0;
}
.divider::before {
  content: "";
  width: 3.5rem;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 0 2px var(--ink);
}

/* Hero — brief editorial paragraph */
.hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-5);
  max-width: 40rem;
}
.hero__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
}
.hero p {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38rem;
}
.hero__notice {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero__notice .badge { background: var(--accent); color: var(--ink); }

/* Credibility strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: var(--space-3);
  margin: var(--space-5) 0;
}
.stats__item {
  background: var(--tile);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-tile), var(--inner-shadow);
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}
.stats__label {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* Soft tiles */
.tile {
  background: var(--tile);
  border-radius: var(--radius);
  box-shadow: var(--shadow-tile), var(--inner-shadow);
  padding: var(--space-5);
}

/* Showcase table — visual centrepiece */
.showcase {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-tile);
  background: var(--tile);
}
.showcase__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 40rem;
  font-size: 0.92rem;
}
.showcase__table th,
.showcase__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.showcase__table th {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: #fafaf7;
}
.showcase__table tr.is-featured {
  background: linear-gradient(90deg, rgba(200, 255, 0, 0.28), rgba(200, 255, 0, 0.08));
}
.showcase__table tr.is-featured td {
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  font-size: 1rem;
}
.showcase__op {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.showcase__op img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.45rem;
  padding: 0.2rem;
  box-shadow: var(--inner-shadow);
}
.grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--inner-shadow);
}
.grade--b { background: #222; color: #e8ff6a; }
.grade--c { background: #333; color: #f0ff99; }

/* Operator cards — soft tiles */
.cards {
  display: grid;
  gap: var(--space-4);
}
.card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  background: var(--tile);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-tile), var(--inner-shadow);
  position: relative;
}
@media (min-width: 720px) {
  .card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.card__top {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.card__logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.35rem;
  box-shadow: var(--inner-shadow);
  flex-shrink: 0;
}
.card__logo--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}
.card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.card__desc {
  margin: 0 0 var(--space-3);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.card__action {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: stretch;
  min-width: 11rem;
}
.card__note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  max-width: none;
}
.card__grade-wrap {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
}

/* Comparison table full */
.compare {
  overflow-x: auto;
  background: var(--tile);
  border-radius: var(--radius);
  box-shadow: var(--shadow-tile), var(--inner-shadow);
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 48rem;
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
}
.compare th, .compare td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.compare th:first-child,
.compare td:first-child {
  text-align: left;
  font-weight: 700;
  position: sticky;
  left: 0;
  background: var(--tile);
}
.compare thead th {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fafaf7;
}
.compare .tick { color: #1a7a2e; font-weight: 800; }
.compare .cross { color: #888; }

/* Honesty / method / FAQ */
.prose { max-width: var(--content); }
.prose h2 { margin-top: var(--space-6); }
.figure {
  margin: var(--space-5) 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-tile);
}
.figure img { width: 100%; }
.figure figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.65rem 0.85rem;
  background: var(--tile);
}

.faq {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.faq__item {
  background: var(--tile);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-tile), var(--inner-shadow);
}
.faq__item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.faq__item p { margin: 0; color: var(--ink-soft); }

/* Safety boxed panel mid-page */
.safety-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow-tile);
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  margin: var(--space-7) 0;
}
.safety-panel h2 { color: #fff; }
.safety-panel p { color: rgba(255,255,255,0.78); }
.safety-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.safety-panel__card {
  background: rgba(255,255,255,0.06);
  border-radius: 0.55rem;
  padding: var(--space-3);
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  min-height: 5.5rem;
  box-shadow: var(--inner-shadow);
}
.safety-panel__card:hover { background: rgba(200, 255, 0, 0.12); }
.safety-panel__card img {
  height: 1.75rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.3rem;
  padding: 0.25rem;
}
.safety-panel__card span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #111;
  color: rgba(255,255,255,0.72);
  padding: var(--space-7) var(--space-5);
  margin-top: var(--space-6);
  font-size: 0.88rem;
}
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: var(--space-4);
}
.footer__brand img { width: 2rem; height: 2rem; border-radius: 0.4rem; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: var(--space-5);
  max-width: var(--max);
}
.footer__grid h3 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: 0.4rem; }
.footer__legal {
  margin-top: var(--space-6);
  max-width: 55rem;
  font-size: 0.8rem;
  line-height: 1.5;
}
.shell > .footer { grid-column: 1 / -1; }

/* Cookie banner */
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 3.5rem;
  z-index: 10001;
  background: var(--tile);
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), var(--inner-shadow);
  display: none;
  gap: var(--space-3);
  align-items: flex-start;
  max-width: 28rem;
  margin-left: auto;
}
.cookie.is-visible { display: grid; }
.cookie p { margin: 0; font-size: 0.88rem; }
.cookie__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Forms */
.form {
  display: grid;
  gap: var(--space-3);
  max-width: 28rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.form input,
.form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--inner-shadow);
}
.form textarea { min-height: 8rem; resize: vertical; }

/* Comparator filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.filters label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.filters select {
  font: inherit;
  padding: 0.5rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  background: #fff;
}

/* Glossary */
.glossary dl {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}
.glossary dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.glossary dd {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
}

/* Motion — fade-and-rise */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

.updated {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 55rem;
}

.band-tint {
  background:
    linear-gradient(rgba(246, 246, 242, 0.88), rgba(246, 246, 242, 0.94)),
    url("/assets/section-band-bg.jpg") center / cover no-repeat;
  border-radius: var(--radius);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--inner-shadow);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
)