:root{
  --bg:#f7f8fc;
  --surface:#ffffff;
  --text:#0b1020;
  --muted:#55607a;
  --line:rgba(31,38,108,0.12);
  --primary:#2053a9;
  --primary-2:#609edf;
  --navy:#1f266c;
  --purple:#5d2a96;
  --lav:#a9afd3;
  --shadow:0 12px 30px rgba(11,16,32,0.10);
  --shadow-soft:0 10px 24px rgba(11,16,32,0.08);
  --radius:18px;
  --radius-lg:26px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 420px at 14% 12%, rgba(96,158,223,0.24), transparent 55%),
    radial-gradient(760px 380px at 86% 22%, rgba(93,42,150,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), #fff 50%, var(--bg));
}
a{color:inherit; text-decoration:none}

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

/* Header */
.header{
  position:sticky; top:0; z-index:40;
  backdrop-filter:saturate(1.2) blur(10px);
  background:rgba(247,248,252,0.78);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:0.2px}
.brand .mark{width:34px; height:34px; border-radius:12px; overflow:hidden; box-shadow:0 10px 20px rgba(32,83,169,0.18)}
.brand .name{display:flex; flex-direction:column; line-height:1.05}
.brand .name span:first-child{font-size:14px; color:var(--muted); font-weight:600}
.brand .name span:last-child{font-size:16px}

.menu{display:flex; align-items:center; gap:14px}
.menu a{
  font-size:14px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{background:rgba(31,38,108,0.06); color:var(--navy)}
.menu a.active{background:rgba(32,83,169,0.10); color:var(--navy)}

.cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  height:40px; padding:0 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.8);
  box-shadow:0 10px 18px rgba(11,16,32,0.06);
  color:var(--navy);
  font-size:14px; font-weight:700;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  border:none;
  background:linear-gradient(135deg,var(--primary),var(--purple));
  color:white;
}

.mobile-toggle{display:none}

/* Hero */
.hero{padding:56px 0 20px}
.hero-grid{display:grid; grid-template-columns:1.08fr 0.92fr; gap:28px; align-items:stretch}
.kicker{display:inline-flex; gap:10px; align-items:center; font-weight:700; color:var(--navy); font-size:13px}
.dot{width:8px; height:8px; border-radius:999px; background:linear-gradient(135deg,var(--primary),var(--purple))}
.h1{font-size:46px; line-height:1.07; letter-spacing:-0.6px; margin:14px 0 12px}
.lead{font-size:16px; color:var(--muted); line-height:1.6; max-width:58ch}

.hero-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,0.78);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(96,158,223,0.22), transparent 60%),
    radial-gradient(520px 260px at 80% 75%, rgba(93,42,150,0.16), transparent 62%);
  pointer-events:none;
}
.hero-card .inner{position:relative; padding:22px}
.hero-metrics{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:14px}
.metric{background:rgba(255,255,255,0.70); border:1px solid var(--line); border-radius:16px; padding:14px}
.metric .num{font-size:18px; font-weight:800; color:var(--navy)}
.metric .lbl{font-size:12px; color:var(--muted); margin-top:6px}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.badge{font-size:12px; color:var(--navy); font-weight:700; padding:8px 10px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,0.6)}

/* Sections */
.section{padding:40px 0}
.section-head{display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:16px}
.section-title{font-size:22px; letter-spacing:-0.3px; margin:0}
.section-sub{color:var(--muted); font-size:14px; max-width:62ch; line-height:1.6}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}

.card{
  background:rgba(255,255,255,0.78);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:-1px;
  background:radial-gradient(420px 180px at 10% 0%, rgba(32,83,169,0.12), transparent 60%);
  opacity:0;
  transition:opacity .2s ease;
  pointer-events:none;
}
.card:hover::after{opacity:1}
.card h3{margin:4px 0 8px; font-size:16px; letter-spacing:-0.2px}
.card p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}
.card .tagrow{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.tag{font-size:11px; font-weight:700; color:var(--navy); padding:6px 8px; border-radius:999px; border:1px solid var(--line); background:rgba(240,240,245,0.7)}

.icon{
  width:38px; height:38px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(32,83,169,0.14), rgba(93,42,150,0.10));
  border:1px solid rgba(32,83,169,0.18);
  margin-bottom:10px;
}

/* Page header */
.pagehead{padding:34px 0 10px}
.pagehead h1{margin:0; font-size:34px; letter-spacing:-0.5px}
.pagehead p{margin:10px 0 0; color:var(--muted); max-width:70ch; line-height:1.6}

/* Lists */
.list{display:grid; gap:10px}
.row{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,0.72);
  box-shadow:0 10px 18px rgba(11,16,32,0.06);
}
.row .left{display:flex; gap:12px; align-items:flex-start}
.row .left .mini{width:34px; height:34px; border-radius:14px; display:grid; place-items:center; border:1px solid var(--line); background:rgba(240,240,245,0.75)}
.row .title{font-weight:800; color:var(--navy); font-size:14px}
.row .desc{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.55}

/* Footer */
.footer{padding:28px 0 44px; border-top:1px solid var(--line); background:rgba(247,248,252,0.6)}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:18px; align-items:start}
.small{font-size:13px; color:var(--muted); line-height:1.6}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--navy)}

/* Contact */
.form{display:grid; gap:12px}
.field{display:grid; gap:6px}
.label{font-size:12px; font-weight:800; color:var(--navy)}
.input, textarea{
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.80);
  border-radius:16px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.input:focus,textarea:focus{border-color:rgba(32,83,169,0.35); box-shadow:0 0 0 5px rgba(96,158,223,0.18)}

.note{font-size:12px; color:var(--muted); line-height:1.5}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .h1{font-size:38px}
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
}
@media (max-width: 520px){
  .h1{font-size:34px}
  .hero{padding-top:34px}
  .metric .num{font-size:16px}
}

/* Mobile menu */
.mobilemenu{display:none; border-top:1px solid var(--line)}
.mobilemenu.open{display:block}
.mobilemenu a{display:block; padding:12px 20px; color:var(--muted)}
.mobilemenu a.active{color:var(--navy); font-weight:800}
