:root {
  --bg: #0a0a0f;
  --surface: #141420;
  --text: #f0f0f5;
  --muted: #9898b0;
  --blue: #4f97ff;
  --line: rgba(255,255,255,.08);
  --max: 1080px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Roboto, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--blue); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky; top: 0; z-index: 10;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.site-logo { color: var(--text); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.site-nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.site-nav a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.25rem; border-radius: 999px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-secondary { background: transparent; color: var(--blue); border: 1px solid var(--line); }
.hero { padding: 4.5rem 0 3rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; margin: 0 0 1rem; font-weight: 800; }
.hero p { color: var(--muted); font-size: 1.15rem; max-width: 42rem; margin: 0 auto 1.75rem; }
.hero__ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.trust-strip { color: var(--muted); font-size: .8rem; }
.section { padding: 3.5rem 0; border-top: 1px solid var(--line); }
.section h2 { font-size: 1.75rem; margin: 0 0 1rem; }
.section p, .section li { color: var(--muted); }
.grid-3 { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.25rem;
}
.card h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--text); }
.code {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 1rem; overflow-x: auto;
  font-family: ui-monospace, monospace; font-size: .8rem; color: #c8e1ff;
}
.pricing-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.pricing-table th, .pricing-table td { border: 1px solid var(--line); padding: .75rem; text-align: left; }
.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted); font-size: .85rem; }
