:root {
  --bg: #071426;
  --panel: #0d2037;
  --panel2: #102842;
  --text: #f4f8ff;
  --muted: #b8c5d8;
  --brand: #62e6be;
  --accent: #ffc857;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(98,230,190,.16), transparent 32%), var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 10; background: rgba(7,20,38,.86); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; }
.logo-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--brand); color: #06101e; display: grid; place-items: center; }
.nav-links { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-weight: 750; }
.hero { padding: 74px 0 38px; }
.eyebrow { color: var(--brand); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 13px; }
h1 { font-size: clamp(38px, 6vw, 72px); line-height: .98; margin: 16px 0; letter-spacing: -.04em; max-width: 920px; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.05; margin: 10px 0 18px; letter-spacing: -.03em; }
h3 { font-size: 22px; margin: 0 0 10px; }
p { color: var(--muted); font-size: 18px; margin: 0 0 16px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 18px; font-weight: 900; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: #06101e; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.06); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow); }
.metric { font-size: 36px; font-weight: 950; color: var(--brand); line-height: 1; }
.section { padding: 46px 0; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid rgba(98,230,190,.25); background: rgba(98,230,190,.08); border-radius: 999px; padding: 9px 12px; color: #dcfff5; font-weight: 800; }
.lead-box { background: #07182c; border: 1px solid rgba(98,230,190,.28); border-radius: 20px; padding: 18px; }
.lead-box li { margin: 7px 0; color: var(--muted); }
.highlight { color: var(--accent); font-weight: 950; }
.footer { border-top: 1px solid var(--line); padding: 30px 0 42px; color: var(--muted); }
input, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); color: var(--text); padding: 12px 13px; font: inherit; }
label { color: var(--muted); font-weight: 800; font-size: 14px; }
.calc-result { font-size: 34px; font-weight: 950; color: var(--brand); }
@media (max-width: 760px) {
  .nav-inner { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 44px; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  p { font-size: 16px; }
  .card { padding: 18px; border-radius: 20px; }
}
