/* jackpotcasinos.online - main stylesheet
   Palette: silver main, Canada red secondary, gold accent */

:root {
  --paper: #F3F4F6;
  --steel: #FFFFFF;
  --sheen: #E7EAEE;
  --chrome: #D8DCE2;
  --seam: #C7CCD4;
  --seam-hi: #AEB6C1;
  --ink: #15181D;
  --ink-2: #3C444E;
  --dim: #5F6B7A;
  --maple: #C8102E;
  --maple-hot: #E01B3C;
  --maple-deep: #9E0C24;
  --maple-mist: rgba(200, 16, 46, 0.06);
  --gilt: #8A6D1E;
  --gilt-bright: #C9A227;
  --gilt-pale: #F2D879;
  --night: #171A20;
  --night-2: #20242C;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --header-h: 74px;
  --max-w: 1240px;
  --lip: 6px;
  --glide: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.22, 0.9, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1.25rem); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

/* brushed-silver grain over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(21, 24, 29, 0.018) 0 2px, transparent 2px 7px);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--maple); text-decoration: none; }
/* Inline links inside running prose must not rely on colour alone (WCAG 1.4.1) */
.bandwrap p a { text-decoration: underline; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

ul, ol { padding-left: 1.25rem; }

.holdframe {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Scroll-reveal (JS adds .reveal, then .reveal-in on intersection) ── */
html.jsable .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--glide), transform 0.65s var(--spring);
}
html.jsable .reveal.reveal-in { opacity: 1; transform: none; }

/* ── Header ─────────────────────────────────────────────── */
.crownbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(23, 26, 32, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 3px solid var(--maple);
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  transition: box-shadow 0.25s var(--glide), background 0.25s var(--glide);
}
.crownbar.sunk {
  background: rgba(23, 26, 32, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.crownbar-core {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* marquee centre: the logo sits centre-stage, nav splits around it */
.mint-sign {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  line-height: 0;
}
.mint-sign img { height: 60px; width: auto; display: block; filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45)); }

/* string of marquee bulbs along the bar's lower edge */
.bulbrail {
  position: absolute;
  left: 0; right: 0; bottom: 1px;
  height: 5px;
  pointer-events: none;
  background-image: radial-gradient(circle at 8px 2.5px, rgba(242, 216, 121, 0.85) 1.1px, rgba(201, 162, 39, 0.25) 1.9px, transparent 2.4px);
  background-size: 16px 5px;
  opacity: 0.6;
  animation: bulbchase 2.8s linear infinite;
}
@keyframes bulbchase {
  to { background-position-x: 16px; }
}

/* live pool chip (wide screens): the header carries a ticking counter */
.potchip {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--lip);
  background: rgba(201, 162, 39, 0.08);
  transition: border-color 0.2s var(--glide), background 0.2s var(--glide);
}
.potchip:hover { text-decoration: none; border-color: var(--gilt-bright); background: rgba(201, 162, 39, 0.16); }
.potchip small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B9BFC8;
}
.potchip strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
@media (min-width: 1360px) { .potchip { display: flex; } }

/* reading progress line (element injected by site.js) */
.progressrail {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  height: 3px;
  z-index: 490;
  pointer-events: none;
}
.rail-burn {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--maple), var(--maple-hot) 60%, var(--gilt-bright));
}

.reelrow { display: none; }

.foldbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--lip);
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, background 0.18s;
}
.foldbtn img { filter: brightness(0) invert(1); }
.foldbtn:hover { border-color: var(--gilt-bright); background: rgba(201, 162, 39, 0.14); }
.fold-shut { display: none; }
.fold-open { display: block; }
body.tray-out .fold-shut { display: block; }
body.tray-out .fold-open { display: none; }
body.tray-out .foldbtn { border-color: var(--gilt-bright); background: rgba(201, 162, 39, 0.14); }

.pocketnav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--night);
  z-index: 400;
  overflow-y: auto;
  border-top: 2px solid var(--maple);
}
body.tray-out .pocketnav { display: block; }
.pocketnav > ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 2rem;
  list-style: none;
}
.pocketnav a {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #C6CBD3;
  border-bottom: 1px solid var(--night-2);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.pocketnav a:hover,
.pocketnav a[aria-current="page"] {
  color: var(--gilt-pale);
  background: rgba(201, 162, 39, 0.08);
  padding-left: 2rem;
  text-decoration: none;
}
.pocketnav .pocket-head {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilt-bright);
  border-bottom: 1px solid var(--night-2);
}

.foldbtn { margin-left: auto; }
@media (min-width: 1100px) {
  .reelrow { display: flex; align-items: center; }
  .reel-left { flex: 1 1 0; justify-content: flex-start; }
  .reel-right { flex: 1 1 0; justify-content: flex-end; }
  .foldbtn { display: none !important; }
  .pocketnav { display: none !important; }
}

.reelrow > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  padding: 0;
}
.reelrow a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--lip);
  font-size: 0.95rem;
  font-weight: 600;
  color: #C6CBD3;
  transition: color 0.18s var(--glide), background 0.18s var(--glide);
  white-space: nowrap;
}
.reelrow a:hover { color: var(--gilt-pale); background: rgba(255, 255, 255, 0.06); text-decoration: none; }
.reelrow a[aria-current="page"] { color: var(--gilt-pale); background: rgba(201, 162, 39, 0.14); }

.reeldrop { position: relative; }
.drop-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--lip);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #C6CBD3;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s var(--glide), background 0.18s var(--glide);
  white-space: nowrap;
}
.drop-trigger:hover,
.reeldrop.ajar .drop-trigger { color: var(--gilt-pale); background: rgba(255, 255, 255, 0.06); }
.drop-trigger .tipcaret { filter: brightness(0) invert(0.85); transition: transform 0.2s var(--glide); }
.reeldrop.ajar .tipcaret { transform: rotate(180deg); }

.drop-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: var(--night-2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 0 0 var(--lip) var(--lip);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
  list-style: none;
}
.reeldrop.ajar .drop-panel { display: flex; }
.drop-panel a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C6CBD3;
  border-radius: var(--lip);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.drop-panel a:hover { color: var(--gilt-pale); background: rgba(201, 162, 39, 0.12); padding-left: 1.1rem; text-decoration: none; }

/* ── Chapter rail (scroll-spy dots, wide screens) ───────── */
.chapterrail {
  display: none;
  position: fixed;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 1280px) { .chapterrail { display: flex; } }
.rail-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--seam-hi);
  border: 2px solid transparent;
  transition: background 0.2s var(--glide), transform 0.2s var(--spring);
}
.rail-dot:hover { background: var(--gilt-bright); transform: scale(1.25); text-decoration: none; }
.rail-dot.lit { background: var(--maple); transform: scale(1.35); box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15); }
.rail-dot span {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.25rem 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--glide), transform 0.18s var(--glide);
  box-shadow: 0 6px 18px rgba(21, 24, 29, 0.12);
}
.rail-dot:hover span, .rail-dot.lit span { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ── Page hero ──────────────────────────────────────────── */
.skyband {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(16, 18, 23, 0.84) 0%, rgba(16, 18, 23, 0.72) 55%, rgba(16, 18, 23, 0.9) 100%),
    url('/images/vault-strongroom.webp');
  background-size: cover;
  background-position: center;
  color: #EEF0F3;
  padding: 3.25rem 0 3rem;
  text-align: center;
}
/* pulsing ember glow over the vault core */
.skyband::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(200, 16, 46, 0.3), transparent 52%);
  animation: emberpulse 6s ease-in-out infinite;
}
@keyframes emberpulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.glintfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.skyband .holdframe { position: relative; z-index: 2; }
.skyband h1 {
  color: #FFFFFF;
  font-size: 1.9rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  animation: marqueerise 0.7s var(--spring) both;
}
.skyband p {
  color: #D4D8DE;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  animation: marqueerise 0.7s var(--spring) 0.15s both;
}
@keyframes marqueerise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.stampline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  font-size: 0.85rem;
  color: #B9BFC8;
  margin-bottom: 1.1rem;
  animation: marqueerise 0.7s var(--spring) 0.08s both;
}
.stampline strong { color: #EEF0F3; font-weight: 600; }
.stampline a { color: #E4667B; text-decoration: none; }
.stampline a:hover { text-decoration: underline; }
.scribeline { display: inline-flex; align-items: center; gap: 0.45rem; }
.scribemark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Author page (assayer = the one who tests the ore) ───── */
.crestgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}
.crestframe {
  width: min(280px, 70vw);
  margin: 0 auto;
  background: rgba(23, 26, 32, 0.74);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: var(--lip);
  padding: 10px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  animation: marqueerise 0.7s var(--spring) both;
}
.crestframe img {
  width: 100%;
  display: block;
  border-radius: calc(var(--lip) - 3px);
}
@media (min-width: 900px) {
  .crestgrid { grid-template-columns: 320px 1fr; gap: 3.5rem; text-align: left; }
  .crestframe { width: 100%; margin: 0; }
  .crestcopy p { margin-left: 0; }
  .crestcopy .stampline, .crestcopy .leverrow { justify-content: flex-start; }
  .crestcopy .agebar { margin-left: 0; }
}
.assayerplate {
  background: var(--steel);
  border: 1px solid var(--seam);
  padding: 1.5rem;
  margin: 1.25rem 0;
}
.assayerplate p + p { margin-top: 0.75rem; }

/* review-footer author card */
.assayercard {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.2rem;
  align-items: start;
  background: var(--steel);
  border: 1px solid var(--seam);
  padding: 1.4rem;
}
.assayercard img {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  display: block;
}
.assayercard strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 0.4rem;
}
/* ── Brand plaque above review hero titles ───────────────── */
.brandplaque {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: var(--lip);
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  animation: marqueerise 0.7s var(--spring) both;
}
.brandplaque img { display: block; width: 150px; height: 56px; }

/* ── Reviews hub: one ore card per casino ────────────────── */
.orecard {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.4rem;
  margin-bottom: 1rem;
}
.orecard-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.1rem;
  margin-bottom: 0.75rem;
}
.orecard-top img { width: 120px; height: 45px; display: block; }
.orecard-top h3 { margin: 0; flex: 1 1 auto; font-size: 1.15rem; }
.orecard-tally {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  border: 1px solid var(--seam-hi);
  border-radius: var(--lip);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}
.bandwrap .orecard p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0.6rem;
}
.orecard-facts {
  color: var(--dim);
  font-size: 0.9rem;
}
.orecard-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}
.linebtn {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--seam-hi);
  border-radius: var(--lip);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s var(--glide), color 0.2s var(--glide);
}
.linebtn:hover { border-color: var(--maple); color: var(--maple); }

.bandwrap .assayercard p {
  font-size: 0.95rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.assayercard .assayer-more { margin-top: 0.55rem; font-size: 0.9rem; }
@media (max-width: 640px) {
  .assayercard { grid-template-columns: 1fr; gap: 0.9rem; }
}

.leverrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  animation: marqueerise 0.7s var(--spring) 0.22s both;
}

/* live-style jackpot counter plate */
.tickerplate {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 1.5rem auto 0;
  padding: 0.9rem 1.7rem;
  background: rgba(23, 26, 32, 0.74);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: var(--lip);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 0 42px rgba(201, 162, 39, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: marqueerise 0.7s var(--spring) 0.3s both;
}
.ticker-digits {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ticker-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B9BFC8;
}

@media (min-width: 720px) {
  .skyband { padding: 4.5rem 0 4rem; }
  .skyband h1 { font-size: 2.5rem; }
  .ticker-digits { font-size: 2.2rem; }
}

/* ── Screenshot tour strip (after hero) ─────────────────── */
.tourcase {
  background: linear-gradient(180deg, #101217, var(--night) 55%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1.5rem 0 1.6rem;
}
.tour-reel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gilt-bright) rgba(255, 255, 255, 0.08);
}
.tour-reel::-webkit-scrollbar { height: 6px; }
.tour-reel::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.08); border-radius: 3px; }
.tour-reel::-webkit-scrollbar-thumb { background: var(--gilt-bright); border-radius: 3px; }
.tour-reel:focus-visible { outline: 2px solid var(--gilt-bright); outline-offset: 3px; }
.tour-slide {
  scroll-snap-align: start;
  margin: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lip);
  padding: 0.5rem;
}
.tour-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-radius: 3px;
}
.tour-slide figcaption {
  font-size: 0.78rem;
  color: #B9BFC8;
  padding: 0.55rem 0.2rem 0.1rem;
  text-align: center;
}
@media (min-width: 720px) { .tour-reel { grid-auto-columns: 44%; } }
@media (min-width: 1100px) { .tour-reel { grid-auto-columns: 31.5%; } }

/* ── Buttons ────────────────────────────────────────────── */
.maplebtn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(180deg, var(--maple-hot), var(--maple) 55%, var(--maple-deep));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--lip);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.18s var(--spring), box-shadow 0.18s var(--glide), filter 0.18s;
}
.maplebtn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.05);
}
.maplebtn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
}
.maplebtn:hover::after { animation: gleamsweep 0.6s var(--glide); }
.skyband .maplebtn::after { animation: gleamsweep 4.2s var(--glide) 1.4s infinite; }
@keyframes gleamsweep {
  0% { left: -80%; }
  60%, 100% { left: 140%; }
}

.ghostbtn {
  display: inline-block;
  background: rgba(238, 240, 243, 0.04);
  color: #EEF0F3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--lip);
  border: 1px solid rgba(238, 240, 243, 0.45);
  transition: border-color 0.18s, background 0.18s, transform 0.18s var(--spring);
}
.ghostbtn:hover {
  border-color: var(--gilt-bright);
  color: var(--gilt-pale);
  background: rgba(201, 162, 39, 0.08);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── Sections & prose ───────────────────────────────────── */
.bandwrap { padding: 2.75rem 0; }
.bandwrap.tinted {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 40%),
    var(--sheen);
}

.bandwrap h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.bandwrap h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
}
.bandwrap .holdframe > h2,
.bandwrap .holdframe > h3 { text-align: center; }
.bandwrap .holdframe > h2::after {
  content: '';
  display: block;
  width: 74px;
  height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--maple) 35%, var(--gilt-bright) 65%, transparent);
}
.bandwrap p {
  margin-bottom: 0.9rem;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}
.bandwrap ul, .bandwrap ol { margin-bottom: 0.9rem; }
.bandwrap .holdframe > ul:not([class]),
.bandwrap .holdframe > ol:not([class]) {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}
.bandwrap li { margin-bottom: 0.35rem; }

@media (min-width: 720px) {
  .bandwrap { padding: 3.5rem 0; }
  .bandwrap h2 { font-size: 1.75rem; }
}

/* ── Dark vault stat band ───────────────────────────────── */
.vaultband {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 130%, rgba(200, 16, 46, 0.22), transparent 55%),
    repeating-radial-gradient(circle at 50% 135%, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 70px),
    var(--night);
  padding: 2.5rem 0;
}
.vaultband-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (min-width: 900px) { .vaultband-grid { grid-template-columns: repeat(4, 1fr); padding-top: 0.5rem; padding-bottom: 0.5rem; } }
.vault-stat {
  text-align: center;
  padding: 1.2rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--lip);
  background: rgba(255, 255, 255, 0.03);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-cap {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B9BFC8;
}
@media (min-width: 720px) { .stat-num { font-size: 2.6rem; } }

/* ── Cards & panels ─────────────────────────────────────── */
.steelcard {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.4rem;
}

.redflagbox {
  background: var(--maple-mist);
  border: 1px solid var(--maple);
  border-radius: var(--lip);
  padding: 1.1rem 1.25rem;
  margin: 1.25rem auto;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 72ch;
}
.redflagbox img { flex-shrink: 0; margin-top: 0.2rem; }
.redflagbox p { margin: 0; }

.goldnote {
  background: rgba(201, 162, 39, 0.09);
  border: 1px solid var(--gilt-bright);
  border-radius: var(--lip);
  padding: 1.1rem 1.25rem;
  margin: 1.25rem auto;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 72ch;
}
.goldnote img { flex-shrink: 0; margin-top: 0.2rem; }
.goldnote p { margin: 0; }

/* ── Fact manifest plate (dark spec sheet) ──────────────── */
.manifestplate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  list-style: none;
  padding: 1rem;
  margin: 1.25rem 0;
  background:
    radial-gradient(circle at 10% 120%, rgba(200, 16, 46, 0.22), transparent 50%),
    radial-gradient(circle at 92% -25%, rgba(201, 162, 39, 0.14), transparent 46%),
    var(--night);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--lip);
  box-shadow: 0 18px 44px rgba(21, 24, 29, 0.22);
}
.plate-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--lip);
  transition: background 0.2s var(--glide), border-color 0.2s var(--glide);
}
.plate-cell:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(201, 162, 39, 0.45); }
.plate-orb {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
}
.plate-orb img { filter: brightness(0) invert(1); opacity: 0.92; }
.plate-copy { min-width: 0; }
.plate-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9AA2AD;
  margin-bottom: 0.15rem;
}
.plate-val {
  display: block;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.92rem;
  line-height: 1.35;
}
@media (min-width: 600px) { .manifestplate { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .manifestplate { grid-template-columns: 1fr 1fr 1fr 1fr; padding: 1.1rem; } }

/* ── Score gauges ───────────────────────────────────────── */
.gaugegrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.25rem 0;
}
@media (min-width: 720px) { .gaugegrid { grid-template-columns: 1fr 1fr; } }
.gaugerow {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.9rem 1.1rem;
}
.gaugerow .gauge-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.gaugerow .gauge-name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.gaugerow .gauge-mark { font-family: var(--font-display); font-weight: 700; color: var(--gilt); font-variant-numeric: tabular-nums; }
.gaugerow .gauge-rail {
  height: 8px;
  background: var(--sheen);
  border-radius: 4px;
  overflow: hidden;
}
.gaugerow .gauge-fill {
  position: relative;
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--gilt-bright), var(--gilt));
  border-radius: 4px;
  transition: width 1.1s var(--spring) 0.2s;
}
.gaugerow .gauge-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: railshimmer 3.2s linear infinite;
}
@keyframes railshimmer {
  from { background-position: 130% 0; }
  to { background-position: -90% 0; }
}
/* JS collapses fills to 0 until each row scrolls into view */
html.jsable .gaugerow.reveal:not(.reveal-in) .gauge-fill { width: 0; }

.scoreseal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--night);
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: #FFFFFF;
  border-radius: var(--lip);
  padding: 0.9rem 1.4rem;
  line-height: 1.1;
}
.scoreseal .seal-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scoreseal .seal-cap { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: #B9BFC8; margin-top: 0.25rem; }

/* ── Tables ─────────────────────────────────────────────── */
.ledgerscroll { overflow-x: auto; margin: 1.25rem 0; }
.ledgertable {
  width: 100%;
  border-collapse: collapse;
  background: var(--steel);
  border: 1px solid var(--seam);
  font-size: 0.92rem;
  min-width: 480px;
}
.ledgertable th {
  background: var(--night);
  color: #EEF0F3;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.7rem 0.9rem;
}
.ledgertable td {
  padding: 0.65rem 0.9rem;
  border-top: 1px solid var(--seam);
  color: var(--ink-2);
}
.ledgertable td strong { color: var(--ink); }
.ledgertable tbody tr { transition: background 0.15s; }
.ledgertable tbody tr:nth-child(even) { background: var(--paper); }
.ledgertable tbody tr:hover { background: var(--maple-mist); }

/* ── Payment / provider tile grid ───────────────────────── */
.tillgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
@media (min-width: 600px) { .tillgrid { grid-template-columns: repeat(4, 1fr); } }
.tillgrid li {
  background: #FFFFFF;
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: transform 0.2s var(--spring), box-shadow 0.2s var(--glide), border-color 0.2s;
}
.tillgrid li:hover {
  transform: translateY(-3px);
  border-color: var(--gilt-bright);
  box-shadow: 0 10px 24px rgba(21, 24, 29, 0.12);
}
.tillgrid img { width: 130px; height: 49px; object-fit: contain; }

/* ── Screenshot figures ─────────────────────────────────── */
.shotframe {
  margin: 1.5rem 0;
  background: linear-gradient(180deg, #FDFDFE, var(--sheen));
  border: 1px solid var(--seam-hi);
  border-radius: var(--lip);
  padding: 0.6rem;
  box-shadow: 0 14px 34px rgba(21, 24, 29, 0.1);
  transition: transform 0.25s var(--spring), box-shadow 0.25s var(--glide);
}
.shotframe:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 24, 29, 0.16);
}
.shotframe img { border-radius: 3px; width: 100%; }
.shotframe figcaption {
  font-size: 0.82rem;
  color: var(--dim);
  padding: 0.6rem 0.4rem 0.2rem;
  text-align: center;
}
.shotpair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .shotpair { grid-template-columns: 1fr 1fr; align-items: start; } }
.shotframe.phoneframe { max-width: 340px; margin-left: auto; margin-right: auto; }

/* ── Pros / cons ────────────────────────────────────────── */
.verdictsplit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
@media (min-width: 720px) { .verdictsplit { grid-template-columns: 1fr 1fr; } }
.payoffs, .drawbacks {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.2rem 1.3rem;
}
.payoffs h3, .drawbacks h3 { margin: 0 0 0.8rem; font-size: 1rem; }
.payoffs ul, .drawbacks ul { list-style: none; padding: 0; margin: 0; }
.payoffs li, .drawbacks li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}
.payoffs img, .drawbacks img { flex-shrink: 0; margin-top: 0.25rem; }

/* ── CTA card ───────────────────────────────────────────── */
.marqueecard {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 45%, rgba(200, 16, 46, 0.28), transparent 46%),
    repeating-radial-gradient(circle at 88% 45%, rgba(255, 255, 255, 0.03) 0 1.5px, transparent 1.5px 42px),
    var(--night);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--lip);
  padding: 1.6rem;
  color: #D4D8DE;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 20px 50px rgba(21, 24, 29, 0.28);
}
.marqueecard .marquee-brand {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 0.5rem 0.9rem;
  align-self: flex-start;
}
.marqueecard .marquee-brand img { width: 150px; height: 56px; object-fit: contain; }
.marqueecard h3 { color: #FFFFFF; margin: 0; font-size: 1.15rem; }
.marqueecard p { margin: 0; font-size: 0.92rem; }
.marqueecard .marquee-smalls { font-size: 0.78rem; color: #9AA2AD; }
@media (min-width: 720px) {
  .marqueecard {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .marqueecard .marquee-mid { flex: 1; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.askfold {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  margin: 0 auto 0.75rem;
  max-width: 72ch;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.askfold[open] { border-color: var(--seam-hi); box-shadow: 0 10px 26px rgba(21, 24, 29, 0.08); }
.askfold summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 0.95rem 1.15rem;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.askfold summary::-webkit-details-marker { display: none; }
.askfold summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maple);
  transition: transform 0.25s var(--spring);
}
.askfold[open] summary::after { content: '\2013'; transform: translateY(-50%) rotate(180deg); }
.askfold .fold-body { padding: 0 1.15rem 1rem; }
.askfold[open] .fold-body { animation: foldslide 0.3s var(--glide); }
@keyframes foldslide {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: none; }
}
.askfold .fold-body p { margin-bottom: 0.5rem; }

/* ── Age / RG bar ───────────────────────────────────────── */
.agebar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--dim);
  margin-top: 1rem;
  max-width: 72ch;
}
main .agebar {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.skyband .agebar { justify-content: center; animation: marqueerise 0.7s var(--spring) 0.38s both; }
.agebar a { text-decoration: underline; }
.skyband .agebar a,
.strike-copy .agebar a,
.grand-core .agebar a { color: #E4667B; }
.ageseal {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 2px solid var(--maple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--maple);
}
.skyband .agebar { color: #B9BFC8; }
.skyband .ageseal { border-color: #E4667B; color: #E4667B; }

/* ── Sticky deal bar (mobile) ───────────────────────────── */
.stickydeal {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 450;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(23, 26, 32, 0.97);
  border-top: 1px solid rgba(201, 162, 39, 0.5);
  padding: 0.6rem 0.9rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.3s var(--spring);
}
.stickydeal.docked { transform: none; }
@media (min-width: 900px) { .stickydeal { display: none; } }
.deal-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.deal-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.deal-copy strong { color: #FFFFFF; font-size: 0.92rem; }
.deal-copy span { color: #B9BFC8; font-size: 0.76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-btn { padding: 0.6rem 1.2rem; font-size: 0.92rem; flex-shrink: 0; }
body.dealdocked .back-to-top { bottom: calc(1.4rem + 62px); }

/* ── Footer ─────────────────────────────────────────────── */
.basement {
  background: var(--night);
  color: #B9BFC8;
  padding: 2.75rem 0 2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}
.basement a { color: #D4D8DE; }
.basement a:hover { color: #FFFFFF; }
.base-crest {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  padding-bottom: 1.5rem;
}
.base-mail { font-size: 0.85rem; color: #9AA2AD; }
.strandrow { border-top: 1px solid var(--night-2); margin-bottom: 1.75rem; }
.strand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--night-2);
}
@media (min-width: 760px) { .strand { grid-template-columns: 150px 1fr; align-items: baseline; } }
.strand-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilt-bright);
}
.strand nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
}
.strand nav a { font-size: 0.88rem; color: #B9BFC8; }
.strand nav a:hover { color: #FFFFFF; }
.base-guard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  padding-bottom: 1.75rem;
}
.guard-badge { display: block; }
.guard-badge img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.82;
  transition: opacity 0.2s var(--glide);
}
.guard-badge:hover img { opacity: 1; }
.basement .base-sign { margin-bottom: 0.8rem; }
.basement .base-sign img { height: 58px; width: auto; display: block; }
.basement .base-note { font-size: 0.82rem; color: #9AA2AD; max-width: 46ch; }
.basement .base-floor {
  border-top: 1px solid var(--night-2);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: #9AA2AD;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.basement .base-floor a { text-decoration: underline; }
.basement .ageseal { border-color: #E4667B; color: #E4667B; }

/* ── Back to top (with scroll-progress ring) ────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 460;
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, var(--maple-hot), var(--maple) 55%, var(--maple-deep));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--glide), transform 0.2s var(--glide), visibility 0.2s, bottom 0.3s var(--spring);
}
.back-to-top::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(var(--gilt-bright) calc(var(--scrollp, 0) * 1%), rgba(201, 162, 39, 0.18) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top img { filter: brightness(0) invert(1); }

/* ── Money-page kit ("lodepage"): gold-led layout, distinct from reviews ── */
.lodepage .bandwrap .holdframe > h2,
.lodepage .bandwrap .holdframe > h3 { text-align: left; }
.lodepage .bandwrap .holdframe > h2::after { margin-left: 0; }
.lodepage .bandwrap p,
.lodepage .bandwrap .holdframe > ul:not([class]),
.lodepage .bandwrap .holdframe > ol:not([class]) {
  margin-left: 0;
  margin-right: 0;
}

/* Charter hero: centered strikeband variant for about/method/legal pages */
.charter-crest {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.charter-crest h1 {
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  animation: goldrise 0.7s var(--spring) both;
}
.charter-crest p {
  color: #D4D8DE;
  max-width: 58ch;
  margin: 0 auto;
  animation: goldrise 0.7s var(--spring) 0.12s both;
}
.charter-crest .agebar {
  justify-content: center;
  margin: 1.1rem auto 0;
}

/* Split hero: gold treatment of the strongroom, copy left, pool board right */
.strikeband {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(18, 19, 24, 0.9) 0%, rgba(20, 20, 24, 0.78) 55%, rgba(16, 17, 21, 0.92) 100%),
    url('/images/vault-strongroom.webp');
  background-size: cover;
  background-position: center;
  color: #EEF0F3;
  padding: 3rem 0 3.25rem;
}
.strikeband::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 72% 38%, rgba(201, 162, 39, 0.28), transparent 55%);
  animation: lodegleam 7s ease-in-out infinite;
}
@keyframes lodegleam {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.strikeband .holdframe { position: relative; z-index: 2; }
.strike-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.strike-copy h1 {
  color: #FFFFFF;
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  animation: goldrise 0.7s var(--spring) both;
}
.strike-copy .stampline { justify-content: flex-start; }
.strike-copy p {
  color: #D4D8DE;
  max-width: 58ch;
  animation: goldrise 0.7s var(--spring) 0.12s both;
}
.strike-copy .leverrow { justify-content: flex-start; }
.strike-copy .agebar { justify-content: flex-start; margin-left: 0; margin-right: 0; }
@keyframes goldrise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 1000px) {
  .strike-split { grid-template-columns: 1.12fr 0.88fr; gap: 3rem; }
  .strike-copy h1 { font-size: 2.05rem; }
}

/* The pool board: dark glass ledger of live-checked jackpot values */
.potledger {
  background: rgba(23, 26, 32, 0.78);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--lip);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  padding: 1.1rem 1.25rem 0.9rem;
  animation: goldrise 0.7s var(--spring) 0.22s both;
}
.ledger-crown {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  padding-bottom: 0.55rem;
  margin-bottom: 0.35rem;
}
.ledger-crown strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gilt-pale);
}
.ledger-when {
  font-size: 0.72rem;
  color: #AEB6C1;
  white-space: nowrap;
}
.ledger-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}
.ledger-line + .ledger-line { border-top: 1px solid rgba(174, 182, 193, 0.16); }
.line-name { font-size: 0.9rem; font-weight: 600; color: #EEF0F3; }
.line-name small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #9AA3AF;
}
.line-sum {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.18rem;
  color: var(--gilt-bright);
  white-space: nowrap;
}
.ledger-foot {
  font-size: 0.72rem;
  color: #9AA3AF;
  margin-top: 0.4rem;
}

/* Jump bar under the hero */
.spanbar {
  background: var(--steel);
  border-bottom: 1px solid var(--seam);
}
.span-flow {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.7rem 0;
  scrollbar-width: none;
}
.span-flow::-webkit-scrollbar { display: none; }
.span-jump {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.35rem 0.8rem;
  white-space: nowrap;
  transition: border-color 0.2s var(--glide), color 0.2s var(--glide);
}
.span-jump:hover { border-color: var(--maple); color: var(--maple); text-decoration: none; }

/* Light stat strip */
.bullionrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 0.75rem;
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.35rem 1rem;
  margin: 1.5rem 0;
  text-align: center;
}
@media (min-width: 760px) { .bullionrow { grid-template-columns: repeat(4, 1fr); } }
.bullion-num {
  display: block;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.7rem;
  color: var(--gilt);
}
.bullion-cap {
  display: block;
  font-size: 0.8rem;
  color: var(--dim);
  margin-top: 0.15rem;
}

/* Ranked podium cards */
.podiumcard {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.35rem 1.4rem 1.25rem;
  margin: 1.25rem 0;
}
.pod-brow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.pod-rank {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--night);
  border-radius: var(--lip);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gilt-bright);
}
.pod-crest {
  flex: 0 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.3rem 0.55rem;
  line-height: 0;
}
.pod-crest img { width: 104px; height: 39px; object-fit: contain; }
.pod-name {
  font-size: 1.15rem;
  margin: 0;
}
.pod-for {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gilt);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: var(--lip);
  padding: 0.25rem 0.6rem;
}
.pod-tally {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}
.pod-tally small { color: var(--dim); font-size: 0.75rem; }
.pod-split { display: grid; gap: 1.25rem; }
@media (min-width: 880px) { .pod-split { grid-template-columns: 0.9fr 1.1fr; gap: 2rem; } }
.pod-facts { margin: 0; }
.pod-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}
.pod-facts div + div { border-top: 1px solid var(--sheen); }
.pod-facts dt { font-size: 0.8rem; color: var(--dim); }
.pod-facts dd { font-size: 0.85rem; font-weight: 700; color: var(--ink); text-align: right; margin: 0; }
.bandwrap .pod-case p {
  font-size: 0.95rem;
  max-width: none;
  margin: 0 0 0.7rem;
}
.pod-flaw {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.42);
  border-radius: var(--lip);
  padding: 0.6rem 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.pod-flaw img { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; }
.pod-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.pod-mini { font-size: 0.75rem; color: var(--dim); }

/* Dark-headed comparison matrix */
.claimscroll { overflow-x: auto; margin: 1.25rem 0; }
.claimtable {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--steel);
  border: 1px solid var(--seam);
}
.claimtable th {
  background: var(--night);
  color: #EEF0F3;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 2px solid var(--gilt-bright);
}
.claimtable td {
  padding: 0.65rem 0.85rem;
  border-top: 1px solid var(--sheen);
  vertical-align: top;
}
.claimtable tbody tr:nth-child(even) { background: rgba(231, 234, 238, 0.45); }
.claimtable td:first-child { font-weight: 700; white-space: nowrap; }

/* Dark fine-print panel */
.veinstrip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--night-2);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: var(--lip);
  padding: 1.2rem 1.3rem;
  margin: 1.5rem 0;
}
.vein-orb {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
}
.vein-orb img { width: 20px; height: 20px; filter: invert(72%) sepia(43%) saturate(651%) hue-rotate(7deg) brightness(93%) contrast(88%); }
.bandwrap .vein-body p {
  color: #D4D8DE;
  font-size: 0.92rem;
  max-width: none;
  margin: 0 0 0.6rem;
}
.vein-body p:last-child { margin-bottom: 0; }
.vein-body strong { color: var(--gilt-pale); }
.vein-body a { color: #E4667B; }

/* Game-title tile grid (names + the RTP each runs at) */
.lodegrid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.6rem;
  margin: 1.25rem 0;
  padding: 0;
}
.lode-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 0.6rem 0.75rem;
  margin: 0;
}
.lode-name { font-size: 0.84rem; font-weight: 600; color: var(--ink-2); }
.lode-rtp {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.76rem;
  color: var(--gilt);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--lip);
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
}

/* RTP distribution bars */
.strata { margin: 1.25rem 0; }
.stratarow {
  display: grid;
  grid-template-columns: 92px 1fr 96px;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
}
.strata-tag { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.strata-bar {
  height: 14px;
  background: var(--sheen);
  border-radius: 7px;
  overflow: hidden;
}
.strata-fill {
  display: block;
  height: 100%;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--gilt), var(--gilt-bright));
}
.strata-count { font-size: 0.8rem; color: var(--dim); text-align: right; }

/* FAQ rows */
.querylist { margin: 1rem 0; }
.query-fold { border-bottom: 1px solid var(--seam); }
.query-fold:first-child { border-top: 1px solid var(--seam); }
.query-ask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.9rem 0.2rem;
}
.query-ask::-webkit-details-marker { display: none; }
.query-ask::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gilt);
  transition: transform 0.25s var(--spring);
}
.query-fold[open] .query-ask::after { transform: rotate(45deg); }
.bandwrap .query-tell p {
  font-size: 0.94rem;
  max-width: none;
  margin: 0 0 0.8rem;
  padding: 0 0.2rem;
}

/* ── Homepage kit ("grandhall"): the hub-page treatment ──── */
.grandband {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(10, 11, 15, 0.66) 0%, rgba(10, 11, 15, 0.3) 46%, rgba(12, 13, 17, 0.9) 100%),
    url('/images/vault-grand-hall.webp');
  background-size: cover;
  background-position: center 32%;
  color: #EEF0F3;
  text-align: center;
  padding: 4.25rem 0 4.5rem;
}
.grandband::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 112%, rgba(200, 16, 46, 0.24), transparent 52%);
  animation: hallbreathe 7s ease-in-out infinite;
}
@keyframes hallbreathe {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.grandband .holdframe { position: relative; z-index: 2; }
.grand-core { max-width: 880px; margin: 0 auto; }
.grand-core h1 {
  color: #FFFFFF;
  font-size: 2.05rem;
  margin-bottom: 0.9rem;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.7);
  animation: goldrise 0.7s var(--spring) both;
}
.grand-core > p {
  color: #D9DDE3;
  max-width: 64ch;
  margin: 0 auto;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
  animation: goldrise 0.7s var(--spring) 0.12s both;
}
.grand-core .tickerplate { padding: 1rem 2rem; }
.grand-core .agebar { justify-content: center; }
@media (min-width: 720px) {
  .grandband { padding: 5.75rem 0 6.25rem; }
  .grand-core h1 { font-size: 2.7rem; }
}

/* The pool room: dark band, three lit plinths */
.poolsroom {
  background:
    radial-gradient(circle at 50% -55%, rgba(201, 162, 39, 0.2), transparent 62%),
    var(--night);
}
.poolsroom h2 { color: #FFFFFF; }
.poolsroom p { color: #C6CBD3; }
.plinthrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
@media (min-width: 880px) { .plinthrow { grid-template-columns: repeat(3, 1fr); } }
.poolplinth {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.42);
  border-radius: var(--lip);
  padding: 1.75rem 1.3rem 1.5rem;
  transition: transform 0.25s var(--spring), border-color 0.25s var(--glide), box-shadow 0.25s var(--glide);
}
.poolplinth:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.8);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}
.plinth-seal {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.05rem;
  border: 2px solid rgba(201, 162, 39, 0.6);
  box-shadow: 0 0 38px rgba(201, 162, 39, 0.28), 0 10px 26px rgba(0, 0, 0, 0.5);
}
.plinth-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}
.plinth-net { display: block; font-size: 0.78rem; color: #9AA3AF; margin-top: 0.15rem; }
.plinth-sum {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  margin: 0.55rem 0 0.1rem;
  background: linear-gradient(180deg, var(--gilt-pale), var(--gilt-bright) 58%, var(--gilt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plinth-when { display: block; font-size: 0.72rem; color: #9AA3AF; }
.poolsroom .poolplinth p { font-size: 0.88rem; max-width: none; margin: 0.8rem 0 0; }
.plinth-acts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.05rem;
}
.plinth-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: var(--lip);
  color: var(--gilt-pale);
  font-weight: 600;
  font-size: 0.85rem;
  transition: border-color 0.2s var(--glide), background 0.2s var(--glide);
}
.plinth-link:hover {
  border-color: var(--gilt-bright);
  background: rgba(201, 162, 39, 0.12);
  color: var(--gilt-pale);
  text-decoration: none;
}
.poolsroom .pools-foot { font-size: 0.78rem; color: #9AA3AF; margin: 1.5rem auto 0; text-align: center; }

/* Money-page wings: image-led cards into the six rankings */
.wingsgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
@media (min-width: 640px) { .wingsgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .wingsgrid { grid-template-columns: repeat(3, 1fr); } }
.wingcard {
  display: flex;
  flex-direction: column;
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  overflow: hidden;
  color: var(--ink-2);
  transition: transform 0.22s var(--spring), box-shadow 0.22s var(--glide), border-color 0.22s var(--glide);
}
.wingcard:hover {
  transform: translateY(-4px);
  border-color: var(--gilt-bright);
  box-shadow: 0 16px 38px rgba(21, 24, 29, 0.14);
  text-decoration: none;
}
.wing-art { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; }
.wing-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.05rem 1.15rem 1.2rem;
  flex: 1;
}
.wing-body h3 { margin: 0; font-size: 1.02rem; }
.bandwrap .wingcard p { font-size: 0.88rem; max-width: none; margin: 0; }
.wing-go { margin-top: auto; padding-top: 0.55rem; font-weight: 700; font-size: 0.85rem; color: var(--maple); }
.wingcard:hover .wing-go { text-decoration: underline; }

/* Split figure + copy (two-companies section) */
.duetsplit {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.6rem;
}
@media (min-width: 980px) { .duetsplit { grid-template-columns: 1.04fr 0.96fr; gap: 2.5rem; } }
.duetsplit .shotframe { margin: 0; }
.bandwrap .duet-copy p { max-width: none; margin-left: 0; margin-right: 0; text-align: left; }

/* Record-book band */
.archiveband {
  background:
    radial-gradient(circle at 10% 118%, rgba(200, 16, 46, 0.2), transparent 52%),
    radial-gradient(circle at 94% -20%, rgba(201, 162, 39, 0.15), transparent 46%),
    var(--night);
  color: #C6CBD3;
}
.archiveband h2 { color: #FFFFFF; }
.archiveband p { color: #C6CBD3; }
.archive-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.6rem;
}
@media (min-width: 940px) { .archive-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; } }
.archive-frame {
  margin: 0;
  background: rgba(23, 26, 32, 0.74);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: var(--lip);
  padding: 10px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}
.archive-frame img { width: 100%; border-radius: calc(var(--lip) - 3px); }
.archive-frame figcaption { font-size: 0.78rem; color: #9AA3AF; padding: 0.55rem 0.2rem 0.1rem; text-align: center; }
.bandwrap .archive-copy p { max-width: none; margin-left: 0; margin-right: 0; text-align: left; }
.archive-copy strong { color: var(--gilt-pale); }
.archiveband .vaultband-grid { margin-top: 2.25rem; }

/* Guide rack: three labelled link columns */
.rackrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
@media (min-width: 880px) { .rackrow { grid-template-columns: repeat(3, 1fr); } }
.rackcol {
  background: var(--steel);
  border: 1px solid var(--seam);
  border-radius: var(--lip);
  padding: 1.3rem 1.4rem 1.35rem;
}
.rack-head {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gilt);
  border-bottom: 1px solid var(--seam);
  padding-bottom: 0.6rem;
  margin-bottom: 0.85rem;
}
.rackcol ul { list-style: none; padding: 0; margin: 0; }
.rackcol li { margin: 0 0 0.5rem; }
.rackcol li:last-child { margin-bottom: 0; }
.rackcol a {
  display: block;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.2rem 0;
  transition: color 0.15s, padding-left 0.15s;
}
.rackcol a:hover { color: var(--maple); padding-left: 0.4rem; text-decoration: none; }

/* ── Reduced motion: kill every animation, show everything ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.jsable .reveal { opacity: 1; transform: none; transition: none; }
  html.jsable .gaugerow.reveal:not(.reveal-in) .gauge-fill { width: var(--fill); }
  .bulbrail,
  .skyband::after, .strikeband::after, .grandband::after,
  .strike-copy h1, .strike-copy p, .potledger,
  .grand-core h1, .grand-core > p,
  .skyband h1, .skyband p, .stampline, .leverrow, .tickerplate, .skyband .agebar,
  .gauge-fill::after,
  .skyband .maplebtn::after,
  .askfold[open] .fold-body { animation: none; }
  .gaugerow .gauge-fill, .plate-cell, .tillgrid li, .shotframe,
  .poolplinth, .wingcard, .plinth-link, .rackcol a,
  .maplebtn, .ghostbtn, .stickydeal, .rail-dot { transition: none; }
}
