body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  background: #0b0f1a;
  color: #cfd8e6;
  line-height: 1.6;
}

a { color: #cfe2ff; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 24, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a243d;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #e8f0ff;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-header .container,
.hero .container,
.section .container,
.cta-strip .container,
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at 50% -20%, #1a2b55, #090c16 40%, #06090f 65%);
  border-bottom: 1px solid #1a243d;
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 10px;
  color: #ffffff;
}

.subhead {
  color: #b0bec5;
  font-size: 18px;
  max-width: 760px;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  background: #1c2539;
}

.btn-primary {
  background: #2b6cff;
  border-color: #2b6cff;
}

.btn-secondary {
  background: #1c2539;
}

.btn-lg {
  padding: 14px 18px;
  font-size: 16px;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: #0b1220;
  border-top: 1px solid #1a243d;
  border-bottom: 1px solid #1a243d;
}

.section h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #0f1626;
  border: 1px solid #1a243d;
  border-radius: 14px;
  padding: 18px;
}

.price .amount {
  font-size: 38px;
  color: #ffffff;
  font-weight: 700;
}

.price .period {
  color: #b0bec5;
}

.pricing-card {
  background: #0f1626;
  border: 1px solid #1a243d;
  border-radius: 14px;
  padding: 24px;
  max-width: 380px;
}

.feature-list { list-style: circle; padding-left: 18px; }
.feature-list li { margin: 8px 0; }

.faq-item { background: #0f1626; border: 1px solid #1a243d; border-radius: 10px; padding: 12px 14px; margin: 10px 0; }

.cta-strip {
  padding: 42px 0;
  background: linear-gradient(90deg, #0a142e, #121d38 50%, #0a142e);
  border-top: 1px solid #1a243d;
  border-bottom: 1px solid #1a243d;
}

.site-footer {
  padding: 24px 0;
  color: #8aa0b8;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social-proof { color: #8aa0b8; }

.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.bullet-list { line-height: 1.7; }

.hud-panel {
  background: #0b1222;
  border: 1px solid #1a2c4b;
  border-radius: 14px;
  padding: 14px;
}
.hud-title { font-weight: 600; margin-bottom: 8px; }
.hud-line { display: flex; gap: 10px; align-items: flex-start; margin: 8px 0; color: #b8c7d8; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #00e09e; margin-top: 8px; }
.two-col { grid-template-columns: 1fr; }

@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}
