:root {
  color-scheme: dark;
  --blue: #2e92ff;
  --ink: #f7f9fc;
  --muted: #aab3c2;
  --surface: #151a22;
  --line: rgba(255, 255, 255, .10);
  --page: #070a0f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--page); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: auto; }
nav { position: sticky; top: 0; z-index: 10; background: rgba(7, 10, 15, .92); border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.links a { text-decoration: none; }
.links a:hover { color: var(--ink); }
.hero { padding: 104px 0 88px; text-align: center; }
.hero-logo { width: 112px; height: 112px; border-radius: 28px; box-shadow: 0 24px 70px rgba(46, 146, 255, .22); }
.eyebrow { color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 22px auto 16px; max-width: 840px; font-size: clamp(44px, 8vw, 78px); line-height: 1.05; letter-spacing: -.045em; }
.lead { max-width: 670px; margin: auto; color: var(--muted); font-size: clamp(18px, 2.3vw, 22px); }
.actions { margin-top: 32px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 650; border: 1px solid var(--line); }
.button.primary { color: white; background: var(--blue); border-color: var(--blue); }
.button.secondary { background: var(--surface); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 96px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.card .icon { color: var(--blue); font-size: 25px; }
.card h2 { margin: 18px 0 7px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); }
.pricing { margin-bottom: 96px; padding: 42px; text-align: center; border: 1px solid rgba(46, 146, 255, .4); border-radius: 30px; background: #0e1723; }
.price { margin: 12px 0 0; font-size: 54px; font-weight: 760; letter-spacing: -.035em; }
.legal { width: min(800px, calc(100% - 40px)); margin: auto; padding: 72px 0 100px; }
.legal h1 { margin: 0 0 12px; font-size: clamp(38px, 7vw, 58px); }
.updated { margin-bottom: 44px; color: var(--muted); }
.legal h2 { margin: 38px 0 9px; font-size: 23px; }
.legal p, .legal li { color: #c3cad5; }
.legal hr { border: 0; border-top: 1px solid var(--line); margin: 56px 0; }
.legal .notice { padding: 18px 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
@media (max-width: 760px) {
  .links { gap: 12px; font-size: 12px; }
  .hero { padding-top: 74px; }
  .grid { grid-template-columns: 1fr; }
  .pricing { padding: 30px 22px; }
  .footer-inner { padding: 24px 0; display: block; }
}
