:root {
  color-scheme: light dark;
  --background: #ffffff;
  --foreground: #000000;
  --accent: #91afa5;
  --muted: rgba(0, 0, 0, 0.55);
  --faint: rgba(0, 0, 0, 0.12);
  --orb: rgba(145, 175, 165, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: 1fr auto;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.page::before,
.page::after {
  position: absolute;
  z-index: -1;
  width: clamp(3rem, 8vw, 7rem);
  height: clamp(3rem, 8vw, 7rem);
  content: "";
}

.page::before {
  top: clamp(1.5rem, 4vw, 3.5rem);
  left: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}

.page::after {
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.orb {
  position: absolute;
  z-index: -2;
  border: 1px solid var(--orb);
  border-radius: 50%;
  pointer-events: none;
}

.orb-top {
  top: -13rem;
  right: -11rem;
  width: 30rem;
  height: 30rem;
}

.orb-bottom {
  bottom: -17rem;
  left: -14rem;
  width: 35rem;
  height: 35rem;
}

.announcement {
  display: flex;
  width: min(100%, 54rem);
  margin: auto;
  padding: clamp(4rem, 10vh, 8rem) 1rem 2.5rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* The supplied SVGs include generous canvas space; this frame reveals the wordmark. */
.brand {
  position: relative;
  display: block;
  width: min(100%, 45rem);
  aspect-ratio: 4.35 / 1;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: 50%;
  left: -12.3%;
  display: block;
  width: 124.6%;
  max-width: none;
  height: auto;
  transform: translateY(-50%);
}

.rule {
  display: flex;
  width: min(11rem, 36vw);
  height: 1px;
  margin: clamp(2.25rem, 6vh, 4rem) 0 clamp(1.75rem, 4vh, 2.75rem);
  align-items: center;
  justify-content: center;
  background: var(--faint);
}

.rule span {
  width: 2.25rem;
  height: 1px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.23em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.message {
  margin: clamp(1.5rem, 4vh, 2.25rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  letter-spacing: 0.015em;
  line-height: 1.7;
}

footer {
  display: flex;
  padding: 0.25rem 0.5rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(145, 175, 165, 0.4);
  animation: breathe 2.8s ease-out infinite;
}

@keyframes breathe {
  0%, 45% {
    box-shadow: 0 0 0 0 rgba(145, 175, 165, 0.4);
  }

  80%, 100% {
    box-shadow: 0 0 0 0.48rem rgba(145, 175, 165, 0);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #000000;
    --foreground: #ffffff;
    --muted: rgba(255, 255, 255, 0.56);
    --faint: rgba(255, 255, 255, 0.14);
    --orb: rgba(145, 175, 165, 0.2);
  }
}

@media (max-width: 34rem) {
  .announcement {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  footer {
    justify-content: center;
  }

  .orb-top {
    right: -18rem;
  }

  .orb-bottom {
    left: -23rem;
  }
}

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