:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --r: 18px;
  --r2: 24px;
  --max: 1100px;
  --focus: 0 0 0 3px rgba(255,255,255,.22), 0 0 0 6px rgba(80,170,255,.25);
}

*{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";
  line-height:1.55;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(74,163,255,.22), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, rgba(132,94,247,.18), transparent 60%),
    radial-gradient(900px 600px at 50% 100%, rgba(16,185,129,.14), transparent 60%),
    var(--bg);
}

a{color:inherit; text-underline-offset:3px}
a:hover{opacity:.95}

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

.skip{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:12px;
  z-index:9999;
}
.skip:focus{left:14px; outline:none; box-shadow:var(--focus)}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,18,32,.65);
  border-bottom:1px solid var(--stroke);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__logo{display:block; width:auto; height:34px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.25))}
.brand__name{font-weight:750; letter-spacing:.2px}

.topbar__actions{display:flex; align-items:center; gap:10px}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  font-size:14px;
  white-space:nowrap;
}
.chip--primary{
  background: rgba(74,163,255,.16);
  border-color: rgba(74,163,255,.35);
}

.main{padding:0 0 48px}

.hero{
  padding:52px 0 22px;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:18px;
  align-items:stretch;
}

.hero__copy{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding:26px 24px;
}

.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  font-size:13px;
  color:var(--muted);
  margin-bottom:14px;
}
.badge img{filter: drop-shadow(0 8px 14px rgba(0,0,0,.35))}

h1{
  margin:0 0 10px;
  line-height:1.1;
  letter-spacing:-.4px;
  font-size: clamp(28px, 3.2vw, 44px);
}

.lead{
  margin:0 0 18px;
  font-size: clamp(15px, 1.35vw, 18px);
  color: rgba(255,255,255,.85);
}

.hero__cta{display:flex; flex-wrap:wrap; gap:10px; margin: 2px 0 14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(74,163,255,.35);
  background: rgba(74,163,255,.18);
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.1px;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.btn:focus{outline:none; box-shadow:var(--focus)}

.btn--ghost{
  background: rgba(255,255,255,.05);
  border:1px solid var(--stroke);
}

.btn--small{padding:10px 12px; border-radius:12px; font-size:14px}

.fineprint{margin:0; color:var(--muted); font-size:14px}

.hero__panel{
  border-radius: var(--r2);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.stat{
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  padding:14px 14px;
}

.stat__kpi{font-weight:800; font-size:22px; letter-spacing:-.2px}
.stat__label{color:var(--muted); font-size:13px; margin-top:2px}

.section{padding: 22px 0}
.section__head{margin-bottom:14px}
.section__head h2{margin:0 0 6px; font-size: clamp(20px, 2vw, 28px); letter-spacing:-.2px}
.section__head p{margin:0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.card{
  border-radius: var(--r);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  padding:18px;
}

.card h3{margin:0 0 12px; font-size:18px}

.card__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-top:1px dashed rgba(255,255,255,.14);
}
.card__row:first-of-type{border-top:0; padding-top:0}

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

.card__actions{display:flex; gap:10px; margin-top:14px}

.note{
  border-radius: var(--r2);
  border:1px solid rgba(16,185,129,.28);
  background: linear-gradient(180deg, rgba(16,185,129,.10), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding:20px;
}

.note h2{margin:0 0 10px; font-size: clamp(20px, 2vw, 26px)}

.note ul{margin:0; padding-left: 18px}
.note li{margin: 10px 0; color: rgba(255,255,255,.88)}

.note__actions{margin-top:14px}

.footer{
  border-top:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}

@media (max-width: 900px){
  .hero__inner{grid-template-columns:1fr}
  .hero{padding-top:34px}
}

@media (max-width: 700px){
  .topbar__actions{display:none}
  .cards{grid-template-columns:1fr}
  .card__row{flex-direction:column; align-items:flex-start}
  .footer__inner{flex-direction:column; align-items:flex-start}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .btn{transition:none}
  .btn:hover{transform:none}
}
