:root {
  --bg: #05080f;
  --surface: #0c1018;
  --surface-2: #121820;
  --border: #1e2a3a;
  --text: #f0f4f8;
  --muted: #8b9cb3;
  --brand: #0090ff;
  --brand-hover: #33a6ff;
  --glow: rgba(0, 144, 255, 0.45);
  --glow-soft: rgba(0, 144, 255, 0.15);
  --ok: #3fb950;
  --bad: #f85149;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, Consolas, monospace;
  --max: 1100px;
  --border-light: #151b24;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Glow card base */
.glow-card {
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(0, 144, 255, 0.08),
    0 0 24px var(--glow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Topbar */
.topbar {
  background: #080b12;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar strong {
  color: var(--text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 8, 15, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}

.logo img {
  height: 26px;
  width: auto;
}

.nav {
  display: none;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
    margin-left: 0;
  }

  .header-actions {
    margin-left: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-hover);
}

.btn-glow {
  box-shadow: 0 0 20px var(--glow), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-glow:hover {
  box-shadow: 0 0 28px var(--glow), 0 4px 16px rgba(0, 0, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline:hover {
  background: rgba(0, 144, 255, 0.1);
  box-shadow: 0 0 16px var(--glow-soft);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

.link-action {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--brand);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero */
.hero {
  padding: 40px 0 36px;
  background: radial-gradient(ellipse 70% 50% at 70% 0%, rgba(0, 144, 255, 0.08), transparent 60%);
}

.hero-inner {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 300px;
    align-items: start;
    gap: 32px;
  }
}

.hero-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-features {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

@media (min-width: 560px) {
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 144, 255, 0.15);
  color: var(--brand);
  flex-shrink: 0;
}

.hero-feature-icon--bolt {
  color: #5eb8ff;
}

.hero-feature-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.hero-feature-sub {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.hero-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.hero-hint .sep {
  margin: 0 8px;
  opacity: 0.4;
}

/* Access panel */
.access-panel {
  padding: 22px;
}

@media (max-width: 899px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .access-panel {
    order: -1;
  }
}

.access-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.status-online .status-dot {
  background: var(--ok);
  box-shadow: 0 0 8px rgba(63, 185, 80, 0.6);
}

.access-domain {
  display: none;
}

.access-hint {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.access-alt {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Advantages */
.section-advantages {
  padding: 36px 0;
}

.section-label {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-header {
  box-shadow: 0 0 16px var(--glow-soft);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 720px) {
  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .fact-card {
    border-radius: var(--radius);
  }
}

.fact-card {
  padding: 18px 16px;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}

@media (prefers-reduced-motion: no-preference) {
  .fact-card:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(0, 144, 255, 0.2),
      0 0 32px var(--glow-soft);
  }
}

.fact-icon-img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  object-fit: contain;
}

.fact-value {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
}

.fact-label {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* Оплата — светлая полоса как в макете */
.payments-heading {
  margin: 28px 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.payments-strip--light {
  margin-top: 0;
  padding: 22px 28px;
  background: linear-gradient(180deg, #5c6672 0%, #4a5360 50%, #434c58 100%);
  border: none;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.35);
}

.payments-strip__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

@media (min-width: 640px) {
  .payments-strip__logos {
    justify-content: space-evenly;
    gap: 24px;
  }
}

.payments-strip__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payments-strip--light .payments-strip__logos img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.payments-strip__logos li img {
  height: 40px;
  width: 40px;
}

/* Steps */
.section {
  padding: 40px 0;
}

.section--compact {
  padding: 28px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.step-card {
  text-align: center;
  padding: 8px;
}

.step-ring {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 2px var(--border),
    0 0 30px var(--glow-soft);
}

.step-ring::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--brand), transparent 55%, transparent 100%);
  z-index: -1;
  opacity: 0.7;
}

.step-num {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.05em;
}

.step-icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-card p,
.step-url {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.step-url {
  font-family: var(--mono);
  color: var(--brand);
  font-weight: 600;
}

/* Bonuses */
.bonus-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  position: relative;
  min-height: 160px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 24px var(--glow-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (prefers-reduced-motion: no-preference) {
  .bonus-card:hover {
    border-color: rgba(0, 144, 255, 0.35);
    box-shadow: 0 0 32px var(--glow-soft);
  }
}

.bonus-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.85;
  pointer-events: none;
}

.bonus-content {
  position: relative;
  z-index: 1;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(5, 8, 15, 0.92) 40%, transparent);
}

.bonus-card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.bonus-value {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bonus-desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Table & FAQ */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

th {
  background: var(--surface-2);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

td {
  background: var(--surface);
  color: var(--muted);
}

td:first-child {
  color: var(--text);
  font-weight: 500;
}

tr:last-child td {
  border-bottom: none;
}

.col-good {
  color: var(--ok);
}

.col-bad {
  color: var(--bad);
}

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: 20px;
  background: #0a0e14;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  gap: 24px;
  padding: 32px 24px 24px;
}

@media (min-width: 800px) {
  .footer-main {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.footer-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}

.footer-disclaimer strong {
  color: var(--text);
}

.age {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 100px;
}

.trust-ga {
  font-size: 22px;
  font-weight: 800;
  color: #6b8aab;
  line-height: 1;
}

.trust-badge-text {
  font-size: 10px;
  line-height: 1.2;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust-badge--age {
  justify-content: center;
  min-width: 56px;
  padding: 10px;
}

.trust-badge--age span {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.btn-support {
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 24px 100px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom p {
  margin: 0;
}

/* Sticky */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5, 8, 15, 0.97);
  border-top: 1px solid var(--border);
  z-index: 200;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}
