:root{
  --bg: #0b0f14;
  --panel: #0f1620;
  --panel2:#0c121a;
  --text:#e8eef6;
  --muted:#a7b4c6;
  --line: rgba(255,255,255,0.10);
  --accent: #7dd3fc;
  --accent2:#a78bfa;

  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(125,211,252,0.14), transparent 55%),
    radial-gradient(900px 500px at 80% 15%, rgba(167,139,250,0.14), transparent 55%),
    linear-gradient(180deg, #070a0f, var(--bg));
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:0.9}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(12px);
  background: rgba(11,15,20,0.65);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:10px}
.brand-mark{
  width:14px; height:14px; border-radius:6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(125,211,252,0.12);
}
.brand-text{font-weight:700; letter-spacing:-0.02em}

.links{display:flex; gap:18px; align-items:center}
.links a{color:var(--muted); font-weight:500; font-size:14px}
.links a.btn{color:#061018}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  font-weight:650;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(125,211,252,0.10);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn-small{padding:10px 14px; font-size:14px}

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{background: rgba(255,255,255,0.04)}

.hero{
  padding: 72px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap:28px;
  align-items:start;
}
.kicker{
  color: var(--muted);
  font-weight:600;
  letter-spacing:0.02em;
  text-transform: uppercase;
  font-size:12px;
  margin:0 0 10px;
}
h1{
  margin:0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.08;
  letter-spacing:-0.03em;
}
.lead{
  margin:0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 62ch;
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0 22px}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.trust-item{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding:12px 12px;
}
.trust-title{font-weight:650; font-size:13px}
.trust-text{color:var(--muted); font-size:13px}

.hero-card .card{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.card h2{margin:0 0 10px; font-size:16px; letter-spacing:-0.02em}
.card h3{margin:0 0 10px; font-size:16px; letter-spacing:-0.02em}

.checklist{
  margin:0;
  padding-left:18px;
  color: var(--muted);
}
.checklist li{margin: 8px 0}

.card-divider{
  height:1px;
  background: var(--line);
  margin:16px 0;
}

.section{
  padding: 54px 0;
}
.section.alt{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin:0 0 6px;
  font-size: 22px;
  letter-spacing:-0.02em;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 75ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 14px;
}

.tile{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.tile h3{
  margin:0 0 8px;
  font-size: 16px;
  letter-spacing:-0.02em;
}
.tile p{margin:0 0 8px; color: var(--muted)}
.tile .meta{margin-top:10px; font-size:13px; color: rgba(167,180,198,0.85)}

.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px}
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding:10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight:550;
  font-size: 13px;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-box{
  margin-top: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 14px;
}
.contact-line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 8px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.contact-line:last-child{border-bottom:none}
.label{color: rgba(167,180,198,0.9); font-size:13px}

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

.embed{
  margin-top: 10px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.02);
  padding: 14px;
}
.embed-placeholder{color: var(--muted)}
.embed-placeholder p{margin:0 0 8px}

.footer{
  padding: 22px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.brand-mini{font-weight:650}
.dot{color: rgba(167,180,198,0.6); margin: 0 8px}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; }
  .trust{grid-template-columns: 1fr; }
  .grid3{grid-template-columns: 1fr; }
  .contact{grid-template-columns: 1fr;}
  .links{gap:12px}
}
