:root{
  --bg:#0b1020;
  --card:#101935;
  --muted:#9fb0d0;
  --text:#eef3ff;
  --accent:#7cf7c8;
  --accent2:#ffb55c;
  --border:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{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";
  background:
    radial-gradient(1200px 900px at 20% -10%, rgba(124,247,200,.28), transparent 60%),
    radial-gradient(1000px 800px at 90% 10%, rgba(255,181,92,.24), transparent 55%),
    radial-gradient(900px 700px at 30% 110%, rgba(140,170,255,.18), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(12px);
  background: rgba(11,16,32,.55);
  border-bottom:1px solid var(--border);
}
.nav{
  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;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(124,247,200,.95), rgba(255,181,92,.95));
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.brand span{
  font-weight:750;
  letter-spacing:.2px;
}
.navlinks{
  display:flex; gap:14px; align-items:center;
}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  padding:8px 10px;
  border-radius:12px;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.hero{
  padding:56px 0 28px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
@media (max-width: 880px){
  .hero-inner{grid-template-columns:1fr; padding-bottom:6px}
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background: rgba(255,255,255,.04);
  font-weight:600;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(124,247,200,.12);
}
h1{
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.6px;
}
.sub{
  color:var(--muted);
  font-size: 16.5px;
  margin:0 0 18px;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.2px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(124,247,200,.95), rgba(255,181,92,.90));
  color:#0b1020;
  border-color: rgba(255,255,255,.18);
}
.btn.secondary{
  background: rgba(255,255,255,.05);
  color:var(--text);
}
.hero-card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.hero-card .stat{
  display:flex; align-items:flex-start; gap:12px;
  padding:12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.hero-card .stat + .stat{margin-top:10px}
.badge{
  width:40px; height:40px; border-radius:14px;
  background: rgba(124,247,200,.14);
  border:1px solid rgba(124,247,200,.20);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.hero-card .stat b{display:block; margin-bottom:2px}
.hero-card .stat p{margin:0; color:var(--muted); font-size:14px}

.section{
  padding: 18px 0 60px;
}
.section h2{
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing:-.4px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}
@media (max-width: 880px){
  .grid{grid-template-columns:1fr}
}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}
.card-media{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
  background: rgba(255,255,255,.03);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.pill{
  position:absolute;
  top:12px; left:12px;
  background: rgba(11,16,32,.65);
  border: 1px solid rgba(255,255,255,.12);
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--text);
  font-weight:800;
  font-size: 12px;
  backdrop-filter: blur(8px);
}
.card-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card h3{
  margin:0;
  font-size: 19px;
  letter-spacing:-.2px;
}
.card p{margin:0; color:var(--muted)}
.bullets{
  margin: 6px 0 2px;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{margin: 6px 0}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding-top: 8px;
}
.smallnote{
  color: rgba(238,243,255,.70);
  font-size: 12.5px;
  margin-top: 2px;
}

.faq{
  border-top:1px solid var(--border);
  padding-top: 24px;
  margin-top: 18px;
}
details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 12px 12px;
}
details + details{margin-top:10px}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{margin:10px 0 0; color:var(--muted)}

footer{
  border-top:1px solid var(--border);
  padding: 22px 0;
  color: rgba(238,243,255,.68);
  font-size: 13px;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  flex-wrap:wrap;
}
.footer-inner a{color: rgba(238,243,255,.76); text-decoration:none}
.footer-inner a:hover{text-decoration:underline}
