:root {
  color-scheme: light;
  --navy: #092347;
  --blue: #176bb5;
  --gold: #f7c84b;
  --cream: #fff8e9;
  --ink: #14324d;
  --coral: #ef745f;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 18%, rgba(247, 200, 75, .5), transparent 18rem), linear-gradient(180deg, #8ed8f2, #e8f9ff 46%, var(--cream));
}
.page-shell { min-height: 100vh; display: grid; place-items: center; padding: 32px; position: relative; overflow: hidden; }
.page-shell::before, .page-shell::after { content: ""; position: absolute; left: -8vw; right: -8vw; bottom: -13vh; height: 25vh; min-height: 150px; border-radius: 50% 50% 0 0; background: var(--blue); }
.page-shell::after { bottom: -18vh; transform: translateX(14vw); background: var(--navy); opacity: .75; }
.hero { width: min(100%, 760px); display: grid; justify-items: center; gap: 16px; text-align: center; padding: clamp(24px, 5vw, 56px); position: relative; z-index: 1; }
.logo-wrap { width: min(76vw, 390px); }
.brand-logo { display: block; width: 100%; height: auto; filter: drop-shadow(0 24px 26px rgba(9, 35, 71, .2)); }
.eyebrow { margin: 0; color: #0a5d86; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 0; color: var(--navy); font-size: clamp(3rem, 8vw, 5.8rem); line-height: .92; }
.lede { max-width: 620px; margin: 0; color: #24485c; font-size: clamp(1.05rem, 2.6vw, 1.35rem); line-height: 1.55; }
.status-row { display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 18px; margin-top: 8px; border: 2px solid rgba(9,35,71,.12); border-radius: 999px; background: rgba(255,255,255,.7); color: var(--navy); font-weight: 750; box-shadow: 0 18px 40px rgba(28,83,111,.12); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(239,116,95,.18); }
.return-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 2px; }
.return-nav a { display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px; border: 1px solid rgba(9,35,71,.2); border-radius: 999px; background: rgba(255,255,255,.62); color: var(--navy); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-decoration: none; box-shadow: 0 10px 24px rgba(28,83,111,.08); transition: background .2s, border-color .2s, transform .2s; }
.return-nav a:hover { background: rgba(255,255,255,.9); border-color: rgba(9,35,71,.38); transform: translateY(-1px); }
.loop-wrap { width: min(100%, 540px); margin-top: 8px; overflow: hidden; border: 2px solid rgba(9,35,71,.12); border-radius: 24px; background: rgba(255,255,255,.48); box-shadow: 0 18px 40px rgba(28,83,111,.12); }
.loop-video { display: block; width: 100%; height: auto; max-height: 360px; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .loop-video { animation: none; } }
@media (max-width: 560px) { .page-shell { padding: 22px; place-items: start center; } .hero { min-height: 86vh; align-content: center; } .logo-wrap { width: min(84vw, 350px); } }
