:root {
  color-scheme: dark;
  --bg: #050d19;
  --panel: #0b1a2e;
  --panel-2: #10243d;
  --line: rgba(229, 187, 84, 0.24);
  --line-strong: rgba(241, 202, 104, 0.58);
  --gold: #d7a839;
  --gold-2: #f0ca68;
  --text: #f6f8fc;
  --muted: #a8b5c8;
  --ok: #39d98a;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(230, 190, 91, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 190, 91, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #071221;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 820;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240,202,104,.42);
  border-radius: 8px;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover, .footer-links a:hover { color: var(--gold-2); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(214,168,79,.42);
  border-radius: 8px;
  background: #0b1a2e;
  color: var(--text);
  font-weight: 760;
}

.button.primary {
  border-color: transparent;
  background: var(--gold-2);
  color: #172033;
}

.page-hero {
  padding: 72px 0 46px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3 { letter-spacing: 0; }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section {
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.section h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

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

.item {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  background: var(--panel);
}

.item.highlight {
  border-color: var(--line-strong);
  background: #102039;
}

.item h2, .item h3 { margin: 0 0 10px; }
.item p { margin: 0; color: var(--muted); line-height: 1.6; }

.price {
  margin: 14px 0;
  color: var(--gold-2);
  font-size: 30px;
  font-weight: 850;
}

.price small { color: var(--muted); font-size: 14px; }

.list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.list li { color: #dce6f5; line-height: 1.45; }
.list li::before { content: "✓"; margin-right: 8px; color: var(--gold-2); font-weight: 900; }

.steps { display: grid; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.step:last-child { border-bottom: 0; }

.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 850;
}

.step h2, .step h3 { margin: 0 0 7px; }
.step p { margin: 0; color: var(--muted); line-height: 1.6; }

.notice {
  padding: 20px 22px;
  border-left: 3px solid var(--gold-2);
  background: var(--panel);
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
}

.cta h2 { margin: 0 0 8px; }
.cta p { margin: 0; color: var(--muted); }

footer {
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
  .nav a:not(.button) { display: none; }
  h1 { font-size: 38px; }
  .page-hero { padding-top: 48px; }
  .cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 24px, 1040px); }
  h1 { font-size: 32px; }
  .lead { font-size: 16px; }
  .step { grid-template-columns: 44px 1fr; gap: 12px; }
}
