:root {
  --bg: #070b12;
  --bg-2: #0c121c;
  --card: #101826;
  --line: #243044;
  --text: #e8eef6;
  --muted: #9aa8b8;
  --accent: #3d8f8c;
  --accent-2: #4aa8a4;
  --gold: #c9a227;
  --gold-2: #e0c056;
  --danger: #c45c5c;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1080px;
  --sans: "Segoe UI", system-ui, -apple-system, "Noto Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--gold-2); }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.brand img { width: 36px; height: 36px; border-radius: 50%; }
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #1a1404; }
.btn-gold:hover { background: var(--gold-2); color: #1a1404; }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-2); }
.btn-soon {
  border-color: var(--line);
  color: var(--muted);
  background: #0d141f;
  cursor: not-allowed;
  pointer-events: none;
}
.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.channel-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.channel-tag.soon { color: var(--muted); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  background: #05070c;
}
.hero img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,11,18,0.15) 0%, rgba(7,11,18,0.55) 48%, rgba(7,11,18,0.96) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}
.kicker {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}
h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.85rem);
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 700;
  max-width: 18ch;
}
.lede { color: #c9d4e0; max-width: 58ch; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  background: rgba(16, 24, 38, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.price-chip strong { color: var(--gold-2); font-size: 1.25rem; }
.price-chip span { color: var(--muted); font-size: 13px; }

section.block { padding: 64px 0; }
section.alt { background: var(--bg-2); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin: 0 0 12px; }
.sub { color: var(--muted); max-width: 62ch; margin-bottom: 28px; }

.grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.card p, .card li { color: var(--muted); }
.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.icon-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #173533;
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}

.include-list { padding-left: 1.15em; margin: 0; }
.include-list li { margin: 8px 0; color: var(--muted); }

.price-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.price-box {
  border: 1px solid #3a3218;
  background: linear-gradient(180deg, #16120a, #101826);
  border-radius: 22px;
  padding: 28px;
}
.price-box .amount { font-size: 3rem; font-weight: 800; color: var(--gold-2); line-height: 1; }
.price-box .per { color: var(--muted); margin: 8px 0 18px; }
.note { font-size: 14px; color: var(--muted); }

.legal {
  padding: 48px 0 80px;
}
.legal h1 { max-width: none; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.legal h2 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: var(--muted); }
.legal .updated { color: var(--gold); font-size: 13px; letter-spacing: 0.04em; }
.mor {
  background: #12201f;
  border: 1px solid #2a5553;
  border-radius: 14px;
  padding: 16px 18px;
  color: #d7eceb;
  font-weight: 600;
}

footer.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.legal-name { color: var(--text); font-weight: 700; }

@media (max-width: 860px) {
  .nav-toggle-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #0b111b;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a, .nav-links .btn { width: 100%; text-align: center; }
  .grid-3, .grid-2, .price-panel, .foot-grid, .channels { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  section.block { padding: 44px 0; }
  .hero { min-height: 62vh; }
}
