:root {
  color-scheme: light;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --ink: #172537;
  --muted: #667284;
  --blue: #245bc5;
  --blue-dark: #173c85;
  --blue-soft: #edf3ff;
  --teal: #258779;
  --teal-soft: #eef8f5;
  --red: #a93750;
  --line: #e5e4df;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 24px 80px rgb(22 36 55 / 8%);
  --radius: 24px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

.site-width {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgb(229 228 223 / 74%);
  background: rgb(247 245 240 / 90%);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  width: 156px;
  height: 57px;
  align-items: center;
  overflow: hidden;
}

.wordmark img {
  width: 156px;
  height: 57px;
  object-fit: contain;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
}

.nav-link:hover,
.text-link:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-compact {
  min-height: 42px;
  padding: 0 15px;
  font-size: 13px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: var(--blue-dark);
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 8px 20px rgb(36 91 197 / 18%);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-text {
  color: var(--muted);
}

.hero {
  display: grid;
  min-height: 505px;
  grid-template-columns: minmax(0, 1fr) 355px;
  align-items: center;
  gap: 75px;
  padding-block: 70px 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgb(37 135 121 / 10%);
}

.hero h1,
.section-heading h2,
.evolution-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -2.6px;
}

.hero h1 {
  font-size: clamp(55px, 7vw, 84px);
  line-height: 0.98;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--blue);
}

.hero-description {
  max-width: 530px;
  margin: 24px 0 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.hero-summary {
  position: relative;
  padding: 25px 27px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 72%);
}

.summary-heading {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.summary-step {
  position: relative;
  display: flex;
  min-height: 75px;
  gap: 16px;
}

.summary-step:not(:last-child)::after {
  position: absolute;
  top: 30px;
  left: 15px;
  width: 1px;
  height: 43px;
  background: var(--line);
  content: "";
}

.step-number {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.summary-step div strong,
.summary-step div span {
  display: block;
}

.summary-step div strong {
  padding-top: 2px;
  font-size: 14px;
}

.summary-step div span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.map-section {
  padding: 80px 0 92px;
  background: white;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(39px, 5vw, 58px);
  line-height: 1.06;
}

.section-intro {
  max-width: 570px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.diagram-card {
  position: relative;
  padding: 46px 60px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background-color: #fcfcfa;
  background-image: radial-gradient(#e9e8e2 0.8px, transparent 0.8px);
  background-position: 0 0;
  background-size: 20px 20px;
}

.diagram-hint {
  position: absolute;
  top: 15px;
  right: 23px;
  color: var(--muted);
  font-size: 11px;
}

.tree-top {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.diagram-node {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 220ms ease;
}

.diagram-node:hover,
.diagram-node:focus-visible {
  z-index: 1;
  transform: translateY(-4px);
  border-color: #9aafe0;
  box-shadow: 0 14px 33px rgb(36 91 197 / 11%);
}

.node-category {
  display: block;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}

.node-support {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.external-icon {
  position: absolute;
  top: 11px;
  right: 13px;
  color: #91a0b6;
  font-size: 14px;
}

.node-author {
  width: min(340px, 100%);
  min-height: 151px;
  padding: 19px;
}

.node-author img {
  width: 240px;
  height: 75px;
  object-fit: contain;
}

.vertical-link {
  position: relative;
  display: grid;
  width: 100%;
  height: 58px;
  place-items: center;
}

.vertical-link::before,
.community-arrow::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #c5d2ea;
  content: "";
}

.vertical-link span,
.branch-line span,
.community-arrow span {
  z-index: 1;
  padding: 4px 8px;
  border: 1px solid #e0e7f5;
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-size: 10px;
}

.node-parent {
  width: min(460px, 100%);
  min-height: 151px;
  padding: 21px 23px;
  border-color: #becbe5;
}

.node-parent img {
  width: 290px;
  height: 73px;
  object-fit: contain;
}

.branch-line {
  position: relative;
  display: grid;
  height: 73px;
  place-items: center;
}

.branch-line::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 31px;
  background: #c5d2ea;
  content: "";
}

.branch-line::after {
  position: absolute;
  top: 31px;
  right: 20%;
  left: 20%;
  height: 42px;
  border: 1px solid #c5d2ea;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  content: "";
}

.branch-line span {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.project-branches {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.node-pocket,
.node-booktrigger {
  min-height: 239px;
  padding: 20px 15px 17px;
}

.node-pocket img {
  width: 116px;
  height: 120px;
  object-fit: contain;
}

.node-booktrigger {
  border-color: #91abe5;
  box-shadow: 0 10px 30px rgb(36 91 197 / 8%);
}

.node-booktrigger img {
  width: 232px;
  height: 122px;
  object-fit: contain;
}

.node-pocket strong,
.node-booktrigger strong {
  margin-bottom: 5px;
  font-size: 15px;
}

.collaboration-link {
  display: flex;
  min-height: 112px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  transition: opacity 220ms ease;
}

.collaboration-title {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.animated-arrow {
  position: relative;
  width: 129px;
  height: 2px;
  overflow: visible;
  background: linear-gradient(90deg, #53ab9e 0%, #53ab9e 52%, transparent 52%, transparent 100%);
  background-size: 15px 2px;
  animation: line-march 950ms linear infinite;
}

.animated-arrow::after {
  position: absolute;
  top: -5px;
  right: -1px;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  content: "";
}

.collaboration-caption {
  color: var(--muted);
  font-size: 10px;
}

.community-row {
  display: flex;
  width: calc((100% - 190px) / 2);
  align-items: center;
  flex-direction: column;
  margin-left: auto;
}

.community-arrow {
  position: relative;
  display: grid;
  width: 100%;
  height: 52px;
  place-items: center;
}

.node-community {
  width: 100%;
  min-height: 104px;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 14px;
  padding: 15px 36px 15px 16px;
  border-color: #c8e8de;
  background: #f6fbf9;
  text-align: left;
}

.community-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #def1eb;
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.node-community .node-category {
  color: var(--teal);
}

.node-community strong {
  display: block;
  margin: 5px 0 3px;
  font-size: 13px;
}

.insight-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding: 13px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: white;
}

.insight-marker {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--blue);
}

.insight-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.insight-bar strong {
  color: var(--ink);
}

.diagram-card.is-filtered [data-groups].is-muted {
  opacity: 0.2;
}

.identity-section {
  padding-block: 108px 113px;
}

.heading-centered {
  display: block;
  margin-bottom: 42px;
  text-align: center;
}

.heading-centered .eyebrow {
  justify-content: center;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}

.identity-card {
  display: flex;
  min-height: 365px;
  flex-direction: column;
  padding: 26px 24px 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.identity-card:hover {
  transform: translateY(-5px);
  border-color: #b4c6e8;
  box-shadow: var(--shadow);
}

.identity-index {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.identity-card > img {
  width: 225px;
  height: 108px;
  margin: 13px 0 10px;
  object-fit: contain;
  object-position: left center;
}

.identity-pocket > img {
  width: 103px;
}

.identity-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.identity-card > p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.identity-card .text-link {
  margin-top: auto;
}

.evolution-section {
  padding-block: 95px;
  background: #152338;
  color: white;
}

.evolution-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 95px;
}

.eyebrow-light {
  color: #a8c5ff;
}

.evolution-copy h2 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.03;
}

.evolution-copy > p:last-child {
  max-width: 495px;
  margin: 23px 0 0;
  color: #bac7d8;
  font-size: 15px;
  line-height: 1.85;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 0 0 17px;
  list-style: none;
}

.timeline li {
  position: relative;
  display: flex;
  min-height: 113px;
  flex-direction: column;
  padding: 0 0 20px 30px;
  border-left: 1px solid rgb(168 197 255 / 34%);
}

.timeline li:last-child {
  min-height: 83px;
  padding-bottom: 0;
  border-color: transparent;
}

.timeline-point {
  position: absolute;
  top: 1px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 2px solid #a8c5ff;
  border-radius: 50%;
  background: #152338;
}

.timeline-label {
  color: #a8c5ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.timeline strong {
  margin: 8px 0 6px;
  font-size: 16px;
}

.timeline li > span:last-child {
  color: #bac7d8;
  font-size: 13px;
  line-height: 1.55;
}

.participation-section {
  padding-block: 105px 76px;
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.participation-card {
  position: relative;
  min-height: 288px;
  padding: 33px 36px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
}

.author-contribution {
  border-color: #d0e8e1;
  background: #f6fbf9;
}

.participation-number {
  position: absolute;
  top: -5px;
  right: 23px;
  color: rgb(36 91 197 / 7%);
  font-family: var(--serif);
  font-size: 165px;
  line-height: 1;
}

.author-contribution .participation-number {
  color: rgb(37 135 121 / 8%);
}

.participation-card .eyebrow {
  margin-bottom: 15px;
}

.author-contribution .eyebrow,
.author-contribution .text-link {
  color: var(--teal);
}

.participation-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
}

.participation-card > p:not(.eyebrow) {
  position: relative;
  max-width: 430px;
  margin: 12px 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.clarity-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 25px;
  padding: 14px 18px;
  border: 1px solid #dce4f1;
  border-radius: 10px;
  background: white;
}

.clarity-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 21px;
  font-weight: 600;
}

.clarity-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.clarity-note strong {
  color: var(--ink);
}

.more-projects {
  padding-block: 31px 83px;
}

.more-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.more-heading .eyebrow {
  margin-bottom: 9px;
}

.more-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -1.1px;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.more-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  transition: transform 180ms ease, border-color 180ms ease;
}

.more-card:hover {
  transform: translateY(-3px);
  border-color: #a8bce4;
}

.more-card > img {
  width: 75px;
  height: 75px;
  flex: 0 0 75px;
  object-fit: contain;
}

.more-card div > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.more-card h3 {
  margin: 7px 0 0;
  font-size: 17px;
}

.more-arrow {
  margin-left: auto;
  color: var(--blue);
}

.final-cta {
  display: flex;
  min-height: 246px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 39px 47px;
  border-radius: 23px;
  background: linear-gradient(122deg, #173a77 0%, #245bc5 80%, #3272e4 100%);
  color: white;
}

.final-cta .eyebrow {
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(41px, 5vw, 59px);
  line-height: 1.04;
}

.final-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.button-white {
  background: white;
  color: var(--blue-dark);
}

.button-ghost-light {
  border-color: rgb(255 255 255 / 35%);
  color: white;
}

.button-ghost-light:hover {
  background: rgb(255 255 255 / 10%);
}

.footer {
  display: flex;
  min-height: 125px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer div strong,
.footer div span {
  display: block;
}

.footer div strong {
  color: var(--blue);
  font-size: 15px;
}

.footer div span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.footer > p {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.footer > a {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid #91abe5;
  outline-offset: 3px;
}

@keyframes line-march {
  to {
    background-position: 15px 0;
  }
}

@media (max-width: 1020px) {
  .hero {
    gap: 38px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .heading-centered {
    display: block;
  }

  .diagram-card {
    padding-inline: 36px;
  }

  .project-branches {
    grid-template-columns: minmax(0, 1fr) 151px minmax(0, 1fr);
  }

  .community-row {
    width: calc((100% - 151px) / 2);
  }

  .animated-arrow {
    width: 105px;
  }

  .evolution-inner {
    grid-template-columns: 1fr 365px;
    gap: 45px;
  }
}

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

  .site-width {
    width: calc(100% - 36px);
  }

  .topbar-inner {
    min-height: 69px;
  }

  .wordmark,
  .wordmark img {
    width: 122px;
    height: 49px;
  }

  .topbar nav {
    gap: 0;
  }

  .nav-link {
    display: none;
  }

  .button-compact {
    min-height: 39px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 63px 58px;
  }

  .hero h1 {
    font-size: clamp(57px, 14vw, 75px);
    letter-spacing: -2.8px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    gap: 4px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-summary {
    padding-inline: 22px;
  }

  .map-section {
    padding-block: 65px 67px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 42px;
    letter-spacing: -1.6px;
  }

  .filter-group {
    gap: 6px;
  }

  .filter-button {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .diagram-card {
    padding: 42px 15px 16px;
    border-radius: 18px;
  }

  .diagram-hint {
    top: 10px;
    right: 12px;
    font-size: 9px;
  }

  .node-author {
    min-height: 143px;
  }

  .node-parent {
    min-height: 139px;
    padding-inline: 12px;
  }

  .node-parent img {
    width: min(285px, 100%);
  }

  .branch-line {
    height: 56px;
  }

  .branch-line::after {
    display: none;
  }

  .branch-line::before {
    height: 100%;
  }

  .project-branches {
    grid-template-columns: 1fr;
  }

  .node-pocket,
  .node-booktrigger {
    min-height: 211px;
  }

  .node-pocket img {
    width: 102px;
    height: 105px;
  }

  .node-booktrigger img {
    height: 109px;
  }

  .collaboration-link {
    min-height: 96px;
    gap: 8px;
  }

  .animated-arrow {
    width: 53px;
    transform: rotate(90deg);
  }

  .collaboration-caption {
    padding-top: 6px;
  }

  .community-row {
    width: 100%;
  }

  .insight-bar {
    align-items: flex-start;
    margin-top: 24px;
  }

  .insight-marker {
    margin-top: 4px;
  }

  .insight-bar p {
    font-size: 11px;
  }

  .identity-section {
    padding-block: 77px 84px;
  }

  .identity-grid,
  .participation-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }

  .identity-card {
    min-height: 330px;
  }

  .evolution-section {
    padding-block: 76px;
  }

  .evolution-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .evolution-copy h2 {
    font-size: 54px;
  }

  .participation-section {
    padding-block: 78px 63px;
  }

  .participation-card {
    min-height: 271px;
    padding: 29px 25px;
  }

  .clarity-note {
    align-items: flex-start;
  }

  .clarity-note p {
    font-size: 12px;
  }

  .more-projects {
    padding-block: 20px 63px;
  }

  .more-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .more-heading h2 {
    font-size: 34px;
  }

  .more-card > img {
    width: 65px;
    height: 65px;
    flex-basis: 65px;
  }

  .more-card h3 {
    font-size: 15px;
  }

  .final-cta {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    padding: 34px 25px;
  }

  .final-cta h2 {
    font-size: 47px;
  }

  .footer {
    min-height: 135px;
  }

  .footer > p {
    max-width: 160px;
    font-size: 10px;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .site-width {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .diagram-card {
    padding-inline: 11px;
  }

  .node-category {
    font-size: 8px;
  }

  .node-community {
    gap: 10px;
    padding-left: 11px;
  }

  .filter-button {
    padding-inline: 8px;
    font-size: 10px;
  }

  .footer > p {
    display: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
