:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.045);
  --line: rgba(255,255,255,.10);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,.72);
  --muted2: rgba(234,240,255,.60);

  --primary: #2f6bff;
  --primary2:#1c4fd7;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.40);
  --max: 1040px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(47,107,255,.22), transparent 60%),
    radial-gradient(700px 500px at 85% 15%, rgba(255,255,255,.10), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

h1,h2,h3{letter-spacing:-.02em}
h1{font-size:44px; line-height:1.05; margin:0 0 12px}
h2{font-size:24px; margin:0 0 10px}
h3{font-size:18px; margin:0 0 10px}
p{margin:0 0 12px}
.lead{font-size:18px; color:var(--muted); max-width:64ch}

.small{font-size:13px; color:var(--muted2)}
.muted{color:var(--muted)}

.site-header{
  position:sticky; top:0; z-index:10;
  background: rgba(11,18,32,.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:6px 0; /* tighter so bigger logo doesn't feel tall */
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 180px;
}

/* Larger logo */
.logo-img{
  height: 72px; /* was 48px */
  width: auto;
  display:block;
}

.nav{display:flex; gap:16px; align-items:center}
.nav a{
  text-decoration:none;
  font-weight:700;
  color: var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover, .nav a.active{
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.header-cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  font-weight:900;
  border-radius: 999px;
  padding:11px 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: transform .06s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: rgba(47,107,255,.55);
}
.btn-ghost{background: rgba(255,255,255,.04)}
.btn-lg{padding:13px 18px; font-size:15px}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.nav-toggle span{
  display:block; width:18px; height:2px;
  background: var(--text);
  margin:4px auto; border-radius:2px;
}

.mobile-nav{
  border-top: 1px solid var(--line);
  background: rgba(11,18,32,.88);
}
.mobile-nav-inner{
  padding:12px 0 16px;
  display:grid;
  gap:10px;
}
.mobile-nav a{
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  font-weight:800;
}
.mobile-nav a.active{
  background: rgba(47,107,255,.14);
  border-color: rgba(47,107,255,.32);
}

.section{padding:54px 0}
.section-tight{padding:34px 0}

.hero{padding:66px 0 28px}

.surface{
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface2));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card{padding:20px}
.card-title{margin:0 0 6px; font-size:20px}
.card-subtitle{margin:0 0 14px; color:var(--muted)}
.card-note{
  margin-top:12px;
  font-size:12.5px;
  color: var(--muted2);
}

.features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:18px;
}
.feature{padding:16px}
.feature-title{font-weight:900; margin-bottom:6px}
.feature-desc{color:var(--muted); font-size:13.5px}

.center-wrap{display:flex; justify-content:center}
.narrow{width:100%; max-width: 640px}

.page-hero{padding:44px 0 10px}
.page-hero h1{font-size:34px; margin:0 0 10px}

.form{display:grid; gap:12px; margin-top:6px}
.field label{display:block; font-weight:900; margin-bottom:6px}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(11,18,32,.35);
  color: var(--text);
  outline:none;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(47,107,255,.55);
  box-shadow: 0 0 0 4px rgba(47,107,255,.12);
}

.consent-box{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding:14px;
}
.consent-title{font-weight:900; margin-bottom:8px}
.consent-text{margin:0 0 10px; color:var(--muted); font-size:12.8px}
.check{display:flex; gap:10px; align-items:flex-start; font-weight:800}
.check input{margin-top:3px}

.hp{display:none !important}

.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background: rgba(11,18,32,.72);
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer-links a{
  color: var(--muted);
  text-decoration:none;
  font-weight:800;
}
.footer-links a:hover{color:var(--text)}
.disclaimer{
  max-width: 80ch;
  color: var(--muted2);
  font-size:12.5px;
  margin-top:8px;
}

.prose{max-width: 860px}
.prose h2{margin-top:22px}
.prose p, .prose li{color: var(--muted)}
.prose strong{color: var(--text)}

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

@media (max-width: 720px){
  .nav{display:none}
  .nav-toggle{display:inline-block}
  h1{font-size:38px}
  .logo-img{height:60px} /* scale down on mobile */
}
