:root {
  color-scheme: dark;
  --bg: #040506;
  --bg-soft: rgba(10, 15, 14, 0.78);
  --line: rgba(208, 255, 226, 0.14);
  --text: #ecf4ef;
  --muted: rgba(236, 244, 239, 0.62);
  --accent: #8fffd1;
  --accent-soft: rgba(143, 255, 209, 0.16);
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(60, 130, 108, 0.32), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(117, 225, 197, 0.18), transparent 20%),
    radial-gradient(circle at 30% 80%, rgba(100, 82, 168, 0.14), transparent 26%),
    linear-gradient(180deg, #050607 0%, #020303 52%, #070909 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.085) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}

.eyebrow {
  position: absolute;
  top: 28px;
  left: 32px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.panel {
  position: relative;
  width: min(1200px, 100%);
  padding: 72px 56px 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    var(--bg-soft);
  box-shadow:
    0 24px 70px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.halo {
  position: absolute;
  top: -72px;
  left: 50%;
  width: min(56vw, 380px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 255, 209, 0.32) 0%, rgba(143, 255, 209, 0.1) 28%, transparent 72%);
  filter: blur(18px);
  opacity: 0.88;
  animation: breathe 6.8s ease-in-out infinite;
}

.status {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: none;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(3rem, 6.1vw, 6.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.copy {
  margin: 28px 0 0;
  max-width: 32rem;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--text);
}

.muted {
  margin-top: 6px;
  color: var(--muted);
}

@keyframes breathe {
  0%,
  100% {
    transform: translateX(-50%) scale(0.96);
    opacity: 0.76;
  }

  50% {
    transform: translateX(-50%) scale(1.06);
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .shell {
    padding: 20px;
  }

  .eyebrow {
    top: 22px;
    left: 24px;
    letter-spacing: 0.28em;
  }

  .panel {
    padding: 56px 28px 32px;
  }

  h1 {
    font-size: clamp(3rem, 7.2vw, 4.9rem);
  }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .shell {
    padding: 88px 18px 18px;
  }

  .eyebrow {
    top: 24px;
    left: 20px;
    letter-spacing: 0.26em;
  }

  .panel {
    padding: 56px 22px 28px;
    border-radius: 22px;
  }

  h1 {
    max-width: 9ch;
    text-wrap: pretty;
  }

  .halo {
    top: -36px;
    width: 78vw;
  }

  .copy {
    max-width: 100%;
    font-size: 0.98rem;
  }
}
