* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050308;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
  min-height: 100vh;
}

canvas#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(186, 85, 211, 0.25);
  background: rgba(186, 85, 211, 0.1);
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e9d5ff;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

h1 span {
  color: #b855d3;
}

.subtitle {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #a1a1aa;
  max-width: 28rem;
}

.status {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  border: 1px solid rgba(186, 85, 211, 0.25);
  background: #fff;
  color: #12071f;
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 0 45px rgba(186, 85, 211, 0.28);
}

.eta {
  font-size: 0.9rem;
  color: #71717a;
}

@media (max-width: 640px) {
  h1 {
    font-size: 3rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
