:root {
  --bg: #eaf3fb;
  --bg-raise: #ffffff;
  --ink: #123047;
  --muted: #5a738c;
  --line: rgba(18, 48, 71, 0.12);
  --glow: #5aa9e0;
  --glow-deep: #2f7eb8;
  --radius: 1.25rem;
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-sans: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(90, 169, 224, 0.35), transparent 58%),
    radial-gradient(ellipse 40% 30% at 50% 8%, rgba(180, 220, 245, 0.55), transparent 50%),
    var(--bg);
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: multiply;
}

.wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1080px, calc(100% - 2rem));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  color: #f4f8fc;
  font-weight: 600;
}

.skip:focus {
  top: 1rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0 2.5rem;
}

.mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.mark svg {
  display: block;
}

.mark-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.top-link {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.top-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 0 1rem;
}

.signal {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.6rem;
}

.signal-core {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--glow);
  box-shadow: 0 0 24px rgba(90, 169, 224, 0.7);
}

.signal-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(90, 169, 224, 0.45);
  border-radius: 999px;
  animation: ping 2.8s ease-out infinite;
}

.signal-ring:nth-child(2) {
  width: 64px;
  height: 64px;
  animation-delay: 0.9s;
  opacity: 0.55;
}

@keyframes ping {
  0% {
    transform: scale(0.55);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--glow);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lede {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.125rem;
}

.bays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.bay {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.bay-live {
  border-color: rgba(90, 169, 224, 0.45);
  box-shadow: 0 0 0 1px rgba(90, 169, 224, 0.12);
}

.bay-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill {
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(90, 169, 224, 0.45);
  color: var(--glow-deep);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.bay h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bay p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.bay-action {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: #f4f8fc;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-quiet {
  border: 1px solid var(--line);
  color: var(--muted);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

.foot a {
  color: var(--ink);
  text-decoration: none;
}

.foot a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-ring {
    animation: none;
    opacity: 0.35;
  }
}
