@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* metric-matched fallback for the display webfont — shrinks font-swap
   reflow (CLS) on first paint by aligning the system-ui fallback box
   size to Unbounded's typical glyph metrics before the webfont loads */
@font-face {
  font-family: "rv-display-fallback";
  src: local("Arial");
  size-adjust: 141%;
  ascent-override: 84%;
  descent-override: 20%;
  line-gap-override: 0%;
}

:root {
  --rv-bg: #0b1020;
  --rv-bg-deep: #060912;
  --rv-surface: #141a2e;
  --rv-surface-2: #1a2138;
  --rv-line: #2a3352;
  --rv-ink: #eef1fb;
  --rv-ink-dim: #a6afc9;
  --rv-primary: #3d5afe;
  --rv-accent: #5c7cfa;
  --rv-primary-rgb: 61, 90, 254;
  --rv-cta: #3448d6;
  --rv-cta-hover: #2a3ab8;
  --rv-gold: #f5c542;
  --rv-ff-display: "Unbounded", "rv-display-fallback", system-ui, "Segoe UI", Arial, sans-serif;
  --rv-ff-body: "Golos Text", system-ui, "Segoe UI", Arial, sans-serif;
  --rv-fs-body: 1rem;
  --rv-fs-small: 0.8125rem;
  --rv-fs-card: 1.2rem;
  --rv-fs-h2: clamp(1.4rem, 1.05rem + 1.6vw, 2rem);
  --rv-fs-hero: clamp(1.7rem, 1.1rem + 3vw, 2.6rem);
  --rv-lh: 1.62;
  --rv-r-s: 8px;
  --rv-r-m: 14px;
  --rv-r-pill: 999px;
  --rv-header-h: 66px;
  --rv-rail-w: 264px;
  --rv-gap-section: 72px;
  --rv-gap-section-mob: 46px;
  --rv-gap: 22px;
  --rv-ease-in: cubic-bezier(0.16, 1, 0.3, 1);
  --rv-ease-out: cubic-bezier(0.7, 0, 0.84, 0);
  --rv-ease-tog: cubic-bezier(0.65, 0, 0.35, 1);
  --rv-t-fast: 150ms;
  --rv-t-med: 260ms;
  --rv-t-slow: 360ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rv-header-h) + 16px);
  overflow-x: clip;
}

body {
  background: var(--rv-bg) radial-gradient(ellipse 900px 500px at 12% -8%, rgba(92, 124, 250, 0.16), transparent 60%),
              radial-gradient(ellipse 800px 480px at 100% 0%, rgba(61, 90, 254, 0.14), transparent 55%);
  background-attachment: fixed;
  color: var(--rv-ink);
  font-family: var(--rv-ff-body);
  font-size: var(--rv-fs-body);
  line-height: var(--rv-lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { background: transparent; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: var(--rv-accent); text-decoration: none; }
ul, ol { padding-left: 1.4em; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--rv-bg), 0 0 0 4px var(--rv-primary);
}

::selection { background: rgba(var(--rv-primary-rgb), 0.35); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--rv-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--rv-line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--rv-ink-dim); }

.nowrap { white-space: nowrap; }

.rv-shell {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .rv-shell { padding-inline: 24px; }
}

.skip-link {
  position: absolute;
  left: 8px; top: 8px; z-index: 300;
  padding: 10px 18px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta);
  color: #fff;
  transform: translateY(-200%);
  transition: transform var(--rv-t-fast) var(--rv-ease-in);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ============ HEADER ============ */
.rv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--rv-bg-deep);
  border-bottom: 1px solid var(--rv-line);
}
.rv-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--rv-header-h);
}
.rv-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  flex-shrink: 0;
  transition: transform var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-header__brand:hover { transform: translateY(-1px); }
.rv-header__brand svg { height: 24px; width: auto; color: var(--rv-ink); }
.rv-header__pill {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--rv-r-pill);
  background: var(--rv-surface);
  box-shadow: inset 0 0 0 1px var(--rv-line);
  font-size: var(--rv-fs-small);
  color: var(--rv-ink-dim);
  white-space: nowrap;
}
.rv-pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #35d07f;
  animation: rv-pulse-dot 1.4s ease-in-out infinite;
}
@keyframes rv-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}
.rv-header__nav { display: none; }
.rv-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rv-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--rv-t-med) var(--rv-ease-tog);
}
.rv-header__cta:hover { background: var(--rv-cta-hover); }
.rv-burger {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px 11px;
  border-radius: var(--rv-r-s);
  transition: background var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-burger:hover { background: var(--rv-surface); }
.rv-burger span {
  display: block; height: 2px; border-radius: var(--rv-r-pill);
  background: var(--rv-ink);
  transition: transform var(--rv-t-med) var(--rv-ease-tog), opacity var(--rv-t-med) var(--rv-ease-tog);
}
.rv-burger span:nth-child(1) { width: 100%; }
.rv-burger span:nth-child(2) { width: 66%; }
.rv-burger span:nth-child(3) { width: 86%; }
.rv-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rv-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rv-burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 640px) {
  .rv-header__pill { display: inline-flex; }
}
@media (min-width: 768px) {
  .rv-header__brand svg { height: 27px; }
  .rv-header__cta { min-height: 44px; padding: 10px 22px; font-size: 0.95rem; }
}
@media (min-width: 1040px) {
  .rv-header__nav { display: flex; align-items: center; gap: 24px; margin-left: 30px; }
  .rv-header__nav a {
    color: var(--rv-ink-dim);
    font-family: var(--rv-ff-display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    padding: 8px 2px;
    transition: color var(--rv-t-fast) var(--rv-ease-tog);
  }
  .rv-header__nav a:hover { color: var(--rv-ink); }
  .rv-burger { display: none; }
}

/* ============ DRAWER ============ */
.rv-scrim {
  position: fixed; top: var(--rv-header-h); right: 0; bottom: 0; left: 0;
  z-index: 140;
  background: rgba(4, 6, 12, 0.66);
  opacity: 0; pointer-events: none;
  transition: opacity var(--rv-t-med) var(--rv-ease-tog);
}
.rv-scrim.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 1040px) { .rv-scrim { display: none; } }

.rv-drawer {
  position: fixed; top: var(--rv-header-h); bottom: 0; right: 0;
  z-index: 150;
  width: min(300px, 86vw);
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px;
  background: var(--rv-bg-deep);
  border-left: 1px solid var(--rv-line);
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(105%);
  transition: transform var(--rv-t-slow) var(--rv-ease-tog), visibility 0s linear var(--rv-t-slow);
}
.rv-drawer.is-open {
  visibility: visible;
  transform: translateX(0);
  transition: transform var(--rv-t-slow) var(--rv-ease-tog), visibility 0s;
}
.rv-drawer a {
  display: flex; align-items: center; min-height: 44px;
  padding: 10px 12px; border-radius: var(--rv-r-s);
  color: var(--rv-ink); font-weight: 500;
  transition: background var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-drawer a:hover { background: var(--rv-surface); }
.rv-drawer__cta {
  margin-top: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta) !important;
  color: #fff !important;
  font-weight: 700;
}
@media (min-width: 1040px) { .rv-drawer { display: none; } }

/* ============ HERO ============ */
.rv-hero {
  position: relative;
  overflow: clip;
  background: linear-gradient(175deg, var(--rv-surface) 0%, var(--rv-bg-deep) 100%);
  border-bottom: 1px solid var(--rv-line);
  padding-block: clamp(20px, 3.6vw, 34px);
}
.rv-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--rv-primary-rgb), 0.35), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.rv-hero__grid {
  position: relative;
  display: grid;
  gap: 22px;
}
.rv-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: var(--rv-r-pill);
  background: rgba(var(--rv-primary-rgb), 0.14);
  color: var(--rv-accent);
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: var(--rv-fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: max-content;
}
.rv-hero__title {
  margin-top: 14px;
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: var(--rv-fs-hero);
  line-height: 1.12;
  max-width: 20ch;
}
.rv-hero__lead {
  margin-top: 12px;
  max-width: 56ch;
  color: var(--rv-ink-dim);
  font-size: 0.98rem;
}
.rv-hero__row {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ---- hero right column: quick-access card (replaces lone medallion) ---- */
.rv-hero__side {
  position: relative;
}
.rv-hero__card {
  position: relative;
  overflow: clip;
  border-radius: var(--rv-r-m);
  border: 1px solid rgba(var(--rv-primary-rgb), 0.4);
  background: linear-gradient(160deg, var(--rv-surface) 0%, var(--rv-surface-2) 100%);
  padding: 20px 20px 22px;
}
.rv-hero__card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--rv-primary-rgb), 0.32), transparent 70%);
  pointer-events: none;
  animation: rv-hero-card-glow 4.5s ease-in-out infinite;
}
@keyframes rv-hero-card-glow {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-6px); }
}
.rv-hero__card-icon {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  opacity: 0.85;
  animation: rv-hero-visual-float 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rv-hero-visual-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.rv-hero__card-head {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: var(--rv-fs-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rv-accent);
}
.rv-hero__card-title {
  position: relative;
  margin-top: 10px;
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1.3;
}
.rv-hero__card-title span { color: var(--rv-accent); }
.rv-hero__card-links {
  position: relative;
  margin-top: 16px;
  display: grid;
  gap: 9px;
}
.rv-hero__card-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: var(--rv-r-s);
  background: rgba(238, 241, 251, 0.05);
  box-shadow: inset 0 0 0 1px var(--rv-line);
  color: var(--rv-ink);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--rv-t-fast) var(--rv-ease-tog), box-shadow var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-hero__card-link:hover {
  background: rgba(var(--rv-primary-rgb), 0.14);
  box-shadow: inset 0 0 0 1px var(--rv-accent);
}
.rv-hero__card-link em {
  font-style: normal;
  color: var(--rv-ink-dim);
  font-weight: 500;
  font-size: 0.82rem;
}
.rv-hero__card-cta {
  position: relative;
  margin-top: 14px;
  display: flex;
}
.rv-hero__card-cta .rv-btn { width: 100%; }
.rv-hero__card-foot {
  position: relative;
  margin-top: 12px;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem;
  color: var(--rv-ink-dim);
}
.rv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta);
  color: #fff;
  font-weight: 700;
  transition: background var(--rv-t-med) var(--rv-ease-tog);
}
.rv-btn:hover { background: var(--rv-cta-hover); }
.rv-btn--ghost {
  background: rgba(238, 241, 251, 0.06);
  box-shadow: inset 0 0 0 1px rgba(238, 241, 251, 0.35);
}
.rv-btn--ghost:hover { background: rgba(238, 241, 251, 0.12); }
.rv-btn--pulse {
  position: relative;
  animation: rv-pulse-glow 2.2s var(--rv-ease-tog) infinite;
}
.rv-btn--pulse:hover { animation-play-state: paused; }
@keyframes rv-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--rv-primary-rgb), 0.55); }
  70% { box-shadow: 0 0 0 13px rgba(var(--rv-primary-rgb), 0); }
}
.rv-hero__meta {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: var(--rv-fs-small);
  color: var(--rv-ink-dim);
}
.rv-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.rv-hero__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--rv-accent);
  font-weight: 700; font-size: 0.76rem;
}

/* ---- winners ticker ---- */
.rv-ticker {
  margin-top: 20px;
  border-top: 1px solid var(--rv-line);
  padding-top: 16px;
  overflow: hidden;
}
.rv-ticker__label {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: var(--rv-fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rv-ink-dim);
  margin-bottom: 10px;
}
.rv-ticker__body { overflow: hidden; }
.rv-ticker__track {
  display: flex;
  width: max-content;
  padding-block: 6px; margin-block: -6px;
  animation: rv-ticker-scroll 34s linear infinite;
}
.rv-ticker__track:hover { animation-play-state: paused; }
@keyframes rv-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rv-ticker__item {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 9px;
  margin-right: 10px;
  padding: 8px 13px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-pill);
  font-size: 0.84rem;
  white-space: nowrap;
}
.rv-ticker__item b { color: var(--rv-ink); font-weight: 600; }
.rv-ticker__item .rv-win-amt { color: var(--rv-gold); font-weight: 700; }

@media (min-width: 900px) {
  .rv-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    grid-template-rows: auto auto;
    align-items: start;
    gap: 10px 32px;
  }
  .rv-hero__title { font-size: var(--rv-fs-hero); }
  .rv-hero__main { grid-column: 1; grid-row: 1; }
  .rv-hero__side { grid-column: 2; grid-row: 1 / span 2; }
  .rv-ticker { grid-column: 1; grid-row: 2; margin-top: 6px; }
}

/* ============ LAYOUT: sidebar RIGHT + main-stream ============ */
.rv-layout {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
.rv-main {
  min-width: 0;
}
.rv-main > * + * { margin-block-start: var(--rv-gap-section-mob); }
@media (min-width: 768px) {
  .rv-main > * + * { margin-block-start: var(--rv-gap-section); }
}

@media (min-width: 1120px) {
  .rv-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--rv-rail-w);
    gap: var(--rv-gap);
    padding-inline: 24px;
  }
}

/* ---- right sidebar ---- */
.rv-rail {
  display: none;
}
@media (min-width: 1120px) {
  .rv-rail {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: calc(var(--rv-header-h) + var(--rv-gap));
    align-self: start;
    max-height: calc(100vh - var(--rv-header-h) - var(--rv-gap) * 2);
    overflow-y: auto;
    margin-block-start: var(--rv-gap-section);
    padding-bottom: 8px;
  }
}
.rv-rail__card {
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  padding: 18px 16px;
}
.rv-rail__title {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--rv-ink-dim);
  margin-bottom: 12px;
}
.rv-rail__nav {
  display: flex; flex-direction: column; gap: 3px;
}
.rv-rail__nav a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--rv-r-s);
  color: var(--rv-ink);
  font-size: 0.92rem;
  transition: background var(--rv-t-fast) var(--rv-ease-tog), color var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-rail__nav a:hover { background: var(--rv-surface-2); color: var(--rv-accent); }
.rv-rail__promo {
  background: linear-gradient(160deg, var(--rv-surface) 0%, var(--rv-surface-2) 100%);
  border-color: rgba(var(--rv-primary-rgb), 0.4);
}
.rv-rail__promo-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--rv-r-pill);
  background: rgba(var(--rv-primary-rgb), 0.16);
  color: var(--rv-accent);
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rv-rail__promo-line {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.32;
  margin-bottom: 12px;
}
.rv-rail__cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 44px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta); color: #fff; font-weight: 700;
  transition: background var(--rv-t-med) var(--rv-ease-tog);
}
.rv-rail__cta:hover { background: var(--rv-cta-hover); }
.rv-rail__safe {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--rv-fs-small);
  color: var(--rv-ink-dim);
}
.rv-rail__age {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--rv-accent);
  font-family: var(--rv-ff-display);
  font-weight: 700; font-size: 0.8rem;
}

/* ============ copy-block (article) ============ */
.rv-article-section { }
.rv-copy {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.rv-copy :is(h1, h2, h3, p):first-child { margin-top: 0; }
.rv-copy p { margin: 0 0 1.2em; line-height: var(--rv-lh); }
.rv-copy strong, .rv-copy b { font-weight: 600; color: var(--rv-ink); }
.rv-copy h1, .rv-copy h2, .rv-copy h3 { margin: 1.3em 0 0.75em; line-height: 1.28; }
.rv-copy ul, .rv-copy ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.rv-copy ul { list-style-type: disc; }
.rv-copy ol { list-style-type: decimal; }
.rv-copy li { margin-bottom: 0.5em; }
.rv-copy li::marker { color: var(--rv-accent); }
.rv-copy a { color: var(--rv-accent); text-decoration: underline; transition: color 0.2s; }
.rv-copy a:hover { color: var(--rv-primary); }
.rv-copy > *:last-child { margin-bottom: 0; }

.rv-copy h1 {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 1.25rem + 2.1vw, 2.5rem);
  line-height: 1.16;
}
.rv-copy h2 {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: var(--rv-fs-h2);
  padding-bottom: 10px;
  position: relative;
}
.rv-copy h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 54px; height: 3px;
  border-radius: var(--rv-r-pill);
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-accent));
}
.rv-copy h3 {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: 1.28rem;
}
.rv-copy p, .rv-copy li { color: var(--rv-ink-dim); }

/* ---- table (comparison, always scroll-wrapped) ---- */
.rv-table-wrap {
  margin: 1.6em 0 2em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rv-line) var(--rv-bg-deep);
  border-radius: var(--rv-r-m);
  border: 1px solid var(--rv-line);
}
.rv-table-wrap table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.94em;
  background: var(--rv-surface);
}
.rv-table-wrap th, .rv-table-wrap td {
  padding: 0.8em 1em;
  border-bottom: 1px solid var(--rv-line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
}
.rv-table-wrap tr:last-child td { border-bottom: none; }
.rv-table-wrap th {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  background: var(--rv-surface-2);
  color: var(--rv-ink);
}
.rv-table-wrap td { color: var(--rv-ink-dim); }
.rv-table-wrap td:first-child { color: var(--rv-ink); font-weight: 600; }

/* ---- note-box callouts ---- */
.rv-note {
  margin: 1.8em 0;
  padding: 16px 18px;
  border-left: 3px solid var(--rv-accent);
  border-radius: var(--rv-r-s);
  background: var(--rv-surface);
  font-size: 0.95rem;
  color: var(--rv-ink-dim);
  transition: border-width var(--rv-t-fast) var(--rv-ease-tog), transform var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-note:hover { border-left-width: 5px; transform: translateX(2px); }
.rv-note strong { color: var(--rv-ink); }
.rv-note--warn { border-left-color: var(--rv-gold); }

/* ---- inline mid-cta band ---- */
.rv-mid-cta {
  margin: 2em 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--rv-r-m);
  background: linear-gradient(135deg, var(--rv-surface) 0%, var(--rv-surface-2) 100%);
  border: 1px solid rgba(var(--rv-primary-rgb), 0.35);
}
.rv-mid-cta__text {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--rv-ink);
  max-width: 46ch;
}
.rv-mid-cta__text span { color: var(--rv-accent); }

/* ============ numbered steps (registration) ============ */
.rv-steps {
  counter-reset: rv-step;
  display: grid;
  gap: 14px;
  margin: 1.6em 0 2em;
}
.rv-step {
  counter-increment: rv-step;
  position: relative;
  display: flex;
  gap: 14px;
  padding: 16px 16px 16px 14px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  transition: border-color var(--rv-t-med) var(--rv-ease-tog);
}
.rv-step:hover { border-color: var(--rv-accent); }
.rv-step::before {
  content: counter(rv-step);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rv-primary), var(--rv-accent));
  color: #fff;
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.rv-step__body { color: var(--rv-ink-dim); padding-top: 3px; }
.rv-step__body strong { color: var(--rv-ink); }

@media (min-width: 640px) {
  .rv-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============ datastrip (KPI) ============ */
.rv-datastrip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 560px) {
  .rv-datastrip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.rv-datastrip__item {
  padding: 16px 14px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  text-align: center;
}
.rv-datastrip__num {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rv-accent);
}
.rv-datastrip__label {
  font-size: var(--rv-fs-small);
  color: var(--rv-ink-dim);
  margin-top: 4px;
}

/* ============ section head (used by carousels/grids) ============ */
.rv-strip-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.rv-strip-head__title {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: var(--rv-fs-h2);
  line-height: 1.2;
}

/* ============ slot showcase grid ============ */
.rv-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 560px) {
  .rv-slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.rv-slot-card {
  position: relative;
  display: block;
  border-radius: var(--rv-r-m);
  overflow: clip;
  border: 1px solid var(--rv-line);
  background: var(--rv-surface);
  transition: border-color var(--rv-t-med) var(--rv-ease-tog), transform var(--rv-t-med) var(--rv-ease-tog);
}
.rv-slot-card:hover { border-color: var(--rv-accent); transform: translateY(-3px); }
.rv-slot-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: clip;
  background: var(--rv-surface-2);
}
.rv-slot-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--rv-t-slow) var(--rv-ease-tog);
}
.rv-slot-card:hover .rv-slot-card__media img { transform: scale(1.06); }
.rv-slot-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 9, 18, 0.86) 100%);
  opacity: 0;
  transition: opacity var(--rv-t-med) var(--rv-ease-tog);
}
.rv-slot-card:hover .rv-slot-card__play,
.rv-slot-card:focus-visible .rv-slot-card__play { opacity: 1; }
.rv-slot-card__play span {
  margin-bottom: 12px;
  padding: 7px 16px;
  border-radius: var(--rv-r-pill);
  background: var(--rv-cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
}
.rv-slot-card__name {
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--rv-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ providers marquee ============ */
.rv-providers-strip { overflow: hidden; }
.rv-providers-strip__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.rv-providers-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 6px;
  animation: rv-providers-flow 32s linear infinite;
}
.rv-providers-strip__track:hover { animation-play-state: paused; }
@keyframes rv-providers-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rv-providers-strip__cell {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 140px; height: 58px;
  margin-right: 12px;
  padding: 10px 18px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  transition: border-color var(--rv-t-fast) var(--rv-ease-tog), background var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-providers-strip__cell:hover { border-color: var(--rv-accent); background: var(--rv-surface-2); }
.rv-providers-strip__cell img {
  max-width: 100%; max-height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(0.86);
  opacity: 0.88;
  transition: filter var(--rv-t-fast) var(--rv-ease-tog), opacity var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-providers-strip__cell:hover img { filter: brightness(0) invert(1); opacity: 1; }
.rv-providers-strip__cell--text {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--rv-ink-dim);
  letter-spacing: 0.01em;
}
.rv-providers-strip__cell--text:hover { color: var(--rv-ink); }

/* ============ payments strip ============ */
.rv-payments-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.rv-payments-strip__cell {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 84px; height: 46px;
  padding: 8px 14px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-s);
  background: var(--rv-surface);
}
.rv-payments-strip__cell img {
  max-width: 100%; max-height: 22px;
  object-fit: contain;
  opacity: 0.92;
}

/* ============ bonus rail (3 cards) ============ */
.rv-bonus-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
@media (min-width: 860px) {
  .rv-bonus-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.rv-bonus-card {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 20px;
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  transition: border-color var(--rv-t-med) var(--rv-ease-tog), background var(--rv-t-med) var(--rv-ease-tog), transform var(--rv-t-med) var(--rv-ease-tog);
}
.rv-bonus-card::before {
  content: "";
  position: absolute; top: 0; left: 14px; right: 14px; height: 3px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--rv-t-med) var(--rv-ease-in);
}
.rv-bonus-card:hover { border-color: var(--rv-accent); background: var(--rv-surface-2); transform: translateY(-2px); }
.rv-bonus-card:hover::before { transform: scaleX(1); }
.rv-bonus-card--lead {
  border-color: rgba(var(--rv-primary-rgb), 0.55);
  background: linear-gradient(170deg, var(--rv-surface) 0%, var(--rv-surface-2) 100%);
}
.rv-bonus-card__tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--rv-r-pill);
  background: rgba(var(--rv-primary-rgb), 0.16);
  color: var(--rv-accent);
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: var(--rv-fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rv-bonus-card__name { font-weight: 600; font-size: 1.05rem; line-height: 1.35; }
.rv-bonus-card__value {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: var(--rv-fs-card);
  color: var(--rv-accent);
}
.rv-bonus-card__note { color: var(--rv-ink-dim); font-size: 0.92rem; }
.rv-bonus-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta); color: #fff; font-weight: 700;
  transition: background var(--rv-t-med) var(--rv-ease-tog);
}
.rv-bonus-card__cta:hover { background: var(--rv-cta-hover); }

/* ============ final CTA band ============ */
.rv-final-cta {
  position: relative;
  overflow: clip;
  padding: clamp(30px, 6vw, 52px) 0;
  border-radius: var(--rv-r-m);
  background: linear-gradient(135deg, var(--rv-surface) 0%, var(--rv-bg-deep) 100%);
  border: 1px solid var(--rv-line);
  text-align: center;
}
.rv-final-cta::after {
  content: "";
  position: absolute;
  bottom: -140px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 300px;
  background: radial-gradient(circle, rgba(var(--rv-primary-rgb), 0.28), transparent 70%);
  pointer-events: none;
}
.rv-final-cta__inner { position: relative; padding-inline: 20px; }
.rv-final-cta__title {
  font-family: var(--rv-ff-display);
  font-weight: 700;
  font-size: var(--rv-fs-h2);
  max-width: 32ch;
  margin-inline: auto;
}
.rv-final-cta__sub {
  margin-top: 10px;
  color: var(--rv-ink-dim);
  max-width: 46ch;
  margin-inline: auto;
}
.rv-final-cta__row {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

/* ============ FAQ accordion ============ */
.rv-faq-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 4px;
}
.rv-faq-item {
  border: 1px solid var(--rv-line);
  border-radius: var(--rv-r-m);
  background: var(--rv-surface);
  transition: border-color var(--rv-t-med) var(--rv-ease-tog);
}
.rv-faq-item.is-open { border-color: rgba(var(--rv-primary-rgb), 0.55); }
.rv-faq-item__q {
  position: relative;
  display: block; width: 100%; text-align: left;
  padding: 16px 52px 16px 18px;
  font-weight: 600;
  font-family: var(--rv-ff-display);
  line-height: 1.35;
  cursor: pointer;
  transition: color var(--rv-t-fast) var(--rv-ease-tog);
}
.rv-faq-item__q:hover { color: var(--rv-accent); }
.rv-faq-item__q::before, .rv-faq-item__q::after {
  content: "";
  position: absolute; right: 20px; top: calc(16px + 0.675em);
  width: 14px; height: 2px;
  border-radius: var(--rv-r-pill);
  background: var(--rv-primary);
  transition: transform var(--rv-t-med) var(--rv-ease-tog);
}
.rv-faq-item__q::after { transform: translateY(-50%) rotate(90deg); }
.rv-faq-item__q::before { transform: translateY(-50%); }
.rv-faq-item.is-open .rv-faq-item__q::after { transform: translateY(-50%) rotate(0deg); }
.rv-faq-item__body {
  overflow: hidden;
  height: 0;
  padding: 0 18px;
}
.rv-faq-item__a { color: var(--rv-ink-dim); margin: 0 0 16px; }

/* ============ back to top FAB ============ */
.rv-top-fab {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 180;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--rv-surface);
  box-shadow: inset 0 0 0 1px var(--rv-line), 0 6px 16px rgba(0,0,0,0.35);
  color: var(--rv-ink);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--rv-t-med) var(--rv-ease-tog), transform var(--rv-t-med) var(--rv-ease-tog);
}
.rv-top-fab.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.rv-top-fab svg { width: 18px; height: 18px; }
@media (min-width: 1040px) { .rv-top-fab { right: 24px; bottom: 24px; } }

/* ============ sticky mobile bottom CTA ============ */
.rv-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 190;
  display: flex;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--rv-bg-deep);
  border-top: 1px solid var(--rv-line);
  transform: translateY(0);
  transition: transform var(--rv-t-med) var(--rv-ease-tog);
}
.rv-sticky-cta.is-hidden { transform: translateY(110%); }
.rv-sticky-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px;
  border-radius: var(--rv-r-s);
  background: var(--rv-cta);
  color: #fff; font-weight: 700;
}
@media (min-width: 1040px) { .rv-sticky-cta { display: none; } }

/* ============ FOOTER ============ */
.rv-footer {
  margin-block-start: var(--rv-gap-section-mob);
  padding-block: 44px;
  background: var(--rv-bg-deep);
  border-top: 1px solid var(--rv-line);
}
@media (min-width: 768px) { .rv-footer { margin-block-start: var(--rv-gap-section); } }
.rv-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
@media (min-width: 640px) { .rv-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .rv-footer__grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: var(--rv-gap); } }
.rv-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.rv-footer__brand svg { height: 24px; width: auto; opacity: 0.92; color: var(--rv-ink); }
.rv-footer__about { color: var(--rv-ink-dim); font-size: 0.92rem; max-width: 36ch; }
.rv-footer__col { display: flex; flex-direction: column; gap: 8px; }
.rv-footer__head {
  font-family: var(--rv-ff-display);
  font-weight: 600;
  font-size: var(--rv-fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rv-ink-dim);
  margin-bottom: 4px;
}
.rv-footer__col a { display: inline-flex; align-items: center; min-height: 44px; color: var(--rv-ink); font-size: 0.95rem; padding-block: 4px; transition: color var(--rv-t-fast) var(--rv-ease-tog); }
.rv-footer__col a:hover { color: var(--rv-accent); }
.rv-footer__base {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--rv-line);
}
.rv-footer__age {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--rv-accent);
  font-family: var(--rv-ff-display);
  font-weight: 700; font-size: 0.8rem;
}
.rv-footer__legal { flex: 1 1 260px; min-width: 0; color: var(--rv-ink-dim); font-size: var(--rv-fs-small); }
.rv-footer__copy { color: var(--rv-ink-dim); font-size: var(--rv-fs-small); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv-btn--pulse, .rv-ticker__track, .rv-pulse-dot { animation: none; }
  .rv-drawer, .rv-bonus-card, .rv-note, .rv-top-fab, .rv-sticky-cta { transition: none; }
}

/* header flush with content */
header .rv-shell{max-width:1400px}

/* force dark base — fix transparent body-bg (white in light mode) */
html{color-scheme:dark;background-color:#0b1020}body{background-color:#0b1020}

/* hide sidebar scrollbar */
.rv-rail{scrollbar-width:none;-ms-overflow-style:none}.rv-rail::-webkit-scrollbar{width:0;height:0;display:none}

/* sidebar full height (no crop) */
.rv-rail{max-height:none;overflow:visible}
