:root {
  --background: #070a09;
  --surface: #0e1412;
  --surface-light: #151d1a;
  --text: #f4f7f5;
  --muted: #a6b0aa;
  --gold: #d8b45a;
  --green: #3ee08f;
  --border: rgba(255,255,255,.10);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(62,224,143,.08), transparent 35rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 1.25rem; font-weight: 900; letter-spacing: .08em; }
.logo span { color: var(--green); }

nav { display: flex; gap: 1.25rem; color: var(--muted); font-size: .95rem; }
nav a:hover { color: var(--text); }

.hero {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
  padding: 7rem 0 6rem;
}

.hero-badge, .eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(62,224,143,.25);
  background: rgba(62,224,143,.06);
  border-radius: 999px;
  padding: .55rem .9rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: .65rem 0 2rem;
}

h3 { font-size: 1.2rem; margin-bottom: .5rem; }

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid var(--border);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #20b96d);
  color: #04120b;
  border-color: transparent;
}

.button.secondary { background: rgba(255,255,255,.04); }
.button:hover { transform: translateY(-1px); }

.availability { margin-top: 1rem; color: var(--muted); font-size: .92rem; }

.section, .cta-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.card-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.card, .price-card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card p, .price-card p, .split-section > p, details p, .cta-section > p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.price-card.featured { border-color: rgba(216,180,90,.45); }
.plan-name { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price { color: var(--text) !important; font-size: 2rem; font-weight: 900; margin: .5rem 0; }

.faq-list { display: grid; gap: .8rem; }
details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  padding: 1rem 1.1rem;
}
summary { cursor: pointer; font-weight: 800; }
details p { margin-top: .75rem; }

.cta-section {
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-section .button { margin-top: 1.5rem; }

footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 760px) {
  nav { display: none; }
  .hero { padding-top: 4.5rem; }
  .card-grid, .pricing-grid, .split-section { grid-template-columns: 1fr; }
  .split-section { gap: 1rem; }
  footer { flex-direction: column; gap: .35rem; }
}
