:root {
  --bg: #071016;
  --bg-elevated: #0d1b25;
  --bg-soft: #102532;
  --panel: rgba(12, 32, 41, 0.92);
  --panel-strong: rgba(8, 23, 31, 0.98);
  --line: rgba(116, 244, 208, 0.18);
  --text: #effbf8;
  --muted: #a9c6c0;
  --accent: #79f3d1;
  --accent-deep: #0ec8a2;
  --gold: #f7c650;
  --rose: #ff6f8f;
  --sky: #72d4ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --content: min(920px, calc(100vw - 32px));
  --display: "Trebuchet MS", "Segoe UI", sans-serif;
  --body: "Verdana", "Tahoma", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 243, 209, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(247, 198, 80, 0.12), transparent 28%),
    linear-gradient(180deg, #061015 0%, #09161d 28%, #071117 100%);
  line-height: 1.72;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #b8ffe9;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 22, 0.84);
  border-bottom: 1px solid rgba(121, 243, 209, 0.08);
}

.site-header__inner,
.site-footer__inner,
.section,
.hero,
.breadcrumbs {
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand__logo {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(121, 243, 209, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.brand__logo--footer {
  width: 94px;
  height: 94px;
}

.brand__type {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__type strong {
  font-size: 1rem;
  color: #f8fffe;
}

.brand__type span {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: #d8fdf5;
  font-size: 0.94rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #ffb42c);
  color: #091116;
  box-shadow: 0 16px 28px rgba(247, 198, 80, 0.25);
}

.btn--ghost {
  border-color: rgba(121, 243, 209, 0.22);
  color: var(--text);
  background: rgba(121, 243, 209, 0.05);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(121, 243, 209, 0.18);
  border-radius: 14px;
  background: rgba(121, 243, 209, 0.06);
  color: var(--text);
}

.mobile-drawer {
  display: none;
}

.breadcrumbs {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 42px 0 24px;
}

.hero--alt {
  grid-template-columns: 0.96fr 1.04fr;
}

.hero__content {
  position: relative;
  padding: 16px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(121, 243, 209, 0.18);
  border-radius: 999px;
  background: rgba(121, 243, 209, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.08;
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.hero__lede {
  max-width: 62ch;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero__actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(121, 243, 209, 0.18);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid rgba(121, 243, 209, 0.18);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 197, 73, 0.34), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(114, 212, 255, 0.18), transparent 30%),
    radial-gradient(circle at 48% 86%, rgba(14, 200, 162, 0.16), transparent 36%),
    linear-gradient(145deg, #0a1823 0%, #10263b 42%, #0b1728 100%);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero-visual::before {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255, 192, 74, 0.24), rgba(255, 192, 74, 0));
}

.hero-visual::after {
  width: 250px;
  height: 250px;
  top: -80px;
  right: -70px;
  background: radial-gradient(circle, rgba(121, 243, 209, 0.2), rgba(121, 243, 209, 0));
}

.hero-visual__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.hero-pill,
.hero-card,
.hero-score,
.hero-mini-chart,
.hero-phone,
.hero-table,
.hero-badge,
.hero-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.24);
}

.hero-pill,
.hero-chip,
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 16, 22, 0.72);
  color: #f8fffe;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge strong,
.hero-pill strong,
.hero-chip strong {
  color: var(--gold);
}

.hero-card,
.hero-score,
.hero-mini-chart,
.hero-table {
  border-radius: 28px;
  background: rgba(7, 18, 28, 0.82);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 22px;
}

.hero-card h3,
.hero-phone h3,
.hero-score h3 {
  font-size: 1rem;
  line-height: 1.15;
}

.hero-card p,
.hero-score p,
.hero-phone p,
.hero-table p {
  margin: 8px 0 0;
  color: #d8ece8;
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-phone {
  width: 220px;
  height: 390px;
  padding: 16px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #0d2040 0%, #132f57 48%, #0b1730 100%);
}

.hero-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-phone__screen {
  margin-top: 20px;
  height: calc(100% - 20px);
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 196, 74, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(14, 31, 57, 0.96), rgba(8, 17, 34, 0.98));
}

.hero-phone__screen img {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
  border-radius: 22px;
}

.hero-phone__rows {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.hero-phone__rows span,
.hero-table__row span,
.hero-chart__row span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-phone__rows span:nth-child(1) { height: 16px; width: 72%; }
.hero-phone__rows span:nth-child(2) { height: 12px; width: 92%; }
.hero-phone__rows span:nth-child(3) { height: 12px; width: 82%; }
.hero-phone__rows span:nth-child(4) { height: 60px; width: 100%; border-radius: 20px; background: linear-gradient(135deg, rgba(247, 198, 80, 0.3), rgba(121, 243, 209, 0.22)); }

.hero-card--lobby {
  width: 300px;
}

.hero-card--lobby ul,
.hero-score ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-card--lobby li,
.hero-score li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4fffc;
  font-size: 0.9rem;
}

.hero-card--lobby li span:last-child,
.hero-score li span:last-child {
  color: var(--gold);
  font-weight: 700;
}

.hero-mini-chart {
  width: 250px;
  padding: 18px 18px 20px;
}

.hero-chart__bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-top: 12px;
}

.hero-chart__bars span {
  flex: 1;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, rgba(121, 243, 209, 0.95), rgba(247, 198, 80, 0.78));
}

.hero-chart__bars span:nth-child(1) { height: 52%; }
.hero-chart__bars span:nth-child(2) { height: 88%; }
.hero-chart__bars span:nth-child(3) { height: 64%; }
.hero-chart__bars span:nth-child(4) { height: 100%; }

.hero-score {
  width: 240px;
  padding: 20px;
}

.hero-score__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.hero-score__value strong {
  font-size: 3.1rem;
  line-height: 1;
  color: #fff8e8;
}

.hero-score__value span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.hero-table {
  width: 290px;
  padding: 18px;
}

.hero-table__row {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.hero-table__row span:nth-child(1) { height: 14px; width: 48%; }
.hero-table__row span:nth-child(2) { height: 12px; width: 100%; }
.hero-table__row span:nth-child(3) { height: 12px; width: 84%; }

.hero-visual--home .hero-phone { right: 42px; top: 52px; transform: rotate(9deg); }
.hero-visual--home .hero-card--lobby { left: 26px; bottom: 34px; }
.hero-visual--home .hero-mini-chart { right: 196px; bottom: 34px; }
.hero-visual--home .hero-pill { top: 150px; left: 42px; }

.hero-visual--bonuses {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 201, 86, 0.42), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 111, 143, 0.22), transparent 28%),
    linear-gradient(145deg, #1b1230 0%, #2a1e49 42%, #101d39 100%);
}

.hero-visual--bonuses .hero-phone { right: 52px; top: 48px; transform: rotate(-7deg); }
.hero-visual--bonuses .hero-score { left: 30px; top: 130px; }
.hero-visual--bonuses .hero-mini-chart { left: 74px; bottom: 30px; }
.hero-visual--bonuses .hero-chip { right: 48px; bottom: 32px; }

.hero-visual--games {
  background:
    radial-gradient(circle at 14% 22%, rgba(114, 212, 255, 0.3), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(121, 243, 209, 0.18), transparent 32%),
    linear-gradient(145deg, #091b2d 0%, #12304a 46%, #0d172a 100%);
}

.hero-visual--games .hero-card--lobby { left: 34px; top: 140px; }
.hero-visual--games .hero-phone { right: 54px; top: 46px; transform: rotate(6deg); }
.hero-visual--games .hero-badge { left: 50px; bottom: 34px; }
.hero-visual--games .hero-mini-chart { right: 210px; bottom: 36px; }

.hero-visual--mobile {
  background:
    radial-gradient(circle at 22% 18%, rgba(121, 243, 209, 0.24), transparent 22%),
    radial-gradient(circle at 78% 20%, rgba(114, 212, 255, 0.26), transparent 28%),
    linear-gradient(145deg, #0b2033 0%, #143b5f 50%, #0b1830 100%);
}

.hero-visual--mobile .hero-phone { left: 48px; top: 52px; transform: rotate(-10deg); }
.hero-visual--mobile .hero-phone--secondary { left: 214px; top: 94px; transform: rotate(8deg) scale(0.86); opacity: 0.82; }
.hero-visual--mobile .hero-mini-chart { right: 36px; top: 86px; }
.hero-visual--mobile .hero-card--lobby { right: 30px; bottom: 34px; width: 284px; }

.hero-visual--payments {
  background:
    radial-gradient(circle at 18% 14%, rgba(247, 198, 80, 0.34), transparent 22%),
    radial-gradient(circle at 82% 22%, rgba(121, 243, 209, 0.22), transparent 26%),
    linear-gradient(145deg, #13211f 0%, #163533 45%, #0d1a19 100%);
}

.hero-visual--payments .hero-table { left: 32px; top: 132px; }
.hero-visual--payments .hero-score { right: 32px; top: 104px; }
.hero-visual--payments .hero-badge { right: 52px; bottom: 36px; }
.hero-visual--payments .hero-pill { left: 42px; bottom: 34px; }

.hero-visual--login {
  background:
    radial-gradient(circle at 18% 18%, rgba(121, 243, 209, 0.26), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(247, 198, 80, 0.26), transparent 24%),
    linear-gradient(145deg, #0d2038 0%, #10284f 44%, #0b162d 100%);
}

.hero-visual--login .hero-phone { left: 42px; top: 52px; transform: rotate(-5deg); }
.hero-visual--login .hero-score { right: 40px; top: 128px; }
.hero-visual--login .hero-chip { right: 48px; bottom: 36px; }

.hero-visual--registration {
  background:
    radial-gradient(circle at 22% 18%, rgba(247, 198, 80, 0.28), transparent 22%),
    radial-gradient(circle at 80% 22%, rgba(255, 111, 143, 0.22), transparent 28%),
    linear-gradient(145deg, #221939 0%, #312353 44%, #121b32 100%);
}

.hero-visual--registration .hero-table { left: 36px; top: 134px; }
.hero-visual--registration .hero-phone { right: 40px; top: 54px; transform: rotate(7deg); }
.hero-visual--registration .hero-pill { left: 48px; bottom: 32px; }

.hero-visual--vip {
  background:
    radial-gradient(circle at 18% 16%, rgba(247, 198, 80, 0.36), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 111, 143, 0.18), transparent 28%),
    linear-gradient(145deg, #251229 0%, #3d1832 44%, #18172e 100%);
}

.hero-visual--vip .hero-score { left: 36px; top: 132px; }
.hero-visual--vip .hero-card--lobby { right: 32px; top: 124px; width: 286px; }
.hero-visual--vip .hero-badge { left: 46px; bottom: 32px; }

.hero-visual--safety {
  background:
    radial-gradient(circle at 20% 18%, rgba(114, 212, 255, 0.24), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(121, 243, 209, 0.2), transparent 28%),
    linear-gradient(145deg, #0e2530 0%, #133844 44%, #0b1a22 100%);
}

.hero-visual--safety .hero-score { left: 36px; top: 136px; }
.hero-visual--safety .hero-table { right: 34px; top: 126px; }
.hero-visual--safety .hero-chip { right: 52px; bottom: 34px; }

.stat-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat-ribbon__item,
.metric-card,
.panel,
.table-card,
.author-card,
.glance-card,
.kpi-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-ribbon__item {
  padding: 16px;
}

.stat-ribbon__item strong {
  display: block;
  font-size: 1.45rem;
  color: var(--gold);
}

.stat-ribbon__item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 48px 0;
}

.section--dense {
  padding-top: 28px;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section__head p {
  max-width: 56ch;
  color: var(--muted);
  margin: 0;
}

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

.panel {
  padding: 24px;
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

.feature-list,
.meta-list,
.bullet-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.feature-list li,
.meta-list li,
.bullet-list li {
  margin-bottom: 10px;
  color: #daf5ee;
}

.glance-card,
.metric-card,
.kpi-card {
  padding: 22px;
}

.glance-card strong,
.metric-card strong,
.kpi-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
}

.glance-card span,
.metric-card span,
.kpi-card span {
  color: var(--muted);
}

.table-card {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: rgba(121, 243, 209, 0.08);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(121, 243, 209, 0.1);
  font-size: 0.95rem;
}

th {
  color: #f6fffd;
  font-weight: 700;
}

td {
  color: #d9f0eb;
}

.chart,
.bars,
.curve-chart {
  padding: 22px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.bars {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 152px 1fr 54px;
  align-items: center;
  gap: 12px;
}

.bar-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.bar-track {
  height: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-deep), var(--gold));
}

.curve-chart svg,
.mini-diagram svg {
  width: 100%;
  height: auto;
}

.quote-card {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(247, 198, 80, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

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

.content-layout p {
  margin: 0 0 18px;
  color: #e7f9f6;
}

.content-layout h2,
.content-layout h3 {
  margin-top: 34px;
  margin-bottom: 16px;
}

.content-layout .table-card,
.content-layout .bars,
.content-layout .curve-chart,
.content-layout .quote-card,
.content-layout .panel,
.content-layout .mini-diagram {
  margin: 26px 0;
}

.link-cluster {
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(121, 243, 209, 0.06);
  border: 1px solid rgba(121, 243, 209, 0.12);
}

.link-cluster a {
  color: var(--gold);
}

.author-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
  padding: 24px;
  align-items: center;
}

.author-card img {
  width: 132px;
  height: 160px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(121, 243, 209, 0.16);
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(121, 243, 209, 0.08);
}

.site-footer {
  margin-top: 40px;
  padding: 42px 0 50px;
  background: rgba(4, 10, 13, 0.94);
  border-top: 1px solid rgba(121, 243, 209, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 1fr;
  gap: 20px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links,
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(121, 243, 209, 0.14);
  background: rgba(121, 243, 209, 0.06);
  font-size: 0.82rem;
  color: #d7faf1;
}

.page-divider {
  width: var(--container);
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, rgba(121, 243, 209, 0.28), transparent);
}

.mini-diagram {
  padding: 18px;
  border: 1px solid rgba(121, 243, 209, 0.14);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(121, 243, 209, 0.12), rgba(247, 198, 80, 0.15));
  border: 1px solid rgba(121, 243, 209, 0.16);
}

.hero-note {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1080px) {
  .site-nav,
  .header-actions .btn--ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .hero--alt,
  .site-footer__grid,
  .author-card {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual__logo {
    width: 92px;
    height: 92px;
  }

  .hero-phone {
    width: 188px;
    height: 336px;
  }

  .hero-card--lobby,
  .hero-mini-chart,
  .hero-score,
  .hero-table {
    width: 236px;
  }

  .hero-visual--mobile .hero-phone--secondary {
    left: 180px;
    top: 110px;
  }

  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 12;
  }

  .mobile-drawer {
    display: none;
    width: var(--container);
    margin: 0 auto 18px;
    padding: 18px;
    background: rgba(4, 12, 17, 0.98);
    border: 1px solid rgba(121, 243, 209, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .mobile-drawer.is-open {
    display: grid;
    gap: 10px;
  }

  .mobile-drawer a,
  .mobile-drawer .btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand {
    gap: 10px;
  }

  .brand__logo {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }

  .brand__logo--footer {
    width: 82px;
    height: 82px;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px;
    display: grid;
    gap: 14px;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .hero-visual__logo,
  .hero-pill,
  .hero-card,
  .hero-score,
  .hero-mini-chart,
  .hero-phone,
  .hero-table,
  .hero-badge,
  .hero-chip {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: none;
  }

  .hero-visual__logo {
    width: 84px;
    height: 84px;
  }

  .hero-phone {
    height: 300px;
  }

  .hero-visual--mobile .hero-phone--secondary {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .stat-ribbon,
  .card-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .section__head,
  .hero__actions,
  .stack-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
