:root {
  --bg: #0a0f1f;
  --panel: #121b37;
  --panel-soft: #0f1730;
  --text: #e9efff;
  --muted: #acb8dd;
  --accent: #21d4a3;
  --line: #2a3a6a;
  --warn: #ffd66e;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, #2b4ca44a, transparent),
    radial-gradient(700px 500px at -5% 15%, #1dd3a529, transparent),
    var(--bg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 60px);
}
.brand { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 16px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); }

.hero-content {
  padding: 40px clamp(20px, 7vw, 90px) 88px;
  max-width: 900px;
}
.hero h1 { font-size: clamp(2rem, 6vw, 4rem); margin: 0 0 16px; line-height: 1.05; }
.hero p { color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 64ch; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); font-size: 0.78rem; font-weight: 700; }
.hero-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hero-stats span {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: #0f1733;
  font-size: 0.84rem;
}

.section { padding: 56px clamp(20px, 7vw, 90px); }
.section h2 { margin-top: 0; font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.muted { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.card {
  background: linear-gradient(180deg, #182451 0%, #111a37 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin-bottom: 0; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.step {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.step span { color: var(--warn); font-weight: 700; font-size: 0.85rem; }
.step h3 { margin: 8px 0 8px; }
.step p { margin: 0; color: var(--muted); }

.band {
  background: linear-gradient(180deg, #101732 0%, #0d142b 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  max-width: 420px;
  padding: 20px;
}
.price-card.featured {
  box-shadow: 0 20px 60px #0000004d;
}
.plan { margin: 0; color: var(--muted); }
.price { margin: 8px 0 14px; font-size: 2.3rem; font-weight: 800; }
.price span { font-size: 1rem; font-weight: 700; color: var(--muted); }
.benefits {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.benefits li { margin: 0 0 7px; }
.small { color: var(--muted); font-size: 0.85rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  color: #071017;
  background: var(--accent);
  transition: transform 120ms ease, background 120ms ease;
}
.button:hover { transform: translateY(-1px); background: #33e9b1; }
.button.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button.wide { width: 100%; }

.cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel-soft);
  padding: 16px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-item p { margin: 0; color: var(--muted); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px clamp(20px, 7vw, 90px) 42px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}
.footer a { color: var(--text); }
.footer-links {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 740px) {
  .nav-links { display: none; }
  .nav { padding: 16px 18px; }
  .hero-content { padding: 26px 18px 58px; }
  .hero h1 { font-size: clamp(1.8rem, 10vw, 2.5rem); line-height: 1.08; }
  .hero p { font-size: 1rem; }
  .section { padding: 44px 18px; }
  .cta-row { margin-top: 18px; }
  .cta-row .button {
    width: 100%;
  }
  .footer-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
