:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #f7fbff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 40px 20px;
  background:
    radial-gradient(circle at top left, rgba(42, 124, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #07111f 0%, #0b1728 55%, #111827 100%);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
}

.glow-one {
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: #f6821f;
}

.glow-two {
  bottom: -240px;
  left: -150px;
  width: 520px;
  height: 520px;
  background: #1468ff;
}

.card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  padding: clamp(32px, 7vw, 88px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(9, 20, 35, 0.78);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: #c8efff;
  font-size: 14px;
  font-weight: 650;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #45e68a;
  box-shadow: 0 0 0 6px rgba(69, 230, 138, 0.1);
}

.eyebrow {
  margin: 46px 0 14px;
  color: #f8a45d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.intro {
  max-width: 690px;
  margin: 30px 0 48px;
  color: #adbed1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.features article {
  min-height: 175px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.features span {
  color: #6f8eaa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.features h2 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.features p {
  margin: 0;
  color: #91a4b9;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .card {
    border-radius: 24px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .features article {
    min-height: auto;
  }
}
