:root {
  --bg: #07111f;
  --card: rgba(11, 22, 38, 0.82);
  --card-border: rgba(255, 255, 255, 0.11);
  --text: #f7fbff;
  --muted: #9fb0c6;
  --muted-strong: #c8d5e8;
  --cyan: #49d8ff;
  --purple: #8b5cf6;
  --green: #3ddc97;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(73, 216, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 86% 16%, rgba(139, 92, 246, 0.20), transparent 34rem),
    linear-gradient(135deg, #07111f 0%, #091827 45%, #0a1020 100%);
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
  pointer-events: none;
}

.ambient {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.26;
  pointer-events: none;
}

.ambient-one {
  left: -110px;
  bottom: 14%;
  background: var(--cyan);
}

.ambient-two {
  right: -90px;
  top: 12%;
  background: var(--purple);
}

.card {
  width: min(1100px, 100%);
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(73, 216, 255, 0.22), rgba(139, 92, 246, 0.22)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--text);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .line {
  opacity: 0.55;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.052);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(61, 220, 151, 0.13);
}

.hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(73, 216, 255, 0.16);
  border-radius: 999px;
  color: #c8f4ff;
  background: rgba(73, 216, 255, 0.08);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
}

.primary-action {
  color: #04101b;
  background: linear-gradient(135deg, var(--cyan), #73ffa9);
  box-shadow: 0 18px 36px rgba(73, 216, 255, 0.20);
}

.secondary-action {
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.115);
  background: rgba(255, 255, 255, 0.052);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 88px;
}

.feature-grid article {
  min-height: 184px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(255, 255, 255, 0.046);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(200, 213, 232, 0.66);
  font-size: 13px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(200, 213, 232, 0.52);
}

@media (max-width: 760px) {
  .page {
    padding: 18px;
  }

  .card {
    border-radius: 26px;
    padding: 22px;
  }

  .nav {
    align-items: flex-start;
    margin-bottom: 62px;
  }

  .status-pill {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .dot {
    display: none;
  }
}
