:root{
  --bg:#081019;
  --bg-soft:#0d1724;
  --panel:rgba(255,255,255,.05);
  --line:rgba(255,255,255,.09);
  --text:#eef4ff;
  --muted:#9fb0c7;
  --accent:#d11f5f;
  --accent-2:#7c3aed;
  --shadow:0 30px 80px rgba(0,0,0,.35);
  --radius:30px;
}
*{box-sizing:border-box}
html,body{min-height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(209,31,95,.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(124,58,237,.18), transparent 22%),
    linear-gradient(180deg,#07111c 0%,#081019 50%,#09121d 100%);
}
a{text-decoration:none;color:inherit}
.page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  position:relative;
  overflow:hidden;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(36px);
  opacity:.7;
  pointer-events:none;
}
.orb-a{
  width:280px;
  height:280px;
  left:-40px;
  top:8%;
  background:rgba(209,31,95,.18);
}
.orb-b{
  width:240px;
  height:240px;
  right:-30px;
  bottom:10%;
  background:rgba(124,58,237,.20);
}
.shell{
  width:min(920px, 100%);
  padding:30px;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  position:relative;
  z-index:1;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08)),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:inset 0 1px 1px rgba(255,255,255,.30), 0 14px 30px rgba(209,31,95,.18);
}
.brand-copy strong,.brand-copy small{display:block}
.brand-copy small{font-size:12px;color:var(--muted);margin-top:2px}
.content{
  padding:44px 0 30px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  color:#d7e3f7;
  font-size:13px;
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(135deg,#4ade80,#44c1f0);
}
h1{
  margin:18px 0 0;
  font-size:clamp(42px,7vw,86px);
  line-height:.95;
  letter-spacing:-.05em;
}
.lead{
  max-width:720px;
  margin:20px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:30px;
}
.card{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.card h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.03em;
}
.card p,.card li{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.card ul{
  margin:0;
  padding-left:18px;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:600;
}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 14px 32px rgba(209,31,95,.24);
}
.btn-ghost{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
}
.footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:14px;
}
@media (max-width: 760px){
  .shell{padding:22px}
  .cards{grid-template-columns:1fr}
  .footer{flex-direction:column}
}
