:root {
  --void: #061208;
  --abyss: #0a1610;
  --ash: #122018;
  --line: rgba(92, 200, 130, 0.22);
  --text: #eef6f0;
  --text-soft: #a8c4b4;
  --ember: #2d9b5a;
  --ember-deep: #1e6b3d;
  --flame: #5cc882;
  --pupil-gold: #ffe566;
  --glow: rgba(45, 155, 90, 0.45);
  --card: rgba(14, 28, 20, 0.88);
  --ok: #5cb88a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--void);
  line-height: 1.55;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% -5%, rgba(45, 155, 90, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 35% at 85% 20%, rgba(92, 200, 130, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(30, 107, 61, 0.08), transparent 45%);
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ember);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 18, 8, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 12px var(--glow));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pupil-gold);
}

.brand-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  color: var(--text-soft);
}

.nav a:hover {
  color: var(--flame);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: var(--pupil-gold);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--ash);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.play-emblem {
  width: min(100%, 340px);
  height: auto;
  display: block;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 40px var(--glow));
}

.kicker {
  color: var(--flame);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: "Rubik", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #062010;
  box-shadow: 0 8px 28px rgba(45, 155, 90, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7dd99a, var(--ember-deep));
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--flame);
  color: var(--pupil-gold);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facts li {
  min-width: 140px;
  color: var(--text-soft);
}

.facts b {
  display: block;
  font-size: 20px;
  color: var(--pupil-gold);
  font-family: "Rubik", sans-serif;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
  color: var(--pupil-gold);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--glow);
  position: absolute;
  left: 0;
  top: 17px;
}

.section {
  padding: 64px 0;
}

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

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  color: var(--pupil-gold);
}

.card p {
  color: var(--text-soft);
  margin: 0;
}

.icon {
  width: 48px;
  height: 48px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.badge-public {
  background: rgba(255, 229, 102, 0.15);
  color: var(--pupil-gold);
  border: 1px solid rgba(255, 229, 102, 0.35);
}

.badge-private {
  background: rgba(92, 200, 130, 0.12);
  color: var(--flame);
  border: 1px solid var(--line);
}

.gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gate {
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}

.gate-art {
  height: 180px;
  display: grid;
  place-items: center;
}

.gate-art.public {
  background: linear-gradient(160deg, #1a2a1e, #0a120c);
}

.gate-art.private {
  background: linear-gradient(160deg, #142820, #08100a);
}

.gate-body {
  padding: 22px;
}

.gate-body p,
.gate-body ul {
  color: var(--text-soft);
}

.gate-body h3 {
  color: var(--pupil-gold);
}

.gate-body ul {
  margin: 0;
  padding-left: 18px;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--ash);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.step span {
  display: block;
  color: var(--flame);
  font-weight: 800;
  margin-bottom: 8px;
  font-family: "Rubik", sans-serif;
}

.step p {
  color: var(--text-soft);
  margin: 0;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq p {
  color: var(--text-soft);
  margin: 10px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--pupil-gold);
}

.contact-card a {
  color: var(--flame);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.max-qr {
  margin: 18px 0 0;
  padding: 0;
}

.max-qr img {
  display: block;
  width: min(220px, 100%);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.max-qr figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

form {
  background: var(--ash);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

form h2 {
  color: var(--pupil-gold);
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: var(--void);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(92, 200, 130, 0.45);
  border-color: var(--flame);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--text-soft);
}

.success {
  display: none;
  color: var(--ok);
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--text-soft);
  font-size: 14px;
  background: var(--abyss);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid strong {
  font-family: "Rubik", sans-serif;
  color: var(--pupil-gold);
}

.footer-grid a {
  color: var(--flame);
  text-decoration: none;
}

.fixed-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  box-shadow: 0 12px 40px rgba(45, 155, 90, 0.4);
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  margin-top: 28px;
  font-size: 22px;
  color: var(--pupil-gold);
}

.legal-body p,
.legal-body li {
  color: var(--text-soft);
}

.legal-body a {
  color: var(--flame);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
}

.consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.consent a {
  color: var(--flame);
}

@media (max-width: 900px) {
  .nav,
  .header-cta .btn {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--abyss);
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-grid,
  .cards,
  .gates,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 220px;
  }

  .play-emblem {
    width: 220px;
  }

  .hero {
    padding-top: 24px;
  }
}

@media (min-width: 901px) {
  .cards.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .cards.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
