:root {
  --bg: #0b1020;
  --bg-soft: #111833;
  --text: #e8ecff;
  --muted: #9eb0d8;
  --line: rgba(181, 195, 240, 0.2);
  --accent: #21d4a5;
  --accent-2: #0ea5e9;
  --card: rgba(17, 24, 51, 0.72);
  --shadow: 0 24px 64px rgba(7, 11, 26, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(33, 212, 165, 0.22), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.23), transparent 35%),
    linear-gradient(180deg, #080d1b 0%, #0d1328 55%, #0a1021 100%);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
}

.blob-1 {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -110px;
  background: linear-gradient(45deg, rgba(33, 212, 165, 0.5), rgba(33, 212, 165, 0));
}

.blob-2 {
  width: 340px;
  height: 340px;
  bottom: -110px;
  right: -100px;
  background: linear-gradient(45deg, rgba(14, 165, 233, 0.5), rgba(14, 165, 233, 0));
  animation-delay: 1s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 180, 225, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 180, 225, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 80%);
}

.topbar,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(1120px, calc(100% - 3rem));
  margin: 1.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 16, 33, 0.55);
  backdrop-filter: blur(6px);
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-weight: 700;
}

.brand-mark {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.brand-text {
  font-size: 1.15rem;
}

.status-pill {
  border: 1px solid rgba(33, 212, 165, 0.45);
  color: #b7ffe8;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero {
  width: min(1120px, calc(100% - 3rem));
  margin: 3.5rem auto 2rem;
  animation: reveal 700ms ease-out both;
}

.kicker {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  margin: 0 0 1.2rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

h1 span {
  color: #7ee5ff;
}

.lead {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.waiting-card {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  box-shadow: var(--shadow);
  max-width: 700px;
  animation: reveal 900ms ease-out both;
}

.waiting-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.waiting-text {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: reveal 1050ms ease-out both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.6rem 1.05rem;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0bc5ea);
  color: #03221a;
  box-shadow: 0 10px 22px rgba(10, 208, 174, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(126, 229, 255, 0.4);
  color: #d9f7ff;
  background: rgba(12, 23, 44, 0.7);
}

.footer {
  width: min(1120px, calc(100% - 3rem));
  margin: auto auto 1.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  color: #a8b7df;
  font-size: 0.87rem;
}

.footer p {
  margin: 0;
}

.footer p:nth-child(2) {
  text-align: center;
}

.footer p:nth-child(3) {
  text-align: right;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero,
  .footer {
    width: calc(100% - 1.4rem);
  }

  .topbar {
    padding: 0.65rem 0.75rem;
  }

  .status-pill {
    display: none;
  }

  .hero {
    margin-top: 2rem;
  }

  .waiting-card {
    padding: 1rem;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer p:nth-child(2),
  .footer p:nth-child(3) {
    text-align: left;
  }
}
