@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;450;500;550;600;650;700&display=swap");
:root {
  --ink: #111923;
  --paper: #fafbfc;
  --accent: #67dfff;
  --muted: #64707c;
  --line: #dce1e5;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.skip {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--accent);
  color: var(--ink);
  padding: 15px;
  z-index: 100;
}
.skip:focus {
  top: 15px;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 105px;
  padding: 0 5%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #ffffff30;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -1.6px;
  white-space: nowrap;
}
.brand > span > span {
  font-weight: 400;
}
.brand-mark {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  transform: rotate(-14deg);
  margin-top: -7px;
}
header nav {
  display: flex;
  gap: 33px;
  font-size: 14px;
}
header nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
}
header nav a:hover {
  border-color: var(--accent);
}
.header-cta {
  padding: 13px 18px;
  border: 1px solid #fff8;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  transition:
    background 0.3s,
    color 0.3s;
}
.header-cta span {
  font-size: 20px;
}
.header-cta:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.menu-toggle {
  display: none;
}
.mobile-menu[hidden] {
  display: none;
}
.hero {
  position: relative;
  min-height: 900px;
  height: 95svh;
  max-height: 1080px;
  color: white;
  overflow: hidden;
  background: #101722;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 13, 22, 0.72),
      rgba(6, 13, 22, 0.35) 45%,
      transparent 80%
    ),
    linear-gradient(0deg, rgba(6, 13, 22, 0.6), transparent 25%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 195px 5% 145px;
  max-width: 900px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 1.8px;
  line-height: 1.7;
  margin: 0;
}
.hero .eyebrow {
  color: #beeaf7;
}
.hero .eyebrow:before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 1px;
  vertical-align: middle;
  margin-right: 13px;
  background: var(--accent);
}
h1,
h2,
h3 {
  font-family: Manrope, Arial, sans-serif;
  font-weight: 500;
}
h1 {
  font-size: clamp(72px, 6.7vw, 112px);
  line-height: 1.015;
  letter-spacing: -5.5px;
  margin: 26px 0;
}
em {
  font-style: normal;
  color: var(--accent);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  color: #e3e6e9;
  max-width: 390px;
  margin: 0 0 28px;
}
.button {
  background: var(--accent);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 45px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 550;
  border-radius: 2px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.button > span {
  font-size: 22px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-4px);
  background: #a0ecff;
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 84px;
  border-top: 1px solid #fff4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: 9px;
  letter-spacing: 1.1px;
  color: #d5dce4;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.scroll-circle {
  width: 35px;
  height: 35px;
  border: 1px solid #fff5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hero-bottom > span:last-child {
  color: #b9c1cb;
  font-size: 8px;
}
.intro-line {
  display: flex;
  justify-content: space-between;
  padding: 29px 5%;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #6f7881;
  gap: 20px;
}
.section {
  padding: 105px 6%;
}
.section-label {
  font-size: 10px;
  letter-spacing: 1.3px;
  font-weight: 550;
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 40px;
}
.section-label > span {
  color: #8b959e;
}
.opening-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: center;
}
h2 {
  font-size: clamp(42px, 4.75vw, 72px);
  letter-spacing: -3px;
  line-height: 1.12;
  margin: 0;
}
h2 em {
  color: #637e94;
}
.opening-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 23px;
  max-width: 410px;
}
.opening-grid p.lead {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.5;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #adb7be;
  padding: 12px 0;
}
.text-link > span {
  font-size: 20px;
  color: #087daf;
}
.science {
  background: #edf1f4;
  padding-top: 70px;
}
.science-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  margin-bottom: 40px;
}
.science-top .section-label {
  margin: 0;
}
.small-note {
  font-size: 9px;
  letter-spacing: 1px;
  color: #667582;
}
.science-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 8%;
  align-items: stretch;
}
figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.lab-image {
  min-height: 690px;
  background: #ccd5db;
}
.lab-image img,
.care-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 1s;
}
.lab-image:hover img,
.care-image:hover img {
  transform: scale(1.03);
}
figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 60px 24px 22px;
  background: linear-gradient(transparent, #0b1721bb);
  color: white;
  font-size: 9px;
  letter-spacing: 1px;
}
figcaption > span:last-child {
  font-size: 8px;
  opacity: 0.8;
}
.science-copy h2 {
  margin-bottom: 28px;
}
.science-copy > p {
  font-size: 15px;
  line-height: 1.8;
  color: #647380;
  margin: 0 0 20px;
  max-width: 440px;
}
.molecular-card {
  height: 295px;
  background: #15222f;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 29px;
  border-radius: 2px;
}
#molecule-scene {
  position: absolute;
  inset: 0;
  touch-action: pan-y;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.molecular-top {
  position: absolute;
  top: 14px;
  left: 21px;
  right: 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 1px;
  gap: 15px;
  color: #d1dce6;
  pointer-events: none;
}
.molecular-top button {
  pointer-events: auto;
  border: 0;
  background: transparent;
  color: #b7c9d6;
  font-size: 10px;
  padding: 8px 0;
}
.molecular-bottom {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 19px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  pointer-events: none;
}
.molecular-bottom > span {
  font-size: 14px;
  line-height: 1.5;
}
.molecular-bottom small {
  font-size: 9px;
  color: #90a4b5;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 60px;
}
.process-grid article {
  padding-top: 22px;
  border-top: 1px solid #c6d0d9;
}
.process-grid article > span {
  font-size: 9px;
  letter-spacing: 1px;
  color: #627382;
}
.process-grid h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.7px;
  margin: 22px 0 12px;
}
.process-grid p {
  font-size: 14px;
  color: #62717d;
  line-height: 1.75;
  margin: 0;
}
.development-note {
  font-size: 11px;
  color: #697986;
  line-height: 1.7;
  margin: 35px 0 0;
}
.plasma-story {
  height: 640px;
  position: relative;
  overflow: hidden;
  background: #111923;
  color: white;
}
.plasma-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.plasma-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0b1320c9, transparent 90%),
    linear-gradient(0deg, #0b132078, transparent 25%);
}
.plasma-content {
  position: relative;
  padding: 115px 6% 100px;
  z-index: 1;
}
.plasma-content h2 {
  font-size: clamp(68px, 7.7vw, 118px);
  letter-spacing: -5px;
  margin-top: 30px;
  line-height: 1.04;
}
.plasma-content h2 em {
  color: #67dfff;
}
.plasma-content > p:last-child {
  font-size: 16px;
  line-height: 1.8;
  color: #e3e8f0;
  margin-top: 28px;
}
.plasma-caption {
  position: absolute;
  bottom: 28px;
  right: 6%;
  font-size: 8px;
  letter-spacing: 1px;
  color: #e0dbe4;
}
.focus {
  background: #fff;
}
.focus-heading,
.people-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.focus-heading > p,
.people-heading > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 350px;
  margin: 0;
}
.focus-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9%;
  align-items: start;
}
.focus-copy {
  padding-top: 5px;
}
details {
  border-top: 1px solid var(--line);
}
details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: Manrope, Arial, sans-serif;
  font-size: 25px;
  letter-spacing: -0.8px;
}
summary::-webkit-details-marker {
  display: none;
}
.detail-number {
  font-family: "DM Sans", sans-serif;
  color: #8e969d;
  font-size: 11px;
  letter-spacing: 0;
}
.detail-icon {
  margin-left: auto;
  font-size: 24px;
  font-weight: 400;
  color: #087daf;
  transition: transform 0.3s;
}
details[open] .detail-icon {
  transform: rotate(45deg);
}
details > div {
  padding: 0 25px 24px 34px;
}
.focus-tag {
  font-size: 9px;
  letter-spacing: 1px;
  color: #086c98;
}
details p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 13px 0 0;
  max-width: 370px;
}
.care-image {
  height: 480px;
  background: #d8dfe4;
}
.people {
  background: #f0f3f5;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portrait {
  position: relative;
  aspect-ratio: 1/1.4;
  overflow: hidden;
  background: #d6dee4;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s;
  filter: saturate(0.7);
}
.portrait > span {
  position: absolute;
  bottom: 14px;
  right: 14px;
  border-radius: 50%;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  transition: background 0.3s;
}
.team-grid a:hover img {
  transform: scale(1.04);
}
.team-grid a:hover .portrait > span {
  background: var(--accent);
}
.team-grid h3 {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 20px 0 8px;
}
.team-grid p {
  font-size: 13px;
  color: #697885;
  margin: 0;
}
.backers {
  margin-top: 82px;
  padding-top: 42px;
  border-top: 1px solid #cdd6dc;
}
.backers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}
.backers-label {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 1.3px;
  color: #60727f;
}
.backers-title {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -1.6px;
}
.backers-intro {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.backers-intro p {
  margin: 0;
}
.backers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.backer-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid #d5dde2;
  background: #fff;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
a.backer-card:hover {
  transform: translateY(-4px);
  border-color: #8bb9cc;
  box-shadow: 0 12px 34px #143f5710;
}
.backer-card img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
}
.backer-card span {
  color: #647581;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}
.contact {
  background: #111923;
  color: #fff;
  padding-bottom: 42px;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
  align-items: center;
}
.contact-top > span:last-child {
  font-size: 9px;
  letter-spacing: 1px;
  color: #afbdcb;
}
.contact-top .eyebrow {
  color: #b9e9f6;
}
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.contact h2 {
  font-size: clamp(65px, 7.7vw, 117px);
  letter-spacing: -5px;
  line-height: 1.04;
}
.contact h2 em {
  color: var(--accent);
}
.contact-link > span {
  font-size: 125px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.4s;
}
.contact-link:hover > span {
  transform: translate(10px, -10px);
}
.contact-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid #ffffff36;
  margin-top: 65px;
}
.contact-bottom > a {
  font-size: 20px;
}
.contact-bottom > span {
  font-size: 12px;
  color: #a7b6c5;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 35px 5%;
  background: #111923;
  border-top: 1px solid #ffffff21;
  color: #fff;
}
footer > span,
footer > a:last-child {
  font-size: 12px;
  color: #a7b6c5;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}
.motion-paused {
  scroll-behavior: auto;
}
.scene-fallback {
  font-size: 95px;
  letter-spacing: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9dbbd8;
}
@media (max-width: 1100px) {
  .hero {
    min-height: 800px;
  }
  .hero-copy {
    padding-top: 185px;
  }
  h1 {
    font-size: 80px;
    letter-spacing: -4px;
  }
  .section {
    padding: 85px 5%;
  }
  .opening-grid {
    gap: 8%;
  }
  .science-grid {
    gap: 5%;
  }
  .lab-image {
    min-height: 650px;
  }
  .science-copy h2 {
    font-size: 49px;
  }
  .process-grid {
    gap: 28px;
  }
  .process-grid h3 {
    font-size: 21px;
  }
  .focus-grid {
    gap: 6%;
  }
  .team-grid {
    gap: 18px;
  }
  .backers-grid {
    gap: 14px;
  }
  .team-grid h3 {
    font-size: 15px;
  }
  .contact-link > span {
    font-size: 95px;
  }
}
@media (max-width: 760px) {
  header {
    height: 82px;
    padding: 0 6%;
  }
  .brand {
    font-size: 27px;
  }
  .brand-mark {
    font-size: 43px;
  }
  header nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-direction: column;
    background: none;
    border: 0;
    width: 38px;
    height: 38px;
  }
  .menu-toggle span {
    width: 25px;
    height: 1px;
    background: white;
  }
  .mobile-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 26px 6% 34px;
    background: #111923;
    color: white;
    border-bottom: 1px solid #ffffff35;
  }
  .mobile-menu a {
    font-size: 22px;
  }
  .hero {
    height: 95svh;
    min-height: 770px;
    max-height: 950px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #07101caf, #07101c40),
      linear-gradient(0deg, #07101caa, transparent 45%);
  }
  .hero-copy {
    padding: 155px 6% 130px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  h1 {
    font-size: clamp(58px, 12.4vw, 86px);
    letter-spacing: -3px;
    line-height: 1.04;
    margin: 26px 0;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 290px;
  }
  .button {
    font-size: 13px;
    padding: 17px 19px;
    gap: 32px;
  }
  .hero-bottom {
    left: 6%;
    right: 6%;
    height: 78px;
    gap: 15px;
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .hero-bottom > span:nth-child(2) {
    display: none;
  }
  .hero-bottom > span:last-child {
    font-size: 7px;
    max-width: 100px;
    line-height: 1.5;
    text-align: right;
  }
  .hero-bottom a {
    gap: 11px;
  }
  .intro-line {
    padding: 24px 6%;
    font-size: 12px;
    gap: 22px;
    line-height: 1.5;
  }
  .intro-line > span {
    max-width: 100px;
  }
  .section {
    padding: 65px 6%;
  }
  .section-label {
    font-size: 9px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    gap: 10px;
  }
  h2 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .opening-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .opening-grid p.lead {
    font-size: 21px;
  }
  .opening-grid p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .text-link {
    font-size: 13px;
    gap: 30px;
  }
  .science-top {
    display: block;
    margin-bottom: 30px;
  }
  .science-top .section-label {
    margin-bottom: 13px;
  }
  .small-note {
    font-size: 8px;
  }
  .science-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .lab-image {
    min-height: 420px;
  }
  .lab-image img {
    object-position: center;
  }
  .science-copy h2 {
    font-size: 43px;
    margin-bottom: 23px;
  }
  .science-copy > p {
    font-size: 15px;
  }
  .molecular-card {
    height: 280px;
    margin-top: 25px;
  }
  .molecular-top {
    font-size: 8px;
    left: 18px;
    right: 18px;
  }
  .molecular-top button {
    font-size: 9px;
  }
  .molecular-bottom {
    left: 18px;
    right: 18px;
  }
  .molecular-bottom > span {
    font-size: 13px;
  }
  .molecular-bottom small {
    font-size: 8px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }
  .process-grid article {
    padding-top: 19px;
  }
  .process-grid h3 {
    font-size: 23px;
    margin: 17px 0 10px;
  }
  .process-grid p {
    font-size: 14px;
  }
  .development-note {
    font-size: 10px;
    margin-top: 28px;
  }
  .plasma-story {
    height: 510px;
  }
  .plasma-content {
    padding: 80px 6%;
  }
  .plasma-content h2 {
    font-size: 66px;
    letter-spacing: -3px;
    margin-top: 29px;
  }
  .plasma-content > p:last-child {
    font-size: 15px;
    line-height: 1.7;
  }
  .plasma-caption {
    font-size: 7px;
    letter-spacing: 0.5px;
    left: 6%;
    right: 6%;
    bottom: 25px;
  }
  .focus-heading,
  .people-heading {
    display: block;
    margin-bottom: 32px;
  }
  .focus-heading > p,
  .people-heading > p {
    max-width: 100%;
    font-size: 15px;
    margin-top: 23px;
  }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  summary {
    font-size: 24px;
    padding: 24px 0;
    gap: 14px;
  }
  .detail-number {
    font-size: 10px;
  }
  details > div {
    padding-left: 30px;
    padding-right: 15px;
  }
  details p {
    font-size: 14px;
    max-width: 100%;
  }
  .care-image {
    height: 380px;
  }
  figcaption {
    padding: 50px 19px 18px;
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  figcaption > span:last-child {
    font-size: 7px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 17px;
  }
  .portrait {
    aspect-ratio: 1/1.35;
  }
  .portrait > span {
    width: 30px;
    height: 30px;
    right: 10px;
    bottom: 10px;
    font-size: 18px;
  }
  .team-grid h3 {
    font-size: 14px;
    margin: 15px 0 6px;
  }
  .team-grid p {
    font-size: 12px;
  }
  .backers {
    margin-top: 58px;
    padding-top: 34px;
  }
  .backers-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
  }
  .backers-title {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .backers-intro {
    font-size: 14px;
  }
  .backers-grid {
    grid-template-columns: 1fr;
  }
  .backer-card {
    min-height: 138px;
    padding: 20px;
  }
  .backer-card img {
    height: 72px;
  }
  .contact-top {
    display: block;
    margin-bottom: 33px;
  }
  .contact-top > span:last-child {
    display: block;
    margin-top: 13px;
    font-size: 8px;
  }
  .contact-link {
    align-items: flex-end;
    gap: 15px;
  }
  .contact h2 {
    font-size: clamp(41px, 9.2vw, 66px);
    letter-spacing: -2.3px;
  }
  .contact-link > span {
    font-size: 54px;
  }
  .contact-bottom {
    display: block;
    margin-top: 40px;
  }
  .contact-bottom > a {
    font-size: 18px;
  }
  .contact-bottom > span {
    display: block;
    margin-top: 15px;
    font-size: 12px;
  }
  footer {
    padding: 28px 6%;
    flex-wrap: wrap;
    gap: 22px;
  }
  footer .brand {
    width: 100%;
  }
  footer > span,
  footer > a:last-child {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-image {
    will-change: auto;
  }
}

/* Company logo: supplied droplet identity with crisp accessible typography. */
.brand {
  gap: 5px;
  letter-spacing: normal;
  align-items: center;
  font-family: Manrope, Arial, sans-serif;
}
.brand-icon {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}
.brand .wordmark-name {
  font-size: 36px;
  font-weight: 550;
  letter-spacing: -1.25px;
  line-height: 1;
}
.brand .wordmark-care {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 6.2px;
  color: #67dfff;
  padding-left: 3px;
}
.brand:hover .wordmark-name {
  color: #e5faff;
}
footer .brand {
  gap: 7px;
}
footer .brand-icon {
  width: 76px;
  height: 76px;
}
footer .brand .wordmark-name {
  font-size: 39px;
}
footer .brand .wordmark-care {
  font-size: 12px;
  letter-spacing: 6.8px;
}
@media (max-width: 760px) {
  .brand {
    gap: 3px;
  }
  .brand-icon {
    width: 54px;
    height: 54px;
  }
  .brand .wordmark-name {
    font-size: 29px;
    letter-spacing: -0.8px;
  }
  .brand .wordmark-care {
    font-size: 9px;
    letter-spacing: 4.8px;
    padding-left: 2px;
  }
  .brand-wordmark {
    gap: 4px;
    padding-top: 3px;
  }
  footer .brand-icon {
    width: 65px;
    height: 65px;
  }
  footer .brand .wordmark-name {
    font-size: 34px;
  }
  footer .brand .wordmark-care {
    font-size: 10px;
    letter-spacing: 5.8px;
  }
}

/* Nitric oxide: a luminous, branded molecular study. */
.molecular-card {
  height: 360px;
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 65% 45%, #10435a88, transparent 55%),
    radial-gradient(ellipse at 20% 60%, #174b923d, transparent 60%), #071522;
  border: 1px solid #42637a55;
  box-shadow:
    0 18px 38px -24px #09283f80,
    inset 0 1px 0 #b8efff16;
}
.molecular-top {
  top: 15px;
  left: 22px;
  right: 22px;
  font-size: 12px;
  letter-spacing: 1.2px;
  z-index: 2;
}
.molecular-top button {
  font-size: 12px;
  padding: 10px 0;
  color: #c5deec;
  min-height: 44px;
}
.molecular-bottom {
  left: 22px;
  right: 22px;
  bottom: 20px;
  gap: 16px;
  z-index: 2;
}
.molecular-bottom > span {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}
.molecular-bottom small {
  font-size: 12px;
  max-width: 125px;
  text-align: right;
  line-height: 1.5;
  color: #abc3d2;
}
.atom-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: Manrope, Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #f0fcff;
  text-shadow: 0 2px 16px #002d6799;
  pointer-events: none;
}
@media (max-width: 1100px) and (min-width: 761px) {
  .molecular-card {
    height: 340px;
  }
  .molecular-top,
  .molecular-bottom {
    left: 16px;
    right: 16px;
  }
  .molecular-top {
    letter-spacing: 0.5px;
  }
}
@media (max-width: 760px) {
  .molecular-card {
    height: 350px;
  }
  .molecular-top,
  .molecular-bottom {
    left: 18px;
    right: 18px;
  }
  .molecular-top {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .molecular-top button {
    font-size: 12px;
  }
  .molecular-bottom > span {
    font-size: 16px;
  }
  .molecular-bottom small {
    font-size: 12px;
  }
  .atom-label {
    font-size: 24px;
  }
}
