:root{
  --bg:#0b1220;
  --surface:#0f1b33;
  --card:#0f1a2f;
  --text:#0b1220;
  --muted:#5b6b86;
  --ink:#0f172a;
  --white:#ffffff;
  --line:rgba(15,23,42,.12);
  --brand:#0a4bd8;
  --brand2:#12b981;
  --brand3:#7c3aed;
  --warn:#b45309;
  --shadow:0 18px 45px rgba(2,6,23,.14);
  --shadow2:0 10px 30px rgba(2,6,23,.10);
  --radius:18px;
  --radius2:26px;
  --max:1160px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(10,75,216,.20), transparent 60%),
              radial-gradient(900px 520px at 90% 0%, rgba(18,185,129,.18), transparent 55%),
              linear-gradient(#f7f9ff, #f2f6ff);
  line-height:1.45;
}
a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Top notice */
.topbar{
  background: rgba(15,23,42,.94);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.topbar .inner{display:flex; gap:14px; align-items:center; justify-content:space-between; padding:10px 0}
.topbar .pill{display:inline-flex; gap:8px; align-items:center; padding:6px 10px; border-radius:999px; background:rgba(255,255,255,.08)}
.topbar svg{width:16px; height:16px; opacity:.9}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(247,249,255,.72);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:42px; height:42px; border-radius:14px;
  background: radial-gradient(20px 20px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.0)),
              linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
}
.logo:after{
  content:"";
  position:absolute; inset:-40%;
  background: conic-gradient(from 180deg, rgba(255,255,255,.25), rgba(255,255,255,0), rgba(255,255,255,.22));
  animation: spin 9s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.brand .name{display:flex; flex-direction:column; line-height:1.1}
.brand .name strong{font-size:15px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted)}

.navlinks{display:flex; gap:18px; align-items:center}
.navlinks a{font-size:14px; color:rgba(15,23,42,.86); padding:10px 10px; border-radius:12px}
.navlinks a.active,.navlinks a:hover{background:rgba(10,75,216,.08); text-decoration:none}

.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.75);
  color:rgba(15,23,42,.92);
  font-weight:600;
  font-size:14px;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.btn:hover{transform:translateY(-1px); box-shadow:0 14px 34px rgba(2,6,23,.08); text-decoration:none}
.btn.primary{background: linear-gradient(135deg, var(--brand), #1b7cff); border-color: transparent; color:#fff}
.btn.primary:hover{filter:brightness(1.02)}
.btn svg{width:18px; height:18px}

.burger{display:none; border:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.82); border-radius:14px; padding:10px}
.burger svg{width:22px; height:22px}

/* Hero */
.hero{padding:64px 0 26px; background:
  linear-gradient(180deg, rgba(2,6,23,.62), rgba(2,6,23,.14) 55%, rgba(248,250,252,1) 100%),
  url('img/hero.svg') center/cover no-repeat;
}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; align-items:stretch}
.hero-card{
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card .pad{padding:30px}
\.hero-photo{
  height:340px;
  background:
    linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.55)),
    url('img/hero.svg') center/cover no-repeat;
  border-bottom:1px solid rgba(255,255,255,.35);
}
.kicker{display:inline-flex; gap:10px; align-items:center; padding:7px 12px; border-radius:999px; background:rgba(10,75,216,.10); color:rgba(10,75,216,.92); font-weight:700; font-size:12px}
.kicker svg{width:16px; height:16px}
.hero h1{margin:14px 0 10px; font-size:44px; line-height:1.08; letter-spacing:-.6px}
.hero p{margin:0; color:rgba(15,23,42,.72); font-size:16px; max-width:58ch}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-mini{display:grid; grid-template-rows: 1fr auto; min-height:100%}
.hero-mini .top{
  padding:24px; background: linear-gradient(135deg, rgba(10,75,216,.12), rgba(18,185,129,.10));
}
.hero-mini h3{margin:0 0 8px; font-size:18px}
.hero-mini p{margin:0; color:rgba(15,23,42,.70); font-size:14px}
.hero-mini .bottom{padding:18px 24px; border-top:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.88)}
.stats{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.stat{padding:12px 14px; border-radius:16px; background:rgba(15,23,42,.04); border:1px solid rgba(15,23,42,.06)}
.stat strong{display:block; font-size:16px}
.stat span{color:rgba(15,23,42,.62); font-size:12px}

.hero-art{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.9;
  mix-blend-mode:multiply;
}

/* Trust bar */
.trust{padding:16px 0 6px}
.trustbar{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between}
.trustbar .item{display:flex; gap:10px; align-items:center; padding:12px 14px; border-radius:16px; background:rgba(255,255,255,.78); border:1px solid rgba(15,23,42,.08); box-shadow: 0 10px 26px rgba(2,6,23,.04)}
.trustbar .item svg{width:18px; height:18px; color:var(--brand)}
.trustbar .item span{font-size:13px; color:rgba(15,23,42,.72)}

/* Sections */
.section{padding:40px 0}
.section h2{margin:0 0 10px; font-size:28px; letter-spacing:-.3px}
.section p.lead{margin:0 0 18px; color:rgba(15,23,42,.72); max-width:80ch}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:rgba(15,23,42,.70); font-size:14px}
.icon{width:40px; height:40px; border-radius:14px; display:grid; place-items:center; background:rgba(10,75,216,.10); border:1px solid rgba(10,75,216,.12); margin-bottom:12px}
.icon svg{width:20px; height:20px; color:var(--brand)}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.panel{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel .pad{padding:22px}
.panel .banner{
  padding:18px 22px;
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(10,75,216,.10));
  border-bottom:1px solid rgba(15,23,42,.10);
}
.panel .banner strong{display:block}
.panel .banner span{color:rgba(15,23,42,.68); font-size:13px}

.list{margin:0; padding-left:18px; color:rgba(15,23,42,.74)}
.list li{margin:8px 0}

/* Forms */
.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{font-weight:700; font-size:13px; color:rgba(15,23,42,.84)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  font-size:14px;
  outline:none;
}
input:focus, textarea:focus, select:focus{border-color: rgba(10,75,216,.55); box-shadow: 0 0 0 4px rgba(10,75,216,.12)}
.small{font-size:12px; color:rgba(15,23,42,.62)}

.checks{display:grid; gap:12px; margin-top:8px}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
}
.check input{width:18px; height:18px; margin-top:2px}
.check p{margin:0; font-size:13px; color:rgba(15,23,42,.78)}

.link-legal{
  font-weight:800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(180,83,9,.22);
  background: rgba(180,83,9,.06);
  color: rgba(120,53,15,.92);
  font-size:13px;
}

/* Legal pages */
.legal{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:24px;
}
.legal h1{margin:0 0 10px; font-size:34px; letter-spacing:-.5px}
.legal h2{margin:22px 0 10px; font-size:18px}
.legal p, .legal li{color:rgba(15,23,42,.72); font-size:14px}
.legal code{background:rgba(15,23,42,.06); padding:2px 6px; border-radius:8px}

/* Footer */
.footer{padding:36px 0 26px; border-top:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.70)}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
.footer small{color:rgba(15,23,42,.62)}
.footer .links{display:flex; gap:14px; flex-wrap:wrap; margin-top:10px}
.footer .links a{font-weight:800; text-decoration:underline; text-underline-offset:3px}

/* Mobile */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{display:none}
  .burger{display:inline-flex}
  .actions .btn{display:none}
  .actions .btn.primary{display:inline-flex}
}

.mobilemenu{display:none; padding:0 0 14px}
.mobilemenu a{display:block; padding:10px 12px; border-radius:14px; color:rgba(15,23,42,.86)}
.mobilemenu a:hover{background:rgba(10,75,216,.08); text-decoration:none}
.mobilemenu.open{display:block}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .logo:after{animation:none}
  .btn:hover{transform:none}
}


/* Emphasized legal links in consent text */
.link-legal.emph{font-weight:800;text-decoration:underline;text-underline-offset:3px;color:var(--brand);} 
.link-legal.emph:hover{opacity:.9}
