:root {
  --bg: #0b0f1a;
  --panel: #121828;
  --text: #e6e9f0;
  --muted: #9aa3b2;
  --brand: #5b8cff;
  --brand-2: #8a6bff;
  --border: #222a3d;
  --radius: 14px;
}

* { 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.65;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

header.nav {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

h1 { font-size: 38px; letter-spacing: -0.03em; margin: 0 0 8px; }
h2 { font-size: 22px; margin: 36px 0 10px; letter-spacing: -0.01em; }
.lead { color: var(--muted); font-size: 17px; margin: 0 0 8px; }
.updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }

.legal p, .legal li { color: #c7cedd; }
.legal h2 { color: var(--text); }

/* Pricing */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan.popular { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.plan .badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: rgba(91, 140, 255, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.plan h3 { margin: 0 0 4px; font-size: 18px; }
.plan .price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.plan .price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 20px 0 0; }
.plan li { color: #c7cedd; padding: 7px 0 7px 26px; position: relative; font-size: 14px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.cta {
  display: inline-block;
  margin-top: 22px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
}
.plan.popular .cta {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border: none;
  color: #fff;
}

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
