*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b1120;
  --surface: #151f33;
  --border: #243049;
  --text: #e8edf7;
  --muted: #9aa8c2;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --ok: #22c55e;
  --radius: 14px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.launch-banner {
  background: linear-gradient(90deg, #1e3a5f 0%, #2563eb 50%, #1e3a5f 100%);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.launch-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.launch-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.launch-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 55ch;
  margin: -0.5rem auto 2rem;
  font-size: 1.05rem;
}

.section-lead strong {
  color: var(--text);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 17, 32, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(ellipse at top, #1a2a4a 0%, var(--bg) 60%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--accent);
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.lead strong {
  color: var(--text);
}

.card-footnote {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

.hook {
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hook-inner blockquote {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.benefits {
  background: radial-gradient(ellipse at center, #151f33 0%, var(--bg) 70%);
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.benefit-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.benefit-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.early-access {
  padding: 3rem 0;
}

.early-access-inner {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.12);
}

.early-list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.early-list strong {
  color: var(--text);
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

.cta-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.cta-box h2 {
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline,
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.report-preview {
  display: grid;
  gap: 0.75rem;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.report-row span {
  color: var(--muted);
}

.ok {
  color: var(--ok);
}

section {
  padding: 3.5rem 0;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cards,
.price-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cards,
  .price-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
  }
}

.card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card h3,
.price-card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.5rem 0 1rem;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card li::before {
  content: "✓ ";
  color: var(--ok);
}

.step-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
}

.step-list span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 0.75rem;
}

.email-form input {
  flex: 1 1 200px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
}

.form-success {
  color: var(--ok);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem;
  border: 1px solid var(--ok);
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.1);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 1rem;
}

.footer-inner {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p + p {
  margin-top: 0.35rem;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}
