@font-face {
  font-family: "Arena Sans";
  src: url("../../type/local/arena-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arena Sans";
  src: url("../../type/local/arena-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Signal Display";
  src: url("../../type/local/signal-display-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0f141d;
  --surface: #171d29;
  --surface-strong: #111722;
  --surface-soft: #1d2533;
  --surface-raise: #222b3d;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #b7c0cf;
  --brand: #2f9345;
  --brand-dark: #216d33;
  --brand-soft: #3aa754;
  --brand-glow: rgba(58, 167, 84, 0.32);
  --accent: #ffd63b;
  --accent-soft: #ffea8d;
  --accent-dark: #e6bc17;
  --danger: #ff6464;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 48px rgba(4, 8, 16, 0.36);
  --shadow-soft: 0 12px 30px rgba(4, 8, 16, 0.22);
  --wrap: min(1180px, calc(100% - 32px));
  --body-font: "Arena Sans", "Segoe UI", sans-serif;
  --display-font: "Signal Display", "Arial Narrow", sans-serif;
  --transition: 180ms ease;
  --anchor-offset: 104px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 220px;
  background:
    radial-gradient(circle at top center, rgba(55, 155, 74, 0.22), transparent 28%),
    linear-gradient(180deg, #121925 0%, #0f141d 46%, #101521 100%);
  color: var(--text);
  font: 400 16px/1.6 var(--body-font);
  overflow-x: clip;
}

body.menu-open,
body.player-open {
  overflow: hidden;
}

body.player-open {
  position: fixed;
  inset: 0;
  width: 100%;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

main,
section,
div {
  min-width: 0;
}

main [id] {
  scroll-margin-top: var(--anchor-offset);
}

.page-shell {
  min-height: 100vh;
}

.page-main {
  padding-top: 0;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.stack-section {
  padding-block: 10px;
}

.panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(31, 39, 56, 0.96), rgba(19, 25, 36, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.panel--tinted {
  background:
    linear-gradient(135deg, rgba(47, 147, 69, 0.2), rgba(18, 25, 37, 0.92)),
    linear-gradient(180deg, rgba(28, 35, 50, 0.98), rgba(16, 22, 31, 0.96));
}

.panel__body {
  padding: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.58rem, 2vw, 2.15rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section-title--display {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-copy {
  color: var(--muted);
}

.section-copy p,
.section-copy li {
  color: var(--muted);
}

.section-copy p {
  margin: 0 0 14px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(35, 115, 52, 0.98), rgba(40, 135, 60, 0.97));
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(8, 11, 20, 0.28);
}

.topbar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: var(--wrap);
  margin: 0 auto;
  padding: 14px 0;
}

.topbar__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar__logo {
  width: auto;
  height: clamp(34px, 3vw, 44px);
  max-width: clamp(160px, 18vw, 238px);
}

.topbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #f5faf6;
  transition: color var(--transition);
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible {
  color: var(--accent-soft);
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.topbar__actions,
.topbar__mobile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.topbar__mobile-spacer {
  display: none;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-1px);
}

.action-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.action-button--accent {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #10141d;
  box-shadow: 0 12px 26px rgba(255, 214, 59, 0.2);
}

.action-button--accent.pulse {
  animation: cta-breath 2.6s infinite;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 24, 34, 0.22);
  flex-shrink: 0;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.drawer,
.drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(320px, 92vw);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(41, 130, 60, 0.96), rgba(20, 26, 38, 0.98) 28%, rgba(16, 21, 31, 0.98)),
    linear-gradient(135deg, rgba(255, 214, 59, 0.16), transparent 42%);
  transform: translateX(-100%);
  transition:
    transform 240ms ease,
    opacity var(--transition);
  z-index: 41;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 13, 0.55);
  z-index: 40;
}

.drawer.is-open,
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__brand {
  display: flex;
  justify-content: center;
  padding: 8px 0 16px;
}

.drawer__brand img {
  width: min(160px, 58vw);
}

.drawer__nav {
  display: grid;
  gap: 10px;
}

.drawer__link,
.mobile-tabs__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.drawer__link {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.drawer__link svg,
.mobile-tabs__link svg,
.icon-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.drawer__microcopy {
  margin: 18px 4px 0;
  color: rgba(243, 248, 244, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.topbar__mobile-actions,
.mobile-tabs {
  display: none;
}

.mobile-tabs {
  background: rgba(12, 17, 25, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-tabs__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  width: var(--wrap);
  margin: 0 auto;
  padding: 10px 0 12px;
}

.mobile-tabs__rail::-webkit-scrollbar {
  display: none;
}

.mobile-tabs__link {
  min-height: 34px;
  color: rgba(245, 249, 246, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #0d1320;
  min-height: clamp(460px, 42vw, 590px);
}

.hero__picture,
.hero__image {
  width: 100%;
  height: 100%;
}

.hero__picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero__image {
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.66) saturate(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.22) 0%, rgba(8, 12, 18, 0.4) 24%, rgba(9, 15, 24, 0.62) 56%, rgba(9, 15, 24, 0.9) 84%, rgba(9, 15, 24, 0.98) 100%);
}

.hero__content {
  position: absolute;
  inset: 0 0 58px;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.hero__grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  padding-bottom: clamp(18px, 2vw, 28px);
}

.hero__eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  max-width: min(100%, calc(var(--wrap) - 8px));
  background: rgba(9, 15, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 234, 141, 0.95);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(4, 8, 16, 0.45);
}

.hero__title {
  width: min(100%, 1040px);
  max-width: none;
  margin: 0;
  font-family: var(--body-font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  color: #fff7e4;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.34),
    0 14px 28px rgba(4, 8, 16, 0.58);
}

.hero__lead {
  width: min(100%, 900px);
  max-width: none;
  margin: 0;
  color: rgba(246, 248, 251, 0.92);
  line-height: 1.55;
  text-shadow: 0 10px 22px rgba(4, 8, 16, 0.48);
}

.hero__cta {
  min-width: min(320px, 72vw);
}

.hero__payments {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(12, 19, 28, 0.14), rgba(12, 19, 28, 0.92));
  padding: 10px 0 12px;
}

.hero__payments-row {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero__payments-row::-webkit-scrollbar {
  display: none;
}

.hero__payments-row img {
  height: 22px;
  width: auto;
  opacity: 0.95;
  flex-shrink: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-card,
.teaser-card,
.trust-card,
.control-card,
.transaction-card,
.timeline-card,
.info-tile,
.support-metric {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.trust-card,
.control-card,
.transaction-card,
.timeline-card,
.info-tile,
.support-metric {
  padding: 18px;
}

.feature-card__head,
.trust-card__head,
.control-card__head,
.info-tile__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.feature-card h3,
.teaser-card h2,
.trust-card h3,
.control-card h3,
.transaction-card h3,
.timeline-card h3,
.info-tile h3,
.support-metric h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 214, 59, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}

.feature-card p,
.teaser-card p,
.trust-card p,
.control-card p,
.transaction-card p,
.timeline-card p,
.info-tile p,
.support-metric p {
  margin: 0;
  color: var(--muted);
}

.summary-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
}

.content-columns,
.callout-grid {
  display: grid;
  gap: 16px;
}

.content-columns {
  grid-template-columns: 1.12fr 0.88fr;
}

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

.note-list,
.ordered-list,
.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.note-list li,
.ordered-list li,
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.note-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand-soft) 100%);
  box-shadow: 0 0 0 4px rgba(255, 214, 59, 0.08);
}

.ordered-list {
  counter-reset: flow;
}

.ordered-list li {
  padding-left: 46px;
}

.ordered-list li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(47, 147, 69, 0.2);
  color: var(--accent-soft);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  background: rgba(255, 255, 255, 0.03);
}

.table-wrap th,
.table-wrap td {
  padding: 15px 16px;
  text-align: left;
}

.table-wrap th {
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(47, 147, 69, 0.14);
}

.table-wrap tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.table-wrap td:first-child {
  font-weight: 700;
  color: var(--text);
}

.table-wrap td:last-child {
  color: var(--muted);
}

.table-wrap--facts {
  overflow-x: clip;
}

.table-wrap--facts table {
  min-width: 0;
  table-layout: fixed;
}

.table-wrap--facts th,
.table-wrap--facts td {
  overflow-wrap: anywhere;
}

.table-wrap--facts th:first-child,
.table-wrap--facts td:first-child {
  width: 36%;
}

.table-wrap--compact,
.table-wrap--wide {
  -webkit-overflow-scrolling: touch;
}

.table-wrap--compact th,
.table-wrap--compact td {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.support-box {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 14px;
}

.support-metrics {
  display: grid;
  gap: 12px;
}

.support-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}

.payment-grid,
.provider-grid,
.reason-line,
.transaction-grid,
.teaser-grid,
.step-grid,
.timeline-grid,
.device-grid {
  display: grid;
  gap: 12px;
}

.payment-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.payment-logo {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.payment-logo img {
  max-height: 26px;
  width: auto;
}

.provider-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-tile {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.provider-tile strong {
  display: block;
  margin-bottom: 6px;
}

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

.teaser-card {
  padding: 24px;
}

.teaser-card__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-weight: 700;
}

.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.link-chip:hover,
.link-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 214, 59, 0.36);
  color: var(--accent-soft);
}

.showcase-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 18, 26, 0.84), rgba(12, 18, 26, 0.95)),
    var(--band-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.showcase-band__body {
  padding: 28px;
}

.notice-strip {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 59, 0.16);
  background: linear-gradient(135deg, rgba(255, 214, 59, 0.12), rgba(47, 147, 69, 0.08));
  color: rgba(247, 249, 252, 0.92);
  box-shadow: var(--shadow-soft);
}

.notice-strip strong {
  color: var(--accent-soft);
}

.story-figure {
  margin: 20px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.03);
}

.story-figure img {
  width: 100%;
  height: auto;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card small,
.info-tile small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-line {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.transaction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.verdict-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.verdict-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 214, 59, 0.2), rgba(47, 147, 69, 0.18));
  border: 1px solid rgba(255, 214, 59, 0.2);
  font: 700 2.2rem/1 var(--display-font);
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent-soft);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 0 0 18px;
}

.page-hero > .wrap {
  width: 100%;
  max-width: none;
}

.page-hero__shell {
  position: relative;
  min-height: clamp(460px, 42vw, 590px);
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.22) 0%, rgba(8, 12, 18, 0.4) 24%, rgba(9, 15, 24, 0.62) 56%, rgba(9, 15, 24, 0.9) 84%, rgba(9, 15, 24, 0.98) 100%),
    url("../../static/scene/hero/betaland-hero-desktop.webp") center top / cover no-repeat;
  box-shadow: none;
}

.page-hero__body {
  width: var(--wrap);
  margin: 0 auto;
  min-height: clamp(460px, 42vw, 590px);
  padding: clamp(22px, 3vw, 34px) 0 clamp(34px, 4vw, 48px);
  display: grid;
  align-content: end;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.page-hero__offer {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, calc(var(--wrap) - 8px));
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(9, 15, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 234, 141, 0.95);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(4, 8, 16, 0.45);
}

.page-hero__title {
  margin: 0;
  width: min(100%, 1040px);
  max-width: none;
  font-family: var(--body-font);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  color: #fff7e4;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.34),
    0 14px 28px rgba(4, 8, 16, 0.58);
}

.page-hero__intro {
  margin: 0;
  width: min(100%, 920px);
  max-width: none;
  color: rgba(245, 248, 251, 0.88);
  line-height: 1.55;
  text-shadow: 0 10px 22px rgba(4, 8, 16, 0.48);
}

.slot-grid {
  display: grid;
  gap: 12px;
}

.slot-grid[data-layout="8"] {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.slot-grid[data-layout="6"] {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d121a;
  aspect-ratio: 2 / 3;
  box-shadow: var(--shadow-soft);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.04), rgba(8, 11, 18, 0.86));
  opacity: 0;
  transition: opacity 180ms ease;
}

.slot-card__actions {
  width: 100%;
  display: grid;
  gap: 10px;
}

.slot-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.slot-card__button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.slot-card__button--play {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #0f131b;
}

.slot-card:hover img,
.slot-card:focus-within img,
.slot-card.is-open img {
  transform: scale(1.05);
  filter: brightness(0.66);
}

.slot-card:hover .slot-card__overlay,
.slot-card:focus-within .slot-card__overlay,
.slot-card.is-open .slot-card__overlay {
  opacity: 1;
}

.slot-player {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.82);
  z-index: 52;
}

.slot-player.is-visible {
  display: grid;
}

.slot-player__dialog {
  width: min(1120px, 100%);
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slot-player__frame {
  display: block;
  width: 100%;
  min-height: 68vh;
  background: #000;
}

.slot-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: rgba(12, 17, 25, 0.98);
}

.slot-player__title {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.8);
}

.slot-player__bar .action-button {
  min-height: 48px;
}

.calc-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.calc-box label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.calc-box input {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.calc-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.calc-result strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.partner-strip img {
  max-height: 30px;
  width: auto;
  margin: 0 auto;
  opacity: 0.58;
  filter: grayscale(1) brightness(1.35);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shot-frame {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.shot-frame h3 {
  margin: 0;
}

.compact-stats {
  display: grid;
  gap: 12px;
}

.compact-stat {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.compact-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.15rem;
}

.breadcrumb-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.breadcrumb-line a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 22, 0.94);
}

.site-footer__inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 24px 0 28px;
  display: grid;
  gap: 18px;
}

.site-footer__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.site-footer__logo {
  width: 142px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.site-footer__legal {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.mobile-offer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 39;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(9, 13, 19, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  transition: transform 240ms ease, opacity 240ms ease;
}

.mobile-offer.is-visible {
  transform: translateY(0);
}

.mobile-offer__inner {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.mobile-offer__copy strong {
  display: block;
  font-size: 0.94rem;
  color: var(--accent-soft);
}

.mobile-offer__copy span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.76);
}

.mobile-offer__button {
  min-width: 142px;
}

.legal-page .section-copy h2,
.legal-page .section-copy h3 {
  margin: 0 0 14px;
}

.legal-page .section-copy ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-page .section-copy li + li {
  margin-top: 10px;
}

.error-card {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.error-card strong {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
}

@keyframes cta-breath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(255, 214, 59, 0.16);
  }
  15% {
    transform: scale(1.035);
    box-shadow: 0 0 0 0 rgba(255, 214, 59, 0.3), 0 14px 30px rgba(255, 214, 59, 0.3);
  }
  34% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(255, 214, 59, 0), 0 16px 30px rgba(255, 214, 59, 0.18);
  }
  58% {
    transform: scale(1.045);
    box-shadow: 0 0 0 0 rgba(47, 147, 69, 0.18), 0 14px 30px rgba(47, 147, 69, 0.22);
  }
  78% {
    transform: scale(1.015);
    box-shadow: 0 0 0 12px rgba(47, 147, 69, 0), 0 12px 24px rgba(47, 147, 69, 0.16);
  }
}

@media (max-width: 1120px) {
  .feature-grid,
  .timeline-grid,
  .reason-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .provider-grid,
  .step-grid,
  .device-grid,
  .transaction-grid,
  .teaser-grid,
  .partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar__row {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .topbar__nav,
  .topbar__actions {
    display: none;
  }

  .summary-layout,
  .content-columns,
  .callout-grid,
  .support-box,
  .site-footer__main,
  .verdict-box,
  .calc-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --wrap: min(100% - 28px, 560px);
    --anchor-offset: 190px;
  }

  .topbar__row {
    grid-template-columns: 44px 1fr 44px;
    padding: 10px 0;
  }

  .topbar__logo-wrap {
    display: flex;
    justify-content: center;
    grid-column: 2;
  }

  .topbar__logo {
    width: auto;
    height: min(34px, 9vw);
    max-width: min(166px, 52vw);
  }

  .topbar__mobile-spacer {
    display: block;
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar__mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--wrap);
    margin: 0 auto;
    padding-bottom: 10px;
    gap: 10px;
  }

  .mobile-tabs {
    display: block;
  }

  .hero {
    min-height: clamp(392px, 116vw, 452px);
  }

  .hero__content {
    inset: 0 0 52px;
  }

  .hero__grid {
    gap: 10px;
    padding-bottom: 16px;
  }

  .hero__eyebrow {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero__title {
    width: 100%;
    font-size: clamp(1.6rem, 7.6vw, 2.34rem);
    line-height: 0.9;
  }

  .hero__lead {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero__cta {
    min-width: min(236px, 68vw);
  }

  .hero__payments-row {
    justify-content: center;
    gap: 12px;
  }

  .hero__payments-row img {
    height: 18px;
  }

  .table-wrap--compact {
    overflow-x: clip;
  }

  .table-wrap--compact table {
    min-width: 0;
    table-layout: fixed;
  }

  .table-wrap--wide {
    overflow-x: auto;
  }

  .table-wrap--wide table {
    min-width: 540px;
  }

  .table-wrap--compact th,
  .table-wrap--compact td {
    padding: 10px 8px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .table-wrap--compact th {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .table-wrap--facts th,
  .table-wrap--facts td {
    padding: 10px 8px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .table-wrap--facts th {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .table-wrap--facts th:first-child,
  .table-wrap--facts td:first-child {
    width: 38%;
  }

  .partner-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    overflow: visible;
  }

  .partner-strip img {
    max-height: 22px;
    flex: 0 0 auto;
    margin: 0;
  }

  .panel__body,
  .showcase-band__body,
  .page-hero__body,
  .teaser-card {
    padding: 20px 16px;
  }

  .page-hero {
    padding: 0 0 10px;
  }

  .page-hero__shell {
    min-height: clamp(412px, 118vw, 472px);
    background:
      linear-gradient(180deg, rgba(8, 12, 18, 0.24) 0%, rgba(8, 12, 18, 0.42) 24%, rgba(9, 15, 24, 0.64) 56%, rgba(9, 15, 24, 0.9) 84%, rgba(9, 15, 24, 0.98) 100%),
      url("../../static/scene/hero/betaland-hero-mobile.webp") center top / cover no-repeat;
  }

  .page-hero__body {
    min-height: clamp(412px, 118vw, 472px);
    padding: 14px 0 26px;
    gap: 10px;
  }

  .page-hero__offer {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .page-hero__title {
    width: 100%;
    font-size: clamp(1.6rem, 7.6vw, 2.34rem);
    line-height: 0.9;
  }

  .page-hero__intro {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .breadcrumb-line {
    display: none;
  }

  .feature-grid,
  .step-grid,
  .timeline-grid,
  .reason-line,
  .device-grid,
  .provider-grid,
  .teaser-grid,
  .transaction-grid,
  .partner-strip,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .slot-grid[data-layout="8"],
  .slot-grid[data-layout="6"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-card__actions {
    grid-template-columns: 1fr;
  }

  .slot-player {
    padding: 0;
    align-items: end;
  }

  .slot-player__dialog {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: grid;
    grid-template-rows: 1fr auto;
  }

  .slot-player__frame {
    min-height: auto;
    height: 100%;
  }

  .slot-player__bar {
    position: sticky;
    bottom: 0;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  }

  .slot-player__title {
    display: none;
  }

  .mobile-offer {
    display: block;
  }

  body.has-sticky-bonus .site-footer__inner {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .mobile-offer__inner {
    grid-template-columns: 1fr;
  }

  .mobile-offer__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 320px) {
  .action-button,
  .slot-card__button {
    font-size: 0.84rem;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .section-title {
    font-size: 1.42rem;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 12px 10px;
    font-size: 0.86rem;
  }

  .table-wrap--compact th,
  .table-wrap--compact td {
    padding: 8px 6px;
    font-size: 0.72rem;
  }

  .table-wrap--compact th {
    font-size: 0.58rem;
  }

  .table-wrap--facts th,
  .table-wrap--facts td {
    padding: 8px 6px;
    font-size: 0.74rem;
  }

  .table-wrap--facts th {
    font-size: 0.6rem;
  }

  .mobile-offer__copy strong {
    font-size: 0.84rem;
  }

  .mobile-offer__copy span {
    font-size: 0.81rem;
  }
}
