@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap");

:root {
  --bg: #030507;
  --bg-alt: #080f18;
  --card: rgba(12, 17, 27, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f6ff;
  --muted: #a8b3c6;
  --accent: #00ffc3;
  --accent-2: #7f5dff;
  --warning: #ffb347;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #081225 0%, #030507 55%, #010203 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.glow-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0),
    linear-gradient(120deg, rgba(0, 255, 195, 0.08), rgba(127, 93, 255, 0.08));
  background-size: 100px 100px, 100% 100%;
  filter: blur(1px);
  opacity: 0.7;
  animation: slow-pan 40s linear infinite;
}

.card {
  position: relative;
  width: min(540px, 100%);
  border-radius: 28px;
  padding: 2.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px);
  z-index: 2;
}

header h1 {
  margin: 1.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.logo-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tag {
  background: rgba(127, 93, 255, 0.18);
  color: var(--accent-2);
  padding: 0.15rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.status {
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  padding: 1.4rem;
  border-radius: 20px;
}

.status-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.status-pill {
  color: var(--warning);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.progress-track {
  height: 10px;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: var(--progress, 50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: inherit;
  animation: shimmer 2.5s ease-in-out infinite;
}

.micro-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.action-row {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

button {
  font: inherit;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.primary {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #010203;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 255, 195, 0.25);
}

button.ghost {
  flex: 0.8;
  min-width: 160px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

button:hover {
  transform: translateY(-2px);
}

footer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

.floating-emoji {
  position: absolute;
  font-size: 2.3rem;
  animation: floaty 6s ease-in-out infinite;
  opacity: 0.8;
}

.comet {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.satellite {
  bottom: 12%;
  right: 10%;
  animation-delay: 1s;
}

.spark {
  top: 20%;
  right: 25%;
  animation-delay: 2s;
}

@keyframes shimmer {
  0% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.15);
  }
  100% {
    filter: brightness(0.9);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes slow-pan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-6%);
  }
}

@media (max-width: 560px) {
  body {
    padding: 1.5rem;
  }
  .card {
    padding: 1.75rem;
  }
  .action-row {
    flex-direction: column;
  }
  button {
    width: 100%;
  }
}
