:root {
  color-scheme: dark;
  --bg: #060816;
  --text: #f8f9ff;
  --muted: #c4c9e2;
  --accent: #7c93ff;
  --accent-2: #2bd4d0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 147, 255, 0.32), transparent 28%),
    radial-gradient(circle at bottom right, rgba(43, 212, 208, 0.25), transparent 32%),
    linear-gradient(135deg, #03050c 0%, #0b1023 50%, #070a16 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 85%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: min(92vw, 780px);
  padding: 1.25rem;
}

.hero-card {
  position: relative;
  padding: 3rem;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-card::before {
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(124,147,255,0.8), rgba(43,212,208,0.45), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-card::after {
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 35%);
}

.hero-glow {
  position: absolute;
  inset: -20% 10% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(124,147,255,0.26), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

.hero-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #dfe6ff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9db0ff;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #ffffff 0%, #dce4ff 45%, #9fdfe7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtext {
  margin: 1rem auto 0;
  max-width: 575px;
  font-size: 1.025rem;
  line-height: 1.75;
  color: var(--muted);
}

.pill-row {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #f4f6ff;
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.meta-line {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: #aeb8db;
  font-size: 0.9rem;
}

.meta-line span {
  position: relative;
  padding-left: 1rem;
}

.meta-line span::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7c93ff;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 2rem 1.2rem;
  }

  .subtext {
    font-size: 0.95rem;
  }

  .meta-line {
    gap: 0.75rem;
    font-size: 0.82rem;
  }
}
