:root {
  --bg: #0e1020;
  --panel: #171a30;
  --paper: #ffffff;
  --text: #f8f3e8;
  --dark-text: #1f2933;
  --muted: #b8bdca;
  --line: rgba(255,255,255,.14);
  --gold: #d6b46d;
  --violet: #6e7dff;
  --green: #7ba889;
  --shadow: 0 22px 70px rgba(0,0,0,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at 72% 4%, rgba(110,125,255,.28), transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111427;
}
.nav { display: flex; gap: 22px; color: var(--muted); font-size: 15px; }
.nav a { text-decoration: none; }
.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .97fr);
  gap: 56px;
  align-items: center;
  padding-top: 34px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 76px); line-height: .98; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.lead { margin: 24px 0 0; max-width: 720px; font-size: 21px; color: var(--muted); }
.fineprint, .section-note { color: var(--muted); }
.section-note a { color: var(--gold); font-weight: 800; }
.hero-actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 8px;
  background: var(--gold);
  color: #111427;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--gold);
}
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.astro-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.astro-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sun { position: absolute; inset: 38%; border-radius: 50%; background: var(--gold); box-shadow: 0 0 80px rgba(214,180,109,.55); }
.planet { position: absolute; border-radius: 50%; background: var(--violet); }
.p1 { width: 18px; height: 18px; left: 18%; top: 36%; }
.p2 { width: 26px; height: 26px; right: 18%; top: 18%; background: var(--green); }
.p3 { width: 12px; height: 12px; right: 25%; bottom: 20%; background: #fff; }
.intro, .split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.intro > p { margin: 0; font-size: 24px; color: var(--muted); }
.cards-grid, .pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card, .price-card, .status-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.card p, .price-card li, .price-card p { color: var(--muted); }
.icon-dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: rgba(214,180,109,.14);
  color: var(--gold);
  font-weight: 900;
}
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; counter-reset: step; }
.steps li { position: relative; padding: 22px 22px 22px 70px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 22px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #111427; font-weight: 900; }
.steps strong, .steps span { display: block; }
.steps span { color: var(--muted); margin-top: 4px; }
.muted { width: 100%; max-width: none; padding-left: max(20px, calc((100% - 1160px) / 2)); padding-right: max(20px, calc((100% - 1160px) / 2)); background: rgba(255,255,255,.05); }
.section-head { max-width: 760px; margin-bottom: 28px; }
.price { margin: 4px 0 16px; font-size: 34px; line-height: 1; color: var(--text) !important; font-weight: 900; }
.tag { margin: 0 0 14px; color: var(--gold) !important; font-weight: 900; }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(214,180,109,.48); transform: translateY(-10px); }
.price-card ul { padding-left: 20px; margin: 0 0 24px; }
.price-card .button { margin-top: auto; }
.notice {
  background: rgba(214,180,109,.1);
  border: 1px solid rgba(214,180,109,.28);
  border-radius: 8px;
  padding: 34px;
}
.cta { text-align: center; }
.cta p { max-width: 640px; margin: 16px auto 28px; color: var(--muted); font-size: 19px; }
.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 52px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer h2 { font-size: 16px; color: var(--text); margin-bottom: 12px; }
.footer a { display: block; margin-bottom: 8px; color: var(--muted); }
.legal-page { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 90px; }
.legal-page h1 { font-size: clamp(38px, 6vw, 58px); margin-bottom: 24px; }
.legal-page h2 { font-size: 25px; margin-top: 32px; }
.legal-page p { color: var(--muted); }
.status-page { width: min(920px, calc(100% - 40px)); min-height: calc(100vh - 96px); margin: 0 auto; display: grid; align-items: center; padding: 40px 0 90px; }

@media (max-width: 980px) {
  .hero, .intro, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .cards-grid, .pricing, .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
}
@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .section { width: min(100% - 28px, 1160px); padding: 48px 0; }
  .hero { gap: 32px; padding-top: 18px; }
  h1 { font-size: 42px; }
  .lead, .intro > p { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .cards-grid, .pricing, .footer { grid-template-columns: 1fr; }
  .card, .price-card, .notice, .status-panel { padding: 22px; }
}
