:root{
  --bg:#070A12;
  --panel:#0C1020;
  --panel2:#0A0F1C;
  --text:#EAF0FF;
  --muted:#AAB6D6;
  --line:rgba(234,240,255,.12);
  --accent:#7C5CFF;
  --accent2:#2EE9A6;
  --shadow: 0 16px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 70% 10%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(900px 500px at 20% 30%, rgba(46,233,166,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

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

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.62);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px}
.brand-mark{
  width:14px; height:14px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 6px rgba(124,92,255,.12);
}
.brand-text{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  border:1px solid rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.92), rgba(46,233,166,.25));
  box-shadow: 0 10px 30px rgba(124,92,255,.20);
}
.btn:hover{transform: translateY(-1px)}
.btn-sm{padding:10px 12px; font-size:14px}
.btn-full{width:100%}
.btn-ghost{
  background: transparent;
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-ghost:hover{border-color:rgba(234,240,255,.22)}

.hero{position:relative; padding:56px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(12,16,32,.55);
  color: var(--muted);
  font-weight:700;
  font-size:12px;
  letter-spacing:.2px;
}
h1{margin:16px 0 10px; font-size:44px; line-height:1.08}
.lead{color:var(--muted); font-size:17px; margin:0 0 18px}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 18px}

.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.trust-card{
  padding:14px 14px;
  border-radius:16px;
  background: rgba(12,16,32,.55);
  border:1px solid var(--line);
}
.trust-kicker{color:var(--muted); font-weight:700; font-size:12px}
.trust-value{font-weight:800; margin-top:6px}
.trust-note{color:var(--muted); font-size:12px}

.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(12,16,32,.92), rgba(10,15,28,.72));
  border: 1px solid rgba(234,240,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.portrait{
  height:240px;
  background: radial-gradient(600px 260px at 50% 20%, rgba(124,92,255,.24), transparent 60%),
              radial-gradient(500px 240px at 20% 80%, rgba(46,233,166,.12), transparent 60%),
              rgba(12,16,32,.8);
  display:flex; align-items:center; justify-content:center;
}
.portrait img{
  width:150px; height:150px;
  border-radius: 999px;
  object-fit:cover;
  border:1px solid rgba(234,240,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.hero-card-body{padding:18px}
.hero-name{font-weight:900; letter-spacing:.2px}
.hero-role{color:var(--muted); margin:6px 0 12px; font-weight:700; font-size:13px}
.mini-list{display:grid; gap:8px; margin: 0 0 14px}
.mini-item{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(7,10,18,.35);
  color: var(--muted);
  font-weight:650;
  font-size:13px;
}
.fineprint{color:rgba(170,182,214,.85); font-size:12px; margin-top:12px}

.hero-glow{
  position:absolute; inset:-40px -60px auto -60px;
  height:260px;
  background: radial-gradient(800px 160px at 40% 40%, rgba(124,92,255,.18), transparent 70%);
  pointer-events:none;
}

.section{padding:46px 0}
.section-alt{background: rgba(12,16,32,.35); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-head h2{margin:0 0 8px; font-size:28px}
.section-head p{margin:0; color:var(--muted); max-width: 70ch}

.grid.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:18px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(12,16,32,.55);
  border:1px solid var(--line);
  transition: transform .12s ease, border-color .12s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(124,92,255,.45)}
.card-title{font-weight:900; margin-bottom:8px}
.card-body{color:var(--muted); font-size:14px; margin-bottom:16px}
.card-cta{font-weight:900}

.steps{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.steps li{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(7,10,18,.35);
  border:1px solid var(--line);
}
.step-title{font-weight:900; margin-bottom:6px}
.step-body{color:var(--muted); font-size:14px}

.cta{padding:34px 0}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(46,233,166,.10));
  border:1px solid rgba(234,240,255,.14);
}
.cta h2{margin:0 0 6px; font-size:26px}
.cta p{margin:0; color:var(--muted)}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0 10px;
  background: rgba(7,10,18,.72);
}
.footer-grid{
  display:flex; justify-content:space-between; align-items:flex-start; gap:18px;
}
.footer-brand{font-weight:900}
.footer-note{color:var(--muted); font-size:13px; margin-top:6px}
.footer-links{display:flex; gap:16px; flex-wrap:wrap}
.footer-links a{color:var(--muted); font-weight:700; font-size:13px}
.footer-links a:hover{color:var(--text)}
.footer-legal{padding:14px 0}
@media (max-width: 980px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns: 1fr}
  .grid.cards{grid-template-columns: repeat(2, 1fr)}
  .trust-row{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .cta-inner{flex-direction:column; align-items:flex-start}
}
@media (max-width: 520px){
  h1{font-size:32px}
  .grid.cards{grid-template-columns: 1fr}
}
