@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --rt-bg: #121212;
  --rt-panel: #1e1e1e;
  --rt-panel-2: #262626;
  --rt-line: #333130;
  --rt-line-gold: rgb(212 175 55 / 0.22);
  --rt-text: #ece9e2;
  --rt-muted: #b3aea3;
  --rt-gold: #d4af37;
  --rt-gold-ink: #121212;
  --rt-red: #b02630;
  --rt-felt: #2e8b57;
  --rt-glass: rgb(30 30 30 / 0.74);
  --rt-glass-strong: rgb(24 24 24 / 0.86);
  --rt-blur: blur(14px) saturate(120%);
  --rt-head: "Montserrat", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --rt-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --rt-s1: 8px;
  --rt-s2: 16px;
  --rt-s3: 24px;
  --rt-s4: 48px;
  --rt-s5: 96px;
  --rt-r: 10px;
  --rt-r-lg: 18px;
  --rt-wrap: 1200px;
  --rt-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --rt-shadow: 0 10px 30px rgb(0 0 0 / 0.35);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--rt-bg);
  color: var(--rt-text);
  font-family: var(--rt-body);
  font-size: 1rem;
  line-height: 1.62;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--rt-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--rt-s2);
  text-wrap: balance;
}

h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

p { margin: 0 0 var(--rt-s2); }

a {
  color: var(--rt-gold);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 160ms var(--rt-ease), text-decoration-color 160ms var(--rt-ease);
}

a:hover { color: #ecd27a; }

a:focus-visible, summary:focus-visible, .rt-btn:focus-visible {
  outline: 2px solid var(--rt-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

ul, ol { margin: 0 0 var(--rt-s2); padding-left: 1.2em; }

li + li { margin-top: 6px; }

strong { font-weight: 600; color: #fff; }

.rt-skip {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 16px;
  background: var(--rt-gold);
  color: var(--rt-gold-ink);
  border-radius: var(--rt-r);
  font-weight: 600;
}

.rt-skip:focus { top: 12px; }

.rt-wrap { width: min(var(--rt-wrap), 100% - 32px); margin-inline: auto; }

.rt-head {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1120px, 100% - 24px);
  margin: 12px auto 0;
}

.rt-head__bar {
  display: flex;
  align-items: center;
  gap: var(--rt-s3);
  min-height: 60px;
  padding: 8px 10px 8px 22px;
  background: var(--rt-glass-strong);
  backdrop-filter: var(--rt-blur);
  -webkit-backdrop-filter: var(--rt-blur);
  border: 1px solid var(--rt-line-gold);
  border-radius: 999px;
  box-shadow: var(--rt-shadow);
  transition: background-color 180ms var(--rt-ease), border-color 180ms var(--rt-ease);
}

.rt-head.is-scrolled .rt-head__bar { background: rgb(18 18 18 / 0.92); border-color: rgb(212 175 55 / 0.35); }

.rt-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rt-text);
  text-decoration: none;
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.rt-logo:hover { color: #fff; }

.rt-logo__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--rt-gold);
  border-radius: 50%;
  color: var(--rt-gold);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.rt-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.rt-nav__link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--rt-text);
  text-decoration: none;
  font-size: 0.94rem;
  transition: background-color 160ms var(--rt-ease), color 160ms var(--rt-ease);
}

.rt-nav__link:hover { background: rgb(255 255 255 / 0.06); color: #fff; }

.rt-nav__link[aria-current="page"] { color: var(--rt-gold); }

.rt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--rt-gold);
  border-radius: 999px;
  background: var(--rt-gold);
  color: var(--rt-gold-ink);
  font-family: var(--rt-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 170ms var(--rt-ease), color 170ms var(--rt-ease), transform 170ms var(--rt-ease);
}

.rt-btn:hover {
  background: #e3c35a;
  color: var(--rt-gold-ink);
  transform: translateY(-1px);
}

.rt-btn--ghost { background: transparent; color: var(--rt-gold); }

.rt-btn--ghost:hover { background: rgb(212 175 55 / 0.12); color: #ecd27a; }

.rt-burger { display: none; margin-left: auto; }

.rt-burger__sum {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--rt-line-gold);
  border-radius: 999px;
  color: var(--rt-text);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}

.rt-burger__sum::-webkit-details-marker { display: none; }

.rt-burger__sum::after {
  content: "";
  width: 14px;
  height: 8px;
  border-top: 2px solid var(--rt-gold);
  border-bottom: 2px solid var(--rt-gold);
}

.rt-burger[open] .rt-burger__sum::after { height: 2px; border-bottom: 0; }

.rt-burger__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgb(22 22 22 / 0.97);
  border: 1px solid var(--rt-line-gold);
  border-radius: var(--rt-r-lg);
  box-shadow: var(--rt-shadow);
}

.rt-burger__panel a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--rt-r);
  color: var(--rt-text);
  text-decoration: none;
}

.rt-burger__panel a:hover { background: rgb(255 255 255 / 0.06); }

.rt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: var(--rt-s4);
  align-items: center;
  padding-block: 72px var(--rt-s5);
}

.rt-hero__text {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--rt-glass);
  backdrop-filter: var(--rt-blur);
  -webkit-backdrop-filter: var(--rt-blur);
  border: 1px solid var(--rt-line-gold);
  border-radius: var(--rt-r-lg);
  box-shadow: var(--rt-shadow);
  margin-right: -96px;
}

.rt-kicker {
  display: inline-block;
  margin-bottom: var(--rt-s2);
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rt-hero__title {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: var(--rt-s3);
}

.rt-hero__lead {
  max-width: 34em;
  font-size: 1.14rem;
  color: var(--rt-muted);
  margin-bottom: var(--rt-s3);
}

.rt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--rt-s3);
}

.rt-hero__meta {
  margin: 0;
  padding-top: var(--rt-s2);
  border-top: 1px solid var(--rt-line);
  color: var(--rt-muted);
  font-size: 0.88rem;
}

.rt-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 42px);
  margin: 0;
}

.rt-collage__frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--rt-r-lg);
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow: var(--rt-shadow);
  background: var(--rt-panel);
}

.rt-collage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-collage__frame--a {
  grid-column: 1 / 11;
  grid-row: 2 / 9;
  z-index: 1;
}

.rt-collage__frame--b {
  grid-column: 8 / 13;
  grid-row: 1 / 5;
  z-index: 2;
}

.rt-collage__frame--c {
  grid-column: 3 / 8;
  grid-row: 8 / 13;
  z-index: 3;
}

.rt-collage__frame--d {
  grid-column: 8 / 13;
  grid-row: 7 / 12;
  z-index: 2;
}

.rt-collage__cap {
  position: absolute;
  right: 0;
  bottom: -34px;
  margin: 0;
  color: var(--rt-muted);
  font-size: 0.8rem;
}

.rt-section { padding-block: var(--rt-s5); }

.rt-section--tight { padding-block: var(--rt-s4); }

.rt-section--band { background: var(--rt-panel); border-block: 1px solid var(--rt-line); }

.rt-sechead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--rt-s3) var(--rt-s4);
  align-items: end;
  margin-bottom: var(--rt-s4);
}

.rt-sechead__title { margin: 0; }

.rt-sechead__text { margin: 0; color: var(--rt-muted); }

.rt-bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  gap: var(--rt-s2);
}

.rt-tile {
  container-type: inline-size;
  container-name: tile;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--rt-r-lg);
  border: 1px solid rgb(255 255 255 / 0.08);
  background: var(--rt-panel);
  transition: border-color 180ms var(--rt-ease), transform 180ms var(--rt-ease);
}

.rt-tile:hover { border-color: var(--rt-line-gold); transform: translateY(-2px); }

.rt-tile--xl {
  grid-column: span 4;
  grid-row: span 3;
  min-height: 520px;
}

.rt-tile--md { grid-column: span 2; grid-row: span 2; }

.rt-tile--sm { grid-column: span 2; }

.rt-tile--wide { grid-column: span 3; grid-row: span 2; }

.rt-tile--text {
  justify-content: flex-start;
  min-height: 0;
  padding: var(--rt-s3);
  background: var(--rt-panel);
}

.rt-tile__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.rt-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms var(--rt-ease);
}

.rt-tile:hover .rt-tile__media img { transform: scale(1.02); }

.rt-tile__body {
  position: relative;
  z-index: 1;
  margin: 12px;
  padding: var(--rt-s3);
  background: var(--rt-glass);
  backdrop-filter: var(--rt-blur);
  -webkit-backdrop-filter: var(--rt-blur);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 14px;
}

.rt-tile--text .rt-tile__body {
  margin: 0;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
}

.rt-tile__label {
  display: block;
  margin-bottom: 6px;
  color: var(--rt-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.rt-tile__title { margin-bottom: 8px; font-size: 1.2rem; }

.rt-tile__text {
  margin-bottom: 12px;
  color: var(--rt-muted);
  font-size: 0.95rem;
}

.rt-tile__more { display: none; }

.rt-tile__link {
  display: inline-block;
  padding: 10px 0;
  font-weight: 600;
  font-size: 0.95rem;
}

@container tile (min-width: 520px) {
  .rt-tile__body {
    max-width: 560px;
    margin: 20px;
    padding: 28px;
  }

  .rt-tile__title { font-size: clamp(1.5rem, 4cqi, 2.1rem); }

  .rt-tile__more { display: block; color: var(--rt-text); }
}

@container tile (max-width: 300px) {
  .rt-tile__body { padding: 16px; margin: 8px; }

  .rt-tile__text { font-size: 0.9rem; }
}

.rt-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--rt-s4);
  align-items: start;
}

.rt-split__media {
  margin: 0;
  position: sticky;
  top: 100px;
}

.rt-split__media img { border-radius: var(--rt-r-lg); border: 1px solid rgb(255 255 255 / 0.08); }

.rt-caption {
  margin-top: 10px;
  color: var(--rt-muted);
  font-size: 0.85rem;
}

.rt-prose { max-width: 68ch; }

.rt-prose h2 { margin-top: var(--rt-s4); }

.rt-prose h2:first-child { margin-top: 0; }

.rt-prose h3 { margin-top: var(--rt-s3); }

.rt-steps {
  counter-reset: rt-step;
  list-style: none;
  padding: 0;
  margin: var(--rt-s3) 0;
  display: grid;
  gap: 12px;
}

.rt-steps__item {
  counter-increment: rt-step;
  position: relative;
  padding: 16px 18px 16px 62px;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
}

.rt-steps__item + .rt-steps__item { margin-top: 0; }

.rt-steps__item::before {
  content: counter(rt-step, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 700;
}

.rt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  background: var(--rt-panel);
}

.rt-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.rt-table caption {
  padding: 18px 20px 6px;
  text-align: left;
  color: var(--rt-muted);
  font-size: 0.88rem;
}

.rt-table th, .rt-table td {
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rt-line);
}

.rt-table thead th {
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rt-table tbody th {
  color: #fff;
  font-weight: 600;
  border-left: 3px solid var(--rt-gold);
}

.rt-table tbody tr:last-child th, .rt-table tbody tr:last-child td { border-bottom: 0; }

.rt-table tbody tr { transition: background-color 150ms var(--rt-ease); }

.rt-table tbody tr:hover { background: rgb(255 255 255 / 0.03); }

.rt-table__num { white-space: nowrap; font-variant-numeric: tabular-nums; }

.rt-note {
  margin-top: 12px;
  color: var(--rt-muted);
  font-size: 0.86rem;
}

.rt-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.rt-faq__item {
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
  transition: border-color 160ms var(--rt-ease);
}

.rt-faq__item[open] { border-color: var(--rt-line-gold); }

.rt-faq__q {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 18px 20px;
  font-family: var(--rt-head);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.rt-faq__q::-webkit-details-marker { display: none; }

.rt-faq__q::after {
  content: "+";
  color: var(--rt-gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 160ms var(--rt-ease);
}

.rt-faq__item[open] .rt-faq__q::after { transform: rotate(45deg); }

.rt-faq__a { padding: 0 20px 18px; color: var(--rt-muted); }

.rt-faq__a p:last-child { margin-bottom: 0; }

.rt-request {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--rt-s4);
  padding: clamp(24px, 4vw, 56px);
  background: var(--rt-panel);
  border: 1px solid var(--rt-line-gold);
  border-radius: 24px;
}

.rt-request__title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }

.rt-request__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rt-request__list li {
  margin: 0;
  padding: 14px 16px;
  background: var(--rt-bg);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
}

.rt-request__list b {
  display: block;
  color: var(--rt-gold);
  font-weight: 600;
  font-size: 0.86rem;
}

.rt-request__small {
  margin-top: var(--rt-s2);
  color: var(--rt-muted);
  font-size: 0.9rem;
}

.rt-crumbs {
  padding-top: 40px;
  font-size: 0.88rem;
  color: var(--rt-muted);
}

.rt-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rt-crumbs li { margin: 0; }

.rt-crumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: #6f6b64;
}

.rt-crumbs a {
  display: inline-block;
  padding: 10px 0;
  color: var(--rt-muted);
}

.rt-crumbs a:hover { color: var(--rt-gold); }

.rt-page {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--rt-s4);
  align-items: end;
  padding-block: var(--rt-s3) var(--rt-s4);
}

.rt-page__title { font-size: clamp(2.1rem, 4.6vw, 3.5rem); margin: 0; }

.rt-page__lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--rt-muted);
}

.rt-page__meta {
  display: block;
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--rt-muted);
}

.rt-banner { margin: 0; position: relative; }

.rt-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  height: auto;
  object-fit: cover;
  border-radius: var(--rt-r-lg);
}

.rt-banner figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100% - 32px));
  padding: 10px 14px;
  background: var(--rt-glass);
  backdrop-filter: var(--rt-blur);
  -webkit-backdrop-filter: var(--rt-blur);
  border-radius: var(--rt-r);
  color: var(--rt-text);
  font-size: 0.85rem;
}

.rt-cardhero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: var(--rt-s3);
  align-items: stretch;
  padding-block: var(--rt-s3) var(--rt-s4);
}

.rt-cardhero__media {
  margin: 0;
  min-height: 420px;
  border-radius: var(--rt-r-lg);
  overflow: hidden;
  position: relative;
}

.rt-cardhero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-cardhero__media figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 14px;
  background: var(--rt-glass);
  backdrop-filter: var(--rt-blur);
  -webkit-backdrop-filter: var(--rt-blur);
  border-radius: var(--rt-r);
  font-size: 0.85rem;
}

.rt-cardhero__panel {
  display: flex;
  flex-direction: column;
  gap: var(--rt-s2);
  padding: clamp(22px, 3vw, 36px);
  background: var(--rt-panel);
  border: 1px solid var(--rt-line-gold);
  border-radius: var(--rt-r-lg);
}

.rt-cardhero__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: 0; }

.rt-cardhero__lead { margin: 0; color: var(--rt-muted); }

.rt-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: auto 0 0;
  padding-top: var(--rt-s2);
  border-top: 1px solid var(--rt-line);
  font-size: 0.92rem;
}

.rt-facts dt { color: var(--rt-gold); font-weight: 600; }

.rt-facts dd { margin: 0; }

.rt-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: var(--rt-s4);
  align-items: start;
  padding-bottom: var(--rt-s5);
}

.rt-side {
  position: sticky;
  top: 100px;
  display: grid;
  align-self: start;
  gap: var(--rt-s2);
}

.rt-side__box {
  padding: var(--rt-s3);
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  font-size: 0.93rem;
}

.rt-side__box h2 { font-size: 1.05rem; margin-bottom: 10px; }

.rt-side__box p:last-child, .rt-side__box ul:last-child { margin-bottom: 0; }

.rt-figure { margin: var(--rt-s4) 0; }

.rt-figure img { border-radius: var(--rt-r-lg); border: 1px solid rgb(255 255 255 / 0.06); }

.rt-figure--inset {
  float: right;
  width: min(46%, 360px);
  margin: 6px 0 var(--rt-s2) var(--rt-s3);
}

.rt-check {
  list-style: none;
  padding: 0;
  margin: var(--rt-s3) 0;
  display: grid;
  gap: 8px;
}

.rt-check li {
  position: relative;
  margin: 0;
  padding: 12px 16px 12px 44px;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
}

.rt-check li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--rt-gold);
  border-radius: 3px;
}

.rt-limit {
  margin: var(--rt-s4) 0;
  padding: var(--rt-s3);
  border-left: 3px solid var(--rt-gold);
  background: rgb(212 175 55 / 0.06);
  border-radius: 0 var(--rt-r) var(--rt-r) 0;
}

.rt-limit p:last-child { margin-bottom: 0; }

.rt-limit__title {
  display: block;
  margin-bottom: 6px;
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 600;
}

.rt-toc {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 var(--rt-s4);
  padding: 10px;
  list-style: none;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: 999px;
  scrollbar-width: thin;
}

.rt-toc li { margin: 0; flex: 0 0 auto; }

.rt-toc a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--rt-text);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background-color 160ms var(--rt-ease), color 160ms var(--rt-ease);
}

.rt-toc a:hover { background: rgb(212 175 55 / 0.14); color: var(--rt-gold); }

.rt-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: var(--rt-s4);
  padding-bottom: var(--rt-s5);
}

.rt-chapter {
  padding-bottom: var(--rt-s4);
  margin-bottom: var(--rt-s4);
  border-bottom: 1px solid var(--rt-line);
}

.rt-chapter:last-child { border-bottom: 0; }

.rt-chapter__num {
  display: block;
  margin-bottom: 8px;
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.rt-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: var(--rt-s3) 0;
}

.rt-numbers__item {
  padding: 18px;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
}

.rt-numbers__item:first-child { grid-column: span 2; border-color: var(--rt-line-gold); }

.rt-numbers__val {
  display: block;
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.1;
}

.rt-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: var(--rt-s4) 0 0;
  padding: 0;
  list-style: none;
}

.rt-related li { margin: 0; }

.rt-related a {
  display: block;
  height: 100%;
  padding: 18px 20px;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
  color: var(--rt-text);
  text-decoration: none;
  transition: border-color 160ms var(--rt-ease);
}

.rt-related a:hover { border-color: var(--rt-gold); }

.rt-related span {
  display: block;
  color: var(--rt-gold);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.rt-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--rt-s3);
  margin-top: var(--rt-s4);
  padding: var(--rt-s3) clamp(20px, 3vw, 36px);
  background: var(--rt-panel);
  border: 1px solid var(--rt-line-gold);
  border-radius: var(--rt-r-lg);
}

.rt-cta__text { margin: 0; max-width: 44ch; }

.rt-cta__text strong {
  display: block;
  font-family: var(--rt-head);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.rt-legal { max-width: 760px; padding-bottom: var(--rt-s5); }

.rt-legal h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: var(--rt-s3); }

.rt-legal h2 { font-size: 1.3rem; margin-top: var(--rt-s4); }

.rt-legal__date { color: var(--rt-muted); font-size: 0.9rem; }

.rt-credits { font-size: 0.9rem; }

.rt-credits li + li { margin-top: 10px; }

.rt-address {
  font-style: normal;
  padding: var(--rt-s3);
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  margin-bottom: var(--rt-s3);
}

.rt-lost {
  min-height: 60vh;
  display: grid;
  align-content: center;
  gap: var(--rt-s2);
  padding-block: var(--rt-s5);
}

.rt-lost__code {
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
}

.rt-foot {
  margin-top: var(--rt-s4);
  padding-block: var(--rt-s5) var(--rt-s3);
  background: #0c0c0c;
  border-top: 1px solid var(--rt-line);
}

.rt-foot__lead { margin: 0 0 8px; color: var(--rt-muted); }

.rt-foot__mail {
  display: block;
  padding: 8px 0 var(--rt-s3);
  color: var(--rt-text);
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: clamp(1.45rem, 6.4vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-decoration: none;
  overflow-wrap: anywhere;
  border-bottom: 1px solid var(--rt-line);
  transition: color 180ms var(--rt-ease);
}

.rt-foot__mail:hover { color: var(--rt-gold); }

.rt-foot__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--rt-s2) var(--rt-s4);
  padding-top: var(--rt-s3);
  color: var(--rt-muted);
  font-size: 0.9rem;
}

.rt-foot__row p { margin: 0; max-width: 46ch; }

.rt-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rt-foot__links li { margin: 0; }

.rt-foot__links a {
  display: inline-block;
  padding: 12px 0;
  color: var(--rt-muted);
  text-decoration: none;
}

.rt-foot__links a:hover { color: var(--rt-gold); }

.rt-age {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 26px;
  padding: 0 8px;
  border: 1px solid var(--rt-red);
  border-radius: 999px;
  color: #f3c6c6;
  background: rgb(176 38 48 / 0.18);
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.rt-page__meta .rt-age, .rt-legal__date .rt-age { margin-right: 8px; vertical-align: middle; }

.rt-age--lg {
  min-width: 64px;
  height: 64px;
  border-width: 2px;
  font-size: 1.2rem;
}

.rt-games {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--rt-s2);
  margin: var(--rt-s3) 0;
}

.rt-game {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--rt-panel);
  border: 1px solid var(--rt-line);
  border-top: 3px solid var(--rt-felt);
  border-radius: var(--rt-r);
}

.rt-game h3 { margin: 0; font-size: 1.1rem; }

.rt-game p { margin: 0; color: var(--rt-muted); font-size: 0.93rem; }

.rt-game__val {
  margin-top: auto;
  padding-top: 10px;
  color: var(--rt-gold);
  font-family: var(--rt-head);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
}

.rt-game__val small {
  display: block;
  color: var(--rt-muted);
  font-family: var(--rt-body);
  font-weight: 400;
  font-size: 0.8rem;
}

.rt-safe {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--rt-s3);
  align-items: start;
  padding: clamp(22px, 3vw, 40px);
  background: linear-gradient(135deg, rgb(20 83 58 / 0.22), rgb(30 30 30 / 0.6));
  border: 1px solid rgb(46 139 87 / 0.35);
  border-radius: var(--rt-r-lg);
}

.rt-safe h2 { margin-bottom: 10px; }

.rt-safe__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: var(--rt-s3) 0;
  padding: 0;
  list-style: none;
}

.rt-safe__list li {
  margin: 0;
  padding: 14px 16px;
  background: rgb(0 0 0 / 0.28);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r);
  font-size: 0.94rem;
}

.rt-safe__list b { display: block; color: var(--rt-gold); font-weight: 600; }

.rt-foot__safe {
  display: flex;
  gap: var(--rt-s3);
  align-items: flex-start;
  margin-top: var(--rt-s3);
  padding: var(--rt-s3);
  border: 1px solid var(--rt-line);
  border-radius: var(--rt-r-lg);
  color: var(--rt-muted);
  font-size: 0.9rem;
}

.rt-foot__safe p { margin: 4px 0 6px; max-width: 80ch; }

.rt-foot__safe strong { font-family: var(--rt-head); }

.rt-foot__safe a { display: inline-block; padding: 6px 0; }

.rt-gate {
  width: min(480px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--rt-line-gold);
  border-radius: var(--rt-r-lg);
  background: var(--rt-panel);
  color: var(--rt-text);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.6);
}

.rt-gate::backdrop {
  background: rgb(8 8 8 / 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rt-gate__inner {
  display: grid;
  justify-items: center;
  gap: var(--rt-s2);
  padding: clamp(24px, 5vw, 40px);
  text-align: center;
}

.rt-gate__title { margin: 0; font-size: 1.5rem; }

.rt-gate p { margin: 0; color: var(--rt-muted); font-size: 0.95rem; }

.rt-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.rt-gate__small { font-size: 0.82rem !important; }

.rt-reveal { transition: opacity 500ms var(--rt-ease), transform 500ms var(--rt-ease); }

.js .rt-reveal:not(.is-in) { opacity: 0; transform: translateY(16px); }

@media (max-width: 1080px) {
  .rt-nav__link { padding: 10px 10px; }

  .rt-hero__text { margin-right: -48px; }

  .rt-body, .rt-guide { grid-template-columns: minmax(0, 1fr); }

  .rt-side { position: static; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

@media (max-width: 900px) {
  .rt-nav, .rt-head__cta { display: none; }

  .rt-burger { display: block; }

  .rt-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 32px var(--rt-s4);
    gap: 0;
  }

  .rt-hero__text { margin: -64px 0 0; order: 2; }

  .rt-collage { order: 1; grid-template-rows: repeat(12, 26px); }

  .rt-collage__frame--c { z-index: 1; }

  .rt-collage__cap { display: none; }

  .rt-sechead, .rt-split, .rt-page, .rt-cardhero, .rt-request { grid-template-columns: minmax(0, 1fr); }

  .rt-split__media { position: static; }

  .rt-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .rt-games { grid-template-columns: minmax(0, 1fr); }

  .rt-tile--xl, .rt-tile--wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 420px;
  }

  .rt-tile--md, .rt-tile--sm { grid-column: span 1; grid-row: auto; }

  .rt-cardhero__media { min-height: 300px; }
}

@media (max-width: 600px) {
  .rt-section { padding-block: 64px; }

  .rt-head__bar { padding-left: 16px; }

  .rt-collage__frame--d { display: none; }

  .rt-collage__frame--a { grid-column: 1 / 13; }

  .rt-hero__actions .rt-btn { width: 100%; }

  .rt-bento { grid-template-columns: minmax(0, 1fr); }

  .rt-tile--xl, .rt-tile--wide, .rt-tile--md, .rt-tile--sm { grid-column: auto; min-height: 340px; }

  .rt-tile--text { min-height: 0; }

  .rt-figure--inset {
    float: none;
    width: 100%;
    margin: var(--rt-s3) 0;
  }

  .rt-numbers { grid-template-columns: minmax(0, 1fr); }

  .rt-safe { grid-template-columns: minmax(0, 1fr); }

  .rt-foot__safe { flex-direction: column; }

  .rt-gate__actions .rt-btn { width: 100%; }

  .rt-numbers__item:first-child { grid-column: auto; }

  .rt-banner img { aspect-ratio: 4 / 3; height: auto; }

  .rt-cta .rt-btn { width: 100%; }

  .rt-toc { border-radius: var(--rt-r-lg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }

  .js .rt-reveal:not(.is-in) { opacity: 1; transform: none; }
}
