:root {
  color-scheme: dark;
  --bg: #070b16;
  --bg-soft: #0d1426;
  --text: #ecf3ff;
  --text-muted: #9ab1d5;
  --line: rgba(150, 196, 255, 0.2);
  --card: rgba(12, 24, 49, 0.58);
  --glow-blue: #3aa0ff;
  --glow-violet: #8957ff;
  --glow-cyan: #19f0ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(58, 160, 255, 0.2), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(137, 87, 255, 0.22), transparent 50%),
    linear-gradient(170deg, #060a14 0%, var(--bg) 48%, #05070f 100%);
  color: var(--text);
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero-card {
  width: min(860px, 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(140deg, rgba(24, 37, 69, 0.7), var(--card));
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(136, 180, 255, 0.08) inset,
    0 18px 60px rgba(1, 7, 23, 0.56),
    0 0 120px rgba(25, 240, 255, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  font: 700 0.88rem/1.2 "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glow-cyan);
}

h1 {
  margin: 0;
  max-width: 15ch;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.subtitle {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.coming-soon {
  margin: 24px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(58, 160, 255, 0.45);
  background: rgba(9, 18, 37, 0.7);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.coming-soon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--glow-cyan);
  box-shadow: 0 0 18px var(--glow-cyan);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-pills {
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(153, 191, 255, 0.24);
  background: rgba(16, 30, 60, 0.55);
  font-size: 0.9rem;
  color: #c9defe;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 240, 255, 0.5);
  box-shadow: 0 8px 22px rgba(17, 93, 255, 0.26);
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(125, 178, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 178, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(58, 160, 255, 0.45), rgba(58, 160, 255, 0));
}

.orb-two {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(137, 87, 255, 0.4), rgba(137, 87, 255, 0));
}

.reveal {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 700ms ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .hero-card {
    border-radius: 18px;
    padding: 24px 18px;
  }

  .subtitle {
    line-height: 1.5;
  }
}
