* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #f4f7fb;
  background: #07090f;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  z-index: 0;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.glow-a {
  top: -18rem;
  left: 50%;
  transform: translateX(-70%);
  background: radial-gradient(circle, rgba(124, 92, 255, 0.45), transparent 68%);
}

.glow-b {
  top: -8rem;
  left: 50%;
  transform: translateX(-10%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.28), transparent 68%);
}

.nav, main, footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8b6cff, #22d3ee);
  color: #07090f;
  font-size: 0.95rem;
  font-weight: 750;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #c9d4e3;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

main {
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10vh 24px 64px;
}

.kicker {
  margin: 0 0 16px;
  color: #8ee9f5;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(180deg, #ffffff 20%, #b7c3d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 38rem;
  margin: 28px 0 0;
  color: #b7c3d4;
  font-size: 1.2rem;
  line-height: 1.55;
}

.points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 46rem;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.points li {
  margin: 0;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #9aabc0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.points span {
  display: block;
  margin-bottom: 6px;
  color: #f4f7fb;
  font-weight: 650;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px 28px;
  color: #6d7c90;
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .points { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
