:root {
  --ink: #0b0f12;
  --ink-soft: #273035;
  --paper: #f7f8f6;
  --paper-deep: #ebefec;
  --white: #ffffff;
  --line: #d7ded9;
  --cyan: #18a6b4;
  --lime: #8fc43f;
  --coral: #e3654f;
  --gold: #d4a63d;
  --shadow: 0 18px 45px rgba(11, 15, 18, 0.16);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(11, 15, 18, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 15, 18, 0.94);
  box-shadow: 0 14px 32px rgba(11, 15, 18, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 14px;
  min-width: 292px;
}

.brand-logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 46px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(6, 8, 8, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-logo {
  width: 128px;
  height: auto;
  max-height: 34px;
  filter: drop-shadow(0 0 12px rgba(0, 118, 168, 0.34));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 650;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only),
.nav-toggle span:not(.sr-only)::before,
.nav-toggle span:not(.sr-only)::after {
  position: absolute;
  left: 12px;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  content: "";
}

.nav-toggle span:not(.sr-only) {
  top: 20px;
}

.nav-toggle span:not(.sr-only)::before {
  top: -7px;
  left: 0;
}

.nav-toggle span:not(.sr-only)::after {
  top: 7px;
  left: 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  --pointer-x: 0;
  --pointer-y: 0;
}

.hero-image,
.hero-shade,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: translate3d(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -6px), 0) scale(1.035);
  transition: transform 240ms ease-out;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 15, 18, 0.94), rgba(11, 15, 18, 0.62) 42%, rgba(11, 15, 18, 0.2)),
    linear-gradient(180deg, rgba(11, 15, 18, 0.28), rgba(11, 15, 18, 0.72));
}

.hero-canvas {
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-console {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 96px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(260px, calc(100% - 48px));
  transform: translate3d(calc(var(--pointer-x) * 10px), calc(var(--pointer-y) * 8px), 0);
  transition: transform 240ms ease-out;
}

.hero-console span {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 15, 18, 0.42);
  backdrop-filter: blur(12px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(680px, calc(100% - 48px));
  margin-inline: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 168px;
  padding-bottom: 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4.65rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.36rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.primary:hover {
  color: var(--ink);
  background: #a9d94e;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  color: var(--white);
  border-color: var(--cyan);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 48px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.signal-strip div {
  min-height: 108px;
  padding: 22px;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.signal-strip div:hover {
  transform: translateY(-2px);
  background: #fbfdf9;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 1.2rem;
}

.signal-strip span {
  margin-top: 6px;
  color: #607078;
  font-size: 0.92rem;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-alt {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--paper-deep);
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 166, 180, 0.12), transparent 38%),
    var(--ink);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.prose p,
.heading-row p {
  margin: 0;
  color: #4c5a60;
  font-size: 1.02rem;
}

.prose p + p {
  margin-top: 18px;
}

.section-dark .heading-row p,
.section-dark .prose p {
  color: rgba(255, 255, 255, 0.72);
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 36px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.value-grid div {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.value-grid div:hover {
  transform: translateY(-3px);
  background: #fbfdf9;
}

.value-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-grid p,
.topic-card p,
.person-card p,
.history-grid p,
.bio-list p {
  margin: 0;
  color: #526169;
  font-size: 0.95rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.topic-stage {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(24, 166, 180, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 16%, rgba(143, 196, 63, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 241, 0.92));
  box-shadow: 0 18px 42px rgba(11, 15, 18, 0.08);
}

.topic-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 196, 63, 0.95), rgba(24, 166, 180, 0.95));
  box-shadow: 0 22px 48px rgba(24, 166, 180, 0.22);
}

.topic-orb::before,
.topic-orb::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(24, 166, 180, 0.35);
  border-radius: 50%;
  content: "";
  animation: pulse-ring 3.8s ease-out infinite;
}

.topic-orb::after {
  inset: -24px;
  animation-delay: 1.2s;
}

.topic-label {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-stage h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.topic-stage p[data-topic-copy] {
  margin: 0;
  color: #435158;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.topic-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: #175e66;
  font-size: 0.8rem;
  font-weight: 850;
  border: 1px solid rgba(24, 166, 180, 0.2);
  border-radius: 8px;
  background: rgba(24, 166, 180, 0.08);
}

.topic-card {
  min-height: 304px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topic-card:hover,
.topic-card.is-active {
  --lift: -4px;
  border-color: rgba(24, 166, 180, 0.38);
  box-shadow: var(--shadow);
  background: #fbfdf9;
}

.topic-card:focus-visible,
.schedule-table div:focus-visible,
.person-card a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(143, 196, 63, 0.72);
  outline-offset: 3px;
}

.topic-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 900;
  border-radius: 8px;
  background: var(--paper-deep);
}

.topic-card:nth-child(3n + 1) span {
  background: rgba(143, 196, 63, 0.22);
}

.topic-card:nth-child(3n + 2) span {
  background: rgba(24, 166, 180, 0.2);
}

.topic-card:nth-child(3n) span {
  background: rgba(227, 101, 79, 0.18);
}

.topic-card h3 {
  min-height: 84px;
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.deadline-panel {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(143, 196, 63, 0.13), rgba(24, 166, 180, 0.1)),
    rgba(255, 255, 255, 0.06);
}

.deadline-panel span,
.deadline-panel small {
  display: block;
}

.deadline-panel span {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deadline-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.1;
}

.deadline-panel b {
  font-size: 2.4rem;
}

.deadline-panel small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.deadline-meter {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.deadline-meter i {
  display: block;
  width: var(--deadline-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--coral));
  transition: width 500ms ease;
}

.timeline-item {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.timeline-item:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 196, 63, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.timeline-item time {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-weight: 900;
}

.timeline-item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.schedule-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.schedule-focus {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 0;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 166, 180, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(11, 15, 18, 0.09);
}

.schedule-focus time,
.schedule-focus strong,
.schedule-focus span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
}

.schedule-focus time {
  color: var(--ink);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(143, 196, 63, 0.24), rgba(24, 166, 180, 0.16));
}

.schedule-focus span {
  color: #536169;
  font-size: 0.92rem;
  border-left: 1px solid var(--line);
}

.schedule-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.schedule-table div:last-child {
  border-bottom: 0;
}

.schedule-table time,
.schedule-table span {
  display: flex;
  align-items: center;
  padding: 15px 18px;
}

.schedule-table time {
  color: var(--ink);
  font-weight: 900;
  background: var(--paper-deep);
}

.schedule-table span {
  color: #3c474d;
}

.schedule-table div:hover,
.schedule-table div.is-active {
  background: #fbfdf9;
}

.schedule-table div:hover time,
.schedule-table div.is-active time {
  color: #055d68;
  background: rgba(24, 166, 180, 0.13);
}

.submission-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(24, 166, 180, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(11, 15, 18, 0.08);
}

.submission-panel span,
.submission-panel strong {
  display: block;
}

.submission-panel span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.submission-panel strong {
  margin-top: 6px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.submission-url {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: #405058;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.person-card {
  min-height: 394px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.person-card:hover {
  border-color: rgba(24, 166, 180, 0.28);
  box-shadow: var(--shadow);
}

.person-card.lead {
  border-top: 4px solid var(--lime);
}

.person-photo {
  display: block;
  aspect-ratio: 1 / 1;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-deep);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 180ms ease, filter 180ms ease;
}

.person-card:hover .person-photo img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.05);
}

.person-card p {
  min-height: 76px;
  margin-top: 12px;
}

.person-card a {
  display: block;
  margin-top: 10px;
  color: #087989;
  font-weight: 800;
  word-break: break-word;
}

.bio-panel {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.bio-panel details {
  padding: 0;
}

.bio-panel summary {
  min-height: 60px;
  padding: 18px 22px;
  font-weight: 900;
  cursor: pointer;
}

.bio-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.bio-list p {
  padding: 20px;
  background: var(--white);
}

.committee-list {
  columns: 2;
  column-gap: 32px;
}

.committee-list span {
  display: block;
  break-inside: avoid;
  margin-bottom: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #344047;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.history-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.history-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 196, 63, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.history-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
}

.link-row a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #060808;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% {
    opacity: 0.82;
    transform: scale(0.72);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (max-width: 1050px) {
  .site-header {
    padding-inline: 24px;
    padding-right: 92px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-shell {
    width: 126px;
    height: 44px;
  }

  .brand-logo {
    width: 108px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(11, 15, 18, 0.98);
    box-shadow: var(--shadow);
    font-size: 0.92rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 24px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .signal-strip,
  .topic-grid,
  .people-grid,
  .timeline,
  .history-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-card h3 {
    min-height: auto;
  }

  .hero-console {
    display: none;
  }

  .schedule-focus {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .schedule-focus span {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-right: 80px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-shell {
    width: 104px;
    height: 42px;
    padding: 7px 8px;
  }

  .brand-logo {
    width: 88px;
  }

  .nav-toggle {
    display: block;
    top: 11px;
    right: 20px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(11, 15, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(calc(100% - 48px), 342px);
    margin-inline: 20px;
    padding-top: 126px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.42;
    overflow-wrap: normal;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-canvas {
    opacity: 0.44;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 15, 18, 0.95), rgba(11, 15, 18, 0.76)),
      linear-gradient(180deg, rgba(11, 15, 18, 0.18), rgba(11, 15, 18, 0.8));
  }

  .signal-strip,
  .section {
    width: calc(100% - 32px);
  }

  .signal-strip,
  .topic-grid,
  .topic-stage,
  .people-grid,
  .timeline,
  .deadline-panel,
  .submission-panel,
  .history-grid,
  .value-grid,
  .section-grid,
  .heading-row,
  .bio-list {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -32px;
  }

  .section,
  .section-alt,
  .section-dark {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-alt,
  .section-dark {
    padding-inline: 16px;
  }

  .section-grid,
  .heading-row {
    gap: 22px;
  }

  h2 {
    font-size: 2rem;
  }

  .topic-stage {
    gap: 18px;
    padding: 20px;
  }

  .topic-orb {
    width: 92px;
    height: 92px;
    font-size: 1.8rem;
  }

  .deadline-panel strong {
    font-size: 1.65rem;
  }

  .schedule-focus {
    grid-template-columns: 1fr;
  }

  .schedule-focus span {
    border-left: 0;
  }

  .schedule-table div {
    grid-template-columns: 1fr;
  }

  .schedule-table time {
    border-bottom: 1px solid var(--line);
  }

  .submission-panel {
    padding: 20px;
  }

  .submission-panel .button {
    width: 100%;
  }

  .committee-list {
    columns: 1;
  }

  .site-footer {
    display: block;
    padding-inline: 20px;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 16px;
  }
}
