:root {
  --bg: #0b1020;
  --bg-soft: #111834;
  --card: #151d3b;
  --ink: #e8ecf8;
  --muted: #9aa6c7;
  --brand: #4f8cff;
  --brand-2: #6ee7b7;
  --line: #243056;
  --radius: 14px;
  --maxw: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #1b2750 0%, var(--bg) 55%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 14px rgba(79, 140, 255, 0.8);
}
.nav-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #7aa6ff);
  color: #06122e;
  box-shadow: 0 8px 24px rgba(79, 140, 255, 0.35);
}
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }

/* Hero */
.hero { padding: 84px 0 56px; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; margin: 0 0 16px; }
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 640px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
section.block { padding: 48px 0; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 10px; }
.section-sub { color: var(--muted); max-width: 680px; margin: 0 0 28px; }

/* Cards / grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, var(--card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { color: var(--muted); margin: 0; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(79, 140, 255, 0.15);
  color: var(--brand); font-weight: 700; margin-bottom: 12px;
}

/* Pricing */
.price-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
.plan { display: flex; flex-direction: column; }
.plan.featured { border-color: var(--brand); box-shadow: 0 12px 40px rgba(79, 140, 255, 0.18); }
.plan .price { font-size: 2.4rem; font-weight: 800; margin: 8px 0 2px; }
.plan .price small { font-size: 0.95rem; color: var(--muted); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 24px; flex: 1; }
.plan ul li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink); }
.plan ul li::before { content: "✓ "; color: var(--brand-2); font-weight: 700; }
.badge { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #06122e; background: var(--brand-2); padding: 4px 10px; border-radius: 999px; }

/* Legal pages */
.legal { padding: 56px 0; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; margin-top: 32px; }
.legal p, .legal li { color: #cdd6f0; }
.legal ul { padding-left: 20px; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list .label { color: var(--muted); display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-list .value { font-size: 1.1rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 36px 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .grid-3, .grid-2, .price-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.show { display: flex; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-soft); flex-direction: column; padding: 16px 20px; border-bottom: 1px solid var(--line); }
}
