:root {
  --bg: #0f1019;
  --panel: #1c212e;
  --panel-elevated: #262b3b;
  --text: #ffffff;
  --muted: #b8bcc7;
  --accent: #33c78c;
  --accent-secondary: #598ce8;
  --positive: #38d185;
  --negative: #f25961;
  --border: #2a3040;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 72px 0 48px;
  display: grid;
  gap: 32px;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 52ch;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0f14 !important;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none !important;
  margin-right: 10px;
  margin-top: 8px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text) !important;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 48px 0;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

.section {
  padding: 48px 0;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.875rem;
}

.legal {
  padding: 48px 0;
  max-width: 760px;
}

.legal h1 {
  margin-top: 0;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.hero-visual {
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(89, 140, 232, 0.35), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(51, 199, 140, 0.25), transparent 45%),
    var(--panel);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 4rem;
}

.pricing-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.price {
  font-size: 2rem;
  font-weight: 800;
}

.disclaimer-box {
  background: rgba(248, 191, 36, 0.08);
  border: 1px solid rgba(248, 191, 36, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}