@font-face { font-family: "Jost"; src: url("./public/fonts/Jost-Variable.ttf") format("truetype"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Alegreya Sans"; src: url("./public/fonts/AlegreyaSans-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }

:root { color-scheme: dark; --indigo: #303f72; --ivory: #f3ecd5; --green: #00975d; }
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { background: var(--indigo); color: #fff; font-family: "Alegreya Sans", sans-serif; }

.coming-soon {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  background: radial-gradient(circle at 12% 15%, rgb(0 136 255 / 22%), transparent 28rem), radial-gradient(circle at 88% 82%, rgb(89 14 42 / 42%), transparent 34rem), linear-gradient(145deg, #303f72 0%, #26345f 55%, #202c52 100%);
}

.coming-soon::before, .coming-soon::after { position: absolute; z-index: -1; width: min(52vw, 680px); aspect-ratio: 1; border: 1px solid rgb(255 255 255 / 9%); border-radius: 50%; content: ""; }
.coming-soon::before { top: -25vw; right: -18vw; }
.coming-soon::after { bottom: -34vw; left: -18vw; box-shadow: 0 0 0 8vw rgb(255 255 255 / 2%); }
.brand img { display: block; width: clamp(128px, 16vw, 190px); height: auto; }
.message { align-self: center; width: min(100%, 850px); margin: 0 auto; padding: 8vh 0; text-align: center; }
.signal { position: relative; display: grid; width: 82px; aspect-ratio: 1; margin: 0 auto 34px; place-items: center; }
.signal-ring { position: absolute; inset: 0; border: 1px solid rgb(255 255 255 / 28%); border-radius: 50%; animation: breathe 3.2s ease-in-out infinite; }
.signal-core { width: 28px; aspect-ratio: 1; border: 7px solid rgb(255 255 255 / 18%); border-radius: 50%; background: var(--green); box-shadow: 0 0 36px rgb(0 151 93 / 55%); }
.eyebrow { margin: 0 0 20px; color: var(--ivory); font-family: "Jost", sans-serif; font-size: .78rem; font-weight: 650; letter-spacing: .19em; text-transform: uppercase; }
h1 { max-width: 820px; margin: 0 auto; font-family: "Jost", sans-serif; font-size: clamp(3rem, 7.8vw, 7rem); font-weight: 520; letter-spacing: -.055em; line-height: .96; text-wrap: balance; }
.supporting-copy { margin: 34px auto 0; color: rgb(255 255 255 / 74%); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.45; }
footer { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgb(255 255 255 / 62%); font-family: "Jost", sans-serif; font-size: .76rem; font-weight: 560; letter-spacing: .09em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgb(0 151 93 / 70%); }

@keyframes breathe { 0%, 100% { opacity: .45; transform: scale(.88); } 50% { opacity: 1; transform: scale(1); } }
@media (max-width: 600px) { .coming-soon { padding: 28px 24px 34px; } .message { padding: 48px 0; } .signal { width: 68px; margin-bottom: 28px; } h1 { font-size: clamp(3rem, 15vw, 4.75rem); } }
@media (prefers-reduced-motion: reduce) { .signal-ring { animation: none; } }
