:root {
  --color-gray: #818285;
  --color-orange: #FA7122;
  --color-yellow: #D4C727;
  --color-blue: #08AED8;
  --color-green: #28AF4A;
  --color-pink: #CC2D92;
  --color-orange-light: #F59B22;
  --color-orange-deep: #E84D18;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-page: #F5F5F4;

  --orange: var(--color-orange);
  --orange-dark: var(--color-black);
  --orange-soft: var(--color-yellow);
  --gray-900: var(--color-black);
  --gray-700: var(--color-gray);
  --gray-500: var(--color-gray);
  --gray-100: var(--color-page);
  --white: var(--color-white);

  --content: 1664px;
  --content-wide: 1900px;
  --font-heading: "Aleo", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: var(--font-heading);
  --sans: var(--font-body);

  --fs-xs: 12px;
  --lh-xs: 18px;
  --fs-s: 14px;
  --lh-s: 21px;
  --fs-m: 16px;
  --lh-m: 24px;
  --fs-p: 16px;
  --lh-p: 24px;
  --fs-l: 22px;
  --lh-l: 27.5px;
  --fs-xl: 32px;
  --lh-xl: 40px;
  --fs-h6: 18px;
  --lh-h6: 22.5px;
  --fs-h5: 22px;
  --lh-h5: 27.5px;
  --fs-h4: 24px;
  --lh-h4: 30px;
  --fs-h3: 32px;
  --lh-h3: 40px;
  --fs-h2: 40px;
  --lh-h2: 50px;
  --fs-h1: 48px;
  --lh-h1: 60px;
  --fs-display: 64px;
  --lh-display: 80px;
  --fs-button: 16px;
  --lh-button: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-700);
  background: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-p);
  line-height: var(--lh-p);
}

body.modal-open {
  overflow: hidden;
}

main:focus {
  outline: none;
}

:where(a, button, input, video):focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.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;
}

.skip-link {
  position: absolute;
  top: 14px;
  left: 24px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--gray-900);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
  padding: 14px clamp(24px, 9vw, 190px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 16, 16, 0.05);
}

section,
footer {
  scroll-margin-top: 94px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--gray-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.brand-text {
  display: inline-block;
  font-size: clamp(28px, 1.7vw, 34px);
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-healthy {
  color: var(--orange);
}

.brand-debates {
  color: var(--color-gray);
}

.brand-mark {
  display: block;
  width: 18px;
  height: auto;
  margin-top: -11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.8vw, 48px);
  color: var(--color-gray);
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: var(--orange);
  font-size: var(--fs-button);
  font-weight: 700;
  letter-spacing: 0.018em;
  line-height: var(--lh-button);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-orange:hover,
.button-orange:focus-visible {
  background: var(--orange-dark);
}

.button-light {
  color: var(--gray-900);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--color-black);
}

.button-light:focus-visible {
  color: var(--white);
  background: var(--color-black);
}

.button-outline {
  border: 3px solid var(--white);
  color: var(--white);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--color-black);
  color: var(--white);
  background: var(--color-black);
}

.button-external {
  gap: 14px;
}

.button-external::after {
  width: 1.3em;
  height: 1.3em;
  content: "";
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(440px, 72vh, 600px);
  max-height: 600px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--color-orange-light) 0%, var(--color-orange) 46%, var(--color-orange-deep) 100%);
}

.hero-video,
.hero-wash,
.hero-distortion-canvas,
.pattern-layer {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.36;
}

.hero-wash {
  background:
    radial-gradient(circle at 12% 66%, rgba(245, 155, 34, 0.52), transparent 34%),
    linear-gradient(135deg, rgba(245, 155, 34, 0.5), rgba(250, 113, 34, 0.86) 48%, rgba(232, 77, 24, 0.92));
}

.pattern-layer {
  pointer-events: none;
  background-image: url("assets/circles.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-pattern {
  opacity: 0.24;
  mix-blend-mode: screen;
  transition: opacity 260ms ease;
}

.hero-distortion-canvas {
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero.hero-webgl-ready .hero-pattern {
  opacity: 0;
}

.hero.hero-webgl-ready .hero-distortion-canvas {
  opacity: 0.68;
}

@media (prefers-reduced-motion: reduce) {
  .hero-distortion-canvas {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(1580px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 94px) 0 clamp(58px, 7.5vw, 104px);
  text-align: center;
}

.hero h1,
.section-heading h2,
.event-copy h2 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(38px, 3.2vw, var(--fs-h1));
  line-height: 1.1;
}

.hero-content > p:not(.hero-note) {
  max-width: 1140px;
  margin: 30px auto 0;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.hero-note {
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 1.5;
}

.section-pad {
  padding: clamp(48px, 5vw, 86px) clamp(24px, 9vw, 190px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  max-width: var(--content);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: var(--fs-h6);
  font-weight: 700;
  line-height: 1.3;
}

.event-copy h2 {
  max-width: 680px;
  color: var(--gray-700);
  font-size: var(--fs-h3);
  line-height: 1.25;
}

.event-copy .eyebrow {
  color: var(--orange);
  margin-bottom: 18px;
}

.event-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--color-gray);
  font-size: var(--fs-p);
  line-height: 1.5;
}

.event-copy .event-date {
  color: var(--gray-900);
  font-size: var(--fs-p);
  font-weight: 700;
  line-height: 1.5;
}

.event-copy .button {
  margin-top: 26px;
}

.event-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 5px solid var(--orange);
  background: var(--gray-900);
}

.event-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge-section {
  position: relative;
  overflow: hidden;
  padding-left: clamp(16px, 4.2vw, 86px);
  padding-right: clamp(16px, 4.2vw, 86px);
  background-color: var(--color-page);
  background-image: url("assets/046ccb0e4a5446f179a64ab95819dd9a66a9649c.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}

.challenge-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, 0.58);
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--gray-700);
  font-size: var(--fs-h3);
  line-height: 1.25;
}

.section-heading p:not(.eyebrow) {
  max-width: 980px;
  margin: 14px auto 0;
  color: var(--color-gray);
  font-size: 20px;
  line-height: 1.5;
}

.debate-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: clamp(14px, 1.7vw, 30px);
  max-width: var(--content-wide);
  margin: 42px auto 0;
}

.debate-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: clamp(360px, 29vw, 460px);
  overflow: hidden;
  background: var(--color-page);
  touch-action: pan-y;
}

.debate-image-panel {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.debate-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.debate-image-panel-right img {
  filter: brightness(0.72) saturate(0.94);
}

.debate-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.06));
}

.debate-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.debate-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  transform: translateX(100%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.debate-slide-no-transition {
  transition: none;
}

.debate-slide:first-child {
  transform: translateX(0);
}

.debate-card {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: min(520px, calc(50% - clamp(108px, 7vw, 150px)));
  min-height: clamp(148px, 10vw, 184px);
  padding: clamp(20px, 1.45vw, 28px) clamp(28px, 2.1vw, 42px) clamp(22px, 1.5vw, 30px);
  border: 5px solid var(--orange);
  background: var(--white);
  color: var(--gray-700);
  text-align: center;
  transform: translate(-50%, -50%);
}

.debate-card-left {
  left: 25%;
}

.debate-card-right {
  left: 75%;
}

.quote-icon {
  display: block;
  width: clamp(30px, 1.8vw, 38px);
  height: auto;
  margin: 0 auto;
}

.debate-card p {
  margin: clamp(14px, 1vw, 20px) 0 0;
  color: var(--gray-700);
  font-size: var(--fs-h4);
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}

.debate-center-mark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  width: 42px;
  height: 64px;
  transform: translate(-50%, -50%);
}

.round-arrow {
  position: relative;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.round-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  transition: filter 160ms ease, opacity 160ms ease;
}

.round-arrow-left img {
  transform: rotate(180deg);
}

.round-arrow:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .round-arrow:hover img {
    filter: brightness(0);
    opacity: 1;
  }
}

.challenge-button {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  margin: 40px auto 0;
}

.approach-section {
  border-bottom: 4px solid var(--orange);
  padding-top: clamp(48px, 4.6vw, 78px);
  padding-bottom: clamp(50px, 4.8vw, 82px);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 30px);
  max-width: var(--content);
  margin: 40px auto 0;
}

.approach-card {
  min-height: 300px;
  padding: clamp(24px, 1.9vw, 34px) clamp(22px, 1.7vw, 30px);
  border: 4px solid var(--orange);
  background: var(--white);
}

.step-number {
  margin: 0;
  color: var(--orange);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1;
}

.approach-card h3 {
  margin: 16px 0 0;
  color: var(--gray-900);
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  font-weight: 700;
  line-height: 1.3;
}

.approach-card p:not(.step-number) {
  margin: 16px 0 0;
  color: var(--color-gray);
  font-size: var(--fs-p);
  line-height: 1.5;
}

.approach-action {
  margin: 38px auto 0;
  text-align: center;
}

.approach-action p {
  margin: 14px 0 0;
  color: var(--color-gray);
  font-size: var(--fs-p);
  line-height: 1.5;
}

.footer-section {
  padding: clamp(52px, 6vw, 86px) clamp(24px, 9vw, 190px) 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(245, 155, 34, 0.42), transparent 34%),
    linear-gradient(135deg, var(--color-orange-deep) 0%, var(--color-orange) 52%, var(--color-orange-light) 100%);
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
}

.brand-footer .brand-text {
  font-size: clamp(38px, 3.4vw, 56px);
}

.brand-footer .brand-healthy {
  color: var(--white);
}

.brand-footer .brand-debates {
  color: var(--color-gray);
}

.brand-footer .brand-mark {
  width: 30px;
  filter: brightness(0) invert(1);
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
  text-align: left;
}

.footer-card {
  min-height: 230px;
  padding: clamp(28px, 2.1vw, 38px);
  background: var(--white);
  color: var(--gray-700);
}

@media (min-width: 1181px) {
  .footer-card:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc((100% - 32px) / 2);
  }
}

.footer-card h2 {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.25;
}

.footer-card p {
  margin: 20px 0 0;
  color: var(--color-gray);
  font-size: var(--fs-p);
  line-height: 1.5;
}

.footer-card > .button {
  margin-top: 26px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  margin-top: 24px;
}

.newsletter-form input {
  min-width: 0;
  height: 50px;
  min-height: 50px;
  padding: 0 14px;
  border: 2px solid var(--color-gray);
  border-radius: 0;
  color: var(--gray-900);
  font-size: var(--fs-p);
  line-height: 1.5;
}

.newsletter-form .button {
  height: 50px;
  min-height: 50px;
  margin-top: 0;
}

.newsletter-form input::placeholder {
  color: var(--color-gray);
}

.footer-rule {
  height: 4px;
  margin: 68px 0 44px;
  background: var(--white);
}

.disclaimer {
  margin: 0;
  font-size: var(--fs-p);
  line-height: 1.5;
}

.copyright {
  margin: 34px 0 0;
  font-size: var(--fs-h5);
  font-weight: 700;
  line-height: 1.25;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-panel {
  position: relative;
  width: min(1120px, 100%);
  background: var(--color-black);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.modal-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-black);
}

.modal-close {
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1320px) {
  .debate-media {
    display: block;
    min-height: auto;
    padding-bottom: 0;
    overflow: hidden;
  }

  .debate-slides {
    display: block;
    position: relative;
    height: clamp(440px, 58vw, 640px);
    overflow: hidden;
  }

  .debate-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, clamp(220px, 29vw, 320px));
    width: 100%;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .debate-slide[aria-hidden="true"] {
    display: grid;
  }

  .debate-slide[aria-hidden="true"] .debate-card {
    display: block;
  }

  .debate-image-panel {
    order: 1;
    width: 100%;
    min-height: 0;
    height: 100%;
  }

  .debate-image-panel-right {
    display: block;
    order: 2;
  }

  .debate-card {
    position: absolute;
    left: 50%;
    width: min(860px, calc(100% - 88px));
    min-height: 150px;
    margin: 0;
    padding: 24px 36px 28px;
    transform: translate(-50%, -50%);
  }

  .debate-card p {
    font-size: var(--fs-h6);
    line-height: 1.3;
  }

  .debate-card-left {
    top: 25%;
  }

  .debate-card-right {
    top: 75%;
  }

  .debate-center-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 64px;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 16px;
  }

  .nav-cta {
    min-height: 50px;
    padding: 12px 18px;
  }

  .section-grid,
  .footer-cards {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .debate-stage {
    grid-template-columns: 1fr;
  }

  .round-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.86);
    transform: translateY(-50%);
  }

  .round-arrow-left {
    left: 8px;
  }

  .round-arrow-right {
    right: 8px;
  }
}

@media (min-width: 761px) and (max-width: 1320px) {
  .debate-card p {
    font-size: var(--fs-h4);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
  }

  section,
  footer {
    scroll-margin-top: 86px;
  }

  .brand {
    position: relative;
    z-index: 22;
  }

  .brand-text {
    font-size: clamp(24px, 7vw, 32px);
  }

  .brand-mark {
    width: 18px;
    height: auto;
    margin-top: -12px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
    width: 48px;
    height: 48px;
    margin-left: auto;
    background: var(--orange);
  }

  .menu-toggle span {
    height: 2px;
    margin: 6px 0;
    background: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 21;
    display: none;
    align-content: start;
    width: 100%;
    padding: 30px 38px 48px;
    background: var(--orange);
    color: var(--white);
    font-size: 18px;
  }

  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .site-nav a {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 405px;
    padding: 22px 0;
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
    color: var(--white);
    font-weight: 700;
    text-align: center;
    white-space: normal;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: auto;
    min-width: 215px;
    max-width: none;
    margin-top: 38px;
    padding: 12px 22px;
    border: 3px solid var(--white);
    background: transparent;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    color: var(--orange);
    background: var(--white);
  }

  .hero {
    min-height: auto;
    max-height: none;
  }

  .hero-content {
    width: min(100% - 32px, 640px);
    padding: 48px 0 52px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.1;
  }

  .hero-content > p:not(.hero-note) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .section-pad {
    padding: 42px 20px;
  }

  .section-grid {
    gap: 30px;
  }

  .event-copy h2,
  .section-heading h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .event-copy .eyebrow {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .event-copy p,
  .event-copy .event-date,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }

  .event-image {
    border-width: 3px;
  }

  .debate-slides {
    height: clamp(390px, 104vw, 560px);
  }

  .debate-slide {
    grid-template-rows: repeat(2, clamp(195px, 52vw, 280px));
  }

  .debate-image-panel {
    width: 100%;
  }

  .debate-card {
    width: calc(100% - 32px);
    min-height: 124px;
    padding: 18px 20px 20px;
  }

  .quote-icon {
    width: 30px;
  }

  .debate-card p {
    margin-top: 12px;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.3;
  }

  .debate-card-left {
    top: 25%;
  }

  .debate-card-right {
    top: 75%;
    margin-top: 0;
  }

  .debate-center-mark {
    width: 36px;
    height: 55px;
  }

  .round-arrow {
    width: 48px;
    height: 48px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    min-height: auto;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-section {
    padding: 46px 20px 42px;
  }

  .brand-footer {
    max-width: 100%;
    justify-content: center;
  }

  .brand-footer .brand-text {
    font-size: clamp(30px, 8vw, 40px);
  }

  .brand-footer .brand-mark {
    width: 20px;
    margin-top: -10px;
  }

  .footer-cards {
    gap: 20px;
    margin-top: 30px;
  }

  .footer-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .footer-card h2 {
    font-size: 26px;
  }

  .footer-card p {
    margin-top: 14px;
  }

  .footer-card > .button {
    width: 100%;
    margin-top: 20px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
    white-space: nowrap;
  }

  .footer-rule {
    margin: 42px 0 34px;
  }

  .modal {
    padding: 16px;
  }

  .modal-close {
    right: 8px;
    top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .debate-slide {
    transition: none;
  }
}
