@font-face {
  font-family: "Job Clarendon";
  src: local("Job Clarendon"), local("JobClarendon"),
    url("/assets/job-clarendon.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #00112e;
  --blue-700: #003da5;
  --yellow-400: #ffe600;
  --gold-500: #dbbc33;
  --gray-700: #545850;
  --white: #ffffff;
  --outer-bg: #000000;
  --shadow-lg: 0 28px 60px rgba(0, 17, 46, 0.25);
  --shadow-md: 0 18px 40px rgba(0, 17, 46, 0.18);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1200px;
  --max-width-wide: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--outer-bg);
}

body {
  position: relative;
  margin: 0 auto;
  max-width: var(--max-width-wide);
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

body.standalone-report-route {
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    linear-gradient(125deg, rgba(0, 75, 147, 0.16), transparent 36%),
    linear-gradient(242deg, rgba(255, 198, 0, 0.2), transparent 30%),
    #edf3f8;
}

body.standalone-report-route .site-footer {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.page--live-poll-display {
  max-width: none;
  width: 100%;
  min-height: 100vh;
  background: #020817;
  color: var(--white);
  overflow: hidden;
}

.page--membership main {
  padding-bottom: 219px;
}

img {
  max-width: 100%;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100%, var(--container-width, var(--max-width)));
  margin: 0 auto;
  padding: 0 var(--container-padding, 24px);
}

.container--wide {
  --container-width: var(--max-width-wide);
  --container-padding: 32px;
}

.heading-font {
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0, 17, 46, 0.85), rgba(0, 17, 46, 0));
  pointer-events: none;
}

.site-header--action-landing {
  position: relative;
  padding: 18px 0 16px;
  background: var(--blue-900);
  box-shadow: 0 12px 28px rgba(0, 17, 46, 0.16);
}

.site-header--action-landing::before {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.header-inner--action-landing {
  justify-content: center;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.logo img {
  width: 170px;
  height: auto;
}

.logo__tagline {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  font-size: 10.8px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--yellow-400);
  white-space: nowrap;
}

.site-header--action-landing .logo {
  margin: 0 auto;
}

.site-header--action-landing .logo__tagline {
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  margin-left: 0;
  padding-right: 24px;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--yellow-400);
  font-weight: 700;
  position: relative;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  position: relative;
}

.nav-item {
  position: static;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link__arrow {
  width: 9px;
  height: 8px;
  margin-top: 1px;
  transition: transform 0.15s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow-400);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-item--has-dropdown.is-open .nav-link__arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  transform: translateY(-8px);
  width: 100%;
  max-width: 100%;
  background: #dee1d9;
  color: #000;
  border-top: 2px solid var(--yellow-400);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 30;
}

.nav-dropdown--narrow {
  left: 50%;
  right: auto;
  width: calc(100% - 64px);
  max-width: 320px;
  transform: translate(-50%, -8px);
}

.nav-dropdown--narrow-left {
  right: auto;
  width: calc(100% - 64px);
  max-width: 320px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  height: 6px;
}

.nav-item--has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-item--has-dropdown.is-open .nav-dropdown--narrow {
  transform: translate(-50%, 0);
}

.nav-item--has-dropdown.is-open .nav-link::after {
  width: 100%;
}

.nav-dropdown__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 24px 20px;
}

.nav-dropdown__content--single {
  grid-template-columns: minmax(0, 1fr);
}

.nav-dropdown__divider {
  background: rgba(84, 88, 80, 0.35);
}

.nav-dropdown__title {
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.92);
  margin-bottom: 12px;
  text-transform: none;
}

.nav-dropdown__item + .nav-dropdown__title {
  margin-top: 10px;
}

.nav-dropdown__col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.nav-dropdown__col--join {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-dropdown__col--join .btn.btn-menu {
  margin-top: auto;
  align-self: center;
}

.nav-dropdown__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--blue-700);
  padding: 2px 0;
  text-transform: none;
}

.nav-dropdown__item::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: url("/assets/bulletpoint.png") no-repeat center / contain;
}

.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-dropdown__group,
.nav-dropdown__nested {
  display: grid;
  align-content: start;
  gap: 8px;
}

.nav-dropdown__item--label {
  cursor: default;
}

.nav-dropdown__item--label:hover,
.nav-dropdown__item--label:focus-visible {
  text-decoration: none;
}

.nav-dropdown__item--nested {
  margin-left: 18px;
}

.nav-dropdown__highlight {
  display: grid;
  gap: 12px;
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(84, 88, 80, 0.35);
  border-top: 2px solid var(--yellow-400);
  margin-bottom: 8px;
}

.nav-dropdown__highlight-title {
  font-size: 20px;
  line-height: 1.1;
  color: var(--blue-700);
}

.nav-dropdown__highlight-meta {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.8);
}

.nav-dropdown__highlight-copy {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
}

.nav-dropdown__highlight-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.nav-dropdown__highlight-actions .btn.btn-menu {
  width: 100%;
  margin-top: 0;
  padding: 0 14px;
  justify-self: stretch;
}

.btn.btn-menu {
  background: var(--blue-700);
  color: var(--white);
  min-height: 34px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
  margin-top: 6px;
  width: 150px;
  justify-self: start;
}

.btn.btn-menu:hover,
.btn.btn-menu:focus-visible {
  background: var(--blue-700);
  filter: brightness(0.98);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 0;
}

.header-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
}

.header-search img {
  width: 29px;
  height: 29px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 2px;
  padding: 0 22px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--yellow-400);
  color: var(--blue-700);
  box-shadow: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-pill {
  border-radius: 999px;
}

.btn:hover,
.btn:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-400);
  border: 2px solid var(--yellow-400);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--yellow-400);
  color: var(--blue-700);
}

.btn-small {
  min-height: 29px;
  padding: 0 14px;
  font-size: 11px;
}

.btn-feature {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 46, 0.82);
}

.modal__panel {
  position: relative;
  width: min(560px, 100%);
  background: #dee1d9;
  box-shadow: var(--shadow-lg);
  padding: 62px 72px 52px;
  text-align: center;
}

.modal__panel--subscribe {
  width: min(820px, 100%);
}

.modal__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(84, 88, 80, 0.95);
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

.modal__icon svg {
  width: 70px;
  height: 70px;
}

.modal__title {
  margin: 16px 0 30px;
  color: var(--blue-700);
  font-size: 42px;
  line-height: 1.05;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
  --field-label-color: var(--blue-700);
  --field-line-color: var(--blue-700);
  --field-input-color: #000;
}

.field__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--field-label-color);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--field-line-color);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 9px;
  font-size: 14px;
  color: var(--field-input-color);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 4px;
}

.modal__form {
  display: grid;
  gap: 22px;
  width: min(360px, 100%);
  margin: 0 auto;
}

.subscribe-form {
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: left;
}

.subscribe-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}

.subscribe-form__field--full {
  grid-column: 1 / -1;
}

.subscribe-success {
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: center;
}

.btn-modal {
  width: 148px;
  min-height: 51px;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.modal__footer {
  margin-top: 18px;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue-700);
}

.modal__footer a:hover,
.modal__footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--yellow-400);
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nav-toggle__bars span {
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}

.nav-toggle__close {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.nav-toggle__close::before,
.nav-toggle__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.nav-open .nav-toggle__bars {
  display: none;
}

body.nav-open .nav-toggle__close {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--blue-700);
  color: var(--yellow-400);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 40px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__brand img {
  width: 96px;
  height: auto;
}

.mobile-menu__top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--yellow-400);
}

.mobile-menu__icon img {
  width: 29px;
  height: 29px;
}

.mobile-menu__close {
  background: transparent;
  position: relative;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 1px;
}

.mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__close img {
  display: none;
}

.mobile-menu__cta {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.mobile-menu__cta-btn {
  flex: 1;
  min-height: 49px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-menu__content {
  flex: 1;
  padding-top: 64px;
}

.mobile-menu__back {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--yellow-400);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 28px;
}

.mobile-menu__panel {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.mobile-menu__main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
  justify-items: center;
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--yellow-400);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  text-transform: none;
  cursor: pointer;
}

.mobile-menu__link img {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.mobile-menu__divider {
  display: none;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.mobile-menu__submenus {
  display: none;
}

.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 24px;
}

.mobile-menu__submenu a,
.mobile-menu__submenu-group > span {
  color: var(--yellow-400);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  text-transform: none;
}

.mobile-menu__submenu-group {
  display: grid;
  gap: 12px;
}

.mobile-menu__nested {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 18px;
}

.mobile-menu__nested a {
  font-size: 18px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__content {
  padding-top: 24px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__back {
  display: inline-flex;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__panel {
  grid-template-columns: 150px 1px minmax(0, 1fr);
  justify-items: start;
  align-items: start;
  column-gap: 24px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__main {
  justify-items: start;
  gap: 18px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__link {
  font-size: 18px;
  opacity: 0.35;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__link.is-active {
  font-size: 30px;
  opacity: 1;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__divider {
  display: block;
  height: 260px;
  margin-top: 6px;
}

.mobile-menu[data-active-submenu]:not([data-active-submenu=""]) .mobile-menu__submenus {
  display: block;
}

.mobile-menu[data-active-submenu="about"] [data-mobile-submenu="about"],
.mobile-menu[data-active-submenu="membership"] [data-mobile-submenu="membership"],
.mobile-menu[data-active-submenu="advocacy"] [data-mobile-submenu="advocacy"],
.mobile-menu[data-active-submenu="events"] [data-mobile-submenu="events"],
.mobile-menu[data-active-submenu="programs"] [data-mobile-submenu="programs"] {
  display: grid;
}

.hero {
  position: relative;
  min-height: 522px;
  color: var(--white);
  padding: 131px 0 0;
  background-color: var(--blue-900);
  background-image: linear-gradient(180deg, rgba(0, 17, 46, 0.92), rgba(0, 17, 46, 0.3)), var(--hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 61, 165, 0.75);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 965px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.18;
  color: var(--yellow-400);
  margin: 0 0 12px;
  text-wrap: balance;
}

.hero-title--news-compact {
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.12;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero--membership .hero-title {
    text-wrap: nowrap;
    white-space: nowrap;
  }
}

.hero-copy {
  max-width: 520px;
  font-size: 16px;
  line-height: 20px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95);
}

.hero--events .hero-copy {
  font-size: 14px;
  line-height: 18px;
}

.hero--home {
  --hero-image: url("assets/hero-bg.png");
}

.hero--home .hero-content {
  max-width: 965px;
}

.hero--membership {
  --hero-image: url("assets/membership-hero.png");
  position: relative;
  z-index: 1;
}

.hero--membership::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  aspect-ratio: 721 / 834;
  background: url("assets/pattern-left.svg") no-repeat center;
  background-size: contain;
  transform: translateY(50%);
  z-index: 1;
  pointer-events: none;
}

.hero--membership .hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
}

.hero--membership .hero-bullets {
  gap: 18px;
}

.hero--events {
  --hero-image: url("assets/events-hero.png");
  min-height: 532px;
}

.action-landing-main {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 0, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(246, 244, 234, 0.9), rgba(255, 255, 255, 0.98) 220px);
}

.action-landing-section {
  padding-top: 32px;
  padding-bottom: 72px;
}

.action-landing-intro {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border-top: 0;
  box-shadow: none;
}

.action-landing-title {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.action-landing-copy {
  margin: 0;
  max-width: 100%;
  font-size: 1.03rem;
  line-height: 1.7;
  color: rgba(40, 44, 36, 0.82);
}

.hero-patterns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  bottom: 0;
  width: min(50vw, calc(var(--max-width-wide) / 2));
  overflow: hidden;
}

.hero-pattern::before {
  content: "";
  display: block;
  /* 417 / 721 = 57.8363% */
  padding-bottom: 57.8363%;
}

.hero-pattern img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.hero-pattern--left {
  left: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.hero-pattern--right {
  right: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.hero--join {
  --hero-image: url("assets/membership-hero.png");
  min-height: 610px;
  padding-top: 150px;
  padding-bottom: 240px;
}

.hero--join .hero-title {
  font-size: clamp(56px, 6.5vw, 88px);
  line-height: 1.02;
  margin-bottom: 14px;
}

.join-hero-content {
  max-width: 860px;
}

.join-hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.join-hero-btn {
  width: 148px;
  min-height: 51px;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.join-form-section {
  position: relative;
  background: var(--blue-700);
  color: var(--white);
  padding: 160px 0 120px;
}

.join-form-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -260px;
  height: 260px;
  background: var(--blue-700);
  clip-path: polygon(0 0, 50% 100%, 100% 0, 100% 100%, 0 100%);
}

.join-form-container {
  position: relative;
  z-index: 1;
}

.join-form-title {
  text-align: center;
  margin-bottom: 66px;
}

.join-form-section .field {
  --field-label-color: rgba(255, 255, 255, 0.9);
  --field-line-color: rgba(255, 255, 255, 0.55);
  --field-input-color: rgba(255, 255, 255, 0.96);
}

.field--select {
  position: relative;
}

.field--select select {
  appearance: none;
  padding-right: 28px;
}

.field--select option {
  color: #000;
}

.field__chevron {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--field-label-color);
  pointer-events: none;
}

.join-form {
  max-width: 742px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.join-form__row {
  display: grid;
  gap: 32px;
}

.join-form__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.join-form__row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.join-form__row--message {
  margin-top: 18px;
  gap: 48px;
  align-items: start;
}

.radio-field {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.radio-field legend {
  padding: 0;
  margin-bottom: 18px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.radio-option input {
  accent-color: var(--yellow-400);
}

.join-form__actions {
  margin-top: 14px;
}

.join-form-submit {
  width: 148px;
  min-height: 34px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.page--subbrand main {
  padding: 0;
}

.subbrand-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(320px, 32%) 1fr;
}

.subbrand-hero__left,
.subbrand-hero__right {
  position: relative;
}

.subbrand-hero__right {
  overflow: hidden;
}

.subbrand-hero__left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: 30% center;
}

.subbrand-hero__left::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 230, 0, 0.86);
}

.subbrand-hero__mark {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 40vw, 580px);
}

.subbrand-hero__mark img {
  width: 100%;
  height: auto;
}

.subbrand-hero__right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
}

.subbrand-hero__right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.88);
}

.subbrand-hero__content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  margin: 0 auto;
  padding: 184px 36px 92px;
  text-align: left;
}

.subbrand-hero__title {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.05;
  text-wrap: balance;
}

.subbrand-hero__subtitle {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(84, 88, 80, 0.9);
}

.subbrand-hero__copy {
  margin: 18px 0 26px;
  max-width: 612px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(84, 88, 80, 0.92);
}

.subbrand-hero__cta {
  width: 176px;
  min-height: 51px;
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}

.subbrand-hero__cta--wide {
  width: 217px;
}

.hero-content--wide {
  max-width: var(--max-width-wide);
}

.hero-bullets {
  margin: 0 auto;
  max-width: 909px;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  display: grid;
  gap: 14px;
}

.hero-bullets p {
  margin: 0;
}

.hero-bullets strong {
  color: var(--yellow-400);
}

.hero-cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  margin: 5px auto 0;
}

.hero--membership .hero-cta {
  width: 148px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .hero--membership .hero-cta {
    display: none;
  }
}

.geo-divider {
  position: relative;
  z-index: 0;
  --geo-divider-height: 103px;
  --geo-divider-pattern-top: -364px;
  height: var(--geo-divider-height);
  margin-top: 0;
  margin-bottom: 0;
  background: var(--white);
  overflow: hidden;
}

.page--membership .geo-divider {
  --geo-divider-height: 20px;
}

.page--membership .geo-divider__pattern {
  display: none;
}

.page--events .geo-divider {
  --geo-divider-height: 128px;
  --geo-divider-pattern-top: -430px;
}

.geo-divider + .section {
  position: relative;
  z-index: 1;
}

.geo-divider__pattern {
  position: absolute;
  top: var(--geo-divider-pattern-top);
  width: min(50vw, calc(var(--max-width-wide) / 2));
  height: auto;
}

.geo-divider__pattern--left {
  left: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.geo-divider__pattern--right {
  right: max(0px, calc(50% - (var(--max-width-wide) / 2)));
}

.members-strip {
  text-align: center;
  padding: 0 0 4px;
}

.members-strip__title {
  font-size: clamp(34px, 3.2vw, 42px);
  color: var(--blue-700);
  margin: 0;
}

.members-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 54px;
  margin-top: 22px;
}

.members-strip__logos img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.members-strip__dots {
  margin-top: 16px;
}

.members-strip__dots .carousel-dot {
  border-color: rgba(0, 61, 165, 0.35);
  background: transparent;
}

.members-strip__dots .carousel-dot.is-active {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.tier-visionary {
  width: 100%;
  margin: 50px 0 0;
  background: var(--yellow-400);
  min-height: 418px;
  position: relative;
  overflow: hidden;
}

.tier-visionary::before,
.tier-visionary::after {
  content: "";
  position: absolute;
  top: 122px;
  width: 106px;
  height: 74px;
  background: url("assets/visionary-arrow.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.tier-visionary::before {
  left: calc(50% - 290px);
}

.tier-visionary::after {
  left: calc(50% + 196px);
  transform: translateY(-50%) scaleX(-1);
}

.tier-visionary__inner {
  position: relative;
  z-index: 1;
  padding: 44px 60px 44px;
  text-align: center;
  color: var(--blue-700);
}

.tier-visionary__title {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 82px);
  line-height: 0.91;
}

.tier-visionary__price {
  font-size: clamp(44px, 4.8vw, 64px);
  margin-top: 2px;
  color: var(--gray-700);
}

.tier-visionary__copy {
  margin: 28px auto 18px;
  max-width: 901px;
  font-size: 23px;
  line-height: 32px;
  color: #000;
}

.tier-visionary__key {
  margin: 0 auto;
  max-width: 1020px;
  font-size: 16px;
  line-height: 16px;
  font-style: italic;
  color: #000;
}

.section--membership-tiers .section-title {
  font-size: 42px;
  margin-bottom: 12px;
}

.section--membership-tiers .section-text {
  max-width: 791px;
  line-height: 20px;
}

@media (min-width: 1200px) {
  .section--membership-tiers > .container {
    --container-padding: 0;
  }

  .tier-visionary {
    width: calc(100% + 8px);
    margin-left: -1px;
  }

  .tier-row {
    width: calc(100% + 8px);
    margin-left: -1px;
    gap: 22px;
    margin-top: 37px;
    padding-top: 37px;
  }
}

.tier-row {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 26px;
  padding-top: 26px;
}

.tier-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
}

.tier-row--primary,
.tier-row--secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tier-box {
  border-radius: 0;
  padding: 38px 52px 32px;
  box-shadow: none;
}

.tier-box h4 {
  margin: 0;
  font-size: 42px;
  line-height: 0.91;
  text-align: center;
}

.tier-box__price {
  font-weight: 400;
  margin: 2px 0 30px;
  font-size: 32px;
  line-height: 1.11;
  text-align: center;
}

.tier-box > p:not(.tier-box__key) {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.tier-box__key {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 16px;
  font-style: italic;
}

.tier-box--primary {
  background: var(--blue-700);
  color: rgba(255, 255, 255, 0.92);
}

.tier-box--primary h4 {
  color: var(--yellow-400);
}

.tier-box--primary .tier-box__price {
  color: var(--white);
  font-size: 32px;
}

.tier-box--primary .tier-box__key {
  color: rgba(255, 255, 255, 0.92);
}

.tier-box--secondary {
  background: #f3f3f3;
  color: var(--gray-700);
  border: 1px solid rgba(84, 88, 80, 0.24);
  box-shadow: none;
}

.tier-box--secondary h4 {
  color: var(--blue-700);
}

.tier-box--secondary .tier-box__price {
  color: var(--gray-700);
  font-size: 35px;
}

.tier-box--secondary .tier-box__key {
  color: #000;
}

.supporters-page {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f4ea 0, rgba(255, 255, 255, 0.98) 280px);
}

.supporters-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: end;
  padding-top: 18px;
}

.supporters-intro--centered {
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.supporters-intro--centered .supporters-intro__copy {
  text-align: center;
}

.supporters-intro__copy .section-title {
  margin-bottom: 12px;
}

.supporters-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.supporters-stat {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 22px 20px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.supporters-stat__value {
  color: var(--blue-700);
  font-family: "Clarendon BT", "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.95;
}

.supporters-stat__label {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporters-tier-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.supporters-tier {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.supporters-tier::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--yellow-400);
}

.supporters-tier--visionary {
  background: var(--yellow-400);
}

.supporters-tier--visionary::before,
.supporters-tier--champion::before {
  width: 0;
}

.supporters-tier--champion {
  background: var(--blue-700);
  color: rgba(255, 255, 255, 0.96);
}

.supporters-tier--champion .supporters-tier__title,
.supporters-tier--champion .supporters-tier__eyebrow,
.supporters-tier--champion .supporters-tier__count,
.supporters-tier--champion .supporters-tier__summary,
.supporters-tier--champion .supporters-tier__members a,
.supporters-tier--champion .supporters-tier__members span {
  color: inherit;
}

.supporters-tier--champion .supporters-tier__members li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.supporters-tier--champion .supporters-tier__logo-card {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.22);
}

.supporters-tier--champion .supporters-tier__members a:hover,
.supporters-tier--champion .supporters-tier__members a:focus-visible {
  color: var(--yellow-400);
}

.supporters-tier--catalyst::before {
  background: #1d7d6f;
}

.supporters-tier--innovator::before {
  background: #0f5f8f;
}

.supporters-tier--advocate::before {
  background: #7f5f11;
}

.supporters-tier--investor::before {
  background: #4b4f49;
}

.supporters-tier__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.supporters-tier__eyebrow {
  margin: 0 0 8px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supporters-tier__title {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.92;
}

.supporters-tier__count {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  color: var(--gray-700);
  text-transform: uppercase;
}

.supporters-tier__count span {
  font-family: "Clarendon BT", "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.9;
}

.supporters-tier__count small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.supporters-tier__summary {
  max-width: 860px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.supporters-tier__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 24px 0 0;
}

.supporters-tier__logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(84, 88, 80, 0.16);
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.supporters-tier__logo-card:hover,
.supporters-tier__logo-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(27, 67, 112, 0.28);
  box-shadow: 0 12px 28px rgba(16, 39, 65, 0.08);
}

.supporters-tier__logo-tooltip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(16, 39, 65, 0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.supporters-tier__logo-card:hover .supporters-tier__logo-tooltip,
.supporters-tier__logo-card:focus-visible .supporters-tier__logo-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.supporters-tier__logo-image {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 54px;
  object-fit: contain;
}

.supporters-tier__members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.supporters-tier__members li {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  border: 1px solid rgba(84, 88, 80, 0.16);
  background: rgba(255, 255, 255, 0.76);
}

.supporters-tier__members a,
.supporters-tier__members span {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.supporters-tier__members a:hover,
.supporters-tier__members a:focus-visible {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.supporters-page__actions {
  margin-top: 40px;
  justify-content: center;
  gap: 24px;
}

.supporters-page__actions .btn {
  min-width: 240px;
  min-height: 60px;
  padding: 0 28px;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .supporters-intro {
    grid-template-columns: 1fr;
  }

  .supporters-stats {
    grid-template-columns: 1fr;
  }

  .supporters-stat {
    min-height: 0;
  }

  .supporters-tier__header {
    flex-direction: column;
  }

  .supporters-tier__count {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .supporters-tier {
    padding: 22px 18px;
  }

  .supporters-tier__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .supporters-tier__members {
    grid-template-columns: 1fr;
  }

  .supporters-page__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .supporters-tier__members li {
    min-height: 0;
  }
}

.home-splash {
  position: relative;
  /* Keep the pattern V-tip flush with the report-card diamond across widths. */
  --home-splash-overlap: calc(min(100%, var(--max-width-wide)) * 417 / 1442 - 0.5px);
  --home-splash-padding-bottom: 63px;
  margin-top: calc(var(--home-splash-overlap) * -1);
  padding: calc(var(--home-splash-overlap)) 0 var(--home-splash-padding-bottom);
  background: transparent;
  color: var(--white);
  overflow: hidden;
}

.home-splash::before {
  content: "";
  position: absolute;
  top: var(--home-splash-overlap);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-700);
  z-index: 0;
}

.home-splash__patterns {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--max-width-wide));
  height: clamp(520px, 60vw, 900px);
  pointer-events: none;
  z-index: 1;
}

.home-splash__pattern {
  position: absolute;
  top: 0;
  width: min(50%, calc(var(--max-width-wide) / 2));
  height: auto;
}

.home-splash__pattern--left {
  left: 0;
}

.home-splash__pattern--right {
  right: 0;
}

.home-splash__feature {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 0;
}

.feature-frame {
  position: relative;
  width: min(100%, var(--max-width-wide));
  margin: 0 auto;
}

.feature-diamond {
  --diamond-clip: polygon(
    50% 0%,
    100% 49.35%,
    100% 50.59%,
    50% 100%,
    0% 50.71%,
    0% 49.35%
  );
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 844;
  background: transparent;
  -webkit-clip-path: var(--diamond-clip);
  clip-path: var(--diamond-clip);
}

.feature-diamond__surface {
  position: absolute;
  inset: 0;
  background-image: var(--feature-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--white);
  -webkit-clip-path: var(--diamond-clip);
  clip-path: var(--diamond-clip);
}

.feature-diamond__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.6);
  z-index: 1;
}

.feature-diamond__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.feature-title {
  position: absolute;
  left: 50%;
  top: 34.8%;
  transform: translateX(-50%);
  margin: 0;
  width: min(744px, calc(100% - 80px));
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.06;
  color: var(--white);
  text-wrap: balance;
}

.feature-copy {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  margin: 0;
  width: min(545px, calc(100% - 80px));
  font-size: 16px;
  line-height: 1.25;
}

.feature-diamond--summit .feature-title {
  top: 30.5%;
  width: min(900px, calc(100% - 80px));
  font-size: clamp(36px, 3.8vw, 50px);
}

.feature-diamond--summit .feature-copy {
  top: 45.5%;
  width: min(760px, calc(100% - 80px));
  line-height: 1.32;
}

.feature-diamond--summit .feature-cta-row {
  top: 65.5%;
}

.feature-diamond--slider .feature-diamond__surface {
  background: var(--blue-700);
}

.feature-slider,
.feature-slide {
  position: absolute;
  inset: 0;
}

.feature-slide {
  display: block;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  background-image: var(--feature-image);
  background-size: cover;
  background-position: center;
  transition: opacity 520ms ease;
}

.feature-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.feature-slide--report {
  background-position: center 42%;
}

.feature-slide--tour {
  background-position: center 52%;
}

.feature-slide--assembly {
  background-position: center 48%;
}

.feature-slide--gala {
  background-position: center 48%;
}

.feature-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-slide--report .feature-slide__overlay {
  background:
    radial-gradient(circle at 72% 46%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(0, 17, 46, 0.18);
}

.feature-slide--tour .feature-slide__overlay {
  background:
    linear-gradient(90deg, rgba(0, 17, 46, 0.94) 0%, rgba(0, 39, 95, 0.82) 45%, rgba(0, 61, 165, 0.42) 100%),
    radial-gradient(circle at 78% 43%, rgba(255, 230, 0, 0.2), transparent 34%);
}

.feature-slide--assembly .feature-slide__overlay {
  background:
    linear-gradient(180deg, rgba(0, 17, 46, 0.52) 0%, rgba(0, 17, 46, 0.66) 46%, rgba(0, 17, 46, 0.78) 100%),
    radial-gradient(circle at 50% 44%, rgba(255, 230, 0, 0.14), transparent 38%);
}

.feature-slide--gala .feature-slide__overlay {
  background:
    linear-gradient(90deg, rgba(0, 17, 46, 0.96) 0%, rgba(0, 38, 91, 0.86) 47%, rgba(0, 17, 46, 0.7) 100%),
    radial-gradient(circle at 50% 48%, rgba(255, 230, 0, 0.18), transparent 36%);
}

.feature-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(68px, 8vw, 118px) clamp(104px, 13vw, 214px) clamp(56px, 7vw, 96px);
}

.feature-report,
.feature-tour,
.feature-assembly,
.feature-gala {
  display: grid;
  align-items: center;
  gap: clamp(28px, 3.6vw, 52px);
}

.feature-report {
  grid-template-columns: minmax(0, 500px) minmax(220px, 300px);
  width: min(852px, 100%);
}

.feature-tour {
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(760px, 100%);
}

.feature-assembly,
.feature-gala {
  grid-template-columns: 1fr;
  justify-items: center;
  width: min(760px, 100%);
}

.feature-report__copy,
.feature-tour__copy,
.feature-assembly__copy,
.feature-gala__copy {
  max-width: 500px;
  text-align: left;
}

.feature-report__eyebrow,
.feature-tour__eyebrow,
.feature-assembly__eyebrow,
.feature-gala__eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-400);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-report__title,
.feature-tour__title,
.feature-assembly__title,
.feature-gala__title {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 0.98;
  text-wrap: balance;
}

.feature-report__summary,
.feature-tour__summary,
.feature-assembly__summary,
.feature-gala__summary {
  margin: 20px 0 0;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.44;
}

.feature-tour__summary {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.feature-report__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.feature-report__actions .btn {
  min-height: 52px;
  min-width: 176px;
  padding: 0 26px;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.feature-tour__copy,
.feature-assembly__copy,
.feature-gala__copy {
  max-width: 720px;
  text-align: center;
}

.feature-tour .feature-report__actions,
.feature-assembly .feature-report__actions,
.feature-gala .feature-report__actions {
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tour__date-range,
.feature-assembly__date-range,
.feature-gala__date-range {
  margin: 18px 0 0;
  color: var(--yellow-400);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-report__cover-link {
  position: relative;
  z-index: 1;
  display: block;
  justify-self: center;
  width: min(100%, 300px);
  color: inherit;
  transform: rotate(1.25deg);
}

.feature-report__cover {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 28px 60px rgba(0, 17, 46, 0.46);
}

.feature-slider__controls {
  position: absolute;
  left: 50%;
  bottom: 20.8%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateX(-50%);
}

.feature-slider__dots {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-slider__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 230, 0, 0.72);
  color: var(--yellow-400);
  background: rgba(0, 17, 46, 0.4);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.feature-slider__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
}

.feature-slider__dot.is-active {
  background: var(--yellow-400);
}

.feature-slider__dot:hover,
.feature-slider__dot:focus-visible {
  background: var(--yellow-400);
  color: var(--blue-900);
  transform: translateY(-1px);
}

.feature-cta-row {
  position: absolute;
  left: 50%;
  top: 61.2%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.feature-cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.feature-cta--wide {
  width: auto;
  white-space: nowrap;
}

.feature-diamond__dots {
  display: none !important;
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.feature-diamond__dots.carousel-dots {
  margin-top: 0;
  gap: 20px;
}

.feature-diamond__dots .carousel-dot {
  width: 28px;
  height: 28px;
  border-width: 4px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.9;
}

.carousel-dot.is-active {
  background: var(--blue-700);
  border-color: rgba(255, 255, 255, 0.95);
}

.home-splash__connect {
  position: relative;
  z-index: 2;
  padding-top: 23px;
  text-align: center;
}

.connect-diagram {
  position: relative;
  width: min(462px, 100%);
  aspect-ratio: 462 / 136;
  margin: 22px auto 26px;
}

.connect-diagram__image {
  display: block;
  width: 100%;
  height: 100%;
}

.connect-title {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.15;
  color: var(--yellow-400);
}

.connect-title__line {
  display: inline;
}

.connect-title__line + .connect-title__line::before {
  content: " ";
}

.connect-copy {
  margin: 0 auto;
  max-width: 541px;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.section-centered {
  text-align: center;
}

.section-centered__title {
  color: var(--blue-700);
  margin-bottom: 10px;
}

.section-centered__cta {
  width: 200px;
  min-height: 51px;
  font-size: 22px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.section {
  padding: 90px 0;
}

.page--home .section {
  padding: 43px 0;
}

.section--tight {
  padding: 70px 0;
}

.feature-cta__mobile {
  display: none;
}

.section--tight-top {
  padding-top: 60px;
}

.page--events .section--tight-top {
  padding-top: 94px;
  padding-bottom: 114px;
}

.section--after-geo {
  padding-top: 0;
}

.page--membership .section--after-geo {
  display: none;
}

.supporters-page .section--after-geo {
  display: block;
  padding-bottom: 20px;
}

.supporters-page .section--tight-top {
  padding-top: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 24px;
  color: var(--blue-700);
}

.section-title.light {
  color: var(--yellow-400);
}

.section-subtitle {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 24px 0 16px;
  color: var(--blue-700);
}

.section-text {
  font-size: 16px;
  line-height: 1.65;
  max-width: 760px;
}

body.page:not(.page--action-landing, .page--live-poll-display, .page--live-poll-powerpoint)
  :where(.section-text, .info-card, .payload-richtext)
  a:not(.btn) {
  color: var(--blue-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

body.page:not(.page--action-landing, .page--live-poll-display, .page--live-poll-powerpoint)
  :where(.section-text, .info-card, .payload-richtext)
  a:not(.btn):hover,
body.page:not(.page--action-landing, .page--live-poll-display, .page--live-poll-powerpoint)
  :where(.section-text, .info-card, .payload-richtext)
  a:not(.btn):focus-visible {
  color: var(--blue-900);
  text-decoration-thickness: 2px;
}

.cta-page-flow .section-text {
  max-width: none;
}

.news-article {
  max-width: 1000px;
  margin: 0 auto;
}

.news-article .section-text {
  max-width: none;
}

.news-article__media {
  margin-top: 16px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  overflow: hidden;
  height: clamp(220px, 32vw, 420px);
}

.news-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-article__media--portrait {
  height: clamp(320px, 44vw, 560px);
}

.news-article__media--portrait img {
  object-position: top center;
}

.news-article__media--contain img {
  object-fit: contain;
  background: #fff;
}

.news-article__media--full-height {
  height: auto;
  overflow: visible;
}

.news-article__media--full-height img {
  height: auto;
  object-fit: contain;
  background: #fff;
}

.news-article__content {
  margin-top: 24px;
}

.payload-richtext {
  display: grid;
  gap: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
}

.payload-richtext h1,
.payload-richtext h2,
.payload-richtext h3,
.payload-richtext h4,
.payload-richtext h5,
.payload-richtext h6 {
  margin: 0;
  color: var(--blue-700);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
}

.payload-richtext p {
  margin: 0;
}

.payload-richtext a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payload-richtext ul,
.payload-richtext ol {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.payload-richtext li {
  line-height: 1.6;
}

.payload-richtext blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold-500);
  color: rgba(84, 88, 80, 0.8);
  font-style: italic;
}

.payload-richtext figure {
  margin: 0;
}

.payload-richtext img {
  display: block;
  width: 100%;
  height: auto;
}

.payload-richtext hr {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(84, 88, 80, 0.2);
}

.scholarship-spotlight__content p {
  font-size: 16px;
  line-height: 1.65;
  max-width: none;
}

.scholarship-spotlight__content img {
  display: block;
  height: auto;
  margin: 16px auto;
  max-width: min(100%, 520px);
}

.scholarship-update-date {
  color: rgba(84, 88, 80, 0.72);
  font-size: 0.9em;
  white-space: nowrap;
}

.scholarship-archive {
  margin-top: 12px;
  color: rgba(84, 88, 80, 0.8);
  font-size: 0.9em;
}

.section-text.center {
  margin: 0 auto;
  text-align: center;
}

.page--home .section-title {
  margin-bottom: 16px;
}

.page--home .section-text {
  line-height: 1.35;
}

.page--home .action-row {
  margin-top: 24px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.report-card {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), var(--feature-image);
  background-size: cover;
  background-position: center;
}

.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
}

.report-card .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.report-card h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.report-card p {
  max-width: 680px;
  margin: 0 auto 32px;
}

.section-blue {
  background: var(--blue-700);
  color: var(--white);
}

.section-blue .section-text {
  color: var(--white);
}

body.page .section-blue > .container > .section-text a:not(.btn) {
  color: var(--yellow-400);
}

body.page .section-blue > .container > .section-text a:not(.btn):hover,
body.page .section-blue > .container > .section-text a:not(.btn):focus-visible {
  color: var(--white);
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.supplemental-health .card-grid,
.insurance-services .card-grid {
  grid-template-columns: 1fr;
}

.insurance-services-brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 40px;
  padding: 8px 0 0;
}

.insurance-services-brand-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 280px;
  padding: 0;
}

.insurance-services-brand-strip__logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(110px, 12vw, 160px);
  object-fit: contain;
}

.card-grid--chambers {
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: start;
  max-width: calc(3 * 320px + 2 * 24px);
  margin-left: 0;
  margin-right: auto;
}

.card-grid--two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid var(--yellow-400);
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
  position: relative;
}

.info-card::before {
  display: none;
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: 1.08;
}

.live-polls-admin .btn-outline,
.live-poll-controls .btn-outline {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

.live-polls-admin .btn-outline:hover,
.live-polls-admin .btn-outline:focus-visible,
.live-poll-controls .btn-outline:hover,
.live-poll-controls .btn-outline:focus-visible {
  background: var(--blue-900);
  color: var(--white);
  border-color: var(--blue-900);
}

.live-polls-admin .btn-outline:disabled,
.live-poll-controls .btn-outline:disabled {
  background: rgba(0, 61, 165, 0.42);
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 61, 165, 0.42);
}

.live-poll-controls .btn:disabled {
  cursor: not-allowed;
  background: rgba(84, 88, 80, 0.22);
  color: rgba(84, 88, 80, 0.68);
  border-color: rgba(84, 88, 80, 0.28);
  filter: none;
  transform: none;
}

.live-polls-admin {
  display: grid;
  gap: 28px;
}

.live-polls-admin .btn-small,
.live-poll-controls .btn-small {
  min-width: 44px;
  min-height: 44px;
}

.live-poll-section-title {
  margin: 0;
  color: var(--blue-700);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.live-poll-row-title {
  margin: 0;
  color: var(--blue-700);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.live-poll-muted,
.live-poll-metrics {
  margin: 0;
  line-height: 1.45;
}

.live-poll-muted {
  color: #60645d;
  font-size: 0.95rem;
}

.live-poll-metrics {
  color: #343832;
  font-size: 1rem;
}

.live-poll-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: #60645d;
  font-size: 0.95rem;
}

.live-poll-breadcrumbs a {
  color: var(--blue-700);
  font-weight: 800;
}

.live-poll-row-title-line {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.live-poll-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.2;
}

.live-poll-status--ready {
  background: #e8f1fb;
  color: #003da5;
}

.live-poll-status--live {
  background: #e7f6ec;
  color: #176b36;
}

.live-poll-status--results {
  background: #fff4c2;
  color: #5c4700;
}

.live-poll-status--finished {
  background: #ecedeb;
  color: #454842;
}

.live-poll-question-set-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.live-poll-question-set-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.live-poll-question-set-row__content,
.live-poll-session-row__summary {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.live-poll-row-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.live-poll-manage-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.live-poll-manage-link svg {
  flex: 0 0 auto;
}

.live-poll-archived-link {
  justify-self: start;
  color: var(--blue-700);
  font-weight: 800;
}

.live-poll-empty-state {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.live-poll-empty-state .section-text {
  margin: 0;
}

.live-poll-alert {
  padding: 14px 16px;
  border: 1px solid;
  background: #fff;
  font-weight: 800;
}

.live-poll-alert--error {
  border-color: #b42318;
  color: #7a271a;
}

.live-poll-alert--success {
  border-color: #176b36;
  color: #176b36;
}

.live-polls-admin__account,
.live-polls-section-heading,
.live-polls-next-action,
.live-poll-session-ready__heading,
.live-poll-session-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.live-polls-admin__account .section-text,
.live-polls-next-action h2,
.live-polls-next-action .section-text,
.live-polls-section-heading h2,
.live-poll-session-ready h2,
.live-poll-session-ready .section-text,
.live-poll-session-row h3,
.live-poll-session-row .section-text,
.live-poll-question-set-card h3,
.live-poll-question-set-card .section-text,
.live-poll-room-results h3,
.live-poll-room-results .section-text,
.live-poll-results-question h4,
.live-poll-results-question .section-text {
  margin: 0;
}

.live-polls-next-action h2,
.live-polls-section-heading h2,
.live-poll-session-ready h2 {
  margin-top: 8px;
}

.live-polls-next-action > div:first-child {
  max-width: 720px;
}

.live-polls-admin__error {
  border-color: #b42318;
  color: #7a271a;
}

.live-polls-admin__message {
  border-color: rgba(0, 88, 166, 0.28);
}

.live-poll-session-form {
  display: grid;
  gap: 20px;
  border-color: rgba(0, 88, 166, 0.36);
}

.live-poll-session-form h2 {
  margin: 8px 0 0;
}

.live-poll-session-form form {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1.3fr);
  gap: 18px;
  align-items: end;
}

.live-poll-session-form .action-row {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.field__hint {
  color: rgba(84, 88, 80, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.live-poll-session-ready {
  display: grid;
  gap: 24px;
  border-color: rgba(0, 88, 166, 0.36);
}

.live-poll-session-ready__heading {
  align-items: flex-start;
}

.live-poll-session-ready__heading > div:first-child {
  max-width: 720px;
}

.live-poll-session-ready__meta {
  display: grid;
  gap: 4px;
  min-width: 220px;
  color: rgba(84, 88, 80, 0.82);
  font-size: 0.92rem;
  text-align: right;
}

.live-poll-session-ready__steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: session-step;
}

.live-poll-session-ready__steps li {
  counter-increment: session-step;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: rgba(247, 246, 239, 0.65);
}

.live-poll-session-ready__steps li > div:first-child {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-items: baseline;
}

.live-poll-session-ready__steps li > div:first-child::before {
  content: counter(session-step);
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.live-poll-session-ready__steps strong,
.live-poll-session-ready__steps span,
.live-poll-session-ready__steps a,
.live-poll-session-ready__steps b {
  grid-column: 2;
}

.live-poll-session-ready__steps span {
  color: rgba(84, 88, 80, 0.82);
}

.live-poll-session-ready__invite {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 170px) !important;
}

.live-poll-session-ready__invite img {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: #fff;
}

.live-poll-session-ready__invite a {
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.live-poll-session-ready__invite b {
  color: var(--blue-700);
}

.live-poll-session-ready__finished {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--blue-700);
  background: rgba(0, 61, 165, 0.06);
}

.live-poll-session-ready__status,
.live-poll-room-results__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.live-poll-session-ready__status > div,
.live-poll-room-results__metrics > div {
  padding: 14px;
  background: rgba(0, 61, 165, 0.06);
}

.live-polls-library {
  display: grid;
  gap: 18px;
}

.live-poll-question-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.live-poll-question-set-card {
  display: grid;
  gap: 18px;
}

.live-poll-question-set-card h3,
.live-poll-session-row h3 {
  font-size: 1.35rem;
}

.live-poll-session-list,
.live-poll-room-results,
.live-poll-room-results__questions,
.live-poll-results-question__answers {
  display: grid;
  gap: 14px;
}

.live-poll-session-row {
  align-items: flex-start;
}

.live-poll-session-row .live-poll-session-row__summary {
  flex: 1 1 420px;
}

.live-poll-session-row__summary {
  display: grid;
  gap: 6px;
  min-width: min(100%, 300px);
}

.live-poll-session-row__actions {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.live-poll-session-overview-card,
.live-poll-overview,
.live-poll-manage {
  display: grid;
  gap: 22px;
}

.live-poll-session-overview-card__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.live-poll-session-overview-card__header > div:first-child {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.live-poll-overview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.live-poll-overview-metrics > div {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: rgba(0, 61, 165, 0.06);
}

.live-poll-overview-metrics span {
  color: #60645d;
  font-size: 0.95rem;
}

.live-poll-overview-metrics strong {
  color: var(--blue-700);
  font-size: 1.25rem;
  overflow-wrap: anywhere;
}

.live-poll-overview .live-poll-session-ready__steps {
  display: grid;
  gap: 12px;
}

.live-poll-overview .live-poll-session-ready__steps > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: rgba(247, 246, 239, 0.65);
}

.live-poll-overview .live-poll-session-ready__steps > div > strong,
.live-poll-overview .live-poll-session-ready__steps > div > span,
.live-poll-overview .live-poll-session-ready__steps > div > a:not(.btn) {
  grid-column: 1;
}

.live-poll-overview .live-poll-session-ready__steps > div > .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.live-poll-overview .live-poll-session-ready__steps > div > span {
  color: #60645d;
}

.live-poll-overview .live-poll-session-ready__invite {
  grid-template-columns: minmax(0, 1fr) 150px;
}

.live-poll-overview .live-poll-session-ready__invite > div {
  display: grid;
  gap: 6px;
}

.live-poll-overview .live-poll-session-ready__invite img {
  width: 150px;
  height: 150px;
  padding: 7px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: #fff;
}

.live-poll-current-question {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-left: 4px solid var(--blue-700);
  background: rgba(0, 61, 165, 0.06);
}

.live-poll-manage__summary,
.live-poll-manage__rename,
.live-poll-manage__presentation,
.live-poll-danger-zone {
  display: grid;
  gap: 18px;
}

.live-poll-manage__rename form,
.live-poll-manage__presentation form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.live-poll-danger-zone {
  border-color: #b42318;
  border-top-color: #b42318;
  background: #fff8f7;
}

.live-poll-danger-zone .section-text {
  max-width: 780px;
}

.live-poll-delete-button {
  justify-self: start;
  background: #9d1b1b;
  border-color: #9d1b1b;
  color: #fff;
}

.live-poll-delete-button:hover,
.live-poll-delete-button:focus-visible {
  background: #711313;
  border-color: #711313;
}

.live-poll-delete-button:disabled {
  background: rgba(157, 27, 27, 0.32);
  border-color: rgba(157, 27, 27, 0.2);
  color: #fff;
}

.live-poll-unavailable {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.live-poll-more-actions,
.live-poll-controls__more-actions {
  padding: 10px 12px;
  border: 1px solid rgba(84, 88, 80, 0.2);
  background: rgba(247, 246, 239, 0.72);
}

.live-poll-more-actions summary,
.live-poll-controls__more-actions summary {
  color: var(--blue-700);
  cursor: pointer;
  font-weight: 900;
}

.live-poll-more-actions[open],
.live-poll-controls__more-actions[open] {
  display: grid;
  gap: 12px;
}

.live-poll-room-results {
  padding-top: 22px;
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.live-poll-results-question {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: rgba(247, 246, 239, 0.65);
}

.live-poll-results-question h4 {
  margin-top: 4px;
  font-size: 20px;
}

.live-poll-results-question__text {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(84, 88, 80, 0.16);
  background: #fff;
}

.live-poll-results-question__choice {
  display: grid;
  gap: 6px;
}

.live-poll-results-question__choice .section-text {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.live-poll-results-question__bar {
  height: 8px;
  overflow: hidden;
  background: rgba(0, 88, 166, 0.12);
}

.live-poll-results-question__bar span {
  display: block;
  height: 100%;
  background: var(--blue-700);
}

.live-poll-editor__time-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.live-poll-editor__time-input > span {
  color: rgba(84, 88, 80, 0.82);
  font-size: 0.9rem;
}

.live-poll-editor__question-card,
.live-poll-editor__question-grid,
.live-poll-editor__choice-row,
.live-poll-editor__choice-row input {
  min-width: 0;
}

.live-poll-stage-page {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 152, 216, 0.24), transparent 32%),
    linear-gradient(135deg, #00112e 0%, #020817 48%, #003da5 100%);
  color: var(--white);
}

.live-poll-stage-page__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 230, 0, 0.12) 58% 100%),
    linear-gradient(300deg, transparent 0 62%, rgba(0, 152, 216, 0.18) 62% 100%);
  pointer-events: none;
}

.live-poll-stage {
  container-type: size;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
}

.live-poll-stage__slide {
  container-type: size;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, calc(100cqh * 16 / 9));
  height: auto;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 4cqw, 70px);
  background:
    linear-gradient(145deg, rgba(0, 17, 46, 0.98), rgba(0, 61, 165, 0.9)),
    #00112e;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.live-poll-stage__slide--question {
  grid-template-rows: minmax(0, 1fr);
  padding: clamp(24px, 3.2cqw, 56px);
}

.live-poll-stage__topline,
.live-poll-stage__waiting,
.live-poll-stage__center,
.live-poll-stage__section,
.live-poll-stage__question,
.live-poll-stage__results,
.live-poll-stage__error {
  position: relative;
  z-index: 2;
}

.live-poll-stage__topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.live-poll-stage__eyebrow,
.live-poll-stage__kicker,
.live-poll-stage__room,
.live-poll-stage__status {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-poll-stage__eyebrow,
.live-poll-stage__kicker {
  margin: 0 0 14px;
  color: var(--yellow-400);
  font-size: clamp(15px, 1.25cqw, 22px);
}

.live-poll-stage__room {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 0.85cqw, 16px);
}

.live-poll-stage__status {
  min-width: 150px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  text-align: center;
  font-size: clamp(12px, 0.95cqw, 16px);
}

.live-poll-stage h1 {
  margin: 0;
  max-width: min(100%, 980px);
  color: var(--white);
  font-family: "Job Clarendon", "Bitter", "Clarendon", "Times New Roman", serif;
  font-size: clamp(42px, 5.4cqw, 106px);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.live-poll-stage__lead,
.live-poll-stage__center p {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 1.75cqw, 32px);
  line-height: 1.25;
}

.live-poll-stage__center,
.live-poll-stage__waiting,
.live-poll-stage__section,
.live-poll-stage__question,
.live-poll-stage__results {
  min-height: 0;
}

.live-poll-stage__center {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.live-poll-stage__section {
  display: grid;
  align-content: center;
  max-width: min(100%, 1120px);
}

.live-poll-stage__section h1 {
  max-width: min(100%, 1120px);
  font-size: clamp(42px, 6.2cqw, 124px);
  line-height: 0.98;
}

.live-poll-stage__section .live-poll-stage__lead {
  max-width: min(100%, 880px);
}

.live-poll-stage__waiting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5cqw, 80px);
  align-items: center;
}

.live-poll-stage__qr-wrap {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.live-poll-stage__qr {
  width: min(100%, 420px);
  height: auto;
  padding: 18px;
  background: #fff;
  border: 8px solid var(--yellow-400);
}

.live-poll-stage__url {
  max-width: 460px;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 1cqw, 18px);
  text-align: center;
}

.live-poll-stage__corner-qr {
  position: absolute;
  right: clamp(22px, 3cqw, 52px);
  bottom: clamp(18px, 2.6cqw, 42px);
  z-index: 3;
  display: grid;
  gap: 12px;
  justify-items: center;
  width: clamp(168px, 13.5cqw, 237px);
  padding: 15px;
  background: rgba(0, 17, 46, 0.86);
  border: 2px solid rgba(255, 230, 0, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.live-poll-stage__corner-qr img {
  width: 100%;
  height: auto;
  padding: 12px;
  background: #fff;
}

.live-poll-stage__corner-qr span {
  color: var(--yellow-400);
  font-size: clamp(11px, 0.9cqw, 16px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.live-poll-stage__question,
.live-poll-stage__results {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, min(2cqw, 2.4cqh), 30px);
}

.live-poll-stage__question-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4cqw, 70px);
  align-items: start;
}

.live-poll-stage__question-header > div:first-child {
  min-width: 0;
}

.live-poll-stage__question-metrics {
  display: grid;
  gap: clamp(10px, 1.2cqw, 18px);
  justify-items: stretch;
}

.live-poll-stage__question-metrics .live-poll-stage__status {
  min-width: 100%;
}

.live-poll-stage__question h1,
.live-poll-stage__results h1 {
  max-width: min(100%, 76cqw);
}

.live-poll-stage__results h1 {
  font-size: clamp(38px, 4.3cqw, 82px);
  line-height: 1.02;
}

.live-poll-stage__question h1.live-poll-stage__prompt--long,
.live-poll-stage__results h1.live-poll-stage__prompt--long {
  font-size: clamp(34px, 4.2cqw, 78px);
  line-height: 1.08;
}

.live-poll-stage__question h1.live-poll-stage__prompt--very-long,
.live-poll-stage__results h1.live-poll-stage__prompt--very-long {
  font-size: clamp(30px, 3.5cqw, 66px);
  line-height: 1.1;
}

.live-poll-stage__timer,
.live-poll-stage__stat {
  display: grid;
  justify-items: center;
  min-width: clamp(150px, 15cqw, 230px);
  padding: clamp(18px, 2.2cqw, 32px);
  background: var(--yellow-400);
  color: var(--blue-900);
  text-align: center;
}

.live-poll-stage__timer strong,
.live-poll-stage__stat strong {
  font-size: clamp(58px, 7cqw, 128px);
  line-height: 0.9;
}

.live-poll-stage__timer span,
.live-poll-stage__stat span {
  margin-top: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-poll-stage__timer--urgent {
  background: #ffffff;
}

.live-poll-stage__answer-area {
  min-height: 0;
}

.live-poll-stage__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(10px, min(1.6cqw, 2cqh), 24px);
  height: 100%;
}

.live-poll-stage__choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: clamp(12px, min(1.7cqw, 2.4cqh), 24px);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: clamp(22px, 2.4cqw, 42px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.live-poll-stage__choice--long {
  font-size: clamp(20px, 2cqw, 34px);
}

.live-poll-stage__choice--very-long {
  font-size: clamp(17px, 1.7cqw, 29px);
  line-height: 1.12;
}

.live-poll-stage__choice span {
  display: grid;
  place-items: center;
  width: clamp(42px, 4cqw, 64px);
  aspect-ratio: 1;
  background: var(--yellow-400);
  color: var(--blue-900);
}

.live-poll-stage__short-answer,
.live-poll-stage__empty {
  display: grid;
  place-items: center;
  min-height: 0;
  height: 100%;
  padding: clamp(28px, 4cqw, 56px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-size: clamp(30px, 3.3cqw, 62px);
  font-weight: 900;
  line-height: 1.08;
}

.live-poll-stage__result-list {
  display: grid;
  align-content: center;
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(10px, min(1.15cqw, 1.7cqh), 20px);
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.live-poll-stage__result-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(140px, 1fr) minmax(78px, auto);
  gap: clamp(14px, 1.6cqw, 28px);
  align-items: center;
}

.live-poll-stage__result-label {
  color: #fff;
  font-size: clamp(21px, 2.05cqw, 38px);
  font-weight: 900;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.live-poll-stage__result-label--long {
  font-size: clamp(18px, 1.75cqw, 32px);
}

.live-poll-stage__result-label--very-long {
  font-size: clamp(16px, 1.5cqw, 27px);
  line-height: 1.12;
}

.live-poll-stage__result-track {
  min-width: 0;
  height: clamp(24px, 3.8cqw, 58px);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.live-poll-stage__result-track span {
  display: block;
  height: 100%;
  min-width: 8px;
}

.live-poll-stage__result-value {
  display: grid;
  justify-items: end;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.live-poll-stage__result-value strong {
  color: var(--yellow-400);
  font-size: clamp(30px, 3.1cqw, 58px);
}

.live-poll-stage__result-value span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 0.95cqw, 17px);
}

.live-poll-stage__text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: clamp(14px, 1.6cqw, 24px);
  height: 100%;
  overflow: hidden;
}

.live-poll-stage__text-answer {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: clamp(12px, min(1.7cqw, 2.4cqh), 24px);
  background: rgba(255, 255, 255, 0.11);
  border-left: 8px solid var(--yellow-400);
  color: #fff;
  font-size: clamp(22px, 2cqw, 36px);
  font-weight: 800;
  line-height: 1.14;
}

.live-poll-stage__text-answer--long {
  font-size: clamp(19px, 1.65cqw, 30px);
}

.live-poll-stage__text-answer--very-long {
  font-size: clamp(16px, 1.4cqw, 25px);
  line-height: 1.18;
}

.live-poll-stage__primary {
  justify-self: start;
  min-height: 62px;
  margin-top: 30px;
  padding: 0 28px;
  border: 0;
  background: var(--yellow-400);
  color: var(--blue-900);
  cursor: pointer;
  font-size: clamp(18px, 1.4cqw, 24px);
  font-weight: 900;
}

.live-poll-stage__primary:disabled {
  cursor: wait;
  opacity: 0.6;
}

.live-poll-stage__floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.live-poll-stage__floating-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 17, 46, 0.82);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.live-poll-stage__floating-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.live-poll-stage__error {
  position: absolute;
  left: clamp(24px, 4vw, 70px);
  right: clamp(24px, 4vw, 70px);
  bottom: clamp(18px, 2vw, 32px);
  padding: 12px 14px;
  background: #fff;
  color: #9d1b1b;
  font-weight: 800;
}

.live-poll-controls {
  display: grid;
  gap: 24px;
}

.live-poll-controls__topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.live-poll-controls__topbar h2,
.live-poll-controls__panel h3 {
  margin: 6px 0 0;
}

.live-poll-controls__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.live-poll-controls__panel {
  display: grid;
  gap: 18px;
}

.live-poll-controls__primary-actions,
.live-poll-controls__secondary-actions {
  justify-content: flex-start;
}

.live-poll-controls__secondary-actions {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(84, 88, 80, 0.16);
}

.live-poll-controls__timer {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 12px;
  align-items: center;
  justify-self: start;
  padding: 10px 14px;
  background: rgba(0, 61, 165, 0.08);
  color: var(--blue-700);
  font-weight: 900;
}

.live-poll-controls__timer strong {
  font-size: 1.5rem;
}

.live-poll-controls__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.live-poll-controls__metrics div {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(0, 61, 165, 0.06);
}

.live-poll-controls__metrics strong {
  color: var(--blue-700);
  font-size: 2.2rem;
  line-height: 1;
}

.live-poll-controls__metrics span,
.live-poll-controls__answer-row span,
.live-poll-controls__join span {
  color: rgba(84, 88, 80, 0.82);
  font-size: 0.95rem;
}

.live-poll-controls__join {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.live-poll-controls__join img {
  width: 112px;
  height: 112px;
  padding: 6px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: #fff;
}

.live-poll-controls__join div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.live-poll-controls__join span {
  overflow-wrap: anywhere;
}

.live-poll-controls__answers,
.live-poll-controls__text-list {
  display: grid;
  gap: 12px;
}

.live-poll-controls__answer-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: #fff;
}

.live-poll-controls__answer-row div:first-child {
  display: grid;
  gap: 4px;
}

.live-poll-controls__bar {
  height: 14px;
  background: rgba(0, 61, 165, 0.11);
}

.live-poll-controls__bar span {
  display: block;
  height: 100%;
  background: var(--blue-700);
}

.live-poll-controls__text-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(84, 88, 80, 0.18);
  background: #fff;
}

.live-poll-controls__text-row span {
  line-height: 1.35;
}

.live-poll-controls__text-row em {
  color: rgba(84, 88, 80, 0.72);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.rfwc-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
}

.rfwc-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rfwc-logo-lockup img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.event-meta.rfwc-highlight-tagline {
  display: inline-block;
  padding: 0.08em 0.2em;
  background: linear-gradient(
    180deg,
    transparent 8%,
    rgba(255, 211, 0, 0.78) 8%,
    rgba(255, 211, 0, 0.78) 88%,
    transparent 88%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--blue-700);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.3;
  font-weight: 900;
  text-transform: none;
}

.rfwc-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.rfwc-download-btn {
  background: var(--blue-700);
  color: var(--white);
}

.rfwc-download-btn:hover,
.rfwc-download-btn:focus-visible {
  background: var(--blue-700);
  color: var(--white);
  filter: brightness(0.98);
}

.rfwc-section {
  margin-top: 56px;
}

.rfwc-impact-grid {
  max-width: 920px;
}

.rfwc-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.rfwc-step {
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid #5b3a91;
  background: var(--white);
  padding: 24px;
}

.rfwc-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #5b3a91;
  color: var(--white);
  font-weight: 800;
}

.rfwc-step h3 {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.rfwc-step p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.55;
}

.rfwc-split,
.rfwc-resource-layout,
.rfwc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.rfwc-check-list {
  padding-left: 0;
  list-style: none;
}

.rfwc-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.rfwc-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6a9f26;
  box-shadow: 0 0 0 3px rgba(106, 159, 38, 0.14);
}

.rfwc-handout-preview {
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid var(--yellow-400);
  background: var(--white);
  padding: 14px;
}

.rfwc-handout-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.rfwc-contact-section {
  margin-top: 64px;
  padding: 34px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid var(--yellow-400);
  background: #f8fafc;
}

.rfwc-contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue-700);
  font-size: 16px;
}

.rfwc-contact-form {
  width: 100%;
  margin: 0;
}

.rfwc-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
}

.rfwc-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-700);
  font-weight: 600;
}

.rfwc-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .rfwc-intro-grid,
  .rfwc-split,
  .rfwc-resource-layout,
  .rfwc-contact-layout {
    grid-template-columns: 1fr;
  }

  .rfwc-logo-lockup {
    order: -1;
  }

  .rfwc-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rfwc-intro-grid,
  .rfwc-section {
    margin-top: 36px;
  }

  .rfwc-model-grid,
  .rfwc-impact-grid {
    grid-template-columns: 1fr;
  }

  .rfwc-contact-section {
    padding: 24px 18px;
  }

  .rfwc-form-actions .btn {
    width: 100%;
  }
}

.leadership-program-sections .info-card h3 {
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.08;
}

.leadership-class-section {
  margin-top: 72px;
}

.leadership-class-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.leadership-class-section__header .event-meta {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.leadership-class-section__header .section-title {
  margin-bottom: 0;
}

.leadership-class-section__intro {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.leadership-class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 22px;
}

.leadership-class-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(84, 88, 80, 0.22);
  border-top: 2px solid var(--yellow-400);
}

.leadership-class-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dee1d9;
}

.leadership-class-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-class-card__photo-placeholder {
  width: 100%;
  height: 100%;
}

.leadership-class-card__body {
  padding: 16px 16px 18px;
}

.leadership-class-card h3 {
  margin: 0 0 7px;
  color: var(--blue-700);
  font-size: 20px;
  line-height: 1.15;
}

.leadership-class-card p {
  margin: 0;
  color: rgba(84, 88, 80, 0.86);
  font-size: 13px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .leadership-class-section {
    margin-top: 56px;
  }

  .leadership-class-section__header {
    display: block;
  }

  .leadership-class-section__intro {
    margin-top: 14px;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .leadership-class-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .leadership-class-card__body {
    padding: 12px 12px 14px;
  }

  .leadership-class-card h3 {
    font-size: 17px;
  }

  .leadership-class-card p {
    font-size: 12px;
  }
}

.agenda {
  margin-top: 24px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.agenda-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
}

.agenda-item + .agenda-item {
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.agenda-time {
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
}

.agenda-title {
  font-weight: 700;
  color: var(--blue-700);
}

.agenda-details {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.agenda-details li {
  margin: 0 0 6px;
}

.agenda-details li:last-child {
  margin-bottom: 0;
}

.capitolconnect-recap__header {
  align-items: start;
}

.capitolconnect-recap__logo img {
  width: min(100%, 333px);
  height: auto;
  display: block;
  border: 1px solid rgba(84, 88, 80, 0.24);
  box-shadow: var(--shadow-md);
}

.summit-recap__header {
  align-items: center;
}

.summit-recap__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: #075da1;
  box-shadow: var(--shadow-md);
}

.summit-recap__logo img {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.summit-recap__subhead {
  margin-top: 32px;
}

.summit-recap__section-title {
  margin-top: 48px;
}

.summit-sponsor-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.summit-sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.summit-sponsor-logo-grid--featured {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.summit-sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(84, 88, 80, 0.22);
  background: var(--white);
}

.summit-sponsor-logo--featured {
  min-height: 176px;
  padding: 28px;
}

.summit-sponsor-logo img {
  max-width: 100%;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.summit-sponsor-logo--featured img {
  max-width: min(100%, 640px);
  max-height: 128px;
}

.summit-sponsor-logo img.summit-sponsor-logo__image--smaller {
  max-width: 82%;
  max-height: 68px;
}

.summit-recap__tier-grid {
  margin-top: 24px;
}

.summit-presentation-recaps {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(84, 88, 80, 0.18);
}

.summit-presentation-recap-list {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.summit-presentation-recap {
  padding: clamp(22px, 3vw, 32px);
}

.summit-presentation-recap .section-text {
  max-width: none;
  margin: 0;
}

.summit-presentation-recap .section-text + .section-text {
  margin-top: 14px;
}

.summit-presentation-recap a {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.summit-presentation-recap h4 {
  margin: 22px 0 10px;
  color: var(--blue-700);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
}

.summit-presentation-recap__contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.sponsor-name-list--single {
  columns: 1;
}

.capitolconnect-recap__numbers {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.65;
  max-width: 760px;
}

.capitolconnect-recap__numbers li {
  margin: 0 0 10px;
}

.capitolconnect-recap__numbers li:last-child {
  margin-bottom: 0;
}

.capitolconnect-recap__links {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.capitolconnect-recap__links .back-link {
  display: block;
}

.capitolconnect-recap__gallery {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.capitolconnect-recap__gallery img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  border: 1px solid rgba(84, 88, 80, 0.24);
  box-shadow: var(--shadow-md);
}

@media (max-width: 980px) {
  .capitolconnect-recap__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summit-sponsor-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .capitolconnect-recap__gallery {
    grid-template-columns: 1fr;
  }

  .summit-sponsor-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summit-sponsor-logo {
    min-height: 112px;
    padding: 12px;
  }
}

.sponsor-card-title {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.sponsor-logo--presenting {
  height: 180px;
}

.sponsor-logo img {
  max-width: min(260px, 100%);
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-logo--presenting img {
  max-width: min(390px, 100%);
  max-height: 126px;
}

.sponsor-name-list {
  margin: 16px 0 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 32px;
  font-size: 15px;
  line-height: 1.35;
}

.sponsor-name-list li {
  break-inside: avoid;
  margin: 0 0 8px;
}

@media (max-width: 980px) {
  .sponsor-name-list {
    columns: 1;
  }
}

.sponsor-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-top: 14px;
  border: 2px dashed rgba(84, 88, 80, 0.35);
  background: rgba(0, 17, 46, 0.06);
  color: rgba(84, 88, 80, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 640px) {
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .agenda-time {
    white-space: normal;
  }
}

.star-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: var(--white);
}

.star-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.star-table th,
.star-table td {
  padding: 12px 14px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  text-align: left;
  vertical-align: top;
}

.star-table th {
  background: rgba(0, 17, 46, 0.06);
  color: var(--blue-700);
  font-weight: 700;
}

.back-link {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-gallery-grid .info-card h3 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.1;
}

.video-gallery-grid .event-meta {
  font-size: 14px;
}

@media (max-width: 640px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .card-grid--two-col {
    grid-template-columns: 1fr;
  }
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chamber-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
}

.chamber-contact {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}

.chamber-detail {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.chamber-detail:last-child {
  margin-bottom: 0;
}

.chamber-link {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.staff-section {
  margin-top: 44px;
}

.staff-section .event-meta {
  text-transform: uppercase;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.staff-grid--tight {
  margin-top: 18px;
}

.staff-card {
  padding: 24px;
}

.staff-card h3 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.staff-card__inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
}

.staff-card__photo {
  width: 100px;
  height: 125px;
  flex: 0 0 100px;
  border-radius: 12px;
  object-fit: cover;
  background: #dee1d9;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.staff-card__details {
  min-width: 0;
}

.staff-card__role {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
}

.staff-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.staff-card__meta a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .staff-card__inner {
    flex-direction: column;
  }

  .staff-card__photo {
    width: 100%;
    height: 220px;
    flex-basis: auto;
  }
}

@media (max-width: 980px) {
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tiers {
  display: grid;
  gap: 24px;
}

.tier-highlight {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.tier-highlight h3 {
  font-size: clamp(36px, 5vw, 82px);
  margin: 0 0 8px;
  color: var(--blue-700);
}

.tier-highlight .price {
  font-size: clamp(28px, 4vw, 56px);
  color: var(--gray-700);
  margin-bottom: 16px;
}

.tier-highlight p {
  max-width: 760px;
  margin: 0 auto 16px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tier-card {
  background: var(--blue-700);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-height: 280px;
}

.tier-card.light {
  background: #f5f7fb;
  color: var(--gray-700);
}

.tier-card h4 {
  margin: 0 0 8px;
  color: var(--yellow-400);
  font-size: 26px;
}

.tier-card.light h4 {
  color: var(--blue-700);
}

.tier-card .price {
  font-size: 22px;
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 14px;
  line-height: 1.55;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.logo-row img {
  max-height: 70px;
  object-fit: contain;
  width: 100%;
}

.section--logo-strip {
  padding: 36px 0 12px;
}

.relief-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.relief-logo-strip img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.calendar {
  --container-width: 1040px;
  display: flex;
  flex-direction: column;
  gap: 104px;
}

.calendar-month {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-700);
  margin-bottom: 22px;
}

.calendar-month::after {
  content: "";
  flex: 1;
  height: 0;
  border-bottom: 1px solid rgba(84, 88, 80, 0.3);
  transform: translateY(-2px);
}


.event-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 333px;
  gap: 34px;
  align-items: start;
}

.event-card--no-image {
  grid-template-columns: 90px minmax(0, 1fr);
}

.event-card + .event-card {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(84, 88, 80, 0.3);
}

.event-date {
  text-align: center;
  color: var(--gray-700);
}

.event-date .day {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
}

.event-date .weekday {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.event-details h3 {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 700;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  text-decoration: underline;
}

.event-details p {
  margin: 0 0 10px;
  line-height: 1.55;
  font-size: 11px;
}

.event-meta {
  font-size: 11px;
  font-weight: 700;
}

.event-meta span {
  font-weight: 400;
}

.event-cta {
  margin-top: 14px;
}

.btn-ticket {
  width: 217px;
  min-height: 51px;
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
}

.event-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  max-width: 333px;
  height: 222px;
  max-height: 222px;
  background-image: var(--event-image);
  background-size: var(--event-image-size, cover);
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
}

.event-card--news .event-image {
  height: 180px;
}

.site-footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 21px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1.3fr auto;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 111px;
  height: auto;
}

.footer-contact {
  font-size: 13px;
  line-height: 1.6;
}

.footer-meta {
  font-size: 13px;
  color: var(--gold-500);
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 980px) {
  .container--wide {
    --container-padding: 24px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-inner--action-landing {
    justify-content: center;
    min-height: 66px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  .modal__panel {
    padding: 56px 30px 44px;
  }

  .subscribe-form__grid {
    grid-template-columns: 1fr;
  }

  .modal__close {
    top: 18px;
    right: 18px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-image {
    width: 100%;
    height: 222px;
    max-height: 222px;
  }

  .event-card--news .event-image {
    height: 180px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .site-footer {
    padding: 22px 0;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .geo-divider {
    --geo-divider-height: 360px;
  }

  .page--events .geo-divider {
    --geo-divider-pattern-top: -364px;
  }

  .tier-row--primary,
  .tier-row--secondary {
    grid-template-columns: 1fr;
  }

  .tier-visionary::before,
  .tier-visionary::after {
    display: none;
  }

  .subbrand-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .subbrand-hero__left {
    min-height: 320px;
  }

  .subbrand-hero__mark {
    left: 0;
    width: 65vw;
  }

  .subbrand-hero__content {
    padding: 168px 24px 76px;
  }

  .hero--join {
    padding-bottom: 220px;
  }

  .join-hero-actions {
    gap: 18px;
  }

  .join-form-section {
    padding-top: 140px;
  }

  .join-form-section::before {
    top: -220px;
    height: 220px;
  }

  .join-form__row--two,
  .join-form__row--three {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .join-form__row--message {
    gap: 28px;
  }

  .action-landing-section {
    padding-top: 24px;
    padding-bottom: 58px;
  }

  .action-landing-intro {
    margin-bottom: 24px;
  }
}

@media (max-width: 1000px) {
  .feature-diamond {
    aspect-ratio: 420 / 520;
    --diamond-clip: polygon(
      0% 0%,
      100% 0%,
      100% 75.8%,
      48.7% 100%,
      0% 77.2%
    );
  }

  .home-splash__patterns {
    z-index: 3;
  }

  .feature-slide__inner {
    padding: clamp(52px, 9vw, 88px) clamp(30px, 8vw, 72px) clamp(94px, 16vw, 150px);
  }

  .feature-report,
  .feature-tour,
  .feature-assembly,
  .feature-gala {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(20px, 4vw, 30px);
    width: min(620px, 100%);
  }

  .feature-report__copy,
  .feature-tour__copy,
  .feature-assembly__copy,
  .feature-gala__copy {
    text-align: center;
  }

  .feature-report__summary,
  .feature-tour__summary,
  .feature-assembly__summary,
  .feature-gala__summary {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-report__actions {
    justify-content: center;
  }

  .feature-report__cover-link {
    grid-row: 1;
    width: min(210px, 32vw);
  }

}

@media (max-width: 640px) {
  .action-landing-section > .container {
    --container-padding: 16px;
  }

  .container {
    --container-padding: 20px;
  }

  .container--wide {
    --container-padding: 20px;
  }

  .hero {
    min-height: 480px;
    padding-top: 120px;
  }

  .hero--membership {
    padding-bottom: 140px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-copy,
  .hero-bullets {
    margin-left: 0;
    margin-right: 0;
  }

  .header-inner {
    gap: 12px;
  }

  .header-inner--action-landing {
    min-height: 60px;
  }

  .logo img {
    width: 130px;
  }

  .logo__tagline {
    font-size: 8px;
    margin-top: 3px;
  }

  .action-landing-title {
    font-size: 2rem;
    line-height: 1.02;
  }

  .insurance-services-brand-strip {
    justify-content: flex-start;
    gap: 24px;
    padding-top: 0;
  }

  .insurance-services-brand-strip__logo {
    flex-basis: 100%;
    min-width: 0;
  }

  .insurance-services-brand-strip__logo img {
    width: auto;
    max-width: min(100%, 320px);
    height: 72px;
  }

  .action-landing-copy {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .action-landing-section {
    padding-top: 20px;
    padding-bottom: 44px;
  }

  .action-landing-intro {
    gap: 10px;
    margin-bottom: 20px;
  }

  .action-landing-section .cta-page-flow {
    gap: 18px;
  }

  .action-landing-section .info-card {
    padding: 18px;
  }

  .hero--home {
    --hero-image: url("assets/hero-bg.png");
    min-height: 446px;
    padding-top: 163px;
  }

  .hero--home .hero-content {
    text-align: center;
  }

  .hero--home .hero-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 9px;
  }

  .hero--home .hero-copy {
    max-width: 311px;
    font-size: 12px;
    line-height: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .subbrand-hero__left {
    min-height: 280px;
  }

  .subbrand-hero__mark {
    left: 0;
    width: 85vw;
  }

  .subbrand-hero__content {
    padding-top: 152px;
  }

  .hero--join {
    min-height: 560px;
    padding-top: 140px;
    padding-bottom: 200px;
  }

  .hero--join .hero-content {
    text-align: center;
  }

  .join-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .home-splash {
    --home-splash-padding-bottom: 60px;
  }

  .feature-diamond__inner {
    width: 100%;
  }

  .feature-title {
    top: 26%;
    width: min(360px, calc(100% - 56px));
    font-size: 32px;
    line-height: 1.12;
    white-space: normal;
  }

  .feature-copy {
    top: 38.3%;
    width: min(302px, calc(100% - 56px));
    font-size: 12px;
    line-height: 1.2;
  }

  .feature-cta-row {
    top: 62.9%;
    gap: 10px;
  }

  .feature-cta {
    width: 132px;
    min-height: 47px;
    font-size: 19px;
  }

  .feature-cta__desktop {
    display: none;
  }

  .feature-cta__mobile {
    display: inline;
  }

  .feature-diamond--summit .feature-title {
    top: 21%;
    width: min(360px, calc(100% - 44px));
    font-size: 25px;
    line-height: 1.06;
  }

  .feature-diamond--summit .feature-copy {
    top: 45.5%;
    width: min(354px, calc(100% - 32px));
    font-size: 11px;
    line-height: 1.16;
  }

  .feature-diamond--summit .feature-cta-row {
    top: 75.5%;
  }

  .feature-diamond--slider {
    aspect-ratio: 420 / 610;
  }

  .feature-slide__inner {
    padding: 44px 24px 104px;
  }

  .feature-report,
  .feature-tour,
  .feature-assembly,
  .feature-gala {
    gap: 14px;
    width: min(330px, 100%);
  }

  .feature-report__cover-link {
    width: min(36vw, 128px);
  }

  .feature-report__cover {
    box-shadow: 0 18px 36px rgba(0, 17, 46, 0.38);
  }

  .feature-report__eyebrow,
  .feature-tour__eyebrow,
  .feature-assembly__eyebrow,
  .feature-gala__eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .feature-report__title,
  .feature-tour__title,
  .feature-assembly__title,
  .feature-gala__title {
    font-size: clamp(29px, 8vw, 36px);
    line-height: 1.02;
  }

  .feature-report__summary,
  .feature-tour__summary,
  .feature-assembly__summary,
  .feature-gala__summary {
    margin-top: 10px;
    max-width: 300px;
    font-size: 12px;
    line-height: 1.22;
  }

  .feature-tour__date-range,
  .feature-assembly__date-range,
  .feature-gala__date-range {
    margin-top: 12px;
    font-size: 18px;
  }

  .feature-report__actions {
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }

  .feature-report__actions .btn {
    min-height: 42px;
    min-width: 160px;
    padding: 0 16px;
    font-size: 15px;
  }

  .feature-slider__controls {
    bottom: 12.4%;
    gap: 10px;
  }

  .feature-diamond__dots {
    top: 83.3%;
  }

  .feature-diamond__dots.carousel-dots {
    gap: 10px;
  }

  .feature-diamond__dots .carousel-dot {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .connect-diagram {
    margin: 22px auto 34px;
  }

  .connect-title {
    font-size: 36px;
    line-height: 34px;
    max-width: 215px;
    margin-left: auto;
    margin-right: auto;
  }

  .connect-title__line {
    display: block;
    white-space: nowrap;
    transform: scaleX(0.58);
    transform-origin: center;
  }

  .connect-title__line + .connect-title__line::before {
    content: "";
  }

  .connect-copy {
    max-width: 311px;
    font-size: 12px;
    line-height: 14px;
  }

  .home-splash__connect {
    padding-top: 3px;
  }

  .geo-divider {
    --geo-divider-height: 320px;
  }

  .site-footer {
    padding: 25px 0;
  }

  .page--home .section {
    padding: 54px 0;
  }

  .page--home .section-title {
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .page--home .section-text {
    font-size: 13px;
    line-height: 1.35;
  }

  .page--home .action-row {
    margin-top: 16px;
  }

  .page--home .section-centered__cta {
    min-height: 47px;
    font-size: 20px;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-contact,
  .footer-meta {
    font-size: 12px;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .hero-bullets {
    text-align: center;
  }

  .tier-visionary__inner {
    padding: 42px 28px 22px;
  }
}

@media (max-width: 450px) {
  .action-landing-section > .container {
    --container-padding: 6px;
  }

  .action-landing-section .info-card {
    padding: 12px;
  }
}

.subjective-scores-shell,
.subjective-scores-card,
.subjective-scores-toolbar-grid,
.subjective-scores-toolbar-search,
.subjective-scores-toolbar-filters,
.subjective-scores-toolbar-actions,
.subjective-scores-summary-grid,
.subjective-scores-leadership-grid,
.subjective-scores-roster-grid {
  min-width: 0;
}

@media (max-width: 900px) {
  .subjective-scores-toolbar {
    position: static !important;
    top: auto !important;
  }

  .subjective-scores-toolbar-grid {
    grid-template-columns: 1fr !important;
  }

  .subjective-scores-toolbar-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 520px) {
  .subjective-scores-shell {
    gap: 24px;
  }

  .subjective-scores-card,
  .subjective-scores-toolbar {
    padding: 18px !important;
  }

  .subjective-scores-leadership-grid,
  .subjective-scores-roster-grid {
    grid-template-columns: 1fr !important;
    justify-items: stretch;
  }

  .subjective-scores-toolbar-actions > * {
    width: 100%;
    justify-content: center;
  }

  .subjective-scores-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* PAC Golf Tournament (2026) Registration */
.golf-hero__meta {
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.golf-hero__cta {
  width: min(260px, 100%);
  font-size: 20px;
  white-space: nowrap;
}

.golf-hero__pill {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  min-width: 210px;
  border: 1px solid rgba(255, 230, 0, 0.35);
  background: rgba(0, 17, 46, 0.22);
  color: rgba(255, 255, 255, 0.96);
}

.golf-hero__pillLabel {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-400);
}

.golf-hero__pillValue {
  font-size: 13px;
  font-weight: 700;
}

.golf-schedule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.golf-schedule__title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 10px;
}

.golf-schedule__list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
  font-size: 14px;
}

.golf-schedule__list li {
  margin: 0 0 8px;
}

.golf-reg {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

.golf-reg__form {
  display: grid;
  gap: 22px;
}

.golf-reg__body {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}

.golf-reg__body.is-locked {
  opacity: 0.55;
  filter: grayscale(0.05);
}

.golf-reg .join-form-submit {
  width: min(260px, 100%);
  min-height: 44px;
  font-size: 14px;
  white-space: nowrap;
}

.golf-reg__notice {
  border: 1px solid rgba(255, 230, 0, 0.45);
  background: rgba(255, 230, 0, 0.12);
  padding: 14px 16px;
  color: var(--blue-700);
  font-size: 13px;
  line-height: 1.45;
}

.golf-authCard {
  display: grid;
  gap: 12px;
}

.golf-authCard__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.golf-authCard__status {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid rgba(0, 61, 165, 0.28);
  background: rgba(0, 61, 165, 0.08);
  color: rgba(0, 61, 165, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.golf-authCard__status.is-on {
  border-color: rgba(0, 61, 165, 0.4);
  background: rgba(0, 61, 165, 0.12);
}

.golf-authCard__signedIn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.golf-authCard__identity {
  font-size: 13px;
}

.golf-authCard__sent {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.golf-authCard__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.golf-authCard__actions .btn.btn-menu {
  margin-top: 0;
  width: auto;
}

.golf-authCard__switch {
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(0, 61, 165, 0.92);
  text-decoration: underline;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.golf-authCard__message {
  margin-top: 4px;
}

.golf-inviteToken {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 61, 165, 0.92);
}

.golf-inviteToken code {
  padding: 2px 6px;
  border: 1px solid rgba(0, 61, 165, 0.22);
  background: rgba(255, 255, 255, 0.65);
}

.golf-input--locked {
  background: rgba(84, 88, 80, 0.06);
  border-color: rgba(84, 88, 80, 0.28);
}

.golf-reg__errorBanner {
  border: 1px solid rgba(122, 0, 0, 0.35);
  background: rgba(122, 0, 0, 0.08);
  padding: 12px 14px;
  color: #7a0000;
  font-weight: 900;
  font-size: 13px;
}

.golf-reg__section {
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid rgba(255, 230, 0, 0.85);
  padding: 22px;
  background: var(--white);
}

.golf-reg__section .section-subtitle {
  font-size: 24px;
  margin: 0 0 16px;
}

.golf-reg__section .radio-option {
  color: rgba(84, 88, 80, 0.92);
}

.golf-reg__summary {
  position: sticky;
  top: 28px;
}

.golf-option-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.golf-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(84, 88, 80, 0.24);
  border-top: 2px solid rgba(0, 61, 165, 0.22);
  background: var(--white);
  cursor: pointer;
}

.golf-option input[type="radio"] {
  accent-color: var(--yellow-400);
  margin-top: 3px;
}

.golf-option__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.golf-option__title {
  font-weight: 900;
  color: var(--blue-700);
}

.golf-option__price {
  font-weight: 900;
  color: var(--blue-700);
  white-space: nowrap;
}

.golf-option__desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(84, 88, 80, 0.92);
}

.golf-option.is-selected {
  border-color: rgba(0, 61, 165, 0.55);
  box-shadow: var(--shadow-md);
}

.golf-inline-controls {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.golf-team__addons {
  margin-top: 16px;
}

.golf-contact__details {
  display: grid;
  gap: 16px;
}

.golf-payment__details {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.golf-help {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(84, 88, 80, 0.78);
}

.golf-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #7a0000;
}

.golf-toggleRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 900;
  color: rgba(84, 88, 80, 0.92);
}

.golf-toggleRow input[type="checkbox"] {
  accent-color: var(--yellow-400);
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.golf-included {
  padding: 12px 14px;
  border: 1px solid rgba(0, 61, 165, 0.22);
  background: rgba(0, 61, 165, 0.08);
  color: var(--blue-700);
  font-weight: 900;
}

.golf-roster {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.golf-roster__player {
  border: 1px dashed rgba(84, 88, 80, 0.35);
  padding: 18px;
}

.golf-roster__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.golf-roster__title {
  font-weight: 900;
  color: var(--blue-700);
}

.golf-roster__hint {
  font-size: 11px;
  color: rgba(84, 88, 80, 0.7);
}

.golf-summary {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.golf-summary__line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
}

.golf-summary__label {
  display: grid;
  gap: 2px;
}

.golf-summary__meta {
  font-size: 11px;
  color: rgba(84, 88, 80, 0.72);
}

.golf-summary__amount {
  font-weight: 900;
  color: var(--blue-700);
  white-space: nowrap;
}

.golf-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(84, 88, 80, 0.24);
  font-weight: 900;
  color: var(--blue-700);
}

.golf-receipt {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.golf-receipt__card {
  width: min(100%, 760px);
}

.golf-receipt__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.golf-receipt__contact {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(84, 88, 80, 0.92);
}

.golf-inline-link {
  color: var(--blue-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.golf-inline-link:hover,
.golf-inline-link:focus-visible {
  filter: brightness(0.95);
}

@media (max-width: 980px) {
  .golf-reg {
    grid-template-columns: 1fr;
  }

  .golf-reg__summary {
    position: static;
  }

  .golf-schedule {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .golf-hero__pill {
    min-width: 0;
    width: 100%;
  }
}

/* Member onboarding */
.member-onboarding .onboarding-form {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.member-onboarding .onboarding-banner {
  border-top-color: var(--blue-700);
}

.member-onboarding .onboarding-stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.member-onboarding .onboarding-progress {
  width: min(742px, 100%);
  height: 8px;
  margin: 0 auto;
  border: 1px solid rgba(84, 88, 80, 0.24);
  background: rgba(0, 17, 46, 0.06);
  overflow: hidden;
}

.member-onboarding .onboarding-progress__bar {
  display: block;
  height: 100%;
  background: var(--yellow-400);
}

.member-onboarding .onboarding-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.member-onboarding .onboarding-actions .btn {
  min-height: 44px;
  width: 160px;
  font-size: 12px;
}

.member-onboarding .onboarding-actions .btn:disabled {
  opacity: 0.45;
  transform: none;
  cursor: not-allowed;
}

.member-onboarding .onboarding-inlineActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.member-onboarding .onboarding-cardGrid {
  margin-top: 24px;
}

.member-onboarding .onboarding-cardHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.member-onboarding .onboarding-cardHeader h3 {
  margin: 0;
}

.member-onboarding .onboarding-muted {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(84, 88, 80, 0.78);
}

.member-onboarding .onboarding-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.member-onboarding .onboarding-choiceRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 10px;
}

.member-onboarding .onboarding-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(84, 88, 80, 0.92);
}

.member-onboarding .onboarding-choice input {
  accent-color: var(--yellow-400);
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.member-onboarding .onboarding-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 14px;
}

.member-onboarding .onboarding-checkItem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(84, 88, 80, 0.92);
}

.member-onboarding .onboarding-checkItem input {
  accent-color: var(--yellow-400);
  width: 16px;
  height: 16px;
  margin-top: 0;
}

.member-onboarding .onboarding-rosterCard {
  padding: 0;
  overflow: hidden;
}

.member-onboarding .onboarding-rosterSectionTitle {
  margin: 18px 0 10px;
  font-size: 20px;
  color: var(--blue-700);
}

.member-onboarding .onboarding-rosterWrap {
  overflow-x: hidden;
}

.member-onboarding .onboarding-roster {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.member-onboarding .onboarding-roster th,
.member-onboarding .onboarding-roster td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(84, 88, 80, 0.2);
  vertical-align: top;
}

.member-onboarding .onboarding-roster thead th {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(84, 88, 80, 0.72);
  background: rgba(0, 17, 46, 0.04);
}

.member-onboarding .onboarding-roster tbody tr:last-child th,
.member-onboarding .onboarding-roster tbody tr:last-child td {
  border-bottom: 0;
}

.member-onboarding .onboarding-rosterRow--linked {
  background: rgba(0, 17, 46, 0.03);
}

.member-onboarding .onboarding-rosterRow--disabled {
  background: rgba(84, 88, 80, 0.08);
}

.member-onboarding .onboarding-rosterRolePick {
  width: auto;
  min-width: 36px;
  text-align: center;
  vertical-align: middle;
}

.member-onboarding .onboarding-rosterRoleHead {
  width: auto;
  min-width: 36px;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: normal;
}

.member-onboarding .onboarding-roster--required td.onboarding-rosterRolePick,
.member-onboarding .onboarding-roster--required th.onboarding-rosterRoleHead,
.member-onboarding .onboarding-roster--required td.onboarding-rosterLocationPick,
.member-onboarding .onboarding-roster--required th.onboarding-rosterMiniHead {
  padding-left: 4px;
  padding-right: 4px;
}

.member-onboarding .onboarding-rosterRolePickChoice {
  justify-content: center;
  display: inline-flex;
}

.member-onboarding .onboarding-rosterLocationPick {
  width: auto;
  min-width: 36px;
  text-align: center;
  vertical-align: middle;
}

.member-onboarding .onboarding-rosterMiniHead {
  text-align: center;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.member-onboarding .onboarding-roster thead th.onboarding-rosterMiniHead,
.member-onboarding .onboarding-roster thead th.onboarding-rosterRoleHead {
  text-transform: none;
  letter-spacing: 0.01em;
}

.member-onboarding .onboarding-rosterInput {
  min-width: 0;
  width: 100%;
}

.member-onboarding .onboarding-rosterInput--error {
  border-bottom-color: #9d1b1b;
}

.member-onboarding .onboarding-rosterSubLocation {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.member-onboarding .onboarding-rosterSubRow .onboarding-rosterSubLocation {
  margin-top: 0;
}

.member-onboarding .onboarding-rosterSubRowSpacer {
  padding: 0;
}

.member-onboarding .onboarding-rosterSubCell {
  padding-top: 8px;
}

.member-onboarding .onboarding-rosterActions {
  width: auto;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

.member-onboarding .onboarding-rosterRemoveBtn {
  min-width: 22px;
  width: 22px;
  min-height: 22px;
  height: 22px;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  color: #9d1b1b;
  border-color: #9d1b1b;
  border-width: 1px;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.member-onboarding .onboarding-rosterRemoveBtn:hover,
.member-onboarding .onboarding-rosterRemoveBtn:focus-visible {
  background: rgba(157, 27, 27, 0.08);
  color: #9d1b1b;
  border-color: #9d1b1b;
  filter: none;
  transform: none;
}

.member-onboarding .onboarding-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.member-onboarding .onboarding-roster--required col.onboarding-col--role {
  width: 40px;
}

.member-onboarding .onboarding-roster--required col.onboarding-col--email {
  width: 34%;
}

.member-onboarding .onboarding-roster--required col.onboarding-col--hq {
  width: 36px;
}

.member-onboarding .onboarding-roster--required col.onboarding-col--otherLoc {
  width: 80px;
}

.member-onboarding .onboarding-roster--additional col.onboarding-col--email {
  width: 40%;
}

.member-onboarding .onboarding-roster--additional td.onboarding-rosterActions,
.member-onboarding .onboarding-roster--additional thead th:last-child {
  padding-left: 4px;
  padding-right: 4px;
}

.member-onboarding .onboarding-roster--additional td.onboarding-rosterLocationPick,
.member-onboarding .onboarding-roster--additional th.onboarding-rosterMiniHead {
  padding-left: 4px;
  padding-right: 4px;
}

.member-onboarding .onboarding-roster--additional col.onboarding-col--hq {
  width: 36px;
}

.member-onboarding .onboarding-roster--additional col.onboarding-col--otherLoc {
  width: 80px;
}

.member-onboarding .onboarding-roster--additional col.onboarding-col--actions {
  width: 32px;
}

@media (max-width: 1100px) {
  .member-onboarding .onboarding-roster th,
  .member-onboarding .onboarding-roster td {
    padding: 10px 8px;
  }

  .member-onboarding .onboarding-rosterRolePick,
  .member-onboarding .onboarding-rosterRoleHead,
  .member-onboarding .onboarding-rosterLocationPick {
    min-width: 40px;
  }

  .member-onboarding .onboarding-roster thead th {
    letter-spacing: 0.05em;
  }

  .member-onboarding .onboarding-rosterRoleHead {
    letter-spacing: 0.01em;
  }

  .member-onboarding .onboarding-roster--required col.onboarding-col--role {
    width: 36px;
  }

  .member-onboarding .onboarding-roster--required col.onboarding-col--hq {
    width: 40px;
  }

  .member-onboarding .onboarding-roster--required col.onboarding-col--otherLoc {
    width: 72px;
  }

  .member-onboarding .onboarding-roster--additional col.onboarding-col--hq {
    width: 40px;
  }

  .member-onboarding .onboarding-roster--additional col.onboarding-col--otherLoc {
    width: 72px;
  }

  .member-onboarding .onboarding-roster--additional col.onboarding-col--actions {
    width: 32px;
  }
}

@media (max-width: 640px) {
  .member-onboarding .onboarding-checklist {
    grid-template-columns: 1fr;
  }

  .member-onboarding .onboarding-rosterInput {
    font-size: 13px;
  }

  .member-onboarding .onboarding-actions .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .live-poll-stage {
    padding: 0;
  }

  .live-poll-stage__slide {
    padding: 24px;
    border: 0;
  }

  .live-poll-stage__topline {
    gap: 12px;
  }

  .live-poll-stage__status {
    min-width: 110px;
    padding: 8px 10px;
  }

  .live-poll-stage__waiting,
  .live-poll-stage__question-header {
    grid-template-columns: 1fr;
  }

  .live-poll-stage__waiting {
    align-content: center;
  }

  .live-poll-stage__question,
  .live-poll-stage__results {
    gap: 22px;
  }

  .live-poll-stage__question h1,
  .live-poll-stage__results h1 {
    max-width: 100%;
  }

  .live-poll-stage__question-metrics {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-self: start;
  }

  .live-poll-stage__timer,
  .live-poll-stage__stat {
    justify-self: start;
    min-width: 130px;
  }

  .live-poll-stage__choices,
  .live-poll-stage__text-grid {
    grid-template-columns: 1fr;
  }

  .live-poll-stage__choice {
    min-height: 72px;
  }

  .live-poll-stage__result-list {
    min-height: 300px;
    padding-right: 0;
  }

  .live-poll-stage__result-row {
    grid-template-columns: minmax(180px, 0.44fr) minmax(120px, 1fr) minmax(64px, auto);
    gap: 14px;
  }

  .live-poll-stage__corner-qr {
    right: 18px;
    bottom: 18px;
    width: 156px;
    padding: 12px;
  }

  .live-poll-controls__grid {
    grid-template-columns: 1fr;
  }

  .live-poll-controls__answer-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .live-polls-admin {
    gap: 20px;
  }

  .live-poll-section-title {
    font-size: 1.75rem;
  }

  .live-poll-row-title {
    font-size: 1.25rem;
  }

  .live-polls-admin__account,
  .live-polls-next-action,
  .live-polls-section-heading,
  .live-poll-session-ready__heading,
  .live-poll-session-row {
    align-items: stretch;
  }

  .live-poll-question-set-row,
  .live-poll-session-overview-card__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .live-poll-row-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    width: 100%;
  }

  .live-poll-row-actions .btn {
    width: 100%;
  }

  .live-polls-admin__account .btn,
  .live-polls-next-action .action-row,
  .live-polls-next-action .btn,
  .live-polls-section-heading .btn,
  .live-poll-question-set-card .action-row,
  .live-poll-question-set-card .btn,
  .live-poll-session-row__actions,
  .live-poll-session-row__actions > .btn,
  .live-poll-more-actions {
    width: 100%;
  }

  .live-poll-session-form form,
  .live-poll-question-set-grid,
  .live-poll-session-ready__status,
  .live-poll-room-results__metrics,
  .live-poll-overview-metrics,
  .live-poll-manage__rename form,
  .live-poll-manage__presentation form {
    grid-template-columns: 1fr;
  }

  .live-poll-overview .live-poll-session-ready__steps > div,
  .live-poll-overview .live-poll-session-ready__invite {
    grid-template-columns: minmax(0, 1fr);
  }

  .live-poll-overview .live-poll-session-ready__steps > div > .btn {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .live-poll-overview .live-poll-session-ready__invite img {
    width: 140px;
    height: 140px;
  }

  .live-poll-delete-button {
    width: 100%;
  }

  .live-poll-session-ready__meta {
    min-width: 0;
    text-align: left;
  }

  .live-poll-session-ready__steps li,
  .live-poll-session-ready__invite {
    grid-template-columns: 1fr !important;
  }

  .live-poll-session-ready__invite img {
    max-width: 180px;
  }

  .live-poll-session-row__actions {
    display: grid;
  }

  .live-poll-more-actions[open] .btn {
    width: 100%;
  }

  .live-poll-editor__question-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .live-poll-editor__choice-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .live-poll-editor__question-actions,
  .live-poll-editor__footer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-poll-editor__question-actions .btn,
  .live-poll-editor__footer-actions .btn {
    width: 100%;
  }

  .live-poll-stage__floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .live-poll-stage__floating-actions button {
    flex: 1;
  }

  .live-poll-stage__corner-qr {
    display: none;
  }

  .live-poll-stage__result-list {
    padding-right: 0;
  }

  .live-poll-stage__result-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .live-poll-stage__result-value {
    justify-items: start;
    grid-auto-flow: column;
    gap: 10px;
    align-items: baseline;
  }

  .live-poll-controls__topbar,
  .live-poll-controls__topbar .action-row {
    align-items: stretch;
  }

  .live-poll-controls__topbar .action-row,
  .live-poll-controls__metrics,
  .live-poll-controls__join,
  .live-poll-controls__text-row {
    grid-template-columns: 1fr;
  }

  .live-poll-controls__more-actions .action-row,
  .live-poll-controls__more-actions .btn {
    width: 100%;
  }
}

/* Mississippi Scholars / Tech Master tracks */
.track-tabs {
  margin-top: 8px;
}

.track-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(84, 88, 80, 0.24);
}

.track-tabs__tab {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--gray-700);
  cursor: pointer;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.15;
  margin-bottom: -1px;
  padding: 10px 4px 12px;
  text-align: left;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.track-tabs__tab + .track-tabs__tab {
  margin-left: 24px;
}

.track-tabs__tab:hover {
  color: var(--blue-700);
}

.track-tabs__tab:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 2px;
}

.track-tabs__tab[aria-selected="true"] {
  border-bottom-color: var(--yellow-400);
  color: var(--blue-700);
}

.track-tabs [role="tabpanel"]:focus-visible {
  outline: 2px solid var(--blue-700);
  outline-offset: 6px;
}

.program-track__intro {
  margin-top: 28px;
}

.program-track__summary {
  color: var(--blue-900);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}

.program-track__note {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 760px;
}

.program-track__section {
  margin-top: 40px;
}

.program-track__heading {
  color: var(--blue-700);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  margin: 0 0 4px;
}

.requirement-list {
  border-bottom: 1px solid rgba(84, 88, 80, 0.16);
  margin: 0;
}

.requirement-row {
  align-items: start;
  border-top: 1px solid rgba(84, 88, 80, 0.16);
  display: grid;
  gap: 8px 32px;
  grid-template-columns: minmax(200px, 270px) minmax(0, 1fr);
  padding: 18px 0;
}

.requirement-row__subject {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
}

.requirement-row__name {
  color: var(--blue-900);
  font-size: 19px;
  line-height: 1.2;
}

.requirement-row__credits {
  background: var(--yellow-400);
  color: var(--blue-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.requirement-row__detail {
  margin: 0;
}

.requirement-row__items {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.requirement-row__items li {
  font-size: 15px;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.requirement-row__items li::before {
  background: var(--blue-700);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 6px;
}

.requirement-row__empty {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.75;
}

.criteria-list {
  display: grid;
  gap: 10px 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.criteria-list li {
  font-size: 15px;
  line-height: 1.55;
  padding-left: 26px;
  position: relative;
}

.criteria-list li::before {
  border-bottom: 2px solid var(--blue-700);
  border-left: 2px solid var(--blue-700);
  content: "";
  height: 5px;
  left: 2px;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  width: 10px;
}

.program-callout {
  background: rgba(0, 61, 165, 0.04);
  border-left: 3px solid var(--blue-700);
  margin-top: 16px;
  padding: 18px 22px;
}

.program-callout p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}

.program-callout p + p {
  margin-top: 12px;
}

@media (max-width: 640px) {
  .track-tabs__tab + .track-tabs__tab {
    margin-left: 16px;
  }

  .requirement-row {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
