:root {
  --black: #050505;
  --black-2: #0b0d10;
  --black-3: #141414;
  --yellow: #fcbe26;
  --yellow-2: #ffd35d;
  --white: #f8f8f4;
  --muted: #b8b8b0;
  --muted-dark: #5c5d5a;
  --line: rgba(252, 190, 38, 0.26);
  --line-dark: rgba(5, 5, 5, 0.12);
  --max: 1180px;
  --header: 78px;
  --radius: 8px;
  --font-display: "Oswald", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 40;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(-200%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(252, 190, 38, 0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.99);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.brand__text span {
  font-size: 16px;
  font-weight: 950;
}

.brand__text small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 11px 13px;
  color: rgba(248, 248, 244, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--yellow);
  background: rgba(252, 190, 38, 0.08);
}

.site-nav a.nav-support {
  margin-left: 6px;
  background: var(--yellow);
  color: var(--black);
}

.site-nav a.nav-support::after {
  display: none;
}

.site-nav a.nav-support:hover {
  background: var(--yellow-2);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 190, 38, 0.42);
  background: transparent;
  color: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--yellow);
}

.section {
  scroll-margin-top: var(--header);
  padding: clamp(76px, 10vw, 118px) clamp(18px, 4vw, 48px);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section__inner,
.hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  column-gap: 48px;
  row-gap: 18px;
  align-items: end;
  max-width: none;
  margin-bottom: 42px;
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.contact p {
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 17px;
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--yellow);
}

.eyebrow--hero {
  display: block;
  align-items: initial;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.7;
}

.eyebrow--hero::before {
  display: none;
}

.role-highlight {
  display: inline-block;
  padding: 5px 13px 6px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1;
  letter-spacing: 0.035em;
  vertical-align: middle;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__copy > * {
  animation: rise-in 700ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero__copy > *:nth-child(1) { animation-delay: 60ms; }
.hero__copy > *:nth-child(2) { animation-delay: 140ms; }
.hero__copy > *:nth-child(3) { animation-delay: 220ms; }
.hero__copy > *:nth-child(4) { animation-delay: 300ms; }
.hero__copy > *:nth-child(5) { animation-delay: 380ms; }
.hero__copy > *:nth-child(6) { animation-delay: 460ms; }

.hero__media {
  animation: rise-in 800ms cubic-bezier(0.22, 1, 0.36, 1) 320ms backwards;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero {
  position: relative;
  scroll-margin-top: var(--header);
  min-height: 100vh;
  padding: calc(var(--header) + 42px) clamp(18px, 4vw, 48px) 48px;
  overflow: hidden;
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(135deg, transparent 0 44%, var(--yellow) 45% 46%, transparent 47%),
    radial-gradient(circle at 12px 12px, var(--white) 1px, transparent 1px);
  background-size: 54px 54px, 24px 24px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - var(--header) - 90px);
}

.mission-logo {
  width: min(260px, 58vw);
  margin-bottom: 30px;
}

.hero h1 {
  margin: 0;
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 10.5vw, 146px);
  line-height: 0.82;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(248, 248, 244, 0.8);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.button--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 7px 7px 0 rgba(248, 248, 244, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button--primary:hover {
  box-shadow: 10px 10px 0 rgba(248, 248, 244, 0.3);
}

.button--ghost {
  border-color: rgba(248, 248, 244, 0.7);
  color: var(--white);
}

.button--ghost:hover {
  background: var(--white);
  color: var(--black);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 42px 0 0;
  padding: 0;
  background: rgba(252, 190, 38, 0.24);
}

.hero__facts div {
  padding: 18px;
  background: rgba(5, 5, 5, 0.86);
}

.hero__facts dt {
  margin: 0 0 8px;
  color: rgba(248, 248, 244, 0.55);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero__media {
  justify-self: end;
  width: min(100%, 480px);
}

.portrait-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--yellow);
  padding: 12px;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 68%;
  height: 58%;
  background: var(--yellow);
  z-index: -1;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  filter: contrast(1.05);
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  background: var(--yellow);
  border-block: 3px solid var(--black);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.ticker__group span {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__dot {
  font-size: 13px;
}

@keyframes ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-stack p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  background: var(--line-dark);
}

.info-grid div {
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--yellow);
}

.info-grid span,
.candidate-card span,
.candidate-feature span {
  display: block;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  text-transform: uppercase;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proposal-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  background: var(--black);
  overflow: hidden;
  transition: background 160ms ease, color 160ms ease;
}

.proposal-grid article::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.proposal-grid article:hover::after {
  opacity: 1;
  transform: none;
}

.proposal-grid article:hover {
  background: var(--yellow);
  color: var(--black);
}

.proposal-grid article:hover span,
.proposal-grid article:hover p {
  color: rgba(5, 5, 5, 0.76);
}

.proposal-grid span {
  display: inline-block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  transition: transform 220ms ease;
}

.proposal-grid article:hover span {
  transform: translateX(6px) scale(1.18);
}

.proposal-grid h3 {
  margin: 42px 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.proposal-grid p {
  margin: 0;
  color: rgba(248, 248, 244, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: 24px;
  align-items: stretch;
}

.video-stage {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  padding-top: 18px;
  background: var(--black);
  border: 1px solid rgba(5, 5, 5, 0.16);
  color: var(--white);
}

.video-stage__player {
  width: min(100% - 36px, 430px);
  max-height: min(74vh, 720px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  background: #000;
  border: 0;
}

.video-stage__caption {
  padding: clamp(20px, 4vw, 30px);
  border-top: 4px solid var(--yellow);
}

@keyframes fade-swap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.video-stage.is-switching .video-stage__caption {
  animation: fade-swap 420ms ease;
}

.video-stage__caption span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-stage__caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.video-stage__caption p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(248, 248, 244, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.video-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 122px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-left: 5px solid var(--black);
  background: #fff;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.video-card:hover,
.video-card.is-active {
  border-color: var(--yellow);
  border-left-color: var(--yellow);
  background: #fff8e6;
  transform: translateY(-2px);
}

.play-icon {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scaleX(0.75);
}

.video-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.video-card p {
  grid-column: 2;
  margin: 7px 0 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 14px;
  line-height: 1.4;
}

.candidates {
  background:
    radial-gradient(circle at 90% 5%, rgba(252, 190, 38, 0.12), transparent 28%),
    var(--black);
}

.state-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-candidates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.candidate-feature,
.candidate-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(252, 190, 38, 0.18);
}

.candidate-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
}

.candidate-feature img,
.candidate-card img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 32%;
  background: var(--black-3);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.candidate-feature:hover img,
.candidate-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(252, 190, 38, 0.25);
}

.candidate-feature h3,
.candidate-card h3 {
  margin: 6px 0 8px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.05;
}

.candidate-feature span,
.candidate-card span {
  color: rgba(248, 248, 244, 0.56);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(252, 190, 38, 0.28);
  background: rgba(5, 5, 5, 0.36);
  color: var(--yellow-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-row a svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.social-row a.social-row__support {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.social-row a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.tabs {
  margin-top: 26px;
}

.tab-list {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(252, 190, 38, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.tab-button {
  min-width: 118px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: rgba(248, 248, 244, 0.65);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-button.is-active {
  background: var(--yellow);
  color: var(--black);
}

.tab-panel {
  margin-top: 20px;
}

.candidate-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.candidate-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  text-align: center;
  flex: 1 1 calc((100% - 28px) / 3);
  max-width: calc((100% - 28px) / 3);
  min-height: 196px;
  padding: 16px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.candidate-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.candidate-card img {
  justify-self: center;
  align-self: center;
  margin-bottom: 14px;
}

.candidate-card h3 {
  min-width: 0;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.candidate-card .social-row {
  margin-top: 9px;
  justify-content: center;
}

.candidate-card--active {
  border-color: var(--yellow);
  background: rgba(252, 190, 38, 0.12);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 48px;
  align-items: center;
}

.contact__inner > div:first-child {
  display: grid;
  gap: 20px;
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.contact-panel a,
.contact-panel__pending {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: #fff;
  border-left: 5px solid var(--yellow);
}

.contact-panel a:hover {
  background: #fff8e6;
}

.contact-panel__pending {
  border-left-color: var(--line-dark);
  opacity: 0.7;
}

.contact-panel span {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 48px);
  background: var(--black);
  color: rgba(248, 248, 244, 0.68);
  border-top: 4px solid var(--yellow);
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 116px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.developer-links {
  display: flex;
  gap: 8px;
}

.developer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(252, 190, 38, 0.34);
  color: var(--yellow);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.developer-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.developer-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1020px) {
  .site-nav a {
    padding-inline: 9px;
  }

  .hero__inner,
  .two-col,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    justify-self: start;
    width: min(100%, 520px);
  }

  .section-heading--wide {
    grid-template-columns: 1fr;
  }

  .proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-card {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 176px;
  }

  .video-card p {
    grid-column: 1;
  }

  .candidate-card {
    flex-basis: calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
  }
}

@media (max-width: 780px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__text span {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(252, 190, 38, 0.2);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(252, 190, 38, 0.1);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__facts,
  .featured-candidates,
  .video-grid,
  .candidate-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 122px;
  }

  .video-card p {
    grid-column: 2;
  }

  .hero__facts dd {
    font-size: 16px;
  }

  .info-grid,
  .proposal-grid {
    grid-template-columns: 1fr;
  }

  .proposal-grid article {
    min-height: 190px;
  }

  .candidate-card {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 180px;
  }

  .candidate-card img {
    width: 68px;
    height: 68px;
  }

  .site-footer,
  .site-footer > div:first-child,
  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 460px) {
  .hero__actions .button {
    width: 100%;
  }

  .hero__facts div {
    padding: 15px;
  }

  .candidate-feature {
    align-items: flex-start;
  }

  .candidate-feature img {
    width: 66px;
    height: 66px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .tab-button {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
