:root {
  --navy: #011f4b;
  --navy-raised: #062a5a;
  --teal: #077187;
  --teal-soft: #0f8296;
  --copper: #c8603a;
  --copper-text: #a54224;
  --surface: #ffffff;
  --surface-subtle: #f4f7f9;
  --border: #d7e1e6;
  --text: #011f4b;
  --text-secondary: #42545d;
  --text-inverse: #ffffff;
  --text-inverse-muted: #d7e1e6;
  --shadow-panel: 0 14px 40px rgba(1, 31, 75, 0.08);
  --shadow-card: 0 8px 18px rgba(1, 31, 75, 0.08);
  --font-heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface-subtle);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--navy);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 160ms ease;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-shell,
main {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.site-shell {
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
  padding: 32px;
}

main {
  gap: 24px;
}

.panel {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 836px;
  padding: 28px 48px 64px;
  border-radius: 28px;
  box-shadow: var(--shadow-panel);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  overflow: visible;
  padding: 3px 8px;
}

.brand img {
  width: 230px;
  height: auto;
  aspect-ratio: 1404 / 370;
  object-fit: contain;
}

.desktop-nav,
.footer-nav {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.desktop-nav {
  justify-content: flex-end;
  gap: 30px;
}

.desktop-nav > a:not(.button),
.footer-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.desktop-nav > a:not(.button)::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.button):hover::after,
.desktop-nav > a:not(.button):focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--navy);
  box-shadow: 0 6px 8px rgba(1, 31, 75, 0.1);
  color: #fff;
}

.button--primary:hover {
  background: var(--navy-raised);
  box-shadow: 0 9px 18px rgba(1, 31, 75, 0.16);
}

.button--secondary {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 6px 8px rgba(1, 31, 75, 0.04);
  color: var(--teal);
}

.button--secondary:hover {
  background: #edf7f8;
}

.hero__content {
  display: grid;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  grid-template-columns: minmax(0, 620px) minmax(480px, 600px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 4.17vw, 60px);
  letter-spacing: -0.01em;
  line-height: 1.0667;
}

h1 span {
  color: var(--teal);
}

h2 {
  max-width: 920px;
  font-size: 48px;
  letter-spacing: -0.00625em;
  line-height: 1.125;
}

h3 {
  font-size: 28px;
  line-height: 1.22;
}

.lead {
  max-width: 900px;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.5;
}

.hero .lead {
  max-width: 560px;
}

.accent-rule {
  width: 72px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--copper);
}

.accent-rule--small {
  width: 48px;
}

.accent-rule--teal {
  background: var(--teal);
}

.ecosystem-figure {
  display: grid;
  width: 100%;
  max-width: 600px;
  place-items: center;
}

.ecosystem-graphic {
  width: 100%;
  height: auto;
  overflow: visible;
}

.network-lines path {
  fill: none;
  stroke: #abd5dc;
  stroke-linecap: round;
  stroke-width: 2;
}

.network-lines .dashed {
  stroke-dasharray: 7 9;
}

.network-junctions circle {
  fill: #65aeba;
}

.network-node > circle:first-child {
  filter: url(#node-shadow);
}

.network-node--outer > circle:first-child {
  fill: #fff;
  stroke: var(--teal);
  stroke-width: 2;
}

.network-node--center > circle:first-child {
  fill: var(--navy);
  stroke: var(--teal);
  stroke-width: 2;
}

.network-node .node-accent {
  fill: var(--copper);
}

.network-node text {
  fill: var(--navy);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.network-node--center text {
  fill: #fff;
}

.section {
  padding: 80px 72px;
}

.section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.eyebrow {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 20px;
  text-transform: uppercase;
}

.eyebrow--copper {
  color: var(--copper-text);
}

.intro-grid {
  display: grid;
  align-items: start;
  justify-content: space-between;
  gap: 64px;
  grid-template-columns: minmax(0, 760px) 340px;
}

.intro-grid .section-copy h2 {
  max-width: 740px;
}

.intro-grid .section-copy .lead {
  max-width: 700px;
}

.audience {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 12px;
}

.audience-list li {
  position: relative;
  display: flex;
  min-height: 51px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-subtle);
  padding: 10px 18px 10px 40px;
}

.audience-list li::before {
  position: absolute;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.outcome-cards {
  display: grid;
  margin-top: 48px;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-subtle);
  padding: 24px;
}

.outcome-card h3,
.expertise-card h3 {
  font-size: 22px;
  line-height: 28px;
}

.outcome-card > p:last-child,
.expertise-card p,
.fine-print {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
}

.outcome-card--dark {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.outcome-card--dark > p:last-child {
  color: var(--text-inverse-muted);
}

.outcome-card--dark .eyebrow--copper,
.section--dark .eyebrow--copper {
  color: #f49a75;
}

.collective {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: minmax(0, 590px) minmax(420px, 586px);
}

.collective .section-copy .lead {
  max-width: 560px;
}

.bullet-list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 12px;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.bullet-list--copper li::before {
  background: var(--copper);
}

.quote-card {
  display: flex;
  min-height: 273px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: var(--shadow-card);
  color: #fff;
  padding: 48px;
}

.quote-card > p {
  max-width: 490px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.quote-card cite {
  color: var(--text-inverse-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark .lead--muted {
  color: var(--text-inverse-muted);
}

.how-it-works {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.how-it-works > h2 {
  max-width: 920px;
}

.how-it-works > .lead {
  max-width: 900px;
}

.operating-layers {
  display: grid;
  width: 100%;
  align-items: start;
  margin-top: 16px;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.layer-card,
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 20px;
  padding: 36px;
}

.layer-card {
  min-height: 466px;
}

.layer-card > p:not(.eyebrow),
.layer-card li {
  font-size: 17px;
  line-height: 27px;
}

.layer-card--navy {
  min-height: 502px;
  border: 1px solid var(--teal);
  background: var(--navy-raised);
}

.layer-card--navy > p:not(.eyebrow) {
  color: var(--text-inverse-muted);
}

.layer-card--light {
  background: #fff;
  color: var(--navy);
}

.layer-card--light > p:not(.eyebrow) {
  color: var(--text-secondary);
}

.unified-statement {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  background: var(--teal-soft);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.unified-statement span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper);
}

.section > .section-intro {
  margin-top: 14px;
}

.expertise-grid {
  display: grid;
  margin-top: 24px;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expertise-card {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.labor-outcomes {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(360px, 490px) minmax(520px, 650px);
}

.labor-outcomes .section-copy {
  gap: 20px;
}

.numbered-outcomes {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 12px;
}

.numbered-outcomes li {
  display: grid;
  min-height: 82px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-subtle);
  padding: 14px 22px;
  grid-template-columns: 20px 1fr;
}

.numbered-outcomes span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.numbered-outcomes strong {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.numbered-outcomes .numbered-outcomes__featured {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.numbered-outcomes__featured span {
  color: #f49a75;
}

.partner-model {
  display: grid;
  margin-top: 24px;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-card {
  min-height: 357px;
}

.partner-card h3 {
  max-width: 520px;
}

.partner-card--subtle {
  border: 1px solid var(--border);
  background: var(--surface-subtle);
}

.partner-card--outline {
  border: 1.5px solid var(--teal);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.ring-list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 12px;
}

.ring-list li {
  position: relative;
  padding-left: 24px;
}

.ring-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.collective-first {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: minmax(0, 690px) minmax(380px, 478px);
}

.collective-first .section-copy {
  gap: 20px;
}

.principle {
  max-width: 650px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.collective-first .section-copy .lead {
  max-width: 630px;
}

.looking-ahead {
  display: flex;
  min-height: 345px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--teal);
  border-radius: 20px;
  background: var(--teal-soft);
  padding: 36px;
}

.looking-ahead .eyebrow--copper {
  color: #fff;
}

.looking-ahead > p:not(.eyebrow) {
  color: #fff;
}

.looking-ahead > strong {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 28px;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  padding-block: 88px;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta .lead {
  max-width: 720px;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 56px 40px;
}

.site-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  width: 500px;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__brand .brand img {
  width: 212px;
}

.site-footer__brand > p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
}

.footer-nav {
  justify-content: flex-end;
  gap: 26px;
}

.footer-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.footer-note {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 18px;
}

@media (max-width: 1240px) {
  .site-shell {
    gap: 20px;
    padding: 24px;
  }

  main {
    gap: 20px;
  }

  .hero {
    gap: 40px;
    min-height: 0;
    border-radius: 24px;
    padding: 24px 36px 52px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 204px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .nav-wide-only {
    display: none !important;
  }

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

  .hero__copy {
    width: min(100%, 832px);
  }

  .hero .lead {
    max-width: 700px;
  }

  .ecosystem-figure {
    max-width: 560px;
    margin-inline: auto;
  }

  .section {
    padding: 64px 52px;
  }

  .intro-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 1.7fr) minmax(270px, 0.8fr);
  }

  .collective,
  .labor-outcomes,
  .collective-first {
    gap: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer__main {
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 14px;
  }

  body {
    font-size: 16px;
  }

  .site-shell {
    gap: 14px;
    padding: 12px;
  }

  main {
    gap: 14px;
  }

  .panel {
    border-radius: 20px;
  }

  .hero {
    gap: 28px;
    padding: 18px 24px 36px;
  }

  .site-header {
    min-height: 50px;
    gap: 20px;
  }

  .brand img {
    width: 174px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1.5px solid var(--teal);
    border-radius: 12px;
    background: #fff;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .mobile-menu summary span:nth-child(2) {
    width: 18px;
    background: var(--copper);
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 20;
    top: 54px;
    right: 0;
    display: flex;
    width: min(290px, calc(100vw - 48px));
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-panel);
    padding: 10px;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    background: var(--surface-subtle);
  }

  .hero__content {
    gap: 24px;
  }

  .hero__copy {
    gap: 18px;
  }

  h1 {
    font-size: clamp(40px, 11.3vw, 44px);
    line-height: 1.068;
  }

  h2 {
    font-size: 36px;
    line-height: 1.167;
  }

  h3 {
    font-size: 26px;
    line-height: 1.16;
  }

  .lead {
    font-size: 16px;
    line-height: 1.56;
  }

  .hero .lead {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero__copy > .button {
    align-self: center;
  }

  .ecosystem-figure {
    max-width: 318px;
  }

  .ecosystem-graphic .mobile-hide {
    display: none;
  }

  .section {
    padding: 48px 24px;
  }

  .intro-grid,
  .collective,
  .operating-layers,
  .labor-outcomes,
  .partner-model,
  .collective-first {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 0;
  }

  .intro-grid .audience {
    margin-top: 0;
  }

  .audience-list li {
    min-height: 49px;
  }

  .outcome-cards {
    margin-top: 32px;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 170px;
  }

  .collective {
    gap: 0;
  }

  .quote-card {
    min-height: 0;
    margin-top: 0;
    padding: 36px 28px;
  }

  .quote-card > p {
    font-size: 18px;
    line-height: 1.55;
  }

  .how-it-works {
    gap: 20px;
  }

  .operating-layers {
    margin-top: 0;
    gap: 14px;
  }

  .layer-card,
  .partner-card {
    min-height: 0;
    border-radius: 16px;
    padding: 28px 24px;
  }

  .layer-card > p:not(.eyebrow),
  .layer-card li {
    font-size: 15px;
    line-height: 25px;
  }

  .unified-statement {
    min-height: 84px;
    align-items: center;
    padding: 16px 20px;
    font-size: 20px;
    line-height: 26px;
  }

  .expertise-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 128px;
  }

  .labor-outcomes {
    gap: 0;
  }

  .numbered-outcomes li {
    min-height: 84px;
    padding: 14px 18px;
    grid-template-columns: 20px 1fr;
  }

  .numbered-outcomes strong {
    font-size: 20px;
    line-height: 26px;
  }

  .partner-model {
    gap: 14px;
  }

  .collective-first {
    gap: 0;
  }

  .principle {
    font-size: 18px;
    line-height: 28px;
  }

  .looking-ahead {
    min-height: 0;
    padding: 28px 24px;
  }

  .final-cta {
    padding: 56px 24px;
  }

  .button-group {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .button-group .button {
    width: 100%;
  }

  .site-footer {
    gap: 24px;
    padding: 32px 24px;
  }

  .site-footer__main {
    flex-direction: column;
    gap: 0;
  }

  .site-footer__brand .brand img {
    width: 204px;
  }

  .footer-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 0;
  }

  .footer-nav a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: min(174px, calc(100vw - 168px));
  }

  .section,
  .hero {
    padding-inline: 24px;
  }

  .quote-card,
  .layer-card,
  .partner-card,
  .looking-ahead {
    padding-inline: 24px;
  }

  .collective,
  .labor-outcomes,
  .collective-first {
    row-gap: 24px;
  }
}

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

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

@media (forced-colors: active) {
  .accent-rule,
  .bullet-list li::before,
  .audience-list li::before,
  .unified-statement span {
    background: CanvasText;
  }

  .network-node--outer > circle:first-child,
  .network-node--center > circle:first-child,
  .ring-list li::before {
    stroke: CanvasText;
  }
}
