:root {
  color-scheme: dark;
  --bg: #07110e;
  --panel: #0d1b17;
  --panel-2: #122821;
  --line: #254238;
  --text: #f4fbf8;
  --muted: #a9c0b8;
  --accent: #74e1bf;
  --accent-dark: #09251d;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at 75% 0%, #16382e 0, transparent 30rem), var(--bg); color: var(--text); font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
.nav { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--accent); color: var(--accent-dark); }
nav, footer div, .actions { display: flex; align-items: center; gap: 22px; }
nav a:not(.button), footer a { color: var(--muted); }
nav a:hover, footer a:hover { color: var(--accent); }
.hero, .section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.hero { min-height: 650px; display: flex; flex-direction: column; justify-content: center; padding: 80px 0; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .14em; }
h1 { max-width: 860px; margin: 12px 0 26px; font-size: clamp(50px, 8vw, 94px); line-height: .98; letter-spacing: -.065em; }
h1 span { color: var(--accent); }
.lead { max-width: 740px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.actions { margin: 28px 0 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 12px; background: var(--accent); color: var(--accent-dark); font-weight: 800; }
.button.small { min-height: 38px; padding: 0 16px; }
.button.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.micro { color: #789088; font-size: 13px; }
.section { padding: 100px 0; border-top: 1px solid var(--line); }
h2 { max-width: 760px; margin: 8px 0 44px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.grid { display: grid; gap: 18px; }
.features { grid-template-columns: repeat(2, 1fr); }
.features article, .price-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(18,40,33,.92), rgba(9,22,18,.92)); }
.features article > span { color: var(--accent); font-weight: 800; }
h3 { margin: 24px 0 8px; font-size: 24px; }
article p { color: var(--muted); }
.pricing { grid-template-columns: repeat(2, 1fr); }
.price-card.featured { border-color: var(--accent); box-shadow: inset 0 0 0 1px rgba(116,225,191,.2); }
.plan { margin: 0; color: var(--text); font-weight: 800; }
.price { margin: 12px 0; color: var(--text); font-size: 44px; font-weight: 850; letter-spacing: -.04em; }
.price small { color: var(--muted); font-size: 16px; font-weight: 600; }
.badge { display: inline-block; margin: 0 0 16px; padding: 4px 9px; border-radius: 999px; background: var(--accent); color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 36px 0 52px; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); }
.legal { width: min(calc(100% - 40px), 800px); margin: 0 auto; padding: 70px 0 110px; }
.legal h1 { font-size: clamp(42px, 7vw, 70px); }
.legal h2 { margin: 44px 0 12px; font-size: 28px; }
.legal p, .legal li { color: var(--muted); }
@media (max-width: 720px) {
  nav > a:not(.button) { display: none; }
  .hero { min-height: 580px; }
  .features, .pricing { grid-template-columns: 1fr; }
  .actions, footer { align-items: stretch; flex-direction: column; }
  footer div { flex-wrap: wrap; }
}
