/* ==========================================================================
   coinreelz.com - core stylesheet
   Class vocabulary is unique to this site (rz- prefix + coined component
   names). Do not reuse tokens from any other project.
   Mobile-first: base rules are phone; min-width queries scale up.
   ========================================================================== */

:root {
  /* surfaces */
  --ink:        #080C12;
  --ink-2:      #0D131C;
  --panel:      #131C28;
  --panel-2:    #1A2533;
  --rule:       #23303F;
  --rule-hi:    #324356;

  /* type */
  --type:       #EAF1F8;
  --type-2:     #A9BACB;
  --type-dim:   #7E90A3;

  /* brand */
  --azure:      #38A9F0;
  --azure-deep: #1B7FC4;
  --azure-haze: rgba(56,169,240,0.10);
  --amber:      #F2A33C;
  --amber-haze: rgba(242,163,60,0.12);

  /* chart + status ramp (validated for dark surface #131C28) */
  --plot-1:     #38A9F0;   /* primary series / emphasis */
  --plot-mute:  #465A70;   /* de-emphasised series */
  --tick-good:  #4ECB8B;
  --tick-warn:  #F2A33C;
  --tick-bad:   #F0685E;

  /* metrics */
  --bar-h:      60px;
  --pad:        1.15rem;
  --wide:       1180px;
  --read:       700px;
  --curve:      10px;
  --curve-s:    6px;
  --glide:      cubic-bezier(0.33, 0, 0.2, 1);

  --face-head:  'Sora', 'Segoe UI', system-ui, sans-serif;
  --face-text:  'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: var(--bar-h);
  background: var(--ink);
  color: var(--type);
  font-family: var(--face-text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--azure); text-decoration: none; }
/* links inside running prose must not rely on colour alone (WCAG 1.4.1) */
.rz-say a, .rz-flagbox p a, .rz-podium-body p a, .rz-faq-a a, .rz-critgrid p a,
.rz-rulecards p a, .rz-orgrow a, .rz-neverlist p a, .rz-mailcard p a,
.rz-adultbox p a, .rz-foot-legal a, .rz-lede a, .rz-stepflow p a,
.rz-rgstrip a, .rz-authorcard p a, .rz-grid td a {
  text-decoration: underline; text-underline-offset: 2px;
}
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--face-head);
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: 1.85rem; }
h2 { font-size: 1.4rem; margin-top: 0; }
h3 { font-size: 1.1rem; margin-top: 1.9rem; }
.rz-plotcard h3, .rz-vcol h3, .rz-authorcard h3, .rz-panel h3,
.rz-shot + h3, h2 + h3 { margin-top: 0; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 2px solid var(--azure); outline-offset: 2px; }

/* ── shared shell ─────────────────────────────────────────────────────── */
.rz-hold { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 var(--pad); }

/* ── top bar ──────────────────────────────────────────────────────────── */
.rz-topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 600;
  height: var(--bar-h);
  background: rgba(8,12,18,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.rz-topbar-in {
  max-width: var(--wide); margin: 0 auto; padding: 0 var(--pad);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.rz-brandmark { display: inline-flex; align-items: center; text-decoration: none; }
.rz-brandmark:hover { text-decoration: none; }
.rz-brandmark img { display: block; height: 30px; width: auto; }

.rz-mainnav { display: none; }
.rz-mainnav ul { display: flex; align-items: center; gap: 0.1rem; list-style: none; margin: 0; padding: 0; }
.rz-mainnav a {
  display: block; padding: 0.4rem 0.7rem; border-radius: var(--curve-s);
  font-size: 0.9rem; font-weight: 500; color: var(--type-2); white-space: nowrap;
  transition: color 0.16s var(--glide), background 0.16s var(--glide);
}
.rz-mainnav a:hover { color: var(--type); background: var(--panel); text-decoration: none; }
.rz-mainnav a[aria-current="page"] { color: var(--azure); background: var(--azure-haze); }

.rz-navset { position: relative; display: flex; align-items: center; height: var(--bar-h); }
.rz-navknob {
  display: flex; align-items: center; gap: 0.35rem; cursor: pointer;
  padding: 0.4rem 0.7rem; border: 0; background: none; border-radius: var(--curve-s);
  font-family: var(--face-text); font-size: 0.9rem; font-weight: 500; color: var(--type-2);
  white-space: nowrap; line-height: inherit;
  transition: color 0.16s var(--glide), background 0.16s var(--glide);
}
.rz-navknob img {
  width: 12px; height: 12px;
  filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg);
  transition: transform 0.16s var(--glide);
}
.rz-navknob:hover,
.rz-navset:hover .rz-navknob,
.rz-navset.rz-out .rz-navknob { color: var(--type); background: var(--panel); }
.rz-navknob.rz-here { color: var(--azure); background: var(--azure-haze); }
.rz-navset:hover .rz-navknob img,
.rz-navset:focus-within .rz-navknob img,
.rz-navset.rz-out .rz-navknob img { transform: rotate(180deg); }

.rz-navpane {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 6px; display: none; z-index: 400;
}
.rz-navset:hover .rz-navpane,
.rz-navset:focus-within .rz-navpane,
.rz-navset.rz-out .rz-navpane { display: block; }
.rz-navset:nth-last-child(-n+2) .rz-navpane { left: auto; right: 0; transform: none; }
.rz-navpane-in {
  min-width: 236px; padding: 0.4rem;
  background: var(--panel); border: 1px solid var(--rule-hi); border-radius: var(--curve);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
}
.rz-navpane a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.52rem 0.8rem; border-radius: var(--curve-s);
  font-size: 0.9rem; font-weight: 500; color: var(--type-2);
}
.rz-navpane a img {
  width: 16px; height: 16px; flex-shrink: 0;
  filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg);
}
.rz-navpane a:hover { color: var(--type); background: var(--panel-2); text-decoration: none; }
.rz-navpane a[aria-current="page"] { color: var(--azure); background: var(--azure-haze); }
.rz-navcut { display: block; height: 1px; margin: 0.35rem 0.4rem; background: var(--rule); }

/* ── search ───────────────────────────────────────────────────────────── */
.rz-barcap { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.rz-seek {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0; cursor: pointer;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve-s);
  transition: border-color 0.16s, background 0.16s;
}
.rz-seek:hover { border-color: var(--azure); background: var(--azure-haze); }
.rz-seek img { width: 18px; height: 18px; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
body.rz-seek-on .rz-seek { border-color: var(--azure); background: var(--azure-haze); }

.rz-seekpane {
  display: none; position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 520;
  background: var(--ink-2); border-bottom: 1px solid var(--rule-hi);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.5);
}
body.rz-seek-on .rz-seekpane { display: block; }
.rz-seekpane-in { max-width: var(--wide); margin: 0 auto; padding: 0.9rem var(--pad) 1rem; }
.rz-seekbox {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--panel); border: 1px solid var(--rule-hi); border-radius: var(--curve-s);
  padding: 0.62rem 0.9rem; transition: border-color 0.16s;
}
.rz-seekbox:focus-within { border-color: var(--azure); }
.rz-seekbox img { width: 18px; height: 18px; flex-shrink: 0; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
.rz-seekbox input {
  flex: 1; min-width: 0; background: none; border: 0; outline: 0;
  color: var(--type); font-family: var(--face-text); font-size: 1rem;
}
.rz-seekbox input::placeholder { color: var(--type-dim); }
.rz-seekout { list-style: none; margin: 0.45rem 0 0; padding: 0; max-height: min(58vh, 430px); overflow-y: auto; }
.rz-seekout a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.58rem 0.8rem; border-radius: var(--curve-s);
  color: var(--type-2); font-size: 0.95rem; font-weight: 500;
}
.rz-seekout a img { width: 16px; height: 16px; flex-shrink: 0; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
.rz-seekout a:hover { background: var(--panel-2); color: var(--type); text-decoration: none; }
.rz-seekout a i {
  margin-left: auto; font-style: normal; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--type-dim);
}
.rz-seekvoid { padding: 0.58rem 0.8rem; color: var(--type-dim); font-size: 0.92rem; }

.rz-burger {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0; cursor: pointer;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve-s);
  transition: border-color 0.16s, background 0.16s;
}
.rz-burger:hover { border-color: var(--azure); background: var(--azure-haze); }
.rz-burger img { width: 20px; height: 20px; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
.rz-burger .rz-ic-shut { display: none; }
body.rz-drawer-on .rz-burger .rz-ic-shut { display: block; }
body.rz-drawer-on .rz-burger .rz-ic-open { display: none; }

.rz-drawer {
  display: none; position: fixed; inset: var(--bar-h) 0 0 0; z-index: 500;
  background: var(--ink); overflow-y: auto; border-top: 2px solid var(--azure);
}
body.rz-drawer-on .rz-drawer { display: block; }
.rz-drawer ul { list-style: none; margin: 0; padding: 0 0 2.5rem; }
.rz-drawer a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.95rem var(--pad); font-size: 1.05rem; font-weight: 500;
  color: var(--type-2); border-bottom: 1px solid var(--rule);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.rz-drawer a img {
  width: 18px; height: 18px; flex-shrink: 0;
  filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg);
}
.rz-drawer a:hover, .rz-drawer a[aria-current="page"] {
  color: var(--azure); background: var(--azure-haze); padding-left: calc(var(--pad) + 0.5rem);
  text-decoration: none;
}
.rz-drawer-tag {
  padding: 1.3rem var(--pad) 0.45rem; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--azure);
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 940px) {
  .rz-mainnav { display: flex; align-items: center; }
  .rz-burger  { display: none !important; }
  .rz-drawer  { display: none !important; }
}

/* ── footer ───────────────────────────────────────────────────────────── */
.rz-foot { background: var(--ink-2); border-top: 1px solid var(--rule); margin-top: 3.5rem; padding: 2.5rem 0 1.5rem; }
.rz-foot-grid { display: grid; gap: 1.8rem; }
.rz-foot-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azure); margin: 0 0 0.7rem; }
.rz-foot ul { list-style: none; margin: 0; padding: 0; }
.rz-foot li { margin-bottom: 0.4rem; }
.rz-foot a { color: var(--type-2); font-size: 0.92rem; }
.rz-foot a:hover { color: var(--azure); }
.rz-foot-legal {
  margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid var(--rule);
  font-size: 0.8rem; color: var(--type-dim); line-height: 1.6;
}
.rz-eighteen {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--tick-bad); color: var(--tick-bad);
  font-weight: 700; font-size: 0.78rem; margin-right: 0.6rem;
}
.rz-foot-blurb { font-size: 0.9rem; color: var(--type-2); margin: 0.7rem 0 0; max-width: 34ch; }
@media (min-width: 720px) { .rz-foot-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 940px) {
  .rz-foot-grid { grid-template-columns: 1fr 1fr 1fr 1.4fr; }
  .rz-foot-brand { justify-self: end; text-align: right; }
  .rz-foot-brand .rz-foot-blurb { margin-left: auto; }
  .rz-foot-brand .rz-brandmark { justify-content: flex-end; }
}

/* ── back to top ──────────────────────────────────────────────────────── */
.rz-uptop {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 550;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--panel-2); border: 1px solid var(--rule-hi); border-radius: 50%;
  cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.22s var(--glide);
}
.rz-uptop.rz-lit { opacity: 1; pointer-events: auto; }
.rz-uptop img { width: 18px; height: 18px; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }

/* ── generic content pieces ───────────────────────────────────────────── */
.rz-slab { padding: 2.2rem 0; }
.rz-slab + .rz-slab { border-top: 1px solid var(--rule); }

.rz-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--azure); margin: 0 0 0.5rem;
}

.rz-lede { font-size: 1.05rem; color: var(--type-2); }

.rz-panel {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 1.1rem;
}

/* reel-strip divider - the site's signature rule */
.rz-reelrule {
  height: 8px; margin: 1.6rem 0; border: 0; border-radius: 4px;
  background: repeating-linear-gradient(90deg,
    var(--rule) 0 14px, transparent 14px 26px);
  opacity: 0.85;
}

/* chat-bubble callout - nods to the Telegram theme */
.rz-bubble {
  position: relative; background: var(--panel-2); border: 1px solid var(--rule-hi);
  border-radius: 14px 14px 14px 3px; padding: 1rem 1.1rem;
  color: var(--type-2); font-size: 0.95rem; margin: 1.3rem 0;
}
.rz-bubble strong { color: var(--type); }
.rz-bubble-who {
  display: block; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--azure); font-weight: 700; margin-bottom: 0.4rem;
}

/* handle chips - for listing many short strings without a wall of commas */
.rz-chipset { margin: 1.2rem 0; }
.rz-chiplabel {
  font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--type-dim); font-weight: 700; margin: 0 0 0.5rem;
}
.rz-chipset + .rz-chipset { margin-top: 1rem; }
.rz-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 0.3rem; padding: 0; list-style: none; }
.rz-chips li {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem; color: var(--type-2);
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 999px; padding: 0.24rem 0.62rem; white-space: nowrap;
}
.rz-chips li.rz-chip-lead { color: var(--azure); border-color: var(--azure-deep); background: var(--azure-haze); }

/* status boxes */
.rz-flagbox, .rz-goodbox {
  border-radius: var(--curve); padding: 1rem 1.1rem; margin: 1.3rem 0;
  border: 1px solid var(--rule); background: var(--panel);
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.rz-flagbox { border-left: 3px solid var(--tick-warn); border-radius: 0; }
.rz-goodbox { border-left: 3px solid var(--tick-good); border-radius: 0; }
.rz-flagbox img, .rz-goodbox img { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.rz-flagbox p, .rz-goodbox p { flex: 1 1 auto; min-width: 0; }
.rz-flagbox img { filter: invert(72%) sepia(48%) saturate(1000%) hue-rotate(340deg); }
.rz-goodbox img { filter: invert(70%) sepia(38%) saturate(600%) hue-rotate(90deg); }
.rz-flagbox p, .rz-goodbox p { margin: 0; font-size: 0.94rem; color: var(--type-2); }
.rz-flagbox strong, .rz-goodbox strong { color: var(--type); }

/* CTA */
.rz-ctabtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: var(--curve-s);
  background: var(--azure); color: #04121D; font-weight: 700; font-size: 0.98rem;
  border: 0; cursor: pointer; text-decoration: none;
  transition: background 0.16s var(--glide), transform 0.16s var(--glide);
}
.rz-ctabtn:hover { background: #55B9F5; text-decoration: none; transform: translateY(-1px); }
.rz-ctabtn img { width: 17px; height: 17px; }
.rz-ctabtn-wide { width: 100%; }

/* disclosure strip */
.rz-disclose {
  font-size: 0.8rem; color: var(--type-dim); background: var(--ink-2);
  border: 1px solid var(--rule); border-radius: var(--curve-s);
  padding: 0.6rem 0.85rem; margin: 1rem 0;
}
.rz-disclose a { color: var(--type-2); text-decoration: underline; }

/* ── tables ───────────────────────────────────────────────────────────── */
.rz-tablewrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2rem 0;
  border: 1px solid var(--rule); border-radius: var(--curve); background: var(--panel);
}
.rz-grid {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
  min-width: 480px; background: transparent;
}
.rz-grid caption {
  caption-side: top; text-align: left; font-size: 0.82rem; color: var(--type-dim);
  padding: 0.7rem 0.8rem 0.55rem; border-bottom: 1px solid var(--rule);
}
.rz-grid-slim { min-width: 0; }
.rz-grid-slim th, .rz-grid-slim td { padding-left: 0.62rem; padding-right: 0.62rem; }
.rz-grid th, .rz-grid td {
  padding: 0.7rem 0.8rem; text-align: left; border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.rz-grid thead th {
  background: var(--ink-2); color: var(--azure); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; white-space: nowrap;
}
.rz-grid tbody tr:last-child td { border-bottom: 0; }
.rz-grid tbody tr:hover { background: var(--panel-2); }
.rz-grid .rz-num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.rz-grid .rz-hi { color: var(--type); font-weight: 600; }
.rz-grid .rz-warnt { color: var(--tick-warn); font-weight: 600; }
.rz-grid .rz-good { color: var(--tick-good); font-weight: 600; }
.rz-podfacts dd.rz-good { color: var(--tick-good); }
.rz-podfacts dd.rz-bad { color: var(--tick-warn); }
.rz-grid code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em; color: var(--azure); background: var(--ink-2);
  padding: 0.1em 0.35em; border-radius: 3px;
}
.rz-scrollhint { font-size: 0.75rem; color: var(--type-dim); margin: -0.6rem 0 1.2rem; }
@media (min-width: 720px) { .rz-scrollhint { display: none; } }

/* ── stat tiles ───────────────────────────────────────────────────────── */
/* full-bleed spec strip under the masthead */
.rz-factband {
  background: var(--ink-2); border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); margin-top: 1.8rem; padding: 1.3rem 0;
}
.rz-factband .rz-tilerow { margin: 0; }
.rz-factband .rz-tile { background: var(--panel); }

.rz-tilerow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem; margin: 1.2rem 0; }
.rz-tile {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 0.85rem 0.9rem;
}
.rz-tile-k {
  font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--type-dim); font-weight: 700; margin-bottom: 0.3rem; display: block;
}
.rz-tile-v {
  font-family: var(--face-head); font-size: 1.32rem; font-weight: 700;
  color: var(--type); line-height: 1.15; display: block;
}
.rz-tile-v.rz-warn { color: var(--tick-warn); }
.rz-tile-v.rz-good { color: var(--tick-good); }
.rz-tile-n { font-size: 0.78rem; color: var(--type-dim); display: block; margin-top: 0.2rem; }
@media (min-width: 720px) {
  .rz-tilerow { grid-template-columns: repeat(4, 1fr); }
  .rz-tilerow.rz-tilepair { grid-template-columns: repeat(2, 1fr); }
}

/* hero figure - the single number a section leads with */
.rz-heronum {
  font-family: var(--face-head); font-size: 3rem; font-weight: 700;
  line-height: 1; color: var(--azure); letter-spacing: -0.03em;
}

/* ── charts ───────────────────────────────────────────────────────────── */
.rz-plotcard {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 1.1rem 0.9rem; margin: 1.3rem 0;
}
.rz-plotcard h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.rz-plotsub { font-size: 0.82rem; color: var(--type-dim); margin: 0 0 0.9rem; }
.rz-plot { width: 100%; max-width: 600px; height: auto; display: block; margin: 0 auto; overflow: visible; }
.rz-plot text { font-family: var(--face-text); fill: var(--type-2); }
.rz-plot .rz-axtick { font-size: 10px; fill: var(--type-dim); font-variant-numeric: tabular-nums; }
.rz-plot .rz-axname { font-size: 11px; fill: var(--type-2); }
.rz-plot .rz-dlabel { font-size: 11px; font-weight: 700; fill: var(--type); font-variant-numeric: tabular-nums; }
.rz-plot .rz-hair { stroke: var(--rule); stroke-width: 1; }
.rz-plot .rz-plotfoot { font-size: 9.5px; fill: var(--type-dim); }
/* week-calendar chart (Betpanda promo week) */
.rz-plot .rz-weekcell rect { fill: var(--ink-2); stroke: var(--rule); stroke-width: 1; }
.rz-plot .rz-wkday { font-size: 8.5px; fill: var(--type-dim); letter-spacing: 0.06em; text-anchor: middle; }
.rz-plot .rz-wklab { font-size: 8px; font-weight: 700; fill: var(--type); text-anchor: middle; }
.rz-plot .rz-wklab.rz-onamber { fill: var(--ink); }
.rz-plot .rz-wkband { font-size: 9px; fill: var(--type-2); text-anchor: middle; }
.rz-plotkey { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.8rem; font-size: 0.8rem; color: var(--type-2); }
.rz-plotkey span { display: inline-flex; align-items: center; gap: 0.38rem; }
.rz-keydot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.rz-plotnote { font-size: 0.78rem; color: var(--type-dim); margin: 0.7rem 0 0; }

/* meter rows */
.rz-meter { margin-bottom: 0.85rem; }
.rz-meter:last-child { margin-bottom: 0; }
.rz-meter-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.6rem; margin-bottom: 0.3rem; font-size: 0.88rem;
}
.rz-meter-name { color: var(--type-2); }
.rz-meter-val { font-family: var(--face-head); font-weight: 700; color: var(--type); font-variant-numeric: tabular-nums; }
.rz-meter-track { height: 7px; background: var(--ink-2); border-radius: 4px; overflow: hidden; }
.rz-meter-fill { height: 100%; border-radius: 4px; background: var(--plot-1); }
.rz-meter-fill.rz-lower { background: var(--plot-mute); }

/* ── figures ──────────────────────────────────────────────────────────── */
.rz-shot { margin: 1.4rem 0; }
.rz-shot img { width: 100%; border: 1px solid var(--rule); border-radius: var(--curve); }
.rz-shot figcaption { font-size: 0.8rem; color: var(--type-dim); margin-top: 0.5rem; line-height: 1.5; }
/* narrower figure for the drawn diagrams, which do not need full width */
.rz-shot-mid { max-width: 560px; margin-inline: auto; }
.rz-shot-mid figcaption { text-align: center; }
.rz-shotpair { display: grid; gap: 0.9rem; }
.rz-shotpair > * { min-width: 0; }
.rz-shotpair .rz-shot img { width: 100%; }
.rz-shotpair .rz-shot { margin: 0; }
.rz-shotpair .rz-flagbox, .rz-shotpair .rz-goodbox { margin: 0; }
@media (min-width: 620px) {
  .rz-shotpair { grid-template-columns: minmax(0, 1fr) 248px; align-items: center; gap: 1.4rem; }
  /* phone screenshots keep their own width so the pair stays balanced */
  .rz-shotpair .rz-shot-tall img { width: auto; max-height: 540px; margin: 0 auto; }
}

/* ── pros / cons ──────────────────────────────────────────────────────── */
.rz-verdictcols { display: grid; gap: 0.8rem; margin: 1.2rem 0; }
.rz-vcol { background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve); padding: 1rem; }
.rz-vcol h3 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.7rem; }
.rz-vcol.rz-plus h3 { color: var(--tick-good); }
.rz-vcol.rz-minus h3 { color: var(--tick-bad); }
.rz-vcol ul { list-style: none; margin: 0; padding: 0; }
.rz-vcol li { position: relative; padding-left: 1.35rem; margin-bottom: 0.55rem; font-size: 0.93rem; color: var(--type-2); }
.rz-vcol li:last-child { margin-bottom: 0; }
.rz-vcol li::before { position: absolute; left: 0; top: -1px; font-weight: 700; }
.rz-vcol.rz-plus li::before { content: "+"; color: var(--tick-good); }
.rz-vcol.rz-minus li::before { content: "\2013"; color: var(--tick-bad); }
@media (min-width: 720px) { .rz-verdictcols { grid-template-columns: 1fr 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.rz-faq { border-top: 1px solid var(--rule); }
.rz-faq details { border-bottom: 1px solid var(--rule); }
.rz-faq summary {
  cursor: pointer; padding: 0.95rem 2rem 0.95rem 0; position: relative;
  font-weight: 600; color: var(--type); list-style: none; font-size: 0.98rem;
}
.rz-faq summary::-webkit-details-marker { display: none; }
.rz-faq summary::after {
  content: "+"; position: absolute; right: 0.35rem; top: 50%; transform: translateY(-50%);
  color: var(--azure); font-size: 1.3rem; font-weight: 400; line-height: 1;
}
.rz-faq details[open] summary::after { content: "\2013"; }
.rz-faq-a { padding: 0 0 1rem; color: var(--type-2); font-size: 0.94rem; }
.rz-faq-a p:last-child { margin-bottom: 0; }

/* ── author + RG ──────────────────────────────────────────────────────── */
.rz-byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem;
  font-size: 0.82rem; color: var(--type-dim); margin: 0.9rem 0 0;
}
.rz-byline b { color: var(--type-2); font-weight: 600; }
.rz-byline i { font-style: normal; color: var(--rule-hi); }

.rz-authorcard {
  display: grid; gap: 1rem; background: var(--panel);
  border: 1px solid var(--rule); border-radius: var(--curve); padding: 1.1rem;
}
.rz-authorcard h3 { margin-bottom: 0.3rem; font-size: 1.02rem; }
.rz-authorcard p { font-size: 0.9rem; color: var(--type-2); }

.rz-mugshot { display: flex; align-items: center; gap: 0.85rem; }
.rz-mugshot img {
  width: 76px; height: 76px; flex-shrink: 0; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--rule-hi);
}
.rz-mugname {
  display: block; font-family: var(--face-head); font-weight: 700; font-size: 1rem;
  color: var(--type); line-height: 1.25;
}
.rz-mugrole {
  display: block; font-size: 0.82rem; color: var(--type-dim);
  line-height: 1.4; margin-top: 0.15rem;
}

@media (min-width: 620px) {
  .rz-authorcard { grid-template-columns: 190px minmax(0, 1fr); gap: 1.4rem; align-items: start; }
  .rz-mugshot { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .rz-mugshot img { width: 112px; height: 112px; }
}

.rz-rgstrip {
  background: var(--ink-2); border: 1px solid var(--rule); border-left: 3px solid var(--tick-bad);
  padding: 1rem 1.1rem; margin: 1.4rem 0; font-size: 0.88rem; color: var(--type-2);
}
.rz-rgstrip strong { color: var(--type); }

/* ── review page layout ───────────────────────────────────────────────── */
.rz-dossier { padding-bottom: 1rem; }

.rz-masthead { padding: 1.6rem 0 0.4rem; }
.rz-masthead h1 { margin-bottom: 0.5rem; }
.rz-idrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.rz-idrow img { width: 160px; height: 60px; border-radius: var(--curve-s); flex-shrink: 0; }

.rz-herofig { margin: 1.2rem 0; }
/* the hero art is drawn portrait 4:5 to fill the desktop column with no crop;
   on a phone it is shown a little shorter so it does not swallow the screen */
.rz-herofig img {
  width: 100%; border-radius: var(--curve); border: 1px solid var(--rule);
  aspect-ratio: 5 / 6; object-fit: cover;
}
@media (min-width: 620px) { .rz-herofig img { aspect-ratio: 4 / 5; } }

.rz-scoreline {
  display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 0.9rem 1rem; margin: 1.2rem 0;
}
.rz-scorebig {
  font-family: var(--face-head); font-size: 2.1rem; font-weight: 700;
  color: var(--type); line-height: 1;
}
.rz-scorebig sub { font-size: 0.9rem; font-weight: 400; color: var(--type-dim); vertical-align: baseline; }
.rz-scoresay { font-size: 0.9rem; color: var(--type-2); flex: 1 1 200px; }

.rz-toc {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 1rem 1.1rem; margin: 1.4rem 0;
}
.rz-toc h2 { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--azure); margin-bottom: 0.6rem; }
.rz-toc ol { margin: 0; padding-left: 1.1rem; color: var(--type-dim); font-size: 0.92rem; }
.rz-toc li { margin-bottom: 0.32rem; }
.rz-toc a { color: var(--type-2); }
.rz-toc a:hover { color: var(--azure); }

/* rail summary card */
.rz-railcard {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 1rem 1.1rem; margin: 1rem 0;
}
.rz-railscore { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.rz-railscore-n {
  font-family: var(--face-head); font-size: 2.1rem; font-weight: 700;
  color: var(--azure); line-height: 1;
}
.rz-railscore-l { font-size: 0.78rem; color: var(--type-dim); line-height: 1.35; }
.rz-railfacts { margin: 0 0 1rem; font-size: 0.84rem; }
.rz-railfacts > div {
  display: flex; justify-content: space-between; gap: 0.6rem;
  padding: 0.42rem 0; border-bottom: 1px solid var(--rule);
}
.rz-railfacts > div:last-child { border-bottom: 0; }
.rz-railfacts dt { color: var(--type-dim); }
.rz-railfacts dd { margin: 0; color: var(--type); font-weight: 600; text-align: right; }
.rz-railfacts dd.rz-good { color: var(--tick-good); }
.rz-railfacts dd.rz-bad { color: var(--tick-warn); }
.rz-railnote { font-size: 0.72rem; color: var(--type-dim); margin: 0.7rem 0 0; text-align: center; }

/* ── desktop composition ──────────────────────────────────────────────── */
/* Masthead becomes two columns: the read on the left, the art on the right.
   Stops the page opening with a 700px vertical run before any content. */
@media (min-width: 900px) {
  .rz-masthead {
    display: grid; grid-template-columns: 1.12fr 0.88fr;
    column-gap: 2.2rem; align-items: start; padding-top: 2.2rem;
  }
  .rz-mast-head { grid-column: 1; grid-row: 1; min-width: 0; }
  .rz-mast-foot { grid-column: 1; grid-row: 2; min-width: 0; }
  .rz-herofig { grid-column: 2; grid-row: 1 / span 2; margin: 0; align-self: stretch; }
  .rz-herofig img { aspect-ratio: auto; height: 100%; min-height: 380px; object-fit: cover; }
  .rz-masthead .rz-lede { max-width: 44ch; }
}

/* Body: quiet rail on the left, the article beside it, the pair centred.
   Nothing is left hanging in an empty column. */
@media (min-width: 1000px) {
  .rz-dossier-split {
    display: grid; grid-template-columns: 244px minmax(0, 1fr);
    gap: 3rem; align-items: start; justify-content: center;
  }
  .rz-dossier-split > article { grid-column: 2; grid-row: 1; min-width: 0; }
  .rz-rail {
    grid-column: 1; grid-row: 1; align-self: start;
    position: sticky; top: calc(var(--bar-h) + 1.2rem);
  }
  .rz-toc { margin: 0 0 1rem; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.62rem; }
}

/* the fact tiles sit between the two, so keep them on the article's grid */
@media (min-width: 1000px) {
  .rz-factband .rz-tilerow { max-width: none; }
}

/* prose measure inside the article */
.rz-say { max-width: var(--read); }
.rz-say p { color: var(--type-2); }
.rz-say strong { color: var(--type); }

/* ── review index (the /reviews hub) ──────────────────────────────────── */
.rz-index { padding-bottom: 2.5rem; }

/* full-bleed hero band: the boulevard art behind a left-side scrim */
.rz-indexhero { position: relative; overflow: hidden; border-bottom: 1px solid var(--rule); }
.rz-indexhero-art {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 42%;
}
.rz-indexhero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(8, 12, 18, 0.82);
}
@media (min-width: 720px) {
  /* darkest where the centred text sits, opening up toward the neon at the edges */
  .rz-indexhero::before {
    background: radial-gradient(ellipse 66% 100% at 50% 44%, rgba(8,12,18,0.94) 0%,
                rgba(8,12,18,0.72) 52%, rgba(8,12,18,0.30) 100%);
  }
}
.rz-indexhero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 110px; z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,18,0), var(--ink));
}
.rz-indexhero-in {
  position: relative; z-index: 2; max-width: 820px; margin: 0 auto;
  padding: 3.2rem var(--pad) 2.8rem; text-align: center;
}
.rz-indexhero h1 { max-width: 21ch; margin-inline: auto; text-shadow: 0 2px 22px rgba(0,0,0,0.55); }
.rz-indexhero .rz-lede { max-width: 58ch; margin-inline: auto; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
.rz-indexhero .rz-byline { justify-content: center; }

/* headline figures: an open stat strip, numbers over labels, hairline dividers */
.rz-tally {
  list-style: none; margin: 2rem auto 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 10rem));
  gap: 1.3rem 0; justify-content: center;
}
.rz-tally li { text-align: center; padding: 0 1.4rem; }
.rz-tally b {
  display: block; font-family: var(--face-head); font-size: 2.1rem; font-weight: 700;
  line-height: 1.05; color: var(--azure); font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.rz-tally span { font-size: 0.8rem; color: var(--type-2); text-shadow: 0 1px 10px rgba(0,0,0,0.7); }
@media (min-width: 720px) {
  .rz-tally { display: flex; justify-content: center; gap: 0; }
  .rz-tally li { padding: 0 2.1rem; }
  .rz-tally li + li { border-left: 1px solid rgba(255, 255, 255, 0.16); }
}

.rz-index > .rz-hold > .rz-disclose { margin: 1.3rem 0 0.2rem; }

/* the ranked deck: every casino is a card built on its scene art */
.rz-deck { list-style: none; margin: 1.7rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.rz-crest {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  overflow: hidden;
  transition: border-color 0.18s var(--glide), transform 0.18s var(--glide),
              box-shadow 0.18s var(--glide);
}
.rz-crest:hover {
  border-color: var(--rule-hi); transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.rz-crest-vis { position: relative; }
.rz-crest-art {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  object-position: 50% var(--gaze, 35%);
}
.rz-crest-vis::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,12,18,0.18) 0%, rgba(8,12,18,0) 26%,
              rgba(8,12,18,0) 48%, rgba(8,12,18,0.88) 100%);
}
.rz-crest-rank {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  padding: 0.22rem 0.66rem; border-radius: 999px;
  background: rgba(8,12,18,0.78); border: 1px solid var(--rule-hi);
  font-family: var(--face-head); font-size: 0.82rem; font-weight: 700; color: var(--type);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.rz-crest-lead .rz-crest-rank { border-color: var(--amber); color: var(--amber); }
.rz-crest-score {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  padding: 0.22rem 0.66rem; border-radius: 999px;
  background: rgba(8,12,18,0.78); border: 1px solid var(--azure);
  font-size: 0.72rem; color: var(--type-2);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.rz-crest-score b {
  font-family: var(--face-head); font-size: 1.02rem; color: var(--type);
  font-variant-numeric: tabular-nums;
}
.rz-crest-mark {
  position: absolute; left: 0.9rem; bottom: 0.85rem; z-index: 2;
  width: 118px; height: 44px; border-radius: var(--curve-s);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.rz-crest-core { flex: 1; display: flex; flex-direction: column; gap: 0.85rem; padding: 1.15rem 1.15rem 1.25rem; }
.rz-crest-core h2 { font-size: 1.22rem; margin: 0; }
.rz-crest-core h2 a { color: var(--type); }
.rz-crest-core h2 a:hover { color: var(--azure); text-decoration: none; }
.rz-crest-say { margin: 0; font-size: 0.94rem; color: var(--type-2); }
.rz-crest-facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem 1rem;
  margin: 0; padding-top: 0.9rem; border-top: 1px solid var(--rule);
}
.rz-crest-facts dt {
  font-size: 0.64rem; letter-spacing: 0.11em; text-transform: uppercase;
  font-weight: 600; color: var(--type-dim);
}
.rz-crest-facts dd { margin: 0; font-size: 0.88rem; color: var(--type); }
.rz-crest-facts dd.rz-good { color: var(--tick-good); }
.rz-crest-facts dd.rz-bad { color: var(--tick-bad); }
.rz-crest-go { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.rz-crest-read { font-size: 0.88rem; font-weight: 600; white-space: nowrap; }

/* method panels */
.rz-splitpanels { display: grid; gap: 1rem; margin: 1.3rem 0; }
.rz-splitpanels .rz-panel p:last-child { margin-bottom: 0; }

/* where-next tiles */
.rz-trailgrid { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
.rz-trailgrid a {
  display: flex; gap: 0.95rem; align-items: flex-start; height: 100%;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 1rem 1.05rem; color: var(--type-2);
  transition: border-color 0.18s var(--glide), transform 0.18s var(--glide);
}
.rz-trailgrid a:hover { border-color: var(--azure); transform: translateY(-2px); text-decoration: none; }
.rz-trail-ic {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--curve-s);
  background: var(--azure-haze); display: grid; place-items: center;
}
.rz-trail-ic img { width: 20px; height: 20px; filter: invert(58%) sepia(72%) saturate(1900%) hue-rotate(176deg) brightness(1.04); }
.rz-trail-tx { font-size: 0.88rem; line-height: 1.55; }
.rz-trail-tx b {
  display: block; font-family: var(--face-head); font-size: 0.98rem;
  color: var(--type); margin-bottom: 0.18rem;
}

@media (min-width: 720px) {
  .rz-tally { grid-template-columns: repeat(4, 1fr); }
  .rz-deck { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
  .rz-splitpanels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rz-trailgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* #1 spans the row and turns sideways: content left, full-height art right */
  .rz-crest-lead { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) 46%; }
  .rz-crest-lead .rz-crest-vis { order: 2; }
  .rz-crest-lead .rz-crest-art { height: 100%; aspect-ratio: auto; min-height: 430px; }
  .rz-crest-lead .rz-crest-vis::after {
    background: linear-gradient(90deg, rgba(19,28,40,0.9) 0%, rgba(19,28,40,0) 34%),
                linear-gradient(180deg, rgba(8,12,18,0) 60%, rgba(8,12,18,0.8) 100%);
  }
  .rz-crest-lead .rz-crest-core {
    order: 1; padding: 1.7rem 1.8rem; gap: 1.05rem; justify-content: center;
  }
  .rz-crest-lead .rz-crest-core h2 { font-size: 1.55rem; }
  .rz-crest-lead .rz-crest-say { font-size: 1rem; }
  .rz-crest-lead .rz-crest-go { margin-top: 0.2rem; }
}
@media (min-width: 1000px) {
  .rz-indexhero-in { padding: 4.6rem var(--pad) 3.6rem; }
  .rz-indexhero h1 { font-size: 2.7rem; }
}

/* ── plain-page dress-up: rule cards, never-list, mail card, org row, 18+ ── */
.rz-rulecards { display: grid; gap: 0.85rem; }
.rz-rulecards p {
  margin: 0; background: var(--panel); border: 1px solid var(--rule);
  border-radius: var(--curve); padding: 1rem 1.1rem; font-size: 0.95rem;
}
.rz-rulecards p strong { color: var(--type); }
@media (min-width: 720px) { .rz-rulecards { grid-template-columns: repeat(2, 1fr); } }

.rz-neverlist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
.rz-neverlist li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--ink-2); border: 1px solid var(--rule); border-radius: var(--curve-s);
  padding: 0.8rem 1rem;
}
.rz-neverlist img { flex-shrink: 0; margin-top: 0.15rem; filter: invert(56%) sepia(44%) saturate(1600%) hue-rotate(324deg); }
.rz-neverlist p { margin: 0; font-size: 0.95rem; color: var(--type-2); }

.rz-mailcard {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 1.2rem 1.3rem; margin-top: 1.2rem;
}
.rz-mailcard > img { flex-shrink: 0; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
.rz-mailcard p { margin: 0; flex: 1 1 24ch; font-size: 0.97rem; color: var(--type-2); }
.rz-mailcard .rz-ctabtn { flex: 0 0 auto; }

.rz-orgrow { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: 0.85rem; }
.rz-orgrow li {
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 1rem 1.1rem;
}
.rz-orgrow p { margin: 0; font-size: 0.93rem; color: var(--type-2); line-height: 1.6; }
.rz-orgrow a { font-weight: 700; }
@media (min-width: 720px) { .rz-orgrow { grid-template-columns: repeat(2, 1fr); } }

.rz-adultbox {
  display: flex; align-items: flex-start; gap: 0.9rem;
  background: var(--ink-2); border: 1px solid var(--rule); border-left: 3px solid var(--tick-bad);
  padding: 1.1rem 1.2rem; margin-top: 1.2rem;
}
.rz-adultbox p { margin: 0; font-size: 0.95rem; color: var(--type-2); }

/* ── homepage flagship: hero actions, top-three spotlight, wings ── */
.rz-heroacts { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.5rem; }
.rz-ghostbtn {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.68rem 1.25rem;
  border: 1px solid var(--rule-hi); border-radius: var(--curve-s);
  background: rgba(8, 12, 18, 0.35); color: var(--type); font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.16s var(--glide), background 0.16s var(--glide);
}
.rz-ghostbtn:hover { border-color: var(--azure); background: var(--azure-haze); text-decoration: none; }
@media (min-width: 841px) {
  .rz-indexhero.rz-flagship .rz-indexhero-in { padding: 5.4rem var(--pad) 4.2rem; }
  .rz-indexhero.rz-flagship h1 { font-size: 3rem; }
}

.rz-spotrow { display: grid; gap: 1rem; margin: 1.5rem 0 0; }
.rz-spot {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: var(--panel); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 1.1rem 1.1rem 1.2rem;
}
.rz-spot-top { display: flex; align-items: center; gap: 0.7rem; }
.rz-spot-top img { height: 32px; width: auto; }
.rz-spot-top .rz-medal { width: 36px; height: 36px; flex: 0 0 36px; font-size: 1rem; }
.rz-spot-score { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; }
.rz-spot-score b { font-family: var(--face-head); font-size: 1.35rem; color: var(--azure); line-height: 1.05; }
.rz-spot-score i { font-style: normal; font-size: 0.66rem; color: var(--type-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.rz-spot-name { margin: 0.15rem 0 0; font-family: var(--face-head); font-weight: 700; font-size: 1.12rem; color: var(--type); }
.rz-spot-line { margin: 0; font-size: 0.92rem; color: var(--type-2); line-height: 1.55; flex: 1; }
.rz-spot-go { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.45rem; }
.rz-spot-go .rz-ctabtn { justify-content: center; }
.rz-spot-read { font-size: 0.88rem; font-weight: 600; color: var(--type-2); text-align: center; }
.rz-spot-read:hover { color: var(--azure); }

.rz-wingrow { display: grid; gap: 1rem; margin: 1rem 0 0; }
.rz-wing {
  display: flex; flex-direction: column; gap: 0.4rem;
  background: var(--ink-2); border: 1px solid var(--rule); border-radius: var(--curve);
  padding: 1rem 1.1rem 1.05rem;
  transition: border-color 0.16s var(--glide), background 0.16s var(--glide);
}
.rz-wing:hover { border-color: var(--azure); background: var(--panel); text-decoration: none; }
.rz-wing img { width: 20px; height: 20px; filter: invert(84%) sepia(9%) saturate(400%) hue-rotate(175deg); }
.rz-wing b { color: var(--type); font-size: 1rem; }
.rz-wing span { color: var(--type-2); font-size: 0.88rem; line-height: 1.5; }

@media (min-width: 760px) {
  .rz-spotrow { grid-template-columns: repeat(3, 1fr); }
  .rz-wingrow { grid-template-columns: repeat(3, 1fr); }
}

/* ── money pages: podium blocks, medals, criteria, steps ─────── */
.rz-medal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  font-family: var(--face-head); font-weight: 700; font-size: 1.05rem;
  background: var(--ink-2); border: 1px solid var(--rule-hi); color: var(--type-2);
}
.rz-medal-1 { background: linear-gradient(160deg, #F2A33C, #B87016); border-color: #F2A33C; color: #14100a; }
.rz-medal-2 { background: linear-gradient(160deg, #C9D4E0, #8A98A8); border-color: #C9D4E0; color: #10141a; }
.rz-medal-3 { background: linear-gradient(160deg, #CE9468, #96613C); border-color: #CE9468; color: #150f0a; }
.rz-podium {
  border: 1px solid var(--rule); border-radius: var(--curve);
  background: var(--panel); margin: 1.5rem 0; overflow: hidden;
}
.rz-podium-top {
  display: flex; align-items: center; gap: 0.95rem; flex-wrap: wrap;
  padding: 1.15rem 1.2rem; border-bottom: 1px solid var(--rule);
  background: var(--ink-2);
}
.rz-podium-top img { border-radius: 6px; }
.rz-podium-who { flex: 1 1 8rem; min-width: 8rem; }
.rz-podium-who h3 { margin: 0; font-size: 1.22rem; }
.rz-podium-who span { display: block; font-size: 0.82rem; color: var(--type-dim); margin-top: 0.15rem; }
.rz-podium-score { text-align: right; }
.rz-podium-score b { font-family: var(--face-head); font-size: 1.5rem; color: var(--azure); }
.rz-podium-score i { display: block; font-style: normal; font-size: 0.72rem; color: var(--type-dim); }
.rz-podium-body { padding: 1.2rem; }
.rz-podium-body > p { margin: 0 0 1rem; }
.rz-podfacts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem 1rem;
  margin: 0 0 1.1rem; padding: 0.9rem 1rem;
  border: 1px solid var(--rule); border-radius: var(--curve); background: var(--ink-2);
  font-size: 0.88rem;
}
.rz-podfacts div { display: flex; justify-content: space-between; gap: 0.6rem; }
.rz-podfacts dt { color: var(--type-dim); }
.rz-podfacts dd { margin: 0; color: var(--type); font-weight: 600; text-align: right; }
.rz-podium-go { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-top: 1.1rem; }
.rz-podium-go .rz-ctabtn { flex: 0 1 auto; }
.rz-podium-read { font-size: 0.9rem; font-weight: 600; }
@media (min-width: 720px) {
  .rz-podfacts { grid-template-columns: repeat(3, 1fr); }
}
.rz-critgrid { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 0.8rem; }
.rz-critgrid li {
  border: 1px solid var(--rule); border-radius: var(--curve);
  background: var(--panel); padding: 1rem 1.1rem;
}
.rz-critgrid b { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.4rem; font-size: 0.98rem; }
.rz-critgrid img { opacity: 0.9; }
.rz-critgrid p { margin: 0; font-size: 0.88rem; color: var(--type-2); }
@media (min-width: 720px) { .rz-critgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .rz-critgrid { grid-template-columns: repeat(3, 1fr); } }
.rz-stepflow { list-style: none; margin: 1.4rem 0; padding: 0; counter-reset: rzstep; }
.rz-stepflow li {
  position: relative; counter-increment: rzstep;
  padding: 0 0 1.25rem 3.1rem; border-left: 1px dashed var(--rule-hi); margin-left: 1.05rem;
}
.rz-stepflow li:last-child { border-left-color: transparent; padding-bottom: 0.2rem; }
.rz-stepflow li::before {
  content: counter(rzstep); position: absolute; left: -1.1rem; top: -0.1rem;
  width: 2.15rem; height: 2.15rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--face-head); font-weight: 700; font-size: 0.95rem;
  background: var(--panel); border: 1px solid var(--azure); color: var(--azure);
}
.rz-stepflow b { display: block; margin-bottom: 0.25rem; }
.rz-stepflow p { margin: 0; font-size: 0.92rem; color: var(--type-2); }
.rz-market > .rz-hold > .rz-disclose { margin: 1.3rem 0 0.2rem; }
.rz-market .rz-dossier-split { margin-top: 1.6rem; }
.rz-plainhead {
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--rule);
  padding: 3rem 0 2.3rem;
}
.rz-plainhead h1 { font-size: clamp(1.65rem, 4vw, 2.3rem); margin: 0 0 0.7rem; }
.rz-plainhead p { color: var(--type-2); max-width: 62ch; margin: 0; }
.rz-prosecol { max-width: none; margin: 0 auto; }
.rz-prosecol .rz-slab h2 { margin-top: 2.2rem; }
.rz-prosecol .rz-say { max-width: none; }
.rz-prosecol .rz-say p { line-height: 1.75; }
.rz-prosecol .rz-faq-a p { line-height: 1.7; }
.rz-studiogrid { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 0.7rem; grid-template-columns: repeat(2, 1fr); }
.rz-studiogrid li { border: 1px solid var(--rule); background: var(--panel); padding: 0.55rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rz-studiotile { background: #FFFFFF; display: flex; align-items: center; justify-content: center; padding: 0.55rem 0.4rem; }
.rz-studiotile img { width: 120px; height: 45px; object-fit: contain; }
.rz-studiogrid li > span { font-size: 0.72rem; color: var(--type-dim); line-height: 1.4; text-align: center; }
@media (min-width: 560px) { .rz-studiogrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .rz-studiogrid { grid-template-columns: repeat(4, 1fr); } }
