*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f1117;
  --surface: #1a1d27;
  --border: #2a2d3a;
  --text: #e4e4e7;
  --muted: #9ca3af;
  --accent: #6366f1;
  --accent-hover: #818cf8;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.hero {
  padding: 80px 0 48px;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero .sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Sections */
section { padding: 48px 0; }
section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

/* Value bullets */
.value-list { list-style: none; }
.value-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.value-list li strong { color: var(--white); }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.price-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.price-card .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0;
}
.price-card .amount span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.price-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* CTA button */
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.cta:hover { background: var(--accent-hover); }

/* Sample */
.sample-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 16px;
}
.sample-box h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.sample-box ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.sample-box ul li { padding: 4px 0; }

/* How it works */
.steps { counter-reset: step; list-style: none; }
.steps li {
  padding: 12px 0 12px 40px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Policy */
.policy {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.policy h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 20px 0 8px;
}
.policy h3:first-child { margin-top: 0; }

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--accent); text-decoration: none; }
