:root {
  --paper: #f7faf8;
  --surface: #ffffff;
  --ink: #17211c;
  --muted: #5e6c64;
  --line: #dce5df;
  --green: #087c4b;
  --green-dark: #075c3b;
  --green-pale: #e5f3eb;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(20, 51, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  background: rgba(247, 250, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  color: var(--green);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.55rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--green);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

main {
  min-height: 60vh;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  height: 600px;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 30%, rgba(8, 124, 75, 0.13), transparent 28rem),
    linear-gradient(135deg, #fbfdfc, #edf6f1);
}

.hero::after {
  content: none;
}

.has-bioblock-motif > .shell {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-right: min(48%, 620px);
}

.has-bioblock-motif > .hero-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.bioblock-motif {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(48%, 620px);
  margin: 0;
  color: var(--green);
  pointer-events: none;
  transform: translateY(-50%);
}

.bioblock-motif::before {
  position: absolute;
  inset: 18% 12%;
  border-radius: 50%;
  background: rgba(8, 124, 75, 0.1);
  filter: blur(45px);
  content: "";
}

.bioblock-motif svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.chain-grid path {
  fill: none;
  stroke: rgba(8, 124, 75, 0.08);
  stroke-width: 1;
}

.chain-link {
  fill: none;
  stroke: url("#chain-gradient");
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.48;
}

.chain-link.flow {
  stroke-width: 2.6;
  stroke-dasharray: 8 15;
  opacity: 0.85;
  animation: data-flow 8s linear infinite;
}

.chain-link.main-chain {
  stroke: #078a50;
  stroke-width: 3.5;
  opacity: 0.62;
  filter: drop-shadow(0 0 4px rgba(7, 138, 80, 0.38));
  animation: main-chain-pulse 2.6s ease-in-out infinite;
}

.chain-link.branch-chain {
  opacity: 0.34;
}

.chain-link.branch-flow {
  animation-duration: 6.5s;
}

.chain-link.branch-flow-1 {
  animation-delay: -1.3s;
}

.chain-link.branch-flow-2 {
  animation-delay: -3.5s;
}

.chain-link.branch-flow-3 {
  animation-delay: -5s;
}

.chain-block rect {
  fill: rgba(255, 255, 255, 0.97);
  stroke: #087c4b;
  stroke-width: 1.6;
}

.chain-block .block-pulse {
  fill: rgba(8, 124, 75, 0.08);
  stroke: rgba(8, 124, 75, 0.3);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: block-pulse 4s ease-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

.chain-block {
  transform-box: fill-box;
  transform-origin: center;
  animation: block-float 4s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
  filter: drop-shadow(0 7px 10px rgba(7, 92, 59, 0.12));
}

.chain-block .block-biotech-icon {
  color: #087c4b;
}

.chain-particles circle {
  fill: #087c4b;
  stroke: white;
  stroke-width: 3;
  filter: drop-shadow(0 3px 5px rgba(7, 92, 59, 0.2));
}

@keyframes data-flow {
  to {
    stroke-dashoffset: -184;
  }
}

@keyframes main-chain-pulse {
  0%,
  100% {
    stroke-width: 3;
    opacity: 0.45;
    filter: drop-shadow(0 0 2px rgba(7, 138, 80, 0.2));
  }
  50% {
    stroke-width: 5.5;
    opacity: 1;
    filter: drop-shadow(0 0 9px rgba(7, 138, 80, 0.75));
  }
}

@keyframes block-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes block-pulse {
  0% {
    opacity: 0.8;
    scale: 0.72;
  }
  65%,
  100% {
    opacity: 0;
    scale: 1.28;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.lede {
  max-width: 760px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.section-heading > div > :first-child {
  margin-top: 0;
}

.section-heading p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: white;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--green-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 26px rgba(20, 51, 35, 0.04);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--muted);
}

.card-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 750;
}

.clean-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  margin-top: 0.7rem;
  padding-left: 1.35rem;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "●";
  font-size: 0.55rem;
  transform: translateY(0.45rem);
}

.scroll-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.scroll-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.scroll-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.scroll-button:hover {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.scroll-button:focus-visible {
  outline: 3px solid rgba(8, 124, 75, 0.2);
  outline-offset: 3px;
}

.partner-logos {
  display: grid;
  grid-auto-columns: minmax(230px, 280px);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0.15rem 0 0.85rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(8, 124, 75, 0.45) rgba(8, 124, 75, 0.08);
  scrollbar-width: thin;
}

.partner-logo {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(20, 51, 35, 0.035);
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

a.partner-logo:hover {
  border-color: rgba(8, 124, 75, 0.45);
  box-shadow: 0 12px 28px rgba(20, 72, 46, 0.1);
  transform: translateY(-2px);
}

a.partner-logo:focus-visible {
  outline: 3px solid rgba(8, 124, 75, 0.25);
  outline-offset: 3px;
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.partner-logo-wide img {
  max-height: 54px;
}

.partner-logo-tall img {
  max-height: 88px;
}

.partner-logo-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: #10272b;
}

.timeline {
  position: relative;
  display: grid;
  gap: 2.2rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--green) 0 0.42rem, transparent 0.42rem 0.72rem);
  content: "";
  transform: translateX(-50%);
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 160px) minmax(0, 1fr);
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.timeline time {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  max-width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 720;
  text-align: center;
}

.timeline li > div {
  position: relative;
  grid-row: 1;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(15, 37, 30, 0.07);
}

.timeline li:nth-child(odd) > div {
  grid-column: 1;
}

.timeline li:nth-child(even) > div {
  grid-column: 3;
}

.timeline li > div::after {
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--green);
  content: "";
}

.timeline li:nth-child(odd) > div::after {
  right: -1.5rem;
}

.timeline li:nth-child(even) > div::after {
  left: -1.5rem;
}

.timeline h3 {
  margin-bottom: 0.55rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.project {
  padding: 0;
}

.project + .project {
  border-top: 1px solid var(--line);
}

.project summary {
  position: relative;
  display: block;
  padding: clamp(2rem, 5vw, 3.2rem) 3rem clamp(2rem, 5vw, 3.2rem) 0;
  cursor: pointer;
  list-style: none;
}

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

.project summary::after {
  position: absolute;
  top: 50%;
  right: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  content: "";
  transition: transform 160ms ease;
}

.project[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.project-heading {
  display: block;
  max-width: 900px;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 720;
  line-height: 1.1;
}

.project-content {
  padding: 0 0 clamp(2rem, 5vw, 3.2rem);
}

.project-title-original {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.62em;
  font-weight: 500;
}

.project p,
.project li {
  color: var(--muted);
}

.roadmap-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}

.roadmap-figure {
  min-width: 0;
  margin: 0;
}

.roadmap-figure figcaption {
  margin-bottom: 0.7rem;
  color: var(--green-dark);
  font-weight: 720;
}

.roadmap-figure a {
  display: block;
  max-width: 100%;
}

.roadmap-figure img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}

.team-grid {
  display: grid;
  grid-auto-columns: minmax(270px, 320px);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding: 0.15rem 0 0.85rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(8, 124, 75, 0.45) rgba(8, 124, 75, 0.08);
  scrollbar-width: thin;
}

.person {
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  scroll-snap-align: start;
}

.person-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
}

.person-details {
  padding: 1rem 1.25rem 1.25rem;
}

.person strong {
  display: block;
  font-size: 1.02rem;
}

.person span {
  color: var(--green);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.resource-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.resource-card:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.resource-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.glossary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
  margin: 2.5rem 0 0;
}

.glossary > div {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  break-inside: avoid;
}

.glossary dt {
  font-weight: 750;
}

.glossary dd {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.faq {
  margin-top: 2rem;
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 1.3rem 2.5rem 1.3rem 0;
  cursor: pointer;
  font-weight: 720;
}

.faq p {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.status {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid #d59b3f;
  border-radius: 999px;
  background: #fff7e8;
  color: #72501c;
  font-size: 0.8rem;
  font-weight: 750;
}

.content h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.content h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.content p,
.content li {
  color: var(--muted);
}

.content code {
  overflow-wrap: anywhere;
  color: var(--ink);
}

.notice {
  margin: 2rem 0;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--green);
  background: var(--green-pale);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-grid address {
  font-style: normal;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #d6ded9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .brand {
  color: white;
}

.site-footer p {
  max-width: 420px;
  color: #aebbb3;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #d6ded9;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #34433a;
  color: #8fa097;
  font-size: 0.8rem;
}

.footer-funding {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.funding-mark {
  display: inline-flex;
  height: 94px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  overflow: hidden;
  border-radius: 10px;
  background: white;
}

.funding-mark img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 80px;
  object-fit: contain;
}

.funding-mark.datipilot img {
  max-width: 200px;
  max-height: 58px;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d6ded9;
  text-decoration: none;
}

.linkedin-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.linkedin-link:hover {
  color: white;
}

.footer-links .linkedin-link {
  margin-top: 0.45rem;
}

@media (max-width: 960px) {
  .hero {
    height: 660px;
    padding: 4rem 0;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 0.8rem;
    border-radius: 8px;
  }

  .site-nav a[aria-current="page"] {
    background: var(--green-pale);
    box-shadow: none;
  }

  .hero-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

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

  .brand > span:first-child,
  .brand > span:last-child {
    display: none;
  }

  .brand-mark {
    font-size: 1.1rem;
  }

  .card-grid,
  .resource-grid,
  .glossary,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-left: 2rem;
  }

  .timeline::before {
    top: 1rem;
    bottom: 1rem;
    left: 0.45rem;
  }

  .timeline time {
    grid-column: 1;
    justify-self: start;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .timeline li > div,
  .timeline li:nth-child(odd) > div,
  .timeline li:nth-child(even) > div {
    grid-column: 1;
    padding: 1.2rem;
  }

  .timeline li > div::after {
    top: 1.15rem;
    left: -1.55rem;
    width: 1.55rem;
  }

  .footer-meta {
    display: grid;
  }

  .footer-funding {
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

  .funding-mark {
    width: min(100%, 280px);
    height: 94px;
  }

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

  .partner-logos {
    grid-auto-columns: minmax(190px, 76vw);
    gap: 0.75rem;
  }

  .team-grid {
    grid-auto-columns: minmax(240px, 82vw);
  }

  .partner-logo {
    min-height: 108px;
    padding: 0.85rem;
  }

  .partner-logo img {
    max-height: 64px;
  }

  .roadmap-gallery {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .roadmap-figure img {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero {
    height: 860px;
    padding: 4rem 0;
  }

  .has-bioblock-motif > .shell {
    height: 100%;
    min-height: 0;
    padding-right: 0;
  }

  .bioblock-motif {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    margin: 2.5rem auto -1rem;
    transform: none;
  }
}

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

  .partner-logos,
  .team-grid {
    scroll-behavior: auto;
  }

  .chain-link.flow,
  .chain-link.main-chain,
  .chain-block,
  .chain-block .block-pulse {
    animation: none;
  }
}
