:root {
  color-scheme: light;
  --paper: #f1e7d4;
  --paper-deep: #e7d7bb;
  --surface: #f8f1e3;
  --surface-green: #dfe7d8;
  --surface-blue: #dde5e5;
  --surface-rust: #ead4c7;
  --ink: #183128;
  --body: #46524c;
  --muted: #6e766f;
  --line: rgb(24 49 40 / .19);
  --line-strong: rgb(24 49 40 / .42);
  --green: #174438;
  --green-hover: #0f352b;
  --cobalt: #2457a7;
  --rust: #b65235;
  --sand: #c8a879;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "DM Mono", monospace;
  --radius: 16px;
  --shadow: 0 22px 50px rgb(93 70 37 / .12);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 50;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  content: "";
  opacity: .032;
  pointer-events: none;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-inline: 44px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(241 231 212 / .91);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%);
}

.nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
}

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

.brand-logo {
  display: block;
  width: 158px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.footer-logo {
  width: 165px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 32px);
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a,
footer a {
  transition: color 180ms ease;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 0 17px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 100ms var(--ease-out);
}

.nav-cta:active,
.button:active {
  transform: scale(.97);
  transition-duration: 150ms;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(241 231 212 / .99) 0%,
    rgb(241 231 212 / .95) 34%,
    rgb(241 231 212 / .56) 52%,
    rgb(241 231 212 / .12) 68%,
    transparent 78%
  );
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100dvh - 146px);
  align-items: center;
  padding-top: 54px;
  padding-bottom: 56px;
}

.hero-copy {
  position: relative;
  width: min(1120px, 86%);
  padding-bottom: 12px;
}

.kicker,
.section-label {
  color: var(--green);
  font-family: var(--mono);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: .075em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  margin-top: 19px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.75vw, 44px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-arrow {
  display: inline-block;
  margin-left: .14em;
  color: var(--rust);
  font-family: var(--sans);
  font-size: .58em;
  font-style: normal;
  vertical-align: .13em;
}

.hero h1 em,
.hero h1 strong {
  display: inline-block;
  padding-bottom: .06em;
  margin-bottom: -.06em;
  color: var(--cobalt);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.lead {
  max-width: 640px;
  margin-top: 23px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 100ms var(--ease-out);
}

.primary {
  color: #f9f3e7;
  background: var(--green);
  box-shadow: 0 10px 24px rgb(23 68 56 / .18);
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fact-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-strong);
  background: rgb(241 231 212 / .74);
}

.fact-row {
  display: grid;
  min-height: 82px;
  grid-template-columns: .75fr 1fr 1.45fr;
}

.fact-row span {
  display: flex;
  align-items: center;
  padding: 19px 24px;
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.fact-row span:first-child {
  padding-left: 0;
}

.fact-row span + span {
  border-left: 1px solid var(--line);
}

.section-note {
  color: var(--green);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  line-height: 1.3;
}

.lab-copy h2,
.program-head h2,
.outcomes-head h2,
.founders-intro h2,
.faq-head h2,
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .99;
}

.program-head > p:not(.section-note),
.outcomes-head > p:last-child,
.cta-inner > p:not(.section-note) {
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.item-index,
.step-number {
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.outcome h3,
.program-list h3,
.person h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.025em;
}

.lab-scene {
  position: relative;
  display: flex;
  min-height: 920px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .94) 38%, rgb(241 231 212 / .42) 61%, transparent 76%),
    url("images/illustrations-v2/lab-background-overhead.webp");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}

.lab-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 96px;
}

.lab-copy {
  max-width: 720px;
}

.lab-copy h2 {
  max-width: 610px;
  font-size: clamp(31px, 3.6vw, 49px);
}

.lab-copy > p:not(.section-note) {
  max-width: 610px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

.lab-steps {
  max-width: 610px;
  margin-top: 24px;
  list-style: none;
}

.lab-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line-strong);
  padding: 15px 0 17px;
}

.lab-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.lab-step-number {
  padding-top: .33em;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
}

.lab-steps p {
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.lab-copy p.lab-descriptor {
  margin-top: 28px;
  border: 1px solid rgb(24 49 40 / .22);
  border-left: 4px solid var(--cobalt);
  border-radius: 0 14px 14px 0;
  padding: 21px 24px 23px;
  color: var(--ink);
  background: rgb(248 241 227 / .86);
  font-family: var(--serif);
  font-size: clamp(28px, 2.15vw, 32px);
  line-height: 1.23;
  box-shadow: 0 16px 34px rgb(93 70 37 / .09);
}

.lab-descriptor + p {
  margin-top: 18px;
}

.program-scene {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.program-scene::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .96) 59%, rgb(241 231 212 / .45) 77%, transparent 96%);
  content: "";
  pointer-events: none;
}

.program-route-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 3 / 2;
}

.program-route-art img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.program {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 120px;
}

.program-head {
  max-width: 760px;
}

.program-head h2 {
  margin-top: 17px;
  font-size: clamp(31px, 3.6vw, 49px);
}

.program-head > p:not(.section-note) {
  max-width: 720px;
  margin-top: 22px;
}

.program-head > p + p {
  margin-top: 13px;
}

.program-list {
  display: grid;
  max-width: 1050px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 0 64px;
  margin-top: 46px;
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line-strong);
  padding: 23px 0 36px;
}

.program-list h3 {
  font-size: 29px;
  line-height: 1.08;
}

.program-list p {
  max-width: 560px;
  margin-top: 11px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.outcomes {
  padding: 126px 0 136px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 12%, rgb(182 82 53 / .08), transparent 27rem),
    var(--paper-deep);
}

.outcomes-head {
  max-width: 1080px;
}

.outcomes-head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.1vw, 43px);
}

.outcomes-head > p:last-child {
  max-width: 770px;
  margin-top: 26px;
}

.outcome-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 76px;
}

.outcome {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgb(248 241 227 / .76);
}

.outcome-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
}

.outcome-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outcome > div {
  padding: 8px 10px 8px 0;
}

.outcome h3 {
  margin-top: 13px;
  font-size: 29px;
  line-height: 1.06;
}

.outcome p {
  margin-top: 11px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.66;
}

.outcome-pilot {
  grid-column: 1 / 8;
}

.outcome-method {
  grid-column: 8 / 13;
  background: rgb(223 231 216 / .8);
}

.outcome-backlog {
  grid-column: 1 / 8;
}

.outcome-plan {
  grid-column: 8 / 13;
}

.founders {
  padding: 128px 0;
  background:
    radial-gradient(circle at 86% 13%, rgb(36 87 167 / .07), transparent 24rem),
    var(--surface);
}

.founders-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(580px, 1.14fr);
  gap: clamp(72px, 9vw, 142px);
  align-items: start;
}

.founders-intro h2 {
  margin-top: 17px;
  font-size: clamp(30px, 3vw, 41px);
}

.people {
  display: grid;
  gap: 44px;
  padding-top: 8px;
}

.person {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
}

.portrait-wrap {
  position: relative;
  width: 140px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(.98);
}

.portrait-egor img {
  object-position: center 25%;
}

.portrait-kate img {
  object-position: center 20%;
}

.portrait-konstantin img {
  object-position: center 18%;
}

.portrait-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(24 49 40 / .12);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.person-copy {
  padding-top: 3px;
}

.person h3 {
  font-size: 34px;
  line-height: 1.04;
}

.role {
  margin-top: 8px;
  color: var(--cobalt);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.bio {
  max-width: 480px;
  margin-top: 17px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.68;
}

.bio a {
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-weight: 700;
}

.profile-link,
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.profile-link {
  margin-top: 17px;
}

.profile-link span,
.contact-links span {
  transition: transform 180ms var(--ease-out);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 136px);
  padding-top: 132px;
  padding-bottom: 136px;
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 116px;
}

.faq-head h2 {
  margin-top: 17px;
  font-size: clamp(29px, 2.75vw, 39px);
}

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

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

.faq summary {
  position: relative;
  padding: 25px 58px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

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

.faq summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  color: var(--cobalt);
  content: "+";
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding: 0 58px 28px 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.cta-scene {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .92) 35%, rgb(241 231 212 / .25) 62%, transparent 76%),
    url("images/illustrations-v2/cta-growth-garden.webp");
  background-position: center;
  background-size: cover;
}

.cta-inner {
  width: 100%;
  padding-top: 92px;
  padding-bottom: 96px;
}

.cta-inner h2 {
  max-width: 660px;
  margin-top: 17px;
  font-size: clamp(33px, 3.55vw, 49px);
}

.cta-inner > p:not(.section-note) {
  max-width: 590px;
  margin-top: 23px;
}

.cta-inner .button {
  margin-top: 28px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
}

footer {
  border-top: 1px solid var(--line-strong);
  padding: 32px 0;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: center;
  color: var(--body);
  font-size: 15px;
}

.footer-row > p {
  justify-self: end;
  text-align: right;
}

.footer-row .brand {
  color: var(--ink);
}

.button:focus-visible,
.nav-cta:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}

.js .hero-art.reveal {
  opacity: 0;
  transform: scale(1.025);
}

.js .hero-art.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
  transition-duration: 900ms;
}

.js .hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.js .hero-copy.reveal > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.js .hero-copy.reveal.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

.js .hero-copy.reveal.is-visible > :nth-child(1) {
  transition-delay: 100ms;
}

.js .hero-copy.reveal.is-visible > :nth-child(2) {
  transition-delay: 160ms;
}

.js .hero-copy.reveal.is-visible > :nth-child(3) {
  transition-delay: 220ms;
}

.js .hero-copy.reveal.is-visible > :nth-child(4) {
  transition-delay: 280ms;
}

@media (min-width: 701px) {
  .js .program-list li:nth-child(even).is-visible,
  .js .outcome-board .outcome:nth-child(even).is-visible {
    transition-delay: 60ms;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover,
  footer a:hover {
    color: var(--cobalt);
  }

  .nav-cta:hover {
    color: var(--surface);
    background-color: var(--green);
  }

  .primary:hover {
    background-color: var(--green-hover);
  }

  .profile-link:hover span,
  .contact-links a:hover span {
    transform: translate3d(3px, -2px, 0);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: clamp(26px, 3.6vw, 40px);
  }

  .outcome {
    grid-template-columns: 155px minmax(0, 1fr);
  }

  .outcome h3 {
    font-size: 26px;
  }

  .founders-layout {
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .wrap {
    padding-inline: 32px;
  }

  .hero {
    min-height: calc(100dvh - 72px);
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgb(241 231 212 / .99) 0%,
      rgb(241 231 212 / .96) 42%,
      rgb(241 231 212 / .62) 59%,
      rgb(241 231 212 / .08) 78%,
      transparent 100%
    );
  }

  .hero-grid {
    min-height: calc(100dvh - 146px);
    align-items: flex-start;
    padding-top: 68px;
    padding-bottom: 250px;
  }

  .hero-copy {
    width: 100%;
    max-width: 740px;
  }

  .hero-art {
    width: 100%;
    height: 100%;
  }

  .hero-art img {
    object-position: 66% center;
  }

  .lab-scene {
    min-height: 840px;
    background-image:
      linear-gradient(90deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .93) 52%, rgb(241 231 212 / .18) 88%),
      url("images/illustrations-v2/lab-background-overhead.webp");
    background-position: center, right bottom;
    background-size: cover, auto 76%;
  }

  .lab-copy {
    max-width: 570px;
  }

  .program-list {
    gap: 0 42px;
  }

  .program-route-art {
    right: -36vw;
    opacity: .72;
  }

  .outcome {
    grid-column: span 6;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .founders-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .founders-intro {
    max-width: 760px;
  }

  .faq {
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    gap: 54px;
  }
}

@media (max-width: 700px) {
  .wrap {
    padding-inline: 20px;
  }

  .site-nav::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 96px;
    background: var(--paper);
    content: "";
    pointer-events: none;
  }

  .nav-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-logo {
    width: 125px;
  }

  .footer-logo {
    width: 143px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .hero-grid {
    padding-top: 48px;
    padding-bottom: 260px;
  }

  .hero h1 {
    margin-top: 16px;
    font-size: clamp(19px, 5.1vw, 24px);
    line-height: 1.14;
  }

  .lead {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    inset: auto 0 0;
    height: 72%;
  }

  .hero-art img {
    object-position: 72% center;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .fact-row span,
  .fact-row span:first-child {
    padding: 16px 0;
    font-size: 15px;
  }

  .fact-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lab-copy h2,
  .program-head h2,
  .outcomes-head h2,
  .founders-intro h2,
  .faq-head h2,
  .cta-inner h2 {
    font-size: 31px;
  }

  .lab-scene {
    min-height: 900px;
    align-items: flex-start;
    background-image:
      linear-gradient(180deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .96) 44%, rgb(241 231 212 / .68) 72%, rgb(241 231 212 / .18) 88%, transparent 100%),
      url("images/illustrations-v2/lab-background-overhead.webp");
    background-position: center, 76% bottom;
    background-size: cover, auto 57%;
  }

  .lab-inner {
    padding-top: 80px;
    padding-bottom: 340px;
  }

  .lab-steps p {
    font-size: 15px;
  }

  .lab-copy p.lab-descriptor {
    font-size: 24px;
  }

  .lab-descriptor + p {
    border-radius: 12px;
    padding: 14px 16px;
    background: rgb(248 241 227 / .84);
    box-shadow: 0 12px 28px rgb(93 70 37 / .08);
  }

  .program {
    padding-top: 90px;
    padding-bottom: 108px;
  }

  .program-scene {
    background-image: none;
  }

  .program-scene::after {
    background: linear-gradient(90deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .94) 62%, rgb(241 231 212 / .58) 79%, rgb(241 231 212 / .08) 100%);
  }

  .program-route-art {
    display: none;
  }

  .program-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
    margin-top: 40px;
  }

  .program-list li,
  .program-list li:nth-child(even) {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 13px;
    padding: 23px 0 38px;
    transform: none;
  }

  .program-list h3 {
    font-size: 26px;
  }

  .outcomes {
    padding: 88px 0 96px;
  }

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

  .outcome {
    grid-column: auto;
    grid-template-columns: 118px minmax(0, 1fr);
    padding: 13px;
  }

  .outcome h3 {
    font-size: 25px;
  }

  .founders {
    padding: 88px 0 96px;
  }

  .founders-layout {
    gap: 58px;
  }

  .person {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
  }

  .portrait-wrap {
    width: 112px;
  }

  .person h3 {
    font-size: 29px;
  }

  .bio {
    font-size: 13px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 92px;
    padding-bottom: 98px;
  }

  .faq-head {
    position: static;
  }

  .faq summary {
    padding-right: 42px;
    font-size: 22px;
  }

  .faq details p {
    padding-right: 14px;
  }

  .cta-scene {
    min-height: 850px;
    align-items: flex-start;
    background-image:
      linear-gradient(180deg, rgb(241 231 212 / .99) 0%, rgb(241 231 212 / .96) 43%, rgb(241 231 212 / .2) 68%, transparent 100%),
      url("images/illustrations-v2/cta-growth-garden.webp");
    background-position: center, right bottom;
    background-repeat: no-repeat;
    background-size: cover, auto 50%;
  }

  .cta-inner {
    padding-top: 82px;
    padding-bottom: 350px;
  }

  .contact-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-row > p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .wrap {
    padding-inline: 16px;
  }

  .nav-inner {
    gap: 8px;
  }

  .brand-logo {
    width: 99px;
  }

  .nav-cta {
    padding-inline: 8px;
    font-size: 8.5px;
  }

  .hero h1 {
    font-size: clamp(13px, 4.15vw, 17px);
    letter-spacing: -.045em;
  }

  .lab-steps {
    margin-top: 20px;
  }

  .lab-steps li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .lab-steps p {
    font-size: 15px;
  }

  .person {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .portrait-wrap {
    width: 92px;
  }

  .person h3 {
    font-size: 27px;
  }

  .role {
    font-size: 9px;
  }

  .outcome {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

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

  .js .reveal,
  .js .hero-art.reveal,
  .js .hero-copy.reveal,
  .js .hero-copy.reveal > * {
    opacity: 1;
    transform: none;
    transition: opacity 180ms ease !important;
    transition-delay: 0ms !important;
  }

  .nav-cta:active,
  .button:active,
  .profile-link:hover span,
  .contact-links a:hover span {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
