
:root{
  --bg:#07060a;
  --panel:#111018;
  --text:#f8f7ff;
  --muted:#aaa6b7;
  --line:rgba(255,255,255,.09);
  --violet:#8a5cff;
  --violet2:#c979ff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(115,64,255,.18), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(181,80,255,.11), transparent 28%),
    var(--bg);
  color:var(--text);
}
body:before{
  content:"";
  position:fixed;inset:0;pointer-events:none;opacity:.20;
  background-image:radial-gradient(rgba(255,255,255,.45) 0.6px, transparent 0.6px);
  background-size:28px 28px;
  mask-image:linear-gradient(to bottom,black,transparent 60%);
}
a{color:inherit;text-decoration:none}
.topbar{
  width:min(1160px,calc(100% - 40px));
  margin:auto;
  height:84px;
  display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.12em}
.brand img{width:46px;height:46px;border-radius:50%;object-fit:cover;border:1px solid var(--line)}
nav{display:flex;gap:26px;color:var(--muted);font-size:14px}
nav a:hover{color:white}
main{width:min(1160px,calc(100% - 40px));margin:auto}
.hero{
  min-height:620px;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:center;
  max-width:820px;
}
.eyebrow{font-size:12px;letter-spacing:.18em;font-weight:800;color:#bfa9ff;margin-bottom:14px}
h1{font-size:clamp(52px,8vw,96px);line-height:.96;margin:0 0 24px;letter-spacing:-.055em}
h1 span{
  background:linear-gradient(90deg,#d8c7ff,#8b5cff,#e084ff);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero p{font-size:19px;line-height:1.7;color:var(--muted);max-width:680px;margin:0 0 30px}
.cta{
  display:inline-flex;padding:14px 20px;border-radius:12px;
  background:white;color:#0b0910;font-weight:800;
  box-shadow:0 10px 35px rgba(255,255,255,.12)
}
.note{font-size:12px;color:#777281;margin-top:16px}
.section{padding:80px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:28px}
h2{font-size:40px;letter-spacing:-.035em;margin:0}
.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.card{
  position:relative;overflow:hidden;min-height:290px;
  border:1px solid var(--line);border-radius:22px;
  padding:28px;background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  display:flex;flex-direction:column;justify-content:flex-end;
}
.glow{position:absolute;width:280px;height:280px;border-radius:50%;filter:blur(45px);opacity:.22;right:-70px;top:-80px}
.purple .glow{background:#9a56ff}.black .glow{background:#767676}.blue .glow{background:#4288ff}.green .glow{background:#4fb875}
.tag{position:absolute;top:22px;left:24px;font-size:11px;letter-spacing:.14em;font-weight:800;color:#d1c6ed}
.card h3{font-size:30px;margin:0 0 10px}
.card p{max-width:500px;color:var(--muted);line-height:1.55;margin:0 0 22px}
button{
  align-self:flex-start;border:1px solid var(--line);background:rgba(255,255,255,.05);
  color:#8e8997;border-radius:10px;padding:11px 14px;font-weight:700
}
.about{max-width:760px}
.about p{font-size:18px;line-height:1.7;color:var(--muted)}
footer{
  width:min(1160px,calc(100% - 40px));margin:20px auto 0;
  border-top:1px solid var(--line);padding:30px 0 50px;
  color:#777281;font-size:13px;display:flex;justify-content:space-between;gap:20px
}
@media(max-width:720px){
  .topbar{height:72px}nav{display:none}
  .hero{min-height:520px}
  h1{font-size:54px}
  .grid{grid-template-columns:1fr}
  footer{flex-direction:column}
}
