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

:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #a9b5c9;
  --lime: #c9ff57;
  --purple: #9b87ff;
  --blue: #5ce1ff;
  --panel: rgba(17, 29, 54, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #091225;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 13% 15%, rgba(92, 225, 255, 0.14), transparent 29rem),
    radial-gradient(circle at 88% 28%, rgba(155, 135, 255, 0.16), transparent 32rem),
    linear-gradient(145deg, #07101f 0%, #0b1730 54%, #101839 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 48px clamp(24px, 6vw, 96px) 24px;
}

.coming-soon {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  grid-template-areas:
    "brand brand"
    "mascot copy";
  gap: 18px clamp(50px, 7vw, 100px);
  align-items: center;
}

.brand {
  display: flex;
  grid-area: brand;
  gap: 12px;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  color: #0a1326;
  border-radius: 11px;
  place-items: center;
  font-size: 1rem;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(201, 255, 87, 0.22);
  transform: rotate(-6deg);
}

.mascot-wrap {
  position: relative;
  grid-area: mascot;
  width: min(100%, 500px);
  justify-self: center;
}

.mascot-wrap::after {
  position: absolute;
  right: 9%;
  bottom: 2%;
  left: 9%;
  height: 11%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  filter: blur(22px);
}

.mascot {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.28));
  animation: float 5s ease-in-out infinite;
}

.copy {
  grid-area: copy;
  max-width: 570px;
  padding-bottom: 16px;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.eyebrow span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 490px;
  margin: 28px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #dbe5f5;
  font-size: 0.86rem;
  font-weight: 600;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 255, 87, 0.1), 0 0 14px var(--lime);
}

footer {
  display: flex;
  height: 74px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: rgba(200, 213, 233, 0.47);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.4deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mascot { animation: none; }
}

@media (max-width: 820px) {
  .page-shell {
    padding-top: 28px;
  }

  .coming-soon {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "mascot"
      "copy";
    gap: 8px;
    text-align: center;
  }

  .brand {
    justify-self: center;
    margin-bottom: 4px;
  }

  .mascot-wrap {
    width: min(82vw, 390px);
    margin: -8px auto -14px;
  }

  .copy {
    justify-self: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .intro {
    margin-inline: auto;
  }
}

@media (max-width: 460px) {
  .page-shell {
    min-height: calc(100vh - 58px);
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .intro {
    margin-block: 20px 24px;
    font-size: 1rem;
  }

  footer {
    height: 58px;
    gap: 12px;
    font-size: 0.57rem;
  }
}

