.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color .25s, background .25s, box-shadow .25s;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  color: var(--ink);
  background: rgba(251, 250, 246, .94);
  box-shadow: 0 1px 0 rgba(18, 57, 43, .1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 8px 24px rgba(233, 71, 53, .3);
}

.brand-mark svg {
  width: 26px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand b {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: .08em;
}

.brand b span {
  color: var(--tomato);
}

.brand small {
  margin-top: 5px;
  font-size: .58rem;
  letter-spacing: .18em;
}

.brand--inverse {
  color: var(--white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
}

.desktop-nav > a,
.nav-item > a,
.nav-item > button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 29px 10px;
  color: inherit;
  background: transparent;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item > button span {
  margin-top: -3px;
  font-size: .8rem;
}

.dropdown {
  position: absolute;
  top: calc(100% - 7px);
  left: 50%;
  display: grid;
  width: 280px;
  padding: 9px;
  border: 1px solid rgba(18, 57, 43, .08);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: .2s var(--ease);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 600;
}

.dropdown a:hover {
  color: var(--tomato);
  background: var(--cream);
}

.dropdown svg {
  width: 15px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  opacity: .8;
}

.search-toggle::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.search-toggle::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  rotate: 45deg;
}

.lang {
  display: flex;
  gap: 6px;
  font-size: .73rem;
  letter-spacing: .08em;
}

.lang span {
  opacity: .45;
}

.language-switcher {
  position: relative;
  font-size: .72rem;
}

.language-switcher summary {
  display: flex;
  align-items: center;
  min-width: 48px;
  padding: 10px 5px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .08em;
  list-style: none;
  gap: 6px;
}

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

.language-switcher summary::after {
  content: "⌄";
  margin-top: -3px;
  font-size: .75rem;
  transition: transform .2s;
}

.language-switcher[open] summary::after {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 180px;
  padding: 8px;
  border: 1px solid rgba(18, 57, 43, .1);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  color: var(--tomato);
  background: var(--cream);
}

.language-menu small {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 500;
}

.mobile-languages {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  gap: 8px;
}

.mobile-languages a {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #c4d4cc;
  font-size: .7rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle i {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: .2s;
}

.menu-toggle[aria-expanded="true"] i:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  color: var(--white);
  background: rgba(7, 29, 21, .97);
  opacity: 0;
  visibility: hidden;
  place-items: center;
  transition: .25s;
}

.search-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.search-panel .container {
  position: relative;
  max-width: 900px;
}

.search-panel label {
  display: block;
  margin-bottom: 18px;
  color: #b8c9c1;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.search-panel form > div {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.search-panel input {
  width: 100%;
  padding: 18px 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 4rem);
}

.search-panel form button {
  color: var(--white);
  background: transparent;
}

.search-panel form button svg {
  width: 38px;
}

.search-panel [data-search-close] {
  position: absolute;
  top: -100px;
  right: 0;
  color: var(--white);
  background: transparent;
  font-size: 3rem;
  font-weight: 200;
}

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero > img,
.hero-overlay,
.hero-spectrum {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 30, 22, .94) 0%, rgba(7, 32, 23, .74) 43%, rgba(7, 31, 23, .14) 76%), linear-gradient(0deg, rgba(5, 28, 20, .58), transparent 45%);
}

.hero-spectrum {
  inset: auto -5% 13% auto;
  width: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--spectral-a), var(--spectral-b), var(--spectral-c), transparent);
  opacity: .65;
  filter: blur(.2px);
  transform: rotate(-6deg);
}

.hero-spectrum::after,
.hero-spectrum::before {
  content: "";
  position: absolute;
  inset: -22px 0 auto;
  height: 1px;
  background: inherit;
  opacity: .5;
}

.hero-spectrum::after {
  inset: 22px 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 105px;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
}

.hero-copy {
  max-width: 920px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--leaf);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: #b3d8c5;
}

.hero h1 {
  max-width: 1000px;
  margin-bottom: 30px;
  font-size: clamp(3.4rem, 6.7vw, 7.2rem);
  font-weight: 600;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 36px;
  color: #d4dfda;
  font-size: 1.15rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  transition: .25s var(--ease);
}

.button svg {
  width: 20px;
  transition: transform .25s;
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button--red {
  color: var(--white);
  background: var(--tomato);
  box-shadow: 0 13px 32px rgba(233, 71, 53, .25);
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, .4);
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.button--light {
  color: var(--forest);
  background: var(--white);
}

.hero-project {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(9, 39, 29, .55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .17);
  backdrop-filter: blur(18px);
}

.hero-project > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf);
  background: #e7f2eb;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48a36d;
  box-shadow: 0 0 0 4px rgba(72, 163, 109, .12);
}

.hero-project .status {
  color: #c9ebd8;
  background: rgba(70, 164, 109, .18);
}

.hero-project > div:first-child > b {
  color: #dbe8e1;
  font-size: .9rem;
}

.hero-project h2 {
  margin: 35px 0 28px;
  font-size: 1.55rem;
  font-weight: 600;
}

.hero-progress {
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.hero-progress i {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--leaf-bright), var(--spectral-a), var(--tomato));
}

.hero-project dl {
  display: grid;
  margin: 25px 0 0;
  grid-template-columns: 1fr 1fr;
}

.hero-project dl div:last-child {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.hero-project dt {
  color: #9bb3a8;
  font-size: .69rem;
  text-transform: uppercase;
}

.hero-project dd {
  margin: 2px 0 0;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c4d3cc;
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 10px auto;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.stat-band {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.stat-track {
  display: grid;
  width: max-content;
  grid-template-columns: repeat(8, minmax(190px, 1fr));
}

.stat {
  min-width: 190px;
  padding: 37px 26px;
  border-right: 1px solid var(--line);
}

.stat > span {
  color: #9ca59f;
  font-size: .65rem;
}

.stat strong {
  display: block;
  margin: 8px 0 2px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: .77rem;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-weight: 600;
}

.section-heading.split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr .6fr;
  gap: 80px;
}

.section-heading.split > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.section-heading.split > .text-link {
  justify-self: end;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .83rem;
  font-weight: 700;
}

.text-link svg,
.card-link svg {
  width: 17px;
}

.method {
  background: var(--paper);
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 62px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, var(--leaf), var(--spectral-a), var(--tomato));
  opacity: .5;
}

.method-step {
  position: relative;
  padding: 0 20px;
}

.method-step > span {
  display: block;
  margin-bottom: 18px;
  color: #9ca59f;
  font-size: .65rem;
}

.icon-box {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--leaf);
  background: var(--paper);
  place-items: center;
}

.icon-box svg {
  width: 24px;
}

.method-step h3 {
  margin-bottom: 13px;
  font-size: 1.12rem;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.why {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.why::after {
  content: "";
  position: absolute;
  right: -15vw;
  bottom: -35vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(138, 207, 117, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(138, 207, 117, .03), 0 0 0 18vw rgba(138, 207, 117, .02);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 100px;
}

.why-copy h2 {
  max-width: 700px;
}

.why-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 35px;
  color: #b9cbc2;
}

.why-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.why-list div {
  display: grid;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 38px 1fr 24px;
  gap: 10px;
}

.why-list span {
  color: #8fa99d;
  font-size: .68rem;
}

.why-list p {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
}

.why-list svg {
  width: 18px;
}

.diseases {
  background: var(--cream);
}

.disease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.disease-card {
  position: relative;
  min-height: 420px;
  padding: 45px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.disease-card > span {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.disease-card h3 {
  margin: 90px 0 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.disease-card p {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.disease-card--a {
  background: linear-gradient(145deg, #bf3b2b, #6b1f1c);
}

.disease-card--b {
  background: linear-gradient(145deg, #3c5148, #172b24);
}

.spectral-bars {
  position: absolute;
  top: 35px;
  right: 35px;
  display: flex;
  align-items: end;
  height: 140px;
  gap: 5px;
  opacity: .7;
  rotate: -7deg;
}

.spectral-bars i {
  width: 7px;
  height: var(--h);
  border-radius: 8px;
  background: linear-gradient(0deg, #ffd25d, #f25b88, #8d72d6);
}

.risk-ring {
  position: absolute;
  top: 35px;
  right: 45px;
  display: grid;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  place-content: center;
  text-align: center;
}

.risk-ring::before,
.risk-ring::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.risk-ring::after {
  inset: 32px;
}

.risk-ring strong {
  font-size: 1.7rem;
}

.risk-ring span {
  color: #bcd0c6;
  font-size: .6rem;
}

.medical-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.tech-home {
  background: var(--paper);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.tech-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.tech-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 155px;
  padding: 30px;
  overflow: hidden;
  color: #cee6da;
  background: var(--forest);
}

.tech-visual > span {
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  place-items: center;
}

.tech-visual svg {
  width: 30px;
}

.tech-visual b {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.tech-visual > i {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(242, 176, 74, .45);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(217, 75, 111, .05), 0 0 0 48px rgba(114, 85, 183, .04);
}

.tech-card > div:last-child {
  padding: 28px;
}

.tech-card h3 {
  margin: 22px 0 12px;
  font-size: 1.45rem;
}

.tech-card p {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: .86rem;
}

.tech-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
}

.tech-card a svg {
  width: 18px;
}

.news-home {
  background: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.news-visual {
  position: relative;
  display: flex;
  min-height: 185px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.news-visual--1 { background: linear-gradient(135deg, #193f31, #39795a); }
.news-visual--2 { background: linear-gradient(135deg, #922c25, #e15a3c); }
.news-visual--3 { background: linear-gradient(135deg, #2b4050, #586f86); }
.news-visual--4 { background: linear-gradient(135deg, #463468, #9a4c75); }

.news-visual > span {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .64rem;
  font-weight: 600;
}

.news-visual > b {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: .63rem;
  opacity: .55;
}

.news-visual > div {
  position: absolute;
  right: -25px;
  bottom: -35px;
  display: grid;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  place-items: center;
}

.news-visual > div::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.news-visual svg {
  width: 45px;
}

.news-body {
  padding: 27px;
}

.news-body time {
  color: #8b948f;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-body h3 {
  min-height: 70px;
  margin: 12px 0 14px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.news-body h3 a:hover {
  color: var(--tomato);
}

.news-body p {
  min-height: 68px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .81rem;
}

.card-link {
  font-size: .74rem;
}

.partners-home {
  background: var(--paper);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.partner-card {
  position: relative;
  display: grid;
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-rows: auto 1fr auto;
}

.partner-card > b {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: .75rem;
  place-items: center;
}

.partner-card > div {
  align-self: end;
}

.partner-card span {
  color: var(--tomato);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin: 10px 0;
  font-size: 1.4rem;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.partner-card > svg {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 20px;
}

.cta {
  padding: 0 20px 20px;
  background: var(--paper);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 400px;
  padding: 70px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--tomato);
}

.cta-inner > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  font-weight: 600;
}

.cta-inner .button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-left: 40px;
}

.cta-orbit {
  position: absolute;
  top: -160px;
  right: 4%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.cta-orbit i {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
}

.cta-orbit i:nth-child(2) { inset: 32%; }
.cta-orbit i:nth-child(3) { inset: 48%; background: rgba(255,255,255,.12); }

.site-footer {
  padding-top: 90px;
  color: #c4d3cc;
  background: var(--forest-2);
}

.footer-top {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.footer-about p {
  max-width: 420px;
  margin: 28px 0;
  color: #94aa9f;
  font-size: .87rem;
}

.footer-about > a {
  display: inline-flex;
  gap: 9px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
}

.footer-about > a svg {
  width: 16px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav span {
  margin-bottom: 8px;
  color: var(--white);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #91a69c;
  font-size: .78rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.support-note {
  display: grid;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  grid-template-columns: 140px 1fr;
  gap: 30px;
}

.support-note strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.support-note p {
  max-width: 850px;
  margin: 0;
  color: #80978c;
  font-size: .74rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 25px 0 35px;
  color: #72887d;
  font-size: .68rem;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.cookie-banner {
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  display: none;
  align-items: center;
  width: min(520px, calc(100% - 44px));
  padding: 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  gap: 20px;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: #abc0b6;
  font-size: .75rem;
}

.cookie-banner .button {
  min-height: 42px;
}

/* Interior pages */
.page-hero {
  position: relative;
  min-height: 570px;
  padding: 130px 0 80px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--spectral-a), var(--spectral-b), var(--spectral-c));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #91ab9f;
  font-size: .7rem;
}

.breadcrumb b {
  color: #d7e3dd;
  font-weight: 600;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin-top: 95px;
}

.page-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.3vw, 6.5rem);
  font-weight: 600;
}

.page-hero-content > p:last-child {
  max-width: 690px;
  margin: 0;
  color: #b9cbc2;
  font-size: 1.06rem;
}

.page-hero-orbit {
  position: absolute;
  top: 50%;
  right: -9vw;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(139, 207, 117, .15);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 7vw rgba(139,207,117,.025), 0 0 0 15vw rgba(139,207,117,.018);
}

.content-section {
  min-height: 520px;
}

.content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 110px;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  font-weight: 600;
}

.prose h2:not(:first-child) {
  margin-top: 65px;
}

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

.prose .lead,
.lead {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}

.prose a {
  color: var(--tomato);
  text-decoration: underline;
}

.content-aside {
  position: sticky;
  top: 115px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.content-aside > span {
  display: block;
  margin-bottom: 18px;
  color: var(--tomato);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.content-aside dl {
  display: grid;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 95px 1fr;
  gap: 12px;
}

.content-aside dt {
  color: var(--muted);
  font-size: .72rem;
}

.content-aside dd {
  margin: 0;
  font-size: .8rem;
  font-weight: 600;
}

.content-aside h3 {
  font-size: 1.35rem;
}

.content-aside p {
  color: var(--muted);
  font-size: .82rem;
}

.check-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  gap: 13px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 22px;
  color: var(--leaf);
}

.check-list span {
  font-size: .84rem;
  font-weight: 600;
}

.index-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.index-card {
  display: grid;
  align-items: center;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: 45px 1fr 24px;
  gap: 15px;
  transition: .25s var(--ease);
}

.index-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.index-card > span {
  color: #9ea7a2;
  font-size: .68rem;
}

.index-card b {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.index-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.index-card > svg {
  width: 20px;
}

.work-list,
.timeline {
  max-width: 1040px;
  margin-inline: auto;
}

.work-row {
  display: grid;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 180px 1fr 40px;
  gap: 50px;
}

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

.work-row > div > b {
  display: block;
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.work-row > div > i {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--line);
}

.work-row > div > i::after {
  content: "";
  display: block;
  width: var(--p);
  height: 100%;
  background: linear-gradient(90deg, var(--leaf), var(--tomato));
}

.work-row section span {
  color: var(--tomato);
  font-size: .7rem;
  font-weight: 700;
}

.work-row section h2 {
  margin: 6px 0 10px;
  font-size: 1.7rem;
}

.work-row section p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.work-row > small {
  color: #a0a9a4;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 141px;
  width: 1px;
  background: linear-gradient(var(--leaf), var(--tomato));
}

.timeline-item {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 100px 82px 1fr;
  gap: 0;
}

.timeline-item time {
  color: var(--tomato);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-item > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: 20px;
  border: 7px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: .55rem;
  place-items: center;
}

.timeline-item h2 {
  margin: 0 0 10px;
  font-size: 1.75rem;
}

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

.research-lead {
  display: grid;
  align-items: center;
  margin-bottom: 60px;
  grid-template-columns: 220px 1fr;
  gap: 50px;
}

.research-lead > div {
  padding: 25px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.research-lead strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.research-lead span {
  color: #a9beb4;
  font-size: .7rem;
}

.research-lead p {
  margin: 0;
}

.science-note {
  margin-top: 35px;
  padding: 25px;
  border-left: 3px solid var(--spectral-a);
  border-radius: 0 12px 12px 0;
  background: #f6eddc;
}

.science-note b {
  color: #8b5d18;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.science-note p {
  margin: 7px 0 0;
  color: #705b39;
  font-size: .86rem;
}

.tech-grid--page {
  grid-template-columns: repeat(3, 1fr);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.person-card > div {
  position: relative;
  height: 400px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86);
  transition: .5s var(--ease);
}

.person-card:hover img {
  transform: scale(1.025);
}

.person-card > div span {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(13, 44, 33, .75);
  font-size: .62rem;
  place-items: center;
  backdrop-filter: blur(8px);
}

.person-card small {
  color: var(--tomato);
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.person-card h2 {
  margin: 7px 0 9px;
  font-size: 1.35rem;
}

.person-card p {
  color: var(--muted);
  font-size: .8rem;
}

.partner-grid--page {
  margin-top: 80px;
}

.news-page {
  background: var(--cream);
}

.news-tools {
  display: grid;
  margin-bottom: 22px;
  grid-template-columns: 1fr 220px;
  gap: 15px;
}

.news-tools label {
  display: block;
}

.news-tools label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-tools input,
.news-tools select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--white);
}

.news-tools input:focus,
.news-tools select:focus {
  border-color: var(--leaf);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: .72rem;
}

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

.result-count {
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: .75rem;
}

.news-card.is-hidden {
  display: none;
}

.empty-state {
  display: none;
  padding: 60px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.article-page {
  max-width: 850px;
  padding-top: 90px;
  padding-bottom: 110px;
}

.article-page header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.article-page time {
  color: var(--muted);
  font-size: .75rem;
}

.article-page .lead {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.article-content {
  padding: 35px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-page footer {
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
}

.announcement-list {
  border-top: 1px solid var(--line);
}

.announcement-list article {
  display: grid;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 50px 1fr 25px;
  gap: 20px;
}

.announcement-list time {
  color: var(--tomato);
  font-size: .72rem;
  font-weight: 700;
}

.announcement-list > article > span {
  color: #9ea7a2;
  font-size: .68rem;
}

.announcement-list h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.announcement-list p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.announcement-list svg {
  width: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 4;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(7, 27, 20, .82));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.gallery-item figcaption b {
  color: #c5d9cf;
  font-size: .65rem;
}

.gallery-item figcaption span {
  font-weight: 700;
  text-align: right;
}

.gallery-item figcaption small {
  display: block;
  margin-top: 4px;
  color: #bdcec6;
  font-size: .67rem;
  font-weight: 400;
}

.faq-list {
  max-width: 920px;
  margin-inline: auto;
}

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

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

.faq summary {
  display: grid;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
  grid-template-columns: 55px 1fr 30px;
  gap: 15px;
}

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

.faq summary span {
  color: #a0aaa5;
  font-size: .65rem;
}

.faq summary i {
  color: var(--tomato);
  font-size: 1.4rem;
  font-style: normal;
  transition: .2s;
}

.faq[open] summary i {
  transform: rotate(45deg);
}

.faq p {
  max-width: 730px;
  margin: -5px 0 28px 70px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.contact-card {
  padding: 42px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.contact-card h2 {
  margin: 70px 0 25px;
  font-size: 2.5rem;
}

.contact-card > p:not(.eyebrow) {
  color: #aec2b8;
  font-size: .86rem;
}

.contact-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 700;
}

.contact-card > a svg {
  width: 18px;
}

.contact-options h2 {
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.contact-options > div {
  border-top: 1px solid var(--line);
}

.contact-options > div a {
  display: grid;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  grid-template-columns: 45px 1fr 20px;
}

.contact-options > div a span {
  color: #a1aaa5;
  font-size: .65rem;
}

.contact-options > div a svg {
  width: 17px;
}

.contact-options > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: .75rem;
}

.not-found {
  display: grid;
  min-height: 720px;
  padding: 150px 20px 80px;
  background: var(--cream);
  place-items: center;
  text-align: center;
}

.not-found > div > span {
  color: var(--tomato);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.not-found h1 {
  margin: 20px 0 30px;
  font-size: clamp(3rem, 7vw, 6rem);
}

/* Compact multilingual portal pages */
.portal-intro {
  background: var(--paper);
}

.portal-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr .72fr;
  gap: 90px;
}

.portal-intro-copy h2 {
  margin-bottom: 28px;
  font-weight: 600;
}

.portal-intro-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.portal-facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.portal-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.portal-facts span {
  color: var(--muted);
  font-size: .76rem;
}

.portal-facts strong {
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: right;
}

.portal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portal-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.portal-card > span {
  color: var(--tomato);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portal-card h3 {
  margin: 55px 0 14px;
  font-size: 1.5rem;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.portal-card > svg {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 24px;
  color: var(--leaf);
}

.portal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.portal-list article {
  display: grid;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
}

.portal-list article > span {
  color: #98a39d;
  font-size: .68rem;
}

.portal-list h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.portal-list p {
  max-width: 750px;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.portal-list .status {
  white-space: nowrap;
}

.language-note {
  padding: 18px 20px;
  border-radius: 12px;
  color: #735a34;
  background: #f4ead7;
  font-size: .78rem;
}
