:root{
  --bg:#0b0b10;
  --panel:rgba(255,255,255,.06);
  --panel-2:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --faint:rgba(255,255,255,.46);
  --accent:#ff2d55;
  --accent2:#a855f7;
  --ring:rgba(255,45,85,.35);
  --shadow:0 18px 80px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}

.bg{position:fixed; inset:0; z-index:-1; overflow:hidden}
.grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(55% 45% at 50% 40%, rgba(0,0,0,1), rgba(0,0,0,0));
  opacity:.55;
}

.glow{
  position:absolute;
  width:720px;
  height:720px;
  border-radius:999px;
  filter: blur(60px);
  opacity:.55;
}
.glow.g1{
  left:-220px;
  top:-260px;
  background:radial-gradient(circle at 30% 30%, rgba(255,45,85,.85), rgba(255,45,85,0) 60%);
}
.glow.g2{
  right:-280px;
  bottom:-320px;
  background:radial-gradient(circle at 30% 30%, rgba(168,85,247,.85), rgba(168,85,247,0) 60%);
}

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 20px 34px;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  gap:26px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{width:52px; height:52px; display:block; object-fit:contain}
.name{font-weight:700; letter-spacing:.2px}
.tag{font-size:12.5px; color:var(--muted)}

.pill{
  padding:10px 12px;
  border-radius:999px;
  background:var(--panel);
  border:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
.pill:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.20);
}

.hero{
  margin-top:10px;
  padding:34px 28px;
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

h1{
  margin:0 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing:-0.02em;
}

.hero p{
  margin:0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:600;
  color:var(--text);
  transition: transform .15s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.09)}
.btn.primary{
  border-color: rgba(255,45,85,.55);
  background: linear-gradient(180deg, rgba(255,45,85,.92), rgba(255,45,85,.62));
  box-shadow: 0 14px 50px rgba(255,45,85,.16);
}
.btn.primary:hover{
  border-color: rgba(255,45,85,.85);
  box-shadow: 0 18px 70px rgba(255,45,85,.22);
}
.btn.primary:focus{outline:none; box-shadow: 0 0 0 4px var(--ring), 0 18px 70px rgba(255,45,85,.22)}

.chips{display:flex; gap:10px; flex-wrap:wrap; margin-top:22px}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  color: var(--faint);
  font-size: 13px;
}

.features{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.feature{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}
.feature-title{
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .2px;
}
.feature-body{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.foot{
  margin-top:auto;
  padding:10px 2px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: var(--faint);
  font-size: 12.5px;
}

.links{display:flex; align-items:center; gap:10px}
.link{
  color: var(--faint);
  text-decoration:none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.link:hover{color: var(--text); border-color: rgba(255,255,255,.25)}
.sep{color: rgba(255,255,255,.28)}

@media (max-width: 768px){
  .wrap{padding:20px 16px 28px}
  .logo{width:56px; height:56px}
  .top{flex-direction:column; align-items:flex-start}
  .hero{padding:26px 18px}
  .features{grid-template-columns: 1fr}
}
