:root{
  --bg:#09101a;
  --panel:rgba(255,255,255,.055);
  --panel-2:rgba(255,255,255,.075);
  --text:rgba(255,255,255,.95);
  --muted:rgba(255,255,255,.70);
  --border:rgba(255,255,255,.13);
  --accent:#2563eb;
  --accent-2:#7c3aed;
  --shadow:0 24px 80px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(37,99,235,.20), transparent 55%),
    radial-gradient(900px 600px at 88% 0%, rgba(124,58,237,.17), transparent 50%),
    radial-gradient(1200px 900px at 50% 115%, rgba(59,130,246,.10), transparent 58%),
    var(--bg);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.5;
}

a{color:inherit}

.wrap{max-width:1160px; margin:0 auto; padding:28px 20px 56px}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0 18px;
}

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

.logo{
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(37,99,235,.98), rgba(124,58,237,.82));
  box-shadow:0 16px 34px rgba(0,0,0,.35);
}

.brand span{
  font-weight:800;
  letter-spacing:.02em;
}

.links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.links a{
  text-decoration:none;
  color:rgba(255,255,255,.84);
  padding:8px 11px;
  border:1px solid transparent;
  border-radius:12px;
  transition:all .15s ease;
}

.links a:hover{
  color:var(--text);
  border-color:var(--border);
  background:rgba(255,255,255,.04);
}

.hero{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius:22px;
  padding:28px 24px;
  box-shadow:var(--shadow);
}

.hero + .hero,
.hero + .grid,
.grid + .hero,
.grid + .grid,
.hero + .footer{
  margin-top:18px;
}

.hero-main{
  padding:38px 32px;
}

.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(255,255,255,.64);
  margin-bottom:14px;
}

h1,
.h-title{
  margin:0;
  letter-spacing:-.03em;
}

h1{font-size:clamp(34px, 6vw, 58px); line-height:1.04; max-width:14ch}
.h-title{font-size:clamp(28px, 4vw, 40px)}

.lead,
.h-sub{
  color:var(--muted);
  font-size:18px;
  max-width:72ch;
  margin:16px 0 0;
}

.hero-actions{margin-top:24px}

.pills{display:flex; gap:10px; flex-wrap:wrap}
.pills-right{justify-content:flex-end}
.pill{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}

.grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr 1fr;
}

.home-grid{align-items:stretch}

@media (max-width:920px){
  .grid{grid-template-columns:1fr}
  .nav{flex-direction:column; align-items:flex-start}
  .pills-right{justify-content:flex-start}
  .hero-main{padding:30px 22px}
}

.card{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 55px rgba(0,0,0,.30);
}

.feature-card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
}

.card h2{
  margin:0 0 12px;
  font-size:21px;
}

.card h3{margin:0 0 8px}

.card p{
  margin:0 0 12px;
  color:var(--muted);
}

.btnrow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn,
.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 14px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.05);
  color:var(--text);
  transition:all .15s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.24);
}

.btn.primary,
.btn-primary{
  background:linear-gradient(135deg, rgba(37,99,235,.96), rgba(124,58,237,.82));
  border-color:rgba(255,255,255,.22);
}

.compact-row{margin-top:14px}

.section{margin-top:18px}

.kv{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.kv:last-child{border-bottom:0}

.stats{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:16px 0 6px;
}

.stat{
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:14px 14px 12px;
  background:var(--panel-2);
}

.stat-label{
  display:block;
  color:rgba(255,255,255,.60);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:5px;
}

.stat-value{
  display:block;
  color:var(--text);
  font-weight:700;
}

.strip-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
}

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

.muted{color:var(--muted)}

hr.sep{
  border:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  margin:16px 0;
}

.footer{
  margin-top:22px;
  color:rgba(255,255,255,.58);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
}
