:root {
  --bg: #050505;
  --surface: #0E0E0E;
  --text: #F4F4F5;
  --muted: #A1A1AA;
  --primary: #6366F1;
  --secondary: #22C55E;
  --accent: #F43F5E;
  --border: rgba(244, 244, 245, 0.12);
  --nav-h: 58px;
  --style-keywords: "clean, sterile, precise, analytical, white-space";
  --type-direction: "clinical sans, number-heavy hierarchy";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(99, 102, 241, 0.14) 0%, rgba(5, 5, 5, 0) 60%),
    linear-gradient(180deg, #08080c 0%, #050505 45%, #07070a 100%);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

.disclosure-banner {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  border: none;
  line-height: 1.45;
  position: relative;
  z-index: 60;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(99, 102, 241, 0.4);
  box-shadow: 0 1px 6px var(--primary);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand img {
  display: block;
}

.brand-name {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 40px;
  height: 34px;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(0, 0, 0, 0.7) 100%),
    url('/images/decorative/decor_3.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.25) 55%, rgba(5, 5, 5, 0) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 44px;
}

.hero h1 {
  font-size: 42px;
  max-width: 640px;
  margin-bottom: 14px;
}

.hero p {
  color: rgba(244, 244, 245, 0.85);
  max-width: 560px;
  font-size: 16px;
}

.hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero .hero-meta span {
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.65);
  color: var(--muted);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero .hero-meta b {
  color: var(--text);
  font-weight: 600;
}

.section {
  padding: 56px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
}

.section-head {
  margin-bottom: 28px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: 28px;
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 720px;
}

.offers-section {
  position: relative;
  padding: 64px 0;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.94) 0%, rgba(10, 10, 14, 0.94) 100%),
    url('/images/offers_bg/offers_bg.webp');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px) scale(1.012);
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.18);
}

.offer-logo-link {
  display: block;
}

.offer-logo {
  width: 132px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-name {
  text-align: center;
  font-size: 16px;
  font-weight: 650;
  color: var(--text);
}

.offer-name a {
  color: var(--text);
}

.offer-name a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.offer-bonus {
  font-size: 15px;
  font-weight: 650;
  color: var(--secondary);
  word-break: break-word;
  line-height: 1.4;
}

.offer-terms {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.offer-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.offer-cta:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.5);
}

.info-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.info-panel h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.info-panel p {
  color: var(--muted);
  font-size: 14px;
}

.info-body p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.info-body p:last-child {
  margin-bottom: 0;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
  transform: scale(1.04);
  border-color: rgba(99, 102, 241, 0.55);
}

.stat-card .stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-card .stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.data-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(244, 244, 245, 0.06);
  color: var(--text);
}

.data-table tr:hover td {
  background: rgba(99, 102, 241, 0.06);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid var(--secondary);
  box-shadow: inset 0 0 0 2px rgba(5, 5, 5, 0.9);
}

.step-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.step-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  position: relative;
}

.step-item .step-num {
  font-size: 30px;
  font-weight: 700;
  color: rgba(99, 102, 241, 0.5);
  font-variant-numeric: tabular-nums;
}

.step-item h3 {
  font-size: 15px;
  margin: 8px 0 6px;
}

.step-item p {
  font-size: 13px;
  color: var(--muted);
}

.league-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.league-row {
  display: grid;
  grid-template-columns: 150px 1fr 64px;
  gap: 14px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.2s ease;
}

.league-row:hover {
  border-color: rgba(99, 102, 241, 0.5);
}

.league-row .lg-name {
  font-size: 14px;
  font-weight: 600;
}

.league-row .lg-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(244, 244, 245, 0.08);
  overflow: hidden;
}

.league-row .lg-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.league-row .lg-score {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.qa-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.qa-row .qa-q {
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
  margin-bottom: 6px;
}

.qa-row .qa-a {
  font-size: 13px;
  color: var(--muted);
}

.mosaic-band {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 22px;
  max-width: 500px;
}

.mosaic-band img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.side-rail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.rail-figure {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 100%;
}

.rail-figure img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.rail-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.rating-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.rating-row {
  display: grid;
  grid-template-columns: 190px 1fr 46px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}

.rating-row .rr-name {
  color: var(--text);
  font-weight: 600;
}

.rating-row .rr-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 244, 245, 0.08);
  overflow: hidden;
}

.rating-row .rr-bar i {
  display: block;
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

.rating-row .rr-val {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  text-align: right;
}

.topic-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.topic-cta:hover {
  background: rgba(99, 102, 241, 0.12);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.45);
  color: var(--text);
}

.clean-figure {
  max-width: 500px;
}

.clean-figure img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

.sterile-callout {
  border-left: 2px solid var(--primary);
  background: rgba(99, 102, 241, 0.07);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0;
}

.precise-figure {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.precise-figure img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.whitespace-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}

.analytical-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.analytical-list li {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(99, 102, 241, 0.04);
  transition: transform 0.2s ease;
}

.analytical-list li:hover {
  transform: scale(1.03);
  color: var(--text);
}

.responsive-figure {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 4px;
}

.responsive-figure img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.footer {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer ul a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.footer-compliance {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 22px 0;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 34px;
  width: auto;
  border-radius: 6px;
  opacity: 0.9;
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.footer-legal p {
  font-size: 12px;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 3, 6, 0.9);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-overlay.active {
  display: flex;
}

.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 460px;
  width: 100%;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.age-gate-box .age-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.35);
}

.age-gate-box h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.age-gate-box p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-gate-actions button {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}

.age-confirm {
  background: var(--primary);
  color: #ffffff;
}

.age-confirm:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.5);
}

.age-decline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.age-decline:hover {
  color: var(--text);
  border-color: var(--muted);
}

.age-decline-note {
  display: none;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.5;
}

.age-decline-note.visible {
  display: block;
}

.age-decline-note a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  max-width: 560px;
  margin: 0 auto;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.cookie-banner p a {
  color: var(--primary);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid transparent;
}

.cookie-accept {
  background: var(--secondary);
  color: #04150a;
}

.cookie-accept:hover {
  filter: brightness(1.1);
}

.cookie-reject {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.cookie-reject:hover {
  color: var(--text);
}

.page-hero {
  position: relative;
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(99, 102, 241, 0.16) 0%, rgba(5, 5, 5, 0) 65%),
    linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(5, 5, 5, 0) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 34px;
  margin: 10px 0;
  max-width: 720px;
}

.page-hero p {
  color: var(--muted);
  max-width: 700px;
  font-size: 15px;
}

.page-content {
  padding: 44px 0;
}

.page-content p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
  max-width: 860px;
}

.page-content h2 {
  font-size: 22px;
  margin: 34px 0 12px;
  color: var(--text);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 17px;
  margin: 24px 0 10px;
}

.page-content ul,
.page-content ol {
  margin: 0 0 16px 22px;
  color: var(--muted);
  font-size: 15px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content li a,
.page-content p a {
  color: var(--primary);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 14px 0 20px;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: var(--muted);
}

.legal-table th {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-error {
  display: none;
  font-size: 12px;
  color: var(--accent);
  margin-top: 6px;
}

.form-error.visible {
  display: block;
}

.contact-submit {
  align-self: flex-start;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
}

.contact-submit:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.5);
}

.contact-success {
  display: none;
  margin-top: 22px;
  border: 1px solid var(--secondary);
  background: rgba(34, 197, 94, 0.08);
  border-radius: 12px;
  padding: 22px 24px;
  max-width: 560px;
}

.contact-success.visible {
  display: block;
}

.contact-success h3 {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.contact-success p {
  color: var(--muted);
  font-size: 14px;
}

.go-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.go-box {
  text-align: center;
  max-width: 420px;
}

.go-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--primary);
  animation: go-spin 0.9s linear infinite;
}

@keyframes go-spin {
  to {
    transform: rotate(360deg);
  }
}

.go-box h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.go-box p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.go-ad {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.go-foot {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.go-foot a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .info-split,
  .side-rail {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rating-row {
    grid-template-columns: 130px 1fr 46px;
  }

  .league-row {
    grid-template-columns: 110px 1fr 56px;
  }
}

.sub-hero {
  position: relative;
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.78) 60%, rgba(5, 5, 5, 0.94) 100%);
  pointer-events: none;
}

.sub-hero-inner {
  position: relative;
  z-index: 1;
}

.sub-hero .sub-index {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
}

.sub-hero h1 {
  font-size: 38px;
  margin: 14px 0 12px;
  max-width: 760px;
}

.sub-hero .sub-lead {
  color: rgba(244, 244, 245, 0.82);
  font-size: 16px;
  max-width: 680px;
}

.pull-quote {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  margin: 26px 0;
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.pull-quote .pq-mark {
  font-size: 44px;
  line-height: 1;
  color: rgba(99, 102, 241, 0.55);
  font-weight: 700;
}

.pull-quote p {
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.num-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.num-band .nb-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: left;
}

.nb-cell .nb-val {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.nb-cell .nb-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.rail-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 34px;
  align-items: start;
}

.rail-side {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rail-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.rail-box h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.rail-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail-box li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.rail-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 1px;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
}

.rail-figure-side {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 100%;
}

.rail-figure-side img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 14px 0 22px;
  font-variant-numeric: tabular-nums;
}

.bonus-table th,
.bonus-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: var(--muted);
  vertical-align: top;
}

.bonus-table th {
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(99, 102, 241, 0.06);
}

.bonus-table td strong {
  color: var(--text);
}

.sub-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 22px 0;
}

.sub-column {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}

.sub-column h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.sub-column p {
  font-size: 14px;
  color: var(--muted);
}

.step-numbers {
  list-style: none;
  counter-reset: stepcount;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}

.step-numbers li {
  counter-increment: stepcount;
  position: relative;
  padding: 16px 18px 16px 64px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}

.step-numbers li::before {
  content: "0" counter(stepcount);
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 22px;
  font-weight: 700;
  color: rgba(99, 102, 241, 0.6);
  font-variant-numeric: tabular-nums;
}

.step-numbers li b {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.criteria-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.criteria-row {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.criteria-row .cr-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.criteria-row .cr-name {
  font-size: 15px;
  font-weight: 650;
}

.criteria-row .cr-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.criteria-row .cr-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 244, 245, 0.08);
  overflow: hidden;
  margin-bottom: 10px;
}

.criteria-row .cr-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.criteria-row .cr-desc {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .rail-split {
    grid-template-columns: 1fr;
  }

  .rail-side {
    position: static;
  }

  .sub-columns {
    grid-template-columns: 1fr;
  }

  .sub-hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(5, 5, 8, 0.98);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    color: var(--muted);
    font-size: 19px;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .mobile-menu a:hover {
    color: var(--primary);
    text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
  }

  .mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 20px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .hero {
    height: 40vh;
    min-height: 320px;
    align-items: center;
  }

  .hero-inner {
    text-align: center;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .hero-meta {
    justify-content: center;
  }

  .section {
    padding: 40px 0;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .footer-badges img {
    height: 28px;
  }
}
