:root {
  color-scheme: dark;
  --bg: #0b0d11;
  --panel: #151922;
  --panel-2: #1b2130;
  --text: #f3f6fb;
  --muted: #a8b1c2;
  --accent: #8ab4ff;
  --accent-2: #d6e4ff;
  --border: #2b3447;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: linear-gradient(180deg, #0b0d11 0%, #121723 100%);
  color: var(--text);
}
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.hero {
  padding: 56px 0 48px;
}
.badge {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(138,180,255,0.35);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(138,180,255,0.1);
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  margin: 0 0 18px;
  max-width: 900px;
}
.lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 780px;
  margin: 0 0 28px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}
.hero-points {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-points li + li {
  margin-top: 8px;
}
.button {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
}
.button.primary {
  background: var(--accent);
  color: #08101f;
  border-color: transparent;
  font-weight: 600;
}
.button.secondary {
  background: var(--panel);
  color: var(--text);
}
.section {
  padding: 28px 0;
}
.section.alt {
  padding: 36px 0;
}
.section-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  background: rgba(21,25,34,0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.card h2, .step h3 {
  margin: 0 0 10px;
}
.card p, .step p, .contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(27,33,48,0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}
.step span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(138,180,255,0.12);
  color: var(--accent-2);
  font-weight: 700;
}
.pricing-grid {
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.featured {
  border-color: rgba(138,180,255,0.6);
  box-shadow: 0 0 0 1px rgba(138,180,255,0.18), 0 16px 40px rgba(0,0,0,0.18);
}
.mini-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(138,180,255,0.12);
  color: var(--accent-2);
  font-size: 12px;
  border: 1px solid rgba(138,180,255,0.28);
}
.price {
  font-size: 36px;
  font-weight: 700;
  margin: 4px 0 12px;
}
.price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 4px;
}
.pricing-copy {
  margin-bottom: 16px !important;
}
.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.feature-list li + li {
  margin-top: 8px;
}
.pricing-button {
  margin-top: 18px;
  width: 100%;
  text-align: center;
}
a { color: var(--accent-2); }
@media (max-width: 860px) {
  .grid.three, .grid.two {
    grid-template-columns: 1fr;
  }
}
