:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f3f7fa;
  color: #102a43;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 4rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid #d9e2ec;
  background: #ffffff;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 0.6rem;
  background: #0b7285;
  color: #ffffff;
}

.shell {
  width: min(100% - 2rem, 68rem);
  margin: clamp(2rem, 7vw, 5rem) auto;
}

.briefing {
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid #d9e2ec;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1.2rem 3rem rgb(16 42 67 / 8%);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: #0b7285;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.organization {
  min-height: 1.5rem;
  margin: 0.75rem 0 1.75rem;
  color: #526d82;
}

.status-panel {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid #bcccdc;
  border-radius: 0.75rem;
  background: #f8fafc;
}

.status-panel p {
  margin: 0.25rem 0 0;
  color: #526d82;
  line-height: 1.5;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: #829ab1;
}

.status-panel[data-state="live"] .status-dot {
  background: #198754;
  box-shadow: 0 0 0 0.25rem rgb(25 135 84 / 14%);
}

.status-panel[data-state="capacity"] .status-dot,
.status-panel[data-state="error"] .status-dot {
  background: #c2410c;
}

.player-wrap {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #08131f;
}

video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.button {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0.6rem;
  background: #0b7285;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button:hover {
  background: #075f70;
}

.button:focus-visible {
  outline: 3px solid #69dbeb;
  outline-offset: 2px;
}

.privacy-note,
.noscript {
  color: #627d98;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 36rem) {
  .shell {
    width: min(100% - 1rem, 68rem);
    margin-top: 1rem;
  }

  .briefing {
    padding: 1.2rem;
    border-radius: 0.8rem;
  }
}
