:root {
  --bg: #0b0f1a;
  --bg-alt: #10162a;
  --text: #eef1f8;
  --text-muted: #a9b1c7;
  --accent: #ff5a5f;
  --accent-2: #3ecf8e;
  --border: #232b45;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

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

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

/* Hero */

.hero {
  padding: 72px 0 64px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--bg-alt), var(--bg) 70%);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.25;
  margin: 0 0 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Buttons */

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 8px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta-button:hover {
  background: #ff787c;
  transform: translateY(-1px);
}

.cta-button.secondary {
  background: var(--accent-2);
}

.cta-button.secondary:hover {
  background: #57e0a4;
}

/* Sections */

.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 40px;
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.step-number {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Proof points */

.proof-lead {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-muted);
}

.proof-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proof-list li {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: 8px;
  padding: 16px 20px;
}

/* Pricing */

.pricing {
  text-align: center;
}

.pricing p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* Footer */

.footer {
  padding: 56px 0 40px;
  text-align: center;
  border-bottom: none;
}

.footer p {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.footer-small {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
