/* ============================================================================
   SpinHerald — dark premium editorial theme
   Unique token namespace: --rv-*   |  BEM blocks: masthead, beacon,
   verdict-card, ledger, pledge, hail, quiz, picklist, safeguard, spotlight …
   Palette seed: #2C3531 #116466 #D9B08C #FFCB9A #D1E8E2
   ========================================================================== */

:root {
  /* ink / surfaces */
  --rv-ink:        #1d2320;
  --rv-ink-2:      #2C3531;
  --rv-surface:    #273330;
  --rv-surface-2:  #2f3d39;
  --rv-line:       #3a4a45;

  /* brand accents */
  --rv-teal:       #116466;
  --rv-teal-lift:  #16807f;
  --rv-sand:       #D9B08C;
  --rv-peach:      #FFCB9A;
  --rv-mist:       #D1E8E2;

  /* text */
  --rv-text:       #eaf3f0;
  --rv-text-soft:  #b8ccc6;
  --rv-text-mute:  #8ea59f;
  --rv-on-accent:  #1d2320;

  /* type */
  --rv-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --rv-sans:  "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* geometry */
  --rv-r-sm: 8px;
  --rv-r-md: 14px;
  --rv-r-lg: 22px;
  --rv-r-pill: 999px;

  /* shadow */
  --rv-shadow: 0 18px 40px -22px rgba(0,0,0,.65);
  --rv-shadow-lift: 0 26px 60px -26px rgba(0,0,0,.75);
  --rv-glow: 0 0 0 1px rgba(217,176,140,.28);

  /* spacing scale */
  --rv-gap: clamp(1rem, 3vw, 1.6rem);
  --rv-shell: min(1200px, 92vw);
  --rv-ease: cubic-bezier(.22,.61,.36,1);
}

/* ── reset-ish ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rv-sans);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(17,100,102,.35), transparent 60%),
    radial-gradient(900px 500px at -10% 0%, rgba(217,176,140,.10), transparent 55%),
    var(--rv-ink);
  color: var(--rv-text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rv-mist); text-decoration: none; }
a:hover { color: var(--rv-peach); }
h1, h2, h3 { font-family: var(--rv-serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--rv-peach); outline-offset: 2px; border-radius: 4px; }

.shell { width: var(--rv-shell); margin-inline: auto; }
.section { padding-block: clamp(1.6rem, 4.5vw, 3rem); }
.section:first-child { padding-top: clamp(1.6rem, 5vw, 2.6rem); }
.section__head { max-width: 62ch; margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.section__title { font-size: clamp(1.5rem, 4vw, 2.2rem); margin: 0 0 clamp(1rem, 3vw, 1.6rem); }
.eyebrow {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rv-sand); font-weight: 600; margin: 0 0 .6rem;
}
.lede { color: var(--rv-text-soft); font-size: clamp(1.02rem, 2.2vw, 1.22rem); }
.prose { color: var(--rv-text-soft); max-width: 68ch; }
.prose--closing { color: var(--rv-text-mute); font-size: .95rem; margin-top: 1.4rem; }

.skiplink {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--rv-peach); color: var(--rv-on-accent);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--rv-r-sm) 0; font-weight: 700;
}
.skiplink:focus { left: 0; }

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--rv-peach);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.4rem;
  font-family: var(--rv-sans); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  border: 0; border-radius: var(--rv-r-pill); cursor: pointer;
  color: var(--rv-on-accent);
  background: linear-gradient(180deg, var(--rv-peach), var(--rv-sand));
  box-shadow: 0 12px 26px -14px rgba(255,203,154,.7);
  transition: transform .18s var(--rv-ease), box-shadow .18s var(--rv-ease), filter .18s var(--rv-ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); color: var(--rv-on-accent); box-shadow: 0 18px 34px -14px rgba(255,203,154,.8); }
.btn:active { transform: translateY(0); }
.btn--cta { width: 100%; }
.btn--sm { min-height: 42px; padding: .55rem 1rem; font-size: .92rem; width: auto; }
.btn--pill { background: transparent; color: var(--rv-mist); border: 1.5px solid var(--rv-teal-lift); box-shadow: none; }
.btn--pill:hover { background: var(--rv-teal); color: #fff; border-color: var(--rv-teal); }

/* ── masthead ────────────────────────────────────────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--rv-ink) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rv-line);
}
.masthead__inner {
  width: var(--rv-shell); margin-inline: auto;
  display: flex; align-items: center; flex-wrap: nowrap; gap: .75rem;
  min-height: 68px; padding-block: .5rem;
}
.crest { display: inline-flex; align-items: center; gap: .55rem; color: var(--rv-text); font-weight: 700; flex: none; }
.crest__word { font-family: var(--rv-serif); font-size: 1.28rem; letter-spacing: -.02em; white-space: nowrap; }
.crest__mark { flex: none; }

.navray { display: none; min-width: 0; }
.navray__list { display: flex; flex-wrap: nowrap; gap: .15rem; }
.navray__link {
  display: inline-block; padding: .5rem .7rem; border-radius: var(--rv-r-sm);
  color: var(--rv-text-soft); font-size: .93rem; font-weight: 500; white-space: nowrap;
  transition: background .16s, color .16s;
}
.navray__link:hover { background: var(--rv-surface); color: var(--rv-text); }
.navray__link.is-current { color: var(--rv-peach); }

.masthead__tools { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.masthead__cta { display: none; }

.burger {
  --b: var(--rv-mist);
  width: 46px; height: 46px; display: inline-grid; place-content: center; gap: 5px;
  background: var(--rv-surface); border: 1px solid var(--rv-line); border-radius: var(--rv-r-sm);
  cursor: pointer;
}
.burger__bar { width: 22px; height: 2px; background: var(--b); border-radius: 2px; transition: transform .25s var(--rv-ease), opacity .2s; }
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navdrawer {
  border-top: 1px solid var(--rv-line);
  background: var(--rv-ink-2);
  max-height: 0; overflow: hidden;
  transition: max-height .32s var(--rv-ease);
}
.navdrawer.is-open { max-height: 80vh; }
.navdrawer[hidden] { display: block; } /* animate via max-height, not display */
.navdrawer .navray { display: block; padding: .6rem var(--rv-gap) 1.2rem; }
.navdrawer .navray__list { flex-direction: column; gap: .1rem; }
.navdrawer .navray__link { padding: .85rem .6rem; font-size: 1.05rem; border-bottom: 1px solid var(--rv-line); border-radius: 0; }

/* ── beacon (hero) ───────────────────────────────────────────────────── */
.beacon { position: relative; padding-top: clamp(2rem, 6vw, 3.4rem); }
.beacon__inner { display: grid; gap: var(--rv-gap); }
.beacon__title { font-size: clamp(2.1rem, 7vw, 3.9rem); margin: .2rem 0 .8rem; }
.beacon__title em { font-style: normal; color: var(--rv-peach); }
.beacon__promo {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  margin: .4rem 0 1.4rem; padding: .8rem 1.1rem;
  background: linear-gradient(120deg, rgba(17,100,102,.35), rgba(217,176,140,.14));
  border: 1px solid var(--rv-line); border-radius: var(--rv-r-md);
}
.beacon__promo strong { font-family: var(--rv-serif); font-size: 1.3rem; color: var(--rv-peach); }
.beacon__promo span { color: var(--rv-text-soft); font-size: .92rem; }
.beacon__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.beacon__body { min-width: 0; }
.beacon__aside { min-width: 0; }
.listmount { display: block; }

/* ── verdict-card (casino card) ──────────────────────────────────────── */
.verdict-grid {
  display: grid; gap: var(--rv-gap);
  grid-template-columns: 1fr;
}
.verdict-card {
  position: relative; display: flex; flex-direction: column; gap: .9rem;
  background: linear-gradient(180deg, var(--rv-surface), var(--rv-ink-2));
  border: 1px solid var(--rv-line); border-radius: var(--rv-r-lg);
  padding: 1.2rem; box-shadow: var(--rv-shadow);
  transition: transform .2s var(--rv-ease), box-shadow .2s var(--rv-ease), border-color .2s;
}
.verdict-card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow-lift); border-color: var(--rv-teal-lift); }
.verdict-card--featured {
  border-color: var(--rv-sand);
  box-shadow: var(--rv-shadow-lift), var(--rv-glow);
  background: linear-gradient(180deg, #30403b, var(--rv-ink-2));
}
.verdict-card__head { display: flex; align-items: center; gap: .8rem; }
.verdict-card__logo {
  flex: none; width: 52px; height: 52px; border-radius: var(--rv-r-md);
  display: grid; place-content: center; font-family: var(--rv-serif); font-weight: 700; font-size: 1.15rem;
  color: var(--rv-on-accent); background: linear-gradient(135deg, var(--rv-mist), var(--rv-sand));
}
.verdict-card__id { min-width: 0; }
.verdict-card__name { margin: 0; font-size: 1.25rem; }
.verdict-card__rating { color: var(--rv-text-soft); font-size: .9rem; }
.verdict-card__rating strong { color: var(--rv-text); font-size: 1rem; }
.verdict-card__stars { color: var(--rv-peach); }
.verdict-card__badge {
  margin-left: auto; align-self: flex-start;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--rv-on-accent); background: var(--rv-peach);
  padding: .3rem .55rem; border-radius: var(--rv-r-pill);
}
.verdict-card__bonus {
  border-top: 1px dashed var(--rv-line); border-bottom: 1px dashed var(--rv-line);
  padding: .7rem 0;
}
.verdict-card__bonus-value { font-family: var(--rv-serif); font-size: 1.5rem; color: var(--rv-peach); font-weight: 600; }
.verdict-card__meta { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.verdict-card__kv { display: flex; flex-direction: column; }
.verdict-card__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rv-text-mute); }
.verdict-card__v { font-weight: 600; }
.verdict-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.verdict-card__tag {
  font-size: .74rem; color: var(--rv-mist);
  background: rgba(17,100,102,.28); border: 1px solid var(--rv-teal-lift);
  padding: .28rem .6rem; border-radius: var(--rv-r-pill);
}
/* CTA pinned to the bottom of the card regardless of card height */
.verdict-card__cta { margin-top: auto; }

/* ── pledge (Trustpilot-style) ───────────────────────────────────────── */
.pledge {
  background: var(--rv-surface-2); border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-md); padding: 1rem 1.1rem;
}
.pledge__top { display: flex; align-items: center; gap: .6rem; }
.pledge__stars { display: inline-flex; gap: 2px; }
.pledge__star { color: var(--rv-line); font-size: 1.05rem; }
.pledge__star.is-on { color: #45c08a; }
.pledge__score { font-size: 1.2rem; }
.pledge__label { font-weight: 700; margin: .5rem 0 .2rem; }
.pledge__text { color: var(--rv-text-mute); font-size: .88rem; margin: 0 0 .5rem; }
.pledge__link { font-weight: 600; font-size: .9rem; color: var(--rv-peach); }
.pledge--mini {
  display: flex; align-items: center; gap: .5rem; padding: .5rem .7rem;
  background: rgba(69,192,138,.10); border-color: rgba(69,192,138,.35);
}
.pledge--mini .pledge__star { font-size: .82rem; }
.pledge__score--mini { font-size: .95rem; font-weight: 700; }
.pledge__verified { margin-left: auto; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #45c08a; font-weight: 700; }

/* ── ledger (comparison table) ───────────────────────────────────────── */
.ledger__scroll { overflow-x: auto; border-radius: var(--rv-r-lg); border: 1px solid var(--rv-line); }
.ledger__table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--rv-ink-2); }
.ledger__th {
  text-align: left; font-family: var(--rv-sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rv-text-mute); font-weight: 700; padding: .9rem 1rem; border-bottom: 1px solid var(--rv-line);
  background: var(--rv-surface);
}
.ledger__td { padding: .9rem 1rem; border-bottom: 1px solid var(--rv-line); vertical-align: middle; }
.ledger__row--featured { background: rgba(217,176,140,.08); }
.ledger__row:hover { background: var(--rv-surface); }
.ledger__logo { display: inline-grid; place-content: center; width: 34px; height: 34px; border-radius: 8px; font-weight: 700; font-size: .8rem; color: var(--rv-on-accent); background: linear-gradient(135deg, var(--rv-mist), var(--rv-sand)); vertical-align: middle; margin-right: .5rem; }
.ledger__name { font-weight: 600; }
.ledger__rank { font-family: var(--rv-serif); font-size: 1.05rem; color: var(--rv-sand); }
.ledger__pill { margin-left: .5rem; font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rv-on-accent); background: var(--rv-peach); padding: .18rem .45rem; border-radius: var(--rv-r-pill); }
.ledger__rating { color: var(--rv-peach); font-weight: 600; white-space: nowrap; }

/* ── spotlight ───────────────────────────────────────────────────────── */
.spotlight {
  background: linear-gradient(135deg, rgba(17,100,102,.34), rgba(29,35,32,.4));
  border: 1px solid var(--rv-line); border-radius: var(--rv-r-lg);
  padding: clamp(1.4rem, 4vw, 2.6rem);
}
.spotlight__inner { display: grid; gap: var(--rv-gap); }
.spotlight__eyebrow { color: var(--rv-sand); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin: 0 0 .5rem; }
.spotlight__title { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 .8rem; }
.spotlight__lead { color: var(--rv-text-soft); }
.spotlight__points { display: grid; gap: .5rem; margin: 1rem 0 1.4rem; }
.spotlight__point { position: relative; padding-left: 1.7rem; color: var(--rv-text-soft); }
.spotlight__point::before { content: "✦"; position: absolute; left: 0; color: var(--rv-peach); }
.spotlight__promo {
  background: var(--rv-ink-2); border: 1px solid var(--rv-line); border-radius: var(--rv-r-md);
  padding: 1.3rem; display: flex; flex-direction: column; gap: .3rem; text-align: center;
}
.spotlight__promo-eyebrow { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-text-mute); margin: 0; }
.spotlight__promo-headline { font-family: var(--rv-serif); font-size: clamp(1.8rem, 6vw, 2.6rem); color: var(--rv-peach); margin: .2rem 0; }
.spotlight__promo-sub { color: var(--rv-mist); font-weight: 600; margin: 0 0 .6rem; }
.spotlight__promo-facts { display: grid; gap: .3rem; color: var(--rv-text-soft); font-size: .9rem; margin-bottom: 1rem; }
.spotlight__promo .pledge { text-align: left; }

/* ── quiz (FAQ) ──────────────────────────────────────────────────────── */
.quiz__title { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 0 0 1.2rem; }
.quiz__list { display: grid; gap: .7rem; max-width: 820px; }
.quiz__item { background: var(--rv-surface); border: 1px solid var(--rv-line); border-radius: var(--rv-r-md); overflow: hidden; }
.quiz__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem; background: none; border: 0; cursor: pointer;
  color: var(--rv-text); font-family: var(--rv-sans); font-size: 1.02rem; font-weight: 600; text-align: left;
}
.quiz__icon { position: relative; flex: none; width: 16px; height: 16px; }
.quiz__icon::before, .quiz__icon::after { content: ""; position: absolute; background: var(--rv-peach); border-radius: 2px; transition: transform .25s var(--rv-ease); }
.quiz__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.quiz__icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.quiz__q[aria-expanded="true"] .quiz__icon::after { transform: scaleY(0); }
.quiz__a { padding: 0 1.2rem 1.1rem; }
.quiz__a-text { color: var(--rv-text-soft); margin: 0; }

/* ── toolbar (sort/filter) ───────────────────────────────────────────── */
.toolbar { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: var(--rv-gap); }
.toolbar__group { display: flex; align-items: center; gap: .5rem; }
.toolbar__label { font-size: .8rem; color: var(--rv-text-mute); text-transform: uppercase; letter-spacing: .08em; }

/* ── picklist (CustomSelect / LanguageSwitcher) ──────────────────────── */
.picklist { position: relative; display: inline-block; }
.picklist__trigger {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  padding: .5rem .8rem; background: var(--rv-surface); color: var(--rv-text);
  border: 1px solid var(--rv-line); border-radius: var(--rv-r-sm);
  font-family: var(--rv-sans); font-size: .92rem; font-weight: 600; cursor: pointer;
  transition: border-color .16s, background .16s;
}
.picklist__trigger:hover { border-color: var(--rv-teal-lift); }
.picklist__caret { width: 8px; height: 8px; border-right: 2px solid var(--rv-sand); border-bottom: 2px solid var(--rv-sand); transform: rotate(45deg) translateY(-2px); transition: transform .22s var(--rv-ease); }
.picklist.is-open .picklist__caret { transform: rotate(-135deg) translateY(-1px); }
.picklist__panel {
  position: absolute; z-index: 80; top: calc(100% + 6px); left: 0; min-width: 100%;
  background: var(--rv-ink-2); border: 1px solid var(--rv-line); border-radius: var(--rv-r-md);
  box-shadow: var(--rv-shadow-lift); padding: .35rem;
  max-height: 320px; overflow-y: auto;
  opacity: 0; transform: translateY(-6px) scale(.98); pointer-events: none;
  transition: opacity .18s var(--rv-ease), transform .18s var(--rv-ease);
}
.picklist.is-open .picklist__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.picklist__option {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: .6rem .7rem; border-radius: var(--rv-r-sm); cursor: pointer; font-size: .92rem;
  color: var(--rv-text-soft);
}
.picklist__option:hover, .picklist__option.is-active { background: var(--rv-surface); color: var(--rv-text); }
.picklist__option[aria-selected="true"] { color: var(--rv-peach); font-weight: 700; }
.picklist__option[aria-selected="true"]::after { content: "✓"; color: var(--rv-peach); }
.picklist__meta { color: var(--rv-text-mute); font-size: .8rem; }
.picklist--lingo .picklist__trigger { min-width: 108px; }

/* ── safeguard ───────────────────────────────────────────────────────── */
.safeguard {
  background: var(--rv-ink-2); border: 1px solid var(--rv-line); border-left: 4px solid var(--rv-sand);
  border-radius: var(--rv-r-md); padding: clamp(1.2rem, 3vw, 1.8rem);
}
.safeguard__flags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .8rem; }
.safeguard__flag { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rv-text-soft); background: var(--rv-surface); border: 1px solid var(--rv-line); padding: .3rem .6rem; border-radius: var(--rv-r-pill); }
.safeguard__flag--age { color: var(--rv-on-accent); background: var(--rv-peach); border-color: var(--rv-peach); }
.safeguard__title { font-size: 1.3rem; margin: 0 0 .5rem; }
.safeguard__body, .safeguard__help { color: var(--rv-text-soft); }
.safeguard__cta { display: inline-block; margin-top: .4rem; font-weight: 700; color: var(--rv-peach); border-bottom: 1px solid currentColor; }

/* ── review page bits (pros/cons, verdict) ───────────────────────────── */
.verdict-box { background: var(--rv-surface); border: 1px solid var(--rv-line); border-radius: var(--rv-r-lg); padding: clamp(1.2rem,3vw,1.8rem); }
.verdict-box__score { display: inline-flex; align-items: baseline; gap: .4rem; font-family: var(--rv-serif); }
.verdict-box__score b { font-size: 2.6rem; color: var(--rv-peach); }
.proscons { display: grid; gap: var(--rv-gap); }
.proscons__col { background: var(--rv-ink-2); border: 1px solid var(--rv-line); border-radius: var(--rv-r-md); padding: 1.2rem; }
.proscons__col--pros { border-top: 3px solid #45c08a; }
.proscons__col--cons { border-top: 3px solid var(--rv-sand); }
.proscons__h { margin: 0 0 .8rem; font-size: 1.15rem; }
.proscons__list { display: grid; gap: .5rem; }
.proscons__item { position: relative; padding-left: 1.6rem; color: var(--rv-text-soft); }
.proscons__col--pros .proscons__item::before { content: "✓"; position: absolute; left: 0; color: #45c08a; font-weight: 700; }
.proscons__col--cons .proscons__item::before { content: "–"; position: absolute; left: .2rem; color: var(--rv-sand); font-weight: 700; }

/* ── footer ──────────────────────────────────────────────────────────── */
.footring { border-top: 1px solid var(--rv-line); background: var(--rv-ink-2); margin-top: 2rem; padding-bottom: 96px; }
.footring__inner { width: var(--rv-shell); margin-inline: auto; display: grid; gap: var(--rv-gap); padding-block: clamp(2rem, 5vw, 3rem); }
.footring__brand { display: flex; align-items: center; gap: .5rem; margin-bottom: .8rem; }
.footring__about { color: var(--rv-text-mute); font-size: .9rem; max-width: 46ch; }
.footring__h { font-family: var(--rv-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--rv-text-mute); margin: 0 0 .8rem; }
.footring__links { display: grid; gap: .5rem; }
.footring__links a { color: var(--rv-text-soft); font-size: .93rem; }
.footring__links a:hover { color: var(--rv-peach); }
.footring__bottom { width: var(--rv-shell); margin-inline: auto; border-top: 1px solid var(--rv-line); padding-block: 1.2rem; }
.footring__legal { color: var(--rv-text-soft); font-size: .85rem; margin: 0 0 .3rem; }
.footring__disclaimer { color: var(--rv-text-mute); font-size: .8rem; margin: 0; }

/* ── hail (sticky mobile CTA) ────────────────────────────────────────── */
.hail {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem clamp(.8rem, 4vw, 1.2rem);
  background: color-mix(in srgb, var(--rv-ink-2) 94%, transparent);
  backdrop-filter: blur(8px); border-top: 1px solid var(--rv-line);
  box-shadow: 0 -14px 30px -18px rgba(0,0,0,.8);
}
.hail__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.hail__label { font-family: var(--rv-serif); font-size: 1.02rem; color: var(--rv-peach); }
.hail__sub { font-size: .74rem; color: var(--rv-text-mute); }
.hail__cta { margin-left: auto; white-space: nowrap; }

/* ── breakpoints ─────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .verdict-grid { grid-template-columns: repeat(2, 1fr); }
  .proscons { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .navray {
    display: block; flex: 1 1 auto; min-width: 0;
    overflow-x: auto; scrollbar-width: none;   /* safety net: never wraps, never clips tools */
  }
  .navray::-webkit-scrollbar { display: none; }
  .navray__list { justify-content: center; }
  .navray__link { padding: .45rem .5rem; font-size: .84rem; letter-spacing: -.01em; }
  .masthead__tools { margin-left: 0; flex: none; }
  .burger { display: none; }
  .navdrawer { display: none; }
  .masthead__cta { display: inline-flex; }
  .verdict-grid { grid-template-columns: repeat(3, 1fr); }
  .beacon__inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .spotlight__inner { grid-template-columns: 1.3fr .7fr; align-items: center; }
  .footring { padding-bottom: 0; }
  .footring__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .hail { display: none; }              /* sticky CTA is mobile-only */
  .ledger__table { min-width: 0; }
}
@media (min-width: 1280px) {
  :root { --rv-shell: min(1200px, 90vw); }
  .beacon__title { font-size: clamp(3rem, 4.4vw, 4.2rem); }
  .navray__link { padding: .5rem .65rem; font-size: .9rem; letter-spacing: 0; }
  .navray__list { gap: .25rem; }
}

/* ── comparison table → cards on small screens ──────────────────────── */
@media (max-width: 719px) {
  .ledger__scroll { overflow: visible; border: 0; }
  .ledger__table { min-width: 0; background: none; }
  .ledger__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); } /* visually hide header */
  .ledger__row { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem .8rem;
    background: var(--rv-surface); border: 1px solid var(--rv-line); border-radius: var(--rv-r-md);
    padding: 1rem; margin-bottom: .8rem; }
  .ledger__row--featured { border-color: var(--rv-sand); }
  .ledger__td { border: 0; padding: .25rem 0; display: flex; flex-direction: column; }
  .ledger__td::before { content: attr(data-label); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rv-text-mute); }
  .ledger__td--casino { grid-column: 1 / -1; }
  .ledger__td--action { grid-column: 1 / -1; }
  .ledger__td--action::before { display: none; }
  .ledger__td--action .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
}
