﻿:root {
  --bg: #0b0b0d;
  --text: #e7f2ff;
  --muted: #98a2b3;
  --panel: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);
  --aqua: #5ff0d0;
  --mint: #9cf4c4;
  --blue: #5ba2ff;
  --gold: #f2d38a;
  --glow: rgba(95, 240, 208, 0.35);
}

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

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-grid {
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.page::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, var(--aqua), transparent 70%);
}

.page::after {
  bottom: -160px;
  right: -120px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
}

.page > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: relative;
  z-index: 2;
  background: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.logo img {
  width: 150px;
  height: auto;
}

.logo-text {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
}

.badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  gap: 40px;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  flex-grow: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.btn {
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn.primary {
  background: #ffffff;
  color: #101014;
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 60%;
  background: linear-gradient(120deg, transparent, rgba(95, 240, 208, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.6s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(95, 240, 208, 0.25);
}

.btn.primary:hover::after {
  opacity: 1;
  transform: translateX(220%);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.status-grid {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.status-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.status-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.status-value {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 6px 0 10px;
}

.status-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
}

.progress {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 4px;
}

.progress span {
  display: block;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--aqua), var(--blue));
  border-radius: 999px;
}

.pulse {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.pulse::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 12px rgba(95, 240, 208, 0.8);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.65);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glow-card {
  box-shadow: 0 0 40px rgba(95, 240, 208, 0.12);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.panel-top strong {
  color: var(--text);
}

.panel-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.4rem;
}

.panel-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.panel-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-left: 2px solid rgba(95, 240, 208, 0.6);
  padding-left: 14px;
}

.timeline-item span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(95, 240, 208, 0.8);
}

.timeline-item p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.notify {
  padding: 20px 0 70px;
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
}

.notify-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 28px;
  display: grid;
  gap: 20px;
}

.notify-card h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.6rem;
  margin-top: 6px;
}

.muted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.notify-form input {
  flex: 1 1 220px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  padding: 12px 18px;
  font-size: 0.95rem;
}

.notify-form input:focus {
  outline: none;
  border-color: rgba(95, 240, 208, 0.7);
  box-shadow: 0 0 18px rgba(95, 240, 208, 0.2);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  /* .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  } */

  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notify-card {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

