:root{
  --bg: #0b0f14;
  --surface: #111827;
  --surface-2: #0f172a;
  --line: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #7aa2ff;
  --accent-2: #9ad0ff;
  --good: #22c55e;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --maxw: 980px;
  font-synthesis: style;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% -10%, #121a2a 0%, transparent 60%),
              radial-gradient(1000px 500px at 120% 0%, #0d1b2e 0%, transparent 55%),
              var(--bg);
  color:var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  position:fixed;
  left:16px; top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:10px;
  z-index:1000;
}

.site-header{
  position:sticky;
  top:0;
  background: rgba(11,15,20,.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
  z-index:100;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  color:white;
  font-weight:700;
  letter-spacing:.5px;
  box-shadow: var(--shadow);
}
.brand-name{font-weight:700;font-size:18px}
.brand-sub{color:var(--muted);font-size:13px;margin-top:-2px}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.04)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  gap:8px;
  box-shadow: var(--shadow);
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  border-color: transparent;
}
.btn.ghost{
  background: transparent;
  box-shadow:none;
}

.hero{
  padding:48px 0 20px;
  display:grid;
  gap:12px;
}
.hero h1{
  font-size: clamp(28px, 4vw, 40px);
  line-height:1.2;
  margin:0;
}
.lead{
  color:var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 68ch;
}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin:18px 0 40px;
}
.card{
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
  min-height:160px;
}
.card h2{
  margin:0 0 6px 0;
  font-size:18px;
}
.card p{margin:0 0 8px 0;color:var(--muted)}
.link{color:var(--accent);font-weight:700;text-decoration:none}

.contact{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  margin-bottom:48px;
  box-shadow: var(--shadow);
}
.note{
  margin-top:10px;
  padding:10px 12px;
  border-radius:10px;
  border:1px dashed var(--line);
  color:var(--muted);
}

.policy{
  padding:28px 0 60px;
}
.policy h1{margin-top:18px}
.policy h2{margin-top:20px}
.policy p, .policy li{color:#d1d5db}
.sep{
  border:none;
  border-top:1px solid var(--line);
  margin:26px 0;
}

.site-footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:10px;
}
.footer-links{display:flex;gap:10px}
.footer-links a{color:var(--muted);text-decoration:none;font-weight:600}
.footer-links a:hover{color:var(--text)}
.muted{color:var(--muted)}

a:focus-visible, .btn:focus-visible, .nav a:focus-visible{
  outline:2px solid var(--accent-2);
  outline-offset:2px;
}

@media (max-width: 900px){
  .cards{grid-template-columns: 1fr}
}
