:root {
  --paper: #f7f1e6;
  --paper-deep: #eee6d8;
  --paper-soft: #fbf7ef;
  --ink: #11110f;
  --ink-soft: #3d3b36;
  --muted: #716b61;
  --blue: #034fc5;
  --blue-deep: #003b90;
  --blue-soft: rgba(3, 79, 197, 0.10);
  --orange: #ef6a2a;
  --orange-soft: rgba(239, 106, 42, 0.12);
  --line: rgba(17, 17, 15, 0.14);
  --line-blue: rgba(3, 79, 197, 0.72);
  --shadow: 0 28px 90px rgba(48, 37, 16, 0.10);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --max: none;
  --page-pad: clamp(18px, 3vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 106, 42, 0.06), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(3, 79, 197, 0.06), transparent 30rem),
    linear-gradient(180deg, var(--paper-soft), var(--paper) 42%, #f3eadc 100%);
  font-family: var(--serif);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 10px 10px, rgba(17, 17, 15, 0.045) 0.7px, transparent 0.8px),
    radial-gradient(circle at 30px 35px, rgba(17, 17, 15, 0.032) 0.6px, transparent 0.8px);
  background-size: 54px 54px, 72px 72px;
  mix-blend-mode: multiply;
  z-index: -1;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 18px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--page-pad) 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(247, 241, 230, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--line-blue);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: min(260px, 34vw);
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.3vw, 34px);
  font-size: 17px;
}
.site-nav a {
  position: relative;
  color: var(--ink);
  padding: 8px 0;
  white-space: nowrap;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
  border: 2px solid var(--blue);
  color: var(--blue) !important;
  padding: 12px 22px !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-toggle { display: none; }

.section-pad {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 8vw, 118px) var(--page-pad);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 500px;
  font-size: clamp(58px, 7.2vw, 94px);
  line-height: 0.99;
}
h2 {
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1.02;
}
h3 {
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
}

.blue-rule {
  width: 180px;
  height: 3px;
  margin: 32px 0 30px;
  background: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: 0.78fr 1.45fr;
  gap: clamp(28px, 4.6vw, 72px);
  align-items: center;
  padding-top: clamp(68px, 7vw, 95px);
  padding-bottom: 56px;
}
.hero-lede {
  max-width: 470px;
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--ink);
}
.hero-body {
  max-width: 470px;
  margin-top: 28px;
  font-size: clamp(18px, 1.45vw, 21px);
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 26px;
  border: 2px solid var(--blue);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.button span { margin-left: 12px; }
.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 79, 197, 0.16);
}
.button.ghost { border-color: rgba(3, 79, 197, 0.36); }
.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.hero-visual {
  min-width: 0;
  margin-top: -16px;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 24px 44px rgba(42, 38, 29, 0.09));
}

.signal-band {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--page-pad) 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.signal-band > div {
  min-height: 132px;
  padding: 4px 34px 0;
  border-right: 1px solid var(--line);
}
.signal-band > div:first-child { padding-left: 0; }
.signal-band > div:last-child { border-right: 0; padding-right: 0; }
.signal-band span {
  display: block;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}
.signal-band strong {
  display: block;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.signal-band p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  max-width: 280px;
}

.section-heading.center {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-heading.center p:not(.eyebrow) {
  max-width: 830px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.platform-section { border-bottom: 1px solid var(--line); }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platform-card {
  padding: 42px clamp(28px, 3.5vw, 56px) 48px;
  border-right: 1px solid var(--line);
}
.platform-card:last-child { border-right: 0; }
.platform-card p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
}
.card-art {
  width: 190px;
  height: 138px;
  margin-bottom: 32px;
  position: relative;
}
.scatter-art::before,
.scatter-art::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: rgba(17,17,15,0.18);
}
.scatter-art::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}
.scatter-art span {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  top: 22px;
  filter: blur(0.15px);
  opacity: 0.86;
}
.scatter-art span:first-child {
  left: 30px;
  background: radial-gradient(circle, rgba(3,79,197,0.84) 0 2px, transparent 2.5px);
  background-size: 8px 8px;
}
.scatter-art span:last-child {
  right: 18px;
  background: radial-gradient(circle, rgba(239,106,42,0.82) 0 2px, transparent 2.5px);
  background-size: 8px 8px;
}
.contour-art {
  background:
    radial-gradient(ellipse at 52% 50%, transparent 0 19%, rgba(3,79,197,0.10) 20% 21%, transparent 22% 28%, rgba(3,79,197,0.20) 29% 30%, transparent 31% 37%, rgba(3,79,197,0.28) 38% 39%, transparent 40% 46%, rgba(3,79,197,0.22) 47% 48%, transparent 49%),
    radial-gradient(ellipse at 38% 52%, transparent 0 20%, rgba(3,79,197,0.24) 21% 22%, transparent 23% 29%, rgba(3,79,197,0.16) 30% 31%, transparent 32%);
  border-radius: 48% 52% 46% 54%;
  opacity: 0.92;
}
.ribbon-art svg {
  width: 190px;
  height: 138px;
  overflow: visible;
}
.ribbon-art path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.74;
}
.ribbon-art path.accent {
  stroke: var(--orange);
  stroke-width: 6;
  opacity: 0.95;
}

.science-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.science-text h2 { max-width: 520px; }
.science-copy {
  display: grid;
  gap: 24px;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}
.science-copy p {
  color: var(--ink-soft);
  font-size: clamp(19px, 1.7vw, 23px);
}

.programs-section {
  border-bottom: 1px solid var(--line);
}
.programs-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.programs-block h2 { max-width: 540px; }
.lock-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 32px;
  align-items: center;
  padding-left: 58px;
  border-left: 1px solid var(--line);
}
.lock-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 19px;
  max-width: 480px;
}
.lock {
  width: 78px;
  height: 82px;
  position: relative;
  border: 4px solid var(--blue);
  border-radius: 9px;
  margin-top: 18px;
}
.lock::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -37px;
  height: 45px;
  border: 4px solid var(--blue);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.lock span {
  position: absolute;
  left: 50%;
  top: 38px;
  width: 10px;
  height: 22px;
  border-radius: 8px;
  background: var(--blue);
  transform: translateX(-50%);
}
.lock span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
}

.team-section { border-bottom: 1px solid var(--line); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
}
.team-card:last-child { border-right: 0; }
.portrait {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
  padding-bottom: 18px;
  color: rgba(17,17,15,0.42);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  background:
    radial-gradient(circle at 50% 36%, rgba(17,17,15,0.17) 0 20%, transparent 21%),
    radial-gradient(ellipse at 50% 88%, rgba(17,17,15,0.16) 0 35%, transparent 36%),
    linear-gradient(180deg, #f0e8d9, #e5dccb);
}
.team-card h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}
.team-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.join-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}
.join-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 20px;
  max-width: 500px;
}
.contact-meta {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 18px;
}
.join-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255,255,255,0.28);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.join-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.join-form .full,
.form-status,
.join-form button { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(17,17,15,0.24);
  background: rgba(247, 241, 230, 0.76);
  color: var(--ink);
  padding: 14px 14px;
  font: 17px var(--serif);
  border-radius: 0;
  outline: none;
}
textarea { resize: vertical; min-height: 126px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(3,79,197,0.10);
}
.honeypot { display: none !important; }
.form-status {
  border: 1px solid var(--line);
  background: var(--blue-soft);
  color: var(--ink);
  padding: 13px 14px;
  font-size: 16px;
}

.site-footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--page-pad) 42px;
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr auto;
  gap: 32px;
  align-items: start;
  border-top: 2px solid rgba(17, 17, 15, 0.54);
}
.footer-logo img { width: 220px; }
.footer-contact {
  display: grid;
  gap: 8px;
  padding-left: 42px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 18px;
}
.footer-contact a { color: var(--ink); }
.footer-links {
  display: flex;
  gap: 46px;
  color: var(--blue);
  font-size: 17px;
}
.copyright {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .button, .nav-cta { transition: none; }
}

@media (max-width: 1080px) {
  .site-header { align-items: flex-start; }
  .brand img { width: 220px; }
  .site-nav { gap: 18px; font-size: 16px; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  h1 { max-width: 820px; }
  .hero-visual { margin-top: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .team-card:last-child { border-bottom: 0; }
}

@media (max-width: 850px) {
  .site-header {
    padding: 14px 18px 12px;
    align-items: center;
  }
  .brand img { width: 196px; }
  .nav-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--blue);
    background: transparent;
    color: var(--blue);
    padding: 10px 12px;
    font-family: var(--sans);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
    position: relative;
  }
  .nav-toggle i::before { position: absolute; top: -6px; }
  .nav-toggle i::after { position: absolute; top: 6px; }
  .site-nav {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--paper-soft);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 6px; }
  .nav-cta { text-align: center; margin-top: 10px; }
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .signal-band { grid-template-columns: 1fr; padding: 0 20px; }
  .signal-band > div {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .signal-band > div:last-child { border-bottom: 0; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .platform-card:last-child { border-bottom: 0; }
  .science-section,
  .programs-block,
  .join-section { grid-template-columns: 1fr; }
  .science-copy,
  .lock-card {
    padding-left: 0;
    border-left: 0;
  }
  .lock-card { grid-template-columns: 72px 1fr; gap: 24px; }
  .lock { width: 58px; height: 62px; border-width: 3px; }
  .lock::before { left: 10px; right: 10px; top: -30px; height: 36px; border-width: 3px; }
  .team-card { grid-template-columns: 94px 1fr; }
  .portrait { width: 94px; }
  .join-form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { padding-left: 0; border-left: 0; }
  .footer-links { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 520px) {
  .brand img { width: 168px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  h2 { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .button { width: 100%; min-height: 58px; }
  .hero-visual { margin-left: -20px; margin-right: -20px; }
  .platform-card { padding-left: 20px; padding-right: 20px; }
  .card-art { width: 160px; height: 116px; }
  .team-card { grid-template-columns: 1fr; }
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 84px 28px 120px;
}
.legal-main h1 {
  max-width: none;
  font-size: clamp(48px, 7vw, 78px);
}
.legal-main h2 {
  margin-top: 42px;
  font-size: 30px;
}
.legal-main p,
.legal-main li {
  color: var(--ink-soft);
  font-size: 18px;
}
.legal-main p { margin-top: 18px; }
.legal-main ul { margin-top: 18px; padding-left: 22px; }
.legal-main a { color: var(--blue); }
.company-details {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.company-details div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.company-details div:last-child { border-bottom: 0; }
.company-details dt {
  color: var(--blue);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.company-details dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
}


/* Visible inline landscape animation + spacing checks */
body { overflow-x: hidden; }
.hero-copy, .hero-visual, .science-text, .science-copy, .join-copy, .team-card > div:last-child { min-width: 0; }
.hero-visual-animated { position: relative; isolation: isolate; overflow: visible; }
.hero-visual-animated > img { position: relative; z-index: 1; width: 100%; height: auto; }
.landscape-motion { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.platform-card, .team-card, .join-form, .lock-card, .signal-band > div { min-width: 0; }
input, select, textarea { appearance: none; -webkit-appearance: none; }
textarea { line-height: 1.45; }
.site-nav a, .button, .nav-cta { text-underline-offset: 0.18em; }
@media (prefers-reduced-motion: reduce) { .landscape-motion, .bioai-orchestration { display: none; } }
@media (max-width: 850px) {
  .site-header { max-width: none; margin-top: 0; border-left: 0; border-right: 0; }
  .hero-visual { margin-top: 24px; }
  .join-form { align-self: start; }
  .company-details div { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 520px) {
  .hero-visual { margin-left: 0; margin-right: 0; }
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .join-form { padding-left: 20px; padding-right: 20px; }
  .footer-logo img { width: 180px; }
}



/* v4 layout fix: full-width canvas + first-view hero animation fit */
:root {
  --page-edge: clamp(22px, 5vw, 88px);
  --header-edge: clamp(20px, 4.4vw, 76px);
}

/* Use the full browser width instead of a centered/cropped max-width canvas. */
.site-header,
.section-pad,
.signal-band,
.site-footer {
  width: 100%;
  max-width: none;
}

.site-header {
  margin: 0;
  padding-left: var(--header-edge);
  padding-right: var(--header-edge);
}

.section-pad,
.signal-band,
.site-footer {
  padding-left: var(--page-edge);
  padding-right: var(--page-edge);
}

/* Keep the complete landing illustration inside the first viewport on desktop. */
.hero {
  min-height: calc(100svh - 92px);
  padding-top: clamp(24px, 3.6vw, 52px);
  padding-bottom: clamp(20px, 3vw, 42px);
  grid-template-columns: minmax(350px, 0.72fr) minmax(520px, 1.45fr);
  gap: clamp(28px, 4vw, 68px);
}

h1 {
  max-width: 560px;
  font-size: clamp(52px, 5.9vw, 86px);
}

.blue-rule {
  margin-top: 26px;
  margin-bottom: 24px;
}

.hero-body {
  margin-top: 20px;
}

.hero-actions {
  margin-top: 30px;
}

/* The overlay and base landscape now share the same fixed aspect-ratio box. */
.hero-visual {
  width: 100%;
  justify-self: end;
  margin-top: 0;
}

.hero-visual-animated {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, calc(min(60svh, 620px) * 1.75));
  aspect-ratio: 980 / 560;
  margin-left: auto;
  margin-right: 0;
}

.hero-visual-animated > img,
.hero-visual-animated > .landscape-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual-animated > img {
  z-index: 1;
}

.hero-visual-animated > .landscape-motion {
  z-index: 2;
  pointer-events: none;
}

/* Prevent old overlay rules from allowing visual overflow beyond the artboard. */
.landscape-motion {
  overflow: hidden;
}

/* Full-width sections should still have comfortable internal rhythm. */
.platform-grid,
.team-grid {
  width: 100%;
}

.join-form {
  width: 100%;
}

/* Large screens: let the composition breathe without side cropping. */
@media (min-width: 1500px) {
  :root {
    --page-edge: clamp(72px, 6vw, 128px);
    --header-edge: clamp(56px, 5vw, 112px);
  }

  h1 {
    font-size: clamp(68px, 5.2vw, 96px);
  }

  .hero-visual-animated {
    width: min(100%, calc(min(64svh, 700px) * 1.75));
  }
}

/* Tablet: stack the hero cleanly and keep the full animation together. */
@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: clamp(34px, 6vw, 70px);
    padding-bottom: clamp(38px, 7vw, 76px);
  }

  .hero-visual {
    justify-self: center;
  }

  .hero-visual-animated {
    width: min(100%, 980px);
    margin: 10px auto 0;
  }

  h1 {
    max-width: 860px;
    font-size: clamp(52px, 9vw, 84px);
  }
}

/* Mobile: remove side-crop impression and keep the landscape fully visible. */
@media (max-width: 850px) {
  :root {
    --page-edge: clamp(18px, 5vw, 28px);
    --header-edge: clamp(16px, 5vw, 24px);
  }

  .site-header {
    max-width: none;
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
  }

  .section-pad {
    padding-top: clamp(52px, 9vw, 78px);
    padding-bottom: clamp(52px, 9vw, 78px);
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .hero-visual {
    margin-top: 18px;
  }

  .hero-visual-animated {
    width: 100%;
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(42px, 12vw, 62px);
    max-width: 100%;
  }

  .hero-lede {
    font-size: clamp(18px, 4.6vw, 22px);
  }

  .hero-body {
    font-size: clamp(17px, 4.4vw, 20px);
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 26px;
  }
}

@media (max-width: 520px) {
  .hero-visual {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-visual-animated {
    width: 100%;
    aspect-ratio: 980 / 560;
  }

  .button {
    min-height: 56px;
  }
}


/* v5 typography + Bio-AI motion polish */
:root {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.55;
}

.site-nav,
.button,
input,
select,
textarea,
.signal-band strong,
.signal-band p,
.platform-card p,
.science-copy p,
.lock-card p,
.team-card p,
.join-copy p,
.footer-contact,
.footer-links,
.legal-main p,
.legal-main li,
.company-details dd {
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-body);
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 590px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.16;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
}

.blue-rule {
  width: 138px;
  height: 2px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.hero-lede {
  max-width: 540px;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.45;
}

.hero-body {
  max-width: 540px;
  margin-top: 16px;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 26px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 650;
}

.site-nav {
  font-size: 15px;
}

.nav-cta {
  padding: 11px 20px !important;
}

.section-heading.center p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.65;
}

.signal-band strong {
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 650;
  letter-spacing: 0;
}

.signal-band span {
  font-size: 13px;
}

.signal-band p,
.platform-card p,
.team-card p,
.form-status,
.copyright {
  font-size: 15px;
}

.science-copy p,
.lock-card p,
.join-copy p:not(.eyebrow) {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.team-card h3 {
  font-size: 20px;
  letter-spacing: 0;
}

.contact-meta,
.footer-contact,
.footer-links {
  font-size: 15px;
}

input,
select,
textarea {
  font: 15px var(--font-body);
}

.join-form label,
.company-details dt {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.legal-main h1 {
  font-size: clamp(36px, 4.8vw, 56px);
}

.legal-main h2 {
  font-size: 24px;
}

.legal-main p,
.legal-main li {
  font-size: 16px;
  line-height: 1.65;
}

.company-details dd {
  font-size: 17px;
  line-height: 1.55;
}

.hero-visual-animated > .bioai-orchestration {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.bioai-route,
.bioai-edge {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bioai-route {
  stroke: url(#signalGradient);
  stroke-width: 1.8;
  stroke-dasharray: 3 12;
  opacity: 0.72;
  animation: bioai-flow 10s linear infinite;
}

.bioai-route-primary {
  stroke-width: 2.2;
  opacity: 0.86;
}

.bioai-route-warm {
  stroke: rgba(239, 106, 42, 0.56);
  animation-duration: 12s;
}

.bioai-route-cool {
  stroke: rgba(3, 79, 197, 0.60);
  animation-duration: 8s;
}

.bioai-route-slow {
  animation-duration: 15s;
  opacity: 0.46;
}

.bioai-cluster {
  opacity: 0.84;
}

.bioai-edge {
  stroke: rgba(3, 79, 197, 0.44);
  stroke-width: 1.15;
  stroke-dasharray: 2 8;
  animation: bioai-flow 9s linear infinite reverse;
}

.bioai-node {
  fill: #ffffff;
  stroke: #034fc5;
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
  animation: bioai-node-pulse 4.8s ease-in-out infinite;
}

.bioai-node:nth-of-type(2n) {
  animation-delay: 0.9s;
}

.bioai-node:nth-of-type(3n) {
  stroke: #ef6a2a;
  animation-delay: 1.7s;
}

.bioai-readout {
  opacity: 0.54;
}

.bioai-readout rect {
  fill: rgba(3, 79, 197, 0.38);
  transform-origin: 716px center;
  animation: bioai-readout 6.5s ease-in-out infinite;
}

.bioai-readout rect:nth-child(2) { animation-delay: 0.5s; }
.bioai-readout rect:nth-child(3) { animation-delay: 1s; }
.bioai-readout rect:nth-child(4) { animation-delay: 1.5s; }

@keyframes bioai-flow {
  to { stroke-dashoffset: -180; }
}

@keyframes bioai-node-pulse {
  0%, 100% { opacity: 0.42; transform: scale(0.94); }
  45% { opacity: 1; transform: scale(1.14); }
}

@keyframes bioai-readout {
  0%, 100% { opacity: 0.24; transform: scaleX(0.54); }
  45% { opacity: 0.78; transform: scaleX(1); }
}

@media (min-width: 1500px) {
  h1 {
    font-size: clamp(48px, 4.1vw, 74px);
  }
}

@media (max-width: 1080px) {
  h1 {
    max-width: 820px;
    font-size: clamp(38px, 6.2vw, 60px);
  }
}

@media (max-width: 850px) {
  h1 {
    font-size: clamp(34px, 8.8vw, 48px);
  }

  .hero-lede {
    font-size: clamp(17px, 4vw, 20px);
  }

  .hero-body {
    font-size: 16px;
  }

  .site-nav {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  h2 {
    font-size: 30px;
  }

  .button {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bioai-route,
  .bioai-edge,
  .bioai-node,
  .bioai-readout rect {
    animation: none;
  }
}


/* v6 high-end tech company direction */
:root {
  --paper: #05070a;
  --paper-soft: #070b10;
  --paper-deep: #0d1118;
  --ink: #f7f9fc;
  --ink-soft: #c7d0de;
  --muted: #8793a3;
  --blue: #58a6ff;
  --blue-deep: #1f6feb;
  --blue-soft: rgba(88, 166, 255, 0.13);
  --orange: #ff8a4c;
  --orange-soft: rgba(255, 138, 76, 0.14);
  --green: #55d6a5;
  --line: rgba(214, 226, 244, 0.13);
  --line-blue: rgba(88, 166, 255, 0.40);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(135deg, #05070a 0%, #07111a 48%, #120f0b 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body::before {
  opacity: 0.72;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(88,166,255,0.08) 34%, transparent 46%),
    linear-gradient(22deg, transparent 0 58%, rgba(255,138,76,0.08) 70%, transparent 86%);
  mix-blend-mode: screen;
}

.skip-link,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  background: rgba(5, 7, 10, 0.74);
  border-bottom: 1px solid rgba(214, 226, 244, 0.12);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand img {
  width: min(194px, 30vw);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.brand {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.site-nav a {
  color: rgba(247, 249, 252, 0.82);
}

.site-nav a:not(.nav-cta)::after {
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.nav-cta,
.button {
  border-color: rgba(88, 166, 255, 0.55);
  color: #eaf4ff !important;
  background: rgba(88, 166, 255, 0.08);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 34px rgba(0,0,0,0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: #f7f9fc;
  color: #05070a !important;
  border-color: #f7f9fc;
}

.button.ghost {
  color: rgba(247,249,252,0.82) !important;
  border-color: rgba(214, 226, 244, 0.22);
  background: rgba(255,255,255,0.035);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255,255,255,0.10);
  border-color: rgba(247,249,252,0.46);
}

.hero {
  align-items: center;
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(420px, 0.86fr) minmax(540px, 1.14fr);
  gap: clamp(28px, 3.3vw, 54px);
  padding-top: clamp(22px, 3vw, 44px);
  padding-bottom: clamp(26px, 3.2vw, 46px);
}

.hero .eyebrow,
.section-heading .eyebrow,
.science-text .eyebrow,
.programs-block .eyebrow,
.join-copy .eyebrow {
  color: var(--green);
}

h1 {
  max-width: 650px;
  font-size: clamp(38px, 3.82vw, 56px);
  font-weight: 720;
  line-height: 1.03;
}

h2 {
  font-weight: 700;
}

.blue-rule {
  width: 164px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  box-shadow: 0 0 26px rgba(88, 166, 255, 0.34);
}

.hero-lede {
  color: rgba(247,249,252,0.92);
  font-size: clamp(18px, 1.35vw, 22px);
}

.hero-body {
  color: rgba(199, 208, 222, 0.84);
  line-height: 1.55;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-actions {
  margin-top: 20px;
}

.button {
  min-height: 46px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(214, 226, 244, 0.15);
  border-radius: 999px;
  color: rgba(247,249,252,0.78);
  background: rgba(255,255,255,0.045);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(85, 214, 165, 0.56);
}

.hero-visual-animated {
  border: 1px solid rgba(214, 226, 244, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(10, 16, 24, 0.92), rgba(12, 24, 34, 0.76) 52%, rgba(24, 15, 10, 0.78));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 34px 120px rgba(0,0,0,0.46), inset 0 1px 0 rgba(255,255,255,0.10);
}

.hero-visual-animated::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(214, 226, 244, 0.10);
  border-radius: 6px;
}

.hero-visual-animated::after {
  content: "LIVE INFERENCE MAP";
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 5;
  color: rgba(247,249,252,0.56);
  font: 700 10px/1 var(--font-body);
  letter-spacing: 0.22em;
}

.hero-visual-animated > img {
  opacity: 0.72;
  filter: saturate(1.28) contrast(1.08) brightness(0.92) drop-shadow(0 24px 44px rgba(0,0,0,0.22));
  mix-blend-mode: screen;
}

.landscape-motion {
  opacity: 0.82;
  mix-blend-mode: screen;
}

.hero-visual-animated > .bioai-orchestration {
  mix-blend-mode: screen;
  opacity: 0.96;
}

.bioai-route {
  stroke-width: 2.4;
  opacity: 0.92;
}

.bioai-edge {
  stroke: rgba(85, 214, 165, 0.48);
}

.bioai-node {
  fill: rgba(5,7,10,0.72);
  stroke: var(--green);
}

.bioai-node:nth-of-type(3n) {
  stroke: var(--orange);
}

.bioai-readout rect {
  fill: rgba(85, 214, 165, 0.42);
}

.signal-band,
.platform-section,
.science-section,
.programs-section,
.team-section,
.site-footer {
  border-color: rgba(214, 226, 244, 0.12);
}

.signal-band {
  background: rgba(255,255,255,0.025);
}

.signal-band > div {
  border-color: rgba(214, 226, 244, 0.11);
}

.signal-band span,
.footer-links,
.contact-meta,
.legal-main a,
.company-details dt {
  color: var(--blue);
}

.signal-band strong,
.platform-card h3,
.team-card h3,
.lock-card h3 {
  color: var(--ink);
}

.signal-band p,
.section-heading.center p:not(.eyebrow),
.platform-card p,
.science-copy p,
.lock-card p,
.team-card p,
.join-copy p:not(.eyebrow),
.footer-contact,
.copyright,
.legal-main p,
.legal-main li,
.company-details dd {
  color: var(--ink-soft);
}

.platform-grid,
.team-grid {
  gap: 14px;
  border: 0;
}

.platform-card,
.team-card,
.join-form,
.lock-card {
  border: 1px solid rgba(214, 226, 244, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.07);
}

.platform-card,
.team-card {
  border-right: 1px solid rgba(214, 226, 244, 0.12);
}

.platform-card:last-child,
.team-card:last-child {
  border-right: 1px solid rgba(214, 226, 244, 0.12);
}

.science-copy,
.footer-contact {
  border-color: rgba(214, 226, 244, 0.12);
}

.join-form {
  background: rgba(255,255,255,0.055);
}

input,
select,
textarea {
  border-color: rgba(214, 226, 244, 0.17);
  color: var(--ink);
  background: rgba(5, 7, 10, 0.52);
  border-radius: 8px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(88, 166, 255, 0.76);
  box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.13);
}

.portrait {
  color: rgba(247,249,252,0.54);
  background:
    linear-gradient(135deg, rgba(88,166,255,0.20), rgba(85,214,165,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025));
  border: 1px solid rgba(214, 226, 244, 0.12);
  border-radius: 8px;
}

.lock {
  border-color: var(--blue);
}

.lock::before {
  border-color: var(--blue);
}

.lock span,
.lock span::before {
  background: var(--blue);
}

.site-footer {
  background: rgba(3, 5, 8, 0.56);
}

.legal-main {
  max-width: 980px;
}

.company-details,
.company-details div {
  border-color: rgba(214, 226, 244, 0.13);
}

.section-pad {
  padding-top: clamp(62px, 6.5vw, 92px);
  padding-bottom: clamp(62px, 6.5vw, 92px);
}

.hero {
  padding-top: clamp(22px, 3vw, 44px);
  padding-bottom: clamp(26px, 3.2vw, 46px);
}

.legal-main {
  padding-top: clamp(64px, 7vw, 88px);
}

.legal-main h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(38px, 5.8vw, 54px);
  }
}

@media (max-width: 850px) {
  .site-header {
    background: rgba(5, 7, 10, 0.88);
  }

  .nav-toggle {
    color: var(--ink);
    border-color: rgba(214, 226, 244, 0.22);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
  }

  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    background: var(--ink);
  }

  .site-nav {
    background: rgba(5, 7, 10, 0.96);
    border-color: rgba(214, 226, 244, 0.12);
  }

  h1 {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.04;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 148px;
  }

  h1 {
    font-size: clamp(32px, 9.4vw, 42px);
  }

  .hero-proof span {
    min-height: 32px;
  }
}


/* v7 refined light tech-science direction */
:root {
  --paper: #f7fafc;
  --paper-soft: #ffffff;
  --paper-deep: #e8eef5;
  --ink: #101820;
  --ink-soft: #435061;
  --muted: #697789;
  --blue: #0b63ce;
  --blue-deep: #074b9e;
  --blue-soft: rgba(11, 99, 206, 0.09);
  --orange: #d96b38;
  --orange-soft: rgba(217, 107, 56, 0.12);
  --green: #1d9a72;
  --line: rgba(20, 31, 45, 0.12);
  --line-blue: rgba(11, 99, 206, 0.28);
  --shadow: 0 28px 90px rgba(20, 31, 45, 0.12);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 36, 58, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 36, 58, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 9% 12%, rgba(11, 99, 206, 0.10), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(29, 154, 114, 0.10), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 48%, #eef4f9 100%);
  background-size: 84px 84px, 84px 84px, auto, auto, auto;
}

body::before {
  opacity: 0.46;
  background:
    radial-gradient(circle at 8px 8px, rgba(16, 24, 32, 0.05) 0.7px, transparent 0.8px),
    radial-gradient(circle at 40px 44px, rgba(16, 24, 32, 0.04) 0.7px, transparent 0.8px);
  background-size: 72px 72px, 96px 96px;
  mix-blend-mode: multiply;
}

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(20, 31, 45, 0.10);
  box-shadow: 0 14px 40px rgba(20, 31, 45, 0.08);
}

.brand {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: min(212px, 30vw);
  filter: none;
}

.site-nav a {
  color: rgba(16, 24, 32, 0.78);
}

.site-nav a:not(.nav-cta)::after {
  background: var(--blue);
}

.nav-cta,
.button {
  color: var(--blue) !important;
  border: 1px solid rgba(11, 99, 206, 0.36);
  background: rgba(255,255,255,0.70);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 14px 30px rgba(20, 31, 45, 0.07);
}

.button.primary {
  color: #fff !important;
  border-color: var(--blue);
  background: var(--blue);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-deep);
  color: #fff !important;
  border-color: var(--blue-deep);
}

.button.ghost {
  color: var(--ink-soft) !important;
  border-color: rgba(20,31,45,0.18);
  background: rgba(255,255,255,0.58);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(11, 99, 206, 0.08);
  border-color: rgba(11, 99, 206, 0.28);
}

.hero {
  grid-template-columns: minmax(390px, 0.82fr) minmax(520px, 1.18fr);
  min-height: calc(100svh - 76px);
}

.hero .eyebrow,
.section-heading .eyebrow,
.science-text .eyebrow,
.programs-block .eyebrow,
.join-copy .eyebrow {
  color: var(--blue);
}

h1 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.02;
}

h2,
h3 {
  color: var(--ink);
}

.blue-rule {
  width: 150px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  box-shadow: none;
}

.hero-lede {
  color: var(--ink);
}

.hero-body {
  color: var(--ink-soft);
}

.hero-proof span {
  color: var(--ink-soft);
  border-color: rgba(20,31,45,0.12);
  background: rgba(255,255,255,0.70);
}

.hero-proof span::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(29,154,114,0.10);
}

.hero-visual-animated {
  display: none;
}

.scientific-visual {
  width: 100%;
  justify-self: end;
  margin: 0;
}

.tumor-immune-map {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(20,31,45,0.12));
}

.tumor-immune-map .map-bg {
  fill: rgba(255,255,255,0.74);
  stroke: rgba(20,31,45,0.13);
  stroke-width: 1.2;
}

.tumor-immune-map .map-grid path {
  fill: none;
  stroke: rgba(20,31,45,0.055);
  stroke-width: 1;
}

.tumor-immune-map text {
  font-family: var(--font-body);
  fill: var(--ink);
}

.legend text:first-child {
  font-size: 18px;
  font-weight: 760;
}

.legend text:last-child {
  font-size: 12px;
  fill: var(--muted);
}

.cell-label {
  font-size: 13px;
  font-weight: 760;
  fill: var(--ink-soft);
}

.micro-label,
.small-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: var(--muted);
}

.dendrite {
  fill: none;
  stroke: rgba(29,154,114,0.50);
  stroke-width: 7;
  stroke-linecap: round;
}

.receptor-line,
.mhc-head,
.tcr-head {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.receptor-line {
  stroke: rgba(36, 53, 76, 0.56);
  stroke-width: 4;
}

.mhc-head {
  stroke: #b95028;
  stroke-width: 3.2;
}

.tcr-head {
  stroke: #185a9d;
  stroke-width: 3.2;
}

.peptide {
  fill: #7b3fb4;
  stroke: #fff;
  stroke-width: 1.4;
}

.synapse path {
  fill: none;
  stroke: rgba(11,99,206,0.55);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: scientific-dash 5.2s linear infinite;
}

.synapse circle {
  stroke: rgba(11,99,206,0.46);
  stroke-width: 2;
}

.checkpoint-axis path {
  fill: none;
  stroke: rgba(217, 107, 56, 0.66);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  animation: scientific-dash 7.5s linear infinite reverse;
}

.checkpoint-axis circle {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 1.5;
}

.validation-readout path,
.evidence-flow path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 4 9;
}

.validation-readout path {
  stroke: rgba(29,154,114,0.48);
}

.validation-readout circle {
  fill: var(--green);
}

.evidence-flow path {
  stroke: rgba(11,99,206,0.40);
}

.evidence-flow circle {
  fill: var(--blue);
}

.analysis-panel rect:first-child {
  fill: rgba(255,255,255,0.82);
  stroke: rgba(20,31,45,0.12);
}

.analysis-panel text:first-of-type {
  font-size: 13px;
  font-weight: 760;
}

.rank-bars rect {
  fill: rgba(11,99,206,0.16);
}

.rank-bars rect:nth-child(2) {
  fill: rgba(29,154,114,0.20);
}

.rank-bars rect:nth-child(3) {
  fill: rgba(217,107,56,0.18);
}

.signal-band,
.platform-section,
.science-section,
.programs-section,
.team-section,
.site-footer {
  border-color: var(--line);
}

.signal-band {
  background: rgba(255,255,255,0.42);
}

.signal-band > div {
  border-color: var(--line);
}

.signal-band span,
.footer-links,
.contact-meta,
.legal-main a,
.company-details dt {
  color: var(--blue);
}

.signal-band p,
.section-heading.center p:not(.eyebrow),
.platform-card p,
.science-copy p,
.lock-card p,
.team-card p,
.join-copy p:not(.eyebrow),
.footer-contact,
.copyright,
.legal-main p,
.legal-main li,
.company-details dd {
  color: var(--ink-soft);
}

.platform-card,
.team-card,
.join-form,
.lock-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.66);
  box-shadow: 0 20px 60px rgba(20,31,45,0.07), inset 0 1px 0 rgba(255,255,255,0.78);
}

.platform-card,
.team-card,
.platform-card:last-child,
.team-card:last-child {
  border-right: 1px solid var(--line);
}

.science-copy,
.footer-contact {
  border-color: var(--line);
}

input,
select,
textarea {
  color: var(--ink);
  border-color: rgba(20,31,45,0.16);
  background: rgba(255,255,255,0.72);
}

.portrait {
  color: rgba(16,24,32,0.48);
  background:
    radial-gradient(circle at 50% 36%, rgba(16,24,32,0.12) 0 20%, transparent 21%),
    radial-gradient(ellipse at 50% 88%, rgba(16,24,32,0.10) 0 35%, transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(232,238,245,0.72));
  border-color: var(--line);
}

.site-footer {
  background: rgba(255,255,255,0.58);
}

.company-details,
.company-details div {
  border-color: var(--line);
}

@keyframes scientific-dash {
  to { stroke-dashoffset: -96; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .scientific-visual {
    justify-self: center;
  }

  h1 {
    font-size: clamp(38px, 6vw, 56px);
  }
}

@media (max-width: 850px) {
  .site-header {
    background: rgba(255,255,255,0.92);
  }

  .nav-toggle {
    color: var(--ink);
    border-color: rgba(20,31,45,0.16);
    background: rgba(255,255,255,0.78);
  }

  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    background: var(--ink);
  }

  .site-nav {
    background: rgba(255,255,255,0.96);
    border-color: var(--line);
  }

  .brand img {
    width: 174px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .brand img {
    width: 146px;
  }

  .tumor-immune-map {
    min-width: 0;
    transform: none;
  }

  .scientific-visual {
    padding-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .synapse path,
  .checkpoint-axis path {
    animation: none;
  }
}


/* v8 Isomorphic-inspired light editorial system, with static hero science */
:root {
  --paper: #eefcf3;
  --paper-soft: #f7fff9;
  --paper-deep: #dff5e9;
  --ink: #07120d;
  --ink-soft: #26352e;
  --muted: #647469;
  --blue: #176cb8;
  --blue-deep: #0c4f91;
  --blue-soft: rgba(23, 108, 184, 0.08);
  --orange: #dc7445;
  --orange-soft: rgba(220, 116, 69, 0.12);
  --green: #1f8f65;
  --line: rgba(7, 18, 13, 0.52);
  --line-blue: rgba(7, 18, 13, 0.52);
  --shadow: none;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 24%, rgba(126, 211, 180, 0.20), transparent 30rem),
    radial-gradient(circle at 10% 75%, rgba(23, 108, 184, 0.10), transparent 28rem),
    linear-gradient(180deg, #f2fff5 0%, #eefcf3 54%, #e8f7ef 100%);
  background-size: auto;
}

body::before {
  opacity: 0;
}

.site-header {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(242, 255, 245, 0.82);
  border-bottom: 1px solid rgba(7, 18, 13, 0.22);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(220px, 30vw);
}

.site-nav {
  gap: 0;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: var(--ink);
  border: 1px solid rgba(7, 18, 13, 0.56);
  border-right: 0;
  background: rgba(247,255,249,0.28);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.site-nav a:first-child {
  border-radius: 7px 0 0 7px;
}

.site-nav a:last-child {
  border-right: 1px solid rgba(7, 18, 13, 0.56);
  border-radius: 0 7px 7px 0;
}

.site-nav a:not(.nav-cta)::after {
  display: none;
}

.nav-cta {
  margin-left: 0;
  padding: 0 26px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(7, 18, 13, 0.56);
  background: rgba(247,255,249,0.28);
  box-shadow: none;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink) !important;
  background: rgba(255,255,255,0.52);
  border-color: var(--ink);
}

.hero {
  grid-template-columns: minmax(360px, 0.78fr) minmax(540px, 1.22fr);
  align-items: stretch;
  gap: 0;
  min-height: auto;
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.hero-copy,
.scientific-visual {
  border: 1px solid rgba(7, 18, 13, 0.58);
  background: rgba(247,255,249,0.18);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(440px, 52vw, 560px);
  padding: clamp(36px, 5vw, 66px);
  border-radius: 28px 0 0 28px;
}

.scientific-visual {
  display: grid;
  align-items: center;
  min-height: clamp(440px, 52vw, 560px);
  padding: clamp(24px, 4vw, 48px);
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.hero .eyebrow,
.section-heading .eyebrow,
.science-text .eyebrow,
.programs-block .eyebrow,
.join-copy .eyebrow {
  color: var(--ink-soft);
}

.eyebrow {
  letter-spacing: 0.16em;
}

h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(34px, 4.1vw, 62px);
  font-weight: 320;
  letter-spacing: -0.028em;
}

h3 {
  font-weight: 480;
}

.blue-rule {
  width: 116px;
  height: 1px;
  margin-top: 28px;
  margin-bottom: 28px;
  background: var(--ink);
}

.hero-lede {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 22px);
}

.hero-body {
  max-width: 560px;
  color: var(--ink-soft);
}

.hero-proof span {
  min-height: 34px;
  color: var(--ink-soft);
  border: 1px solid rgba(7,18,13,0.26);
  background: rgba(255,255,255,0.26);
  box-shadow: none;
}

.hero-proof span::before {
  background: var(--ink);
  box-shadow: none;
}

.button {
  min-height: 48px;
  color: var(--ink) !important;
  border: 1px solid rgba(7,18,13,0.60);
  border-radius: 7px;
  background: rgba(247,255,249,0.28);
  box-shadow: none;
}

.button.primary {
  color: var(--ink) !important;
  background: rgba(255,255,255,0.34);
  border-color: rgba(7,18,13,0.72);
}

.button.primary:hover,
.button.primary:focus-visible,
.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--ink) !important;
  background: rgba(255,255,255,0.62);
  border-color: var(--ink);
}

.hero-visual-animated {
  display: none !important;
}

.tumor-immune-map {
  filter: none;
}

.tumor-immune-map .map-bg {
  fill: rgba(255,255,255,0.28);
  stroke: rgba(7,18,13,0.30);
}

.tumor-immune-map .map-grid path {
  stroke: rgba(7,18,13,0.08);
}

.analysis-panel rect:first-child {
  fill: rgba(255,255,255,0.54);
  stroke: rgba(7,18,13,0.26);
}

.legend text:first-child {
  font-size: 17px;
  font-weight: 620;
}

.legend text:last-child,
.micro-label,
.small-label {
  fill: var(--muted);
}

.synapse path,
.checkpoint-axis path {
  animation: none !important;
}

.synapse circle,
.validation-readout circle,
.evidence-flow circle {
  display: none;
}

.signal-band {
  margin-top: 0;
  background: transparent;
  border-top: 1px solid rgba(7,18,13,0.38);
  border-bottom: 1px solid rgba(7,18,13,0.38);
}

.signal-band > div {
  border-color: rgba(7,18,13,0.26);
}

.signal-band span,
.footer-links,
.contact-meta,
.legal-main a,
.company-details dt {
  color: var(--ink);
}

.section-heading.center {
  max-width: 980px;
}

.platform-grid,
.team-grid {
  gap: 0;
  border: 1px solid rgba(7,18,13,0.38);
  border-radius: 24px;
  overflow: hidden;
}

.platform-card,
.team-card,
.join-form,
.lock-card {
  border: 0;
  border-right: 1px solid rgba(7,18,13,0.26);
  border-radius: 0;
  background: rgba(247,255,249,0.20);
  box-shadow: none;
}

.platform-card:last-child,
.team-card:last-child {
  border-right: 0;
}

.join-form {
  border: 1px solid rgba(7,18,13,0.38);
  border-radius: 24px;
}

input,
select,
textarea {
  border: 1px solid rgba(7,18,13,0.26);
  background: rgba(255,255,255,0.36);
  border-radius: 7px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(7,18,13,0.08);
}

.site-footer {
  background: transparent;
  border-top: 1px solid rgba(7,18,13,0.38);
}

.legal-main h1 {
  font-weight: 320;
  letter-spacing: -0.028em;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .scientific-visual {
    min-height: auto;
    border-radius: 24px;
  }

  .scientific-visual {
    border-left: 1px solid rgba(7,18,13,0.58);
    border-top: 0;
    border-radius: 0 0 24px 24px;
  }

  .hero-copy {
    border-radius: 24px 24px 0 0;
  }

  h1 {
    font-size: clamp(40px, 6.2vw, 58px);
  }
}

@media (max-width: 850px) {
  .site-header {
    background: rgba(242,255,245,0.92);
  }

  .site-nav {
    gap: 0;
    background: rgba(242,255,245,0.97);
    border: 1px solid rgba(7,18,13,0.38);
  }

  .site-nav a,
  .nav-cta {
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-toggle {
    border: 1px solid rgba(7,18,13,0.48);
    background: transparent;
    border-radius: 7px;
  }

  .hero-copy,
  .scientific-visual {
    padding: 28px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }
}


/* v10 no-illustration hero + partnerships/careers modules */
html {
  scroll-behavior: auto;
}

.hero {
  display: block;
  min-height: auto;
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(38px, 5vw, 72px);
}

.hero-copy {
  width: 100%;
  min-height: clamp(390px, 42vw, 520px);
  border: 1px solid rgba(7,18,13,0.58);
  border-radius: 28px;
  background: rgba(247,255,249,0.18);
  padding: clamp(34px, 5.4vw, 72px);
}

.hero-copy h1 {
  max-width: 1120px;
  font-size: clamp(48px, 6.2vw, 104px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 720px;
}

.hero-body {
  max-width: 720px;
}

.hero-visual,
.scientific-visual,
.abstract-field {
  display: none !important;
}

.partnerships-section,
.careers-section {
  border-bottom: 1px solid rgba(7,18,13,0.38);
}

.editorial-grid,
.jobs-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(7,18,13,0.38);
  border-radius: 24px;
  overflow: hidden;
}

.editorial-card,
.jobs-list article {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid rgba(7,18,13,0.26);
  background: rgba(247,255,249,0.20);
}

.editorial-card:last-child,
.jobs-list article:last-child {
  border-right: 0;
}

.editorial-card span,
.jobs-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-card p,
.jobs-list p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.jobs-list {
  grid-template-columns: 1fr;
}

.jobs-list article {
  display: grid;
  grid-template-columns: 160px minmax(220px, 0.7fr) 1fr;
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  border-right: 0;
  border-bottom: 1px solid rgba(7,18,13,0.26);
}

.jobs-list article:last-child {
  border-bottom: 0;
}

.jobs-list article p {
  margin-top: 0;
}

.jobs-list article h3 {
  font-size: clamp(20px, 2vw, 28px);
}

@media (max-width: 1080px) {
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card {
    border-right: 0;
    border-bottom: 1px solid rgba(7,18,13,0.26);
  }

  .editorial-card:last-child {
    border-bottom: 0;
  }

  .jobs-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 850px) {
  .hero-copy {
    padding: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 11vw, 74px);
  }
}

@media (max-width: 520px) {
  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }
}


/* v11 high-technical first viewport */
:root {
  --electric: #1f7bff;
  --teal: #0fbd91;
  --violet: #a85cff;
  --coral: #ff7b45;
  --lemon: #d7e85b;
}

body {
  background:
    linear-gradient(118deg, rgba(31,123,255,0.12) 0 18%, transparent 32%),
    linear-gradient(232deg, rgba(255,123,69,0.13) 0 14%, transparent 30%),
    radial-gradient(ellipse at 72% 14%, rgba(168,92,255,0.14), transparent 34rem),
    radial-gradient(ellipse at 12% 42%, rgba(15,189,145,0.16), transparent 32rem),
    linear-gradient(180deg, #f6fff8 0%, #edfdf3 48%, #eaf7f1 100%);
}

.site-header {
  background: rgba(247, 255, 249, 0.74);
}

.site-nav a,
.nav-cta {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255,255,255,0.68);
}

.hero {
  padding-top: clamp(36px, 4.6vw, 68px);
}

.hero-copy {
  --mx: 0px;
  --my: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(26px, 4vw, 70px);
  min-height: min(650px, calc(100svh - 160px));
  overflow: hidden;
  border-color: rgba(7,18,13,0.52);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.72), rgba(255,255,255,0.22) 43%, rgba(255,255,255,0.08)),
    linear-gradient(150deg, rgba(31,123,255,0.11), transparent 31%),
    linear-gradient(310deg, rgba(255,123,69,0.12), transparent 32%),
    rgba(247,255,249,0.26);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.68),
    0 24px 80px rgba(31,123,255,0.06);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,18,13,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7,18,13,0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -14% -24% 24%;
  z-index: -1;
  height: 42%;
  background: linear-gradient(90deg, rgba(31,123,255,0.28), rgba(15,189,145,0.26), rgba(168,92,255,0.20), rgba(255,123,69,0.22));
  filter: blur(48px);
  transform: translate3d(var(--mx), var(--my), 0) rotate(-3deg);
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero .eyebrow {
  color: rgba(7,18,13,0.72);
}

.hero-copy h1 {
  max-width: 780px;
  font-size: clamp(54px, 6.1vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-copy h1 span {
  display: block;
}

.blue-rule {
  width: min(220px, 36vw);
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--teal) 38%, var(--violet) 68%, var(--coral));
}

.hero-lede {
  font-size: clamp(18px, 1.3vw, 23px);
}

.hero-body {
  color: rgba(38,53,46,0.84);
  font-size: clamp(15px, 1.04vw, 18px);
}

.hero-technical {
  position: relative;
  z-index: 1;
  min-height: clamp(390px, 42vw, 560px);
  transform: translate3d(calc(var(--mx) * -0.35), calc(var(--my) * -0.35), 0);
  transition: transform 300ms ease;
}

.tech-field {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 760px);
  min-width: 520px;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.tech-scan {
  position: absolute;
  inset: 5% 2% 7% 0;
  border: 1px solid rgba(7,18,13,0.24);
  border-radius: 28px;
  background:
    repeating-linear-gradient(90deg, rgba(7,18,13,0.08) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(180deg, rgba(7,18,13,0.06) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, rgba(255,255,255,0.38), rgba(255,255,255,0.06));
}

.tech-scan::before,
.tech-scan::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.tech-scan::before {
  background: linear-gradient(105deg, transparent 0 28%, rgba(255,255,255,0.72) 36%, transparent 45%);
  animation: technicalSweep 7s ease-in-out infinite;
}

.tech-scan::after {
  border: 1px solid rgba(255,255,255,0.58);
  mask-image: linear-gradient(140deg, #000 0 24%, transparent 58%);
}

.tech-panel {
  position: absolute;
  border: 1px solid rgba(7,18,13,0.22);
  border-radius: 18px;
  background: rgba(247,255,249,0.44);
  backdrop-filter: blur(10px);
}

.tech-panel::before,
.tech-panel::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31,123,255,0.62), rgba(15,189,145,0.54), rgba(255,123,69,0.54));
}

.tech-panel::before {
  top: 38%;
}

.tech-panel::after {
  top: 58%;
  right: 36%;
  opacity: 0.62;
}

.tech-panel-a {
  right: 7%;
  top: 9%;
  width: 34%;
  height: 16%;
  box-shadow: inset 0 -3px 0 rgba(31,123,255,0.28);
}

.tech-panel-b {
  left: 3%;
  bottom: 12%;
  width: 30%;
  height: 14%;
  box-shadow: inset 0 -3px 0 rgba(255,123,69,0.28);
}

.field-shell {
  fill: none;
  stroke: rgba(7,18,13,0.24);
  stroke-width: 1.2;
}

.field-wash {
  fill: url(#fieldSurface);
  filter: url(#softLift);
  stroke: rgba(7,18,13,0.18);
  stroke-width: 1;
}

.field-contours path {
  fill: none;
  stroke: rgba(7,18,13,0.22);
  stroke-width: 1.4;
}

.field-vectors path {
  fill: none;
  stroke: url(#fieldSpectrum);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 15;
  animation: technicalDash 9s linear infinite;
}

.data-routes path {
  fill: none;
  stroke: url(#fieldSpectrum);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 95 270;
  animation: routePulse 6.8s ease-in-out infinite;
}

.data-routes path:nth-child(2) {
  animation-delay: -1.8s;
}

.data-routes path:nth-child(3) {
  animation-delay: -3.2s;
}

.data-nodes circle {
  fill: #f8fff9;
  stroke: url(#fieldSpectrum);
  stroke-width: 2.2;
  animation: nodeSignal 4.8s ease-in-out infinite;
}

.data-nodes circle:nth-child(3n) {
  animation-delay: -1.1s;
}

.data-nodes circle:nth-child(3n + 1) {
  animation-delay: -2.4s;
}

.molecular-lattice path {
  fill: rgba(255,255,255,0.16);
  stroke: rgba(7,18,13,0.22);
  stroke-width: 1.4;
}

.readout-stack rect {
  fill: rgba(247,255,249,0.68);
  stroke: rgba(7,18,13,0.20);
}

.readout-stack path {
  fill: none;
  stroke: rgba(7,18,13,0.30);
  stroke-width: 2;
  stroke-linecap: round;
}

.signal-band {
  background:
    linear-gradient(90deg, rgba(31,123,255,0.07), transparent 32%),
    linear-gradient(270deg, rgba(255,123,69,0.08), transparent 34%);
}

.signal-band span,
.editorial-card span,
.jobs-list span {
  color: var(--electric);
}

.signal-band > div:nth-child(2) span,
.editorial-card:nth-child(2) span {
  color: var(--teal);
}

.signal-band > div:nth-child(3) span,
.editorial-card:nth-child(3) span {
  color: var(--coral);
}

.platform-card,
.editorial-card,
.jobs-list article,
.team-card,
.lock-card,
.join-form {
  background:
    linear-gradient(140deg, rgba(255,255,255,0.46), rgba(255,255,255,0.12)),
    rgba(247,255,249,0.22);
}

.platform-card::before,
.editorial-card::before,
.jobs-list article::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--electric), var(--teal), var(--coral));
}

.jobs-list article::before {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

@keyframes technicalDash {
  to {
    stroke-dashoffset: -230;
  }
}

@keyframes routePulse {
  0%, 100% {
    stroke-dashoffset: 260;
    opacity: 0.46;
  }
  48% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes nodeSignal {
  0%, 100% {
    r: 5;
    opacity: 0.62;
  }
  44% {
    r: 8;
    opacity: 1;
  }
}

@keyframes technicalSweep {
  0%, 14% {
    transform: translateX(-82%);
    opacity: 0;
  }
  36%, 68% {
    opacity: 0.62;
  }
  88%, 100% {
    transform: translateX(82%);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .hero-copy {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    max-width: 980px;
  }

  .hero-copy h1 {
    max-width: 980px;
  }

  .hero-technical {
    min-height: 430px;
  }

  .tech-field {
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .hero-copy {
    gap: 24px;
  }

  .hero-technical {
    min-height: 330px;
  }

  .tech-scan {
    inset: 0;
  }

  .tech-panel {
    display: none;
  }

  .platform-card::before,
  .editorial-card::before,
  .jobs-list article::before {
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    padding: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero-technical {
    min-height: 250px;
  }

  .tech-field {
    width: 116%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-scan::before,
  .field-vectors path,
  .data-routes path,
  .data-nodes circle {
    animation: none;
  }

  .hero-technical,
  .hero-copy::after {
    transform: none;
  }
}


/* v12 blended biomolecular hero */
.hero-copy {
  display: block;
  min-height: min(690px, calc(100svh - 138px));
  padding: clamp(36px, 5.4vw, 72px);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(50%, 760px);
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(54px, 6vw, 106px);
}

.hero-biomorph {
  position: absolute;
  top: -15%;
  right: -7%;
  bottom: -18%;
  z-index: 1;
  width: min(64%, 980px);
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * -0.26), calc(var(--my) * -0.22), 0);
  transition: transform 320ms ease;
}

.hero-biomorph::before {
  content: "";
  position: absolute;
  inset: 18% 10% 16% 3%;
  border: 1px solid rgba(7,18,13,0.20);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.34), rgba(255,255,255,0.08)),
    repeating-linear-gradient(90deg, rgba(7,18,13,0.052) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(180deg, rgba(7,18,13,0.038) 0 1px, transparent 1px 56px);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.28) 14%, #000 44%);
}

.hero-biomorph::after {
  content: "";
  position: absolute;
  inset: 27% 7% 24% 10%;
  z-index: 1;
  border: 1px solid rgba(7,18,13,0.13);
  border-radius: 47% 53% 43% 57% / 44% 39% 61% 56%;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255,255,255,0.96) 0 12%, transparent 31%),
    radial-gradient(ellipse at 54% 30%, rgba(72,174,231,0.72) 0 9%, transparent 33%),
    radial-gradient(ellipse at 27% 66%, rgba(14,191,154,0.60) 0 12%, transparent 38%),
    radial-gradient(ellipse at 72% 61%, rgba(169,104,238,0.48) 0 13%, transparent 42%),
    radial-gradient(ellipse at 86% 46%, rgba(255,127,82,0.58) 0 10%, transparent 36%),
    linear-gradient(135deg, rgba(217,243,255,0.90), rgba(199,248,235,0.78) 42%, rgba(235,217,255,0.70) 70%, rgba(255,218,200,0.72));
  box-shadow:
    0 34px 80px rgba(31,123,255,0.13),
    inset 18px 20px 42px rgba(255,255,255,0.56),
    inset -22px -18px 48px rgba(7,18,13,0.07);
  opacity: 0.96;
  transform: rotate(-4deg);
}

.biomorph-mesh {
  position: absolute;
  inset: 27% 7% 24% 10%;
  z-index: 3;
  overflow: hidden;
  border-radius: 47% 53% 43% 57% / 44% 39% 61% 56%;
  opacity: 0.46;
  transform: rotate(-4deg);
  mix-blend-mode: multiply;
}

.biomorph-mesh::before,
.biomorph-mesh::after {
  content: "";
  position: absolute;
  inset: -18%;
}

.biomorph-mesh::before {
  background:
    repeating-linear-gradient(18deg, transparent 0 30px, rgba(7,18,13,0.13) 31px, transparent 33px),
    repeating-linear-gradient(108deg, transparent 0 34px, rgba(7,18,13,0.09) 35px, transparent 37px);
  transform: perspective(560px) rotateX(54deg) rotateZ(-8deg) scale(1.18);
  filter: blur(0.4px);
}

.biomorph-mesh::after {
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,0.84) 0 8%, transparent 22%),
    radial-gradient(circle at 72% 42%, rgba(255,255,255,0.40) 0 7%, transparent 20%),
    radial-gradient(circle at 31% 69%, rgba(255,255,255,0.46) 0 7%, transparent 22%);
  mix-blend-mode: screen;
}

.biomorph-ridge {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(7,18,13,0.16);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotate(-13deg);
  mix-blend-mode: multiply;
}

.biomorph-ridge-one {
  right: 16%;
  top: 34%;
  width: 39%;
  height: 18%;
}

.biomorph-ridge-two {
  right: 22%;
  top: 48%;
  width: 50%;
  height: 21%;
  transform: rotate(-22deg);
}

.biomorph-ridge-three {
  right: 8%;
  top: 55%;
  width: 43%;
  height: 16%;
  border-color: rgba(255,255,255,0.40);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(8deg);
  mix-blend-mode: screen;
}

#hero-biomorph-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  filter: saturate(1.06) contrast(1.02);
}

.biomorph-aura {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.72;
  transform: translate3d(var(--mx), var(--my), 0);
}

.biomorph-aura-one {
  right: 13%;
  top: 24%;
  width: 44%;
  height: 34%;
  background: rgba(31,123,255,0.24);
}

.biomorph-aura-two {
  right: 1%;
  bottom: 18%;
  width: 56%;
  height: 34%;
  background: linear-gradient(90deg, rgba(15,189,145,0.22), rgba(168,92,255,0.18), rgba(255,123,69,0.22));
}

.biomorph-caption {
  position: absolute;
  right: 8%;
  bottom: 15%;
  z-index: 3;
  width: min(230px, 25vw);
  height: 76px;
  border: 1px solid rgba(7,18,13,0.18);
  border-radius: 18px;
  background: rgba(247,255,249,0.36);
  backdrop-filter: blur(14px);
  opacity: 0.86;
}

.biomorph-caption span {
  position: absolute;
  left: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--electric), var(--teal), var(--coral));
}

.biomorph-caption span:first-child {
  top: 29px;
  width: 58%;
}

.biomorph-caption span:last-child {
  top: 46px;
  width: 38%;
  opacity: 0.48;
}

.tech-field,
.tech-scan,
.tech-panel {
  display: none;
}

@media (max-width: 1180px) {
  .hero-content {
    width: min(58%, 780px);
  }

  .hero-biomorph {
    right: -18%;
    width: min(78%, 980px);
  }
}

@media (max-width: 900px) {
  .hero-copy {
    min-height: auto;
    padding-bottom: clamp(310px, 54vw, 440px);
  }

  .hero-content {
    width: 100%;
    max-width: 820px;
  }

  .hero-copy h1 {
    max-width: 820px;
  }

  .hero-biomorph {
    top: auto;
    right: -18%;
    bottom: -11%;
    width: min(108%, 860px);
    height: clamp(340px, 58vw, 470px);
  }

  .hero-biomorph::before {
    inset: 8% 8% 11% 0;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }

  .biomorph-mesh,
  .biomorph-ridge {
    opacity: 0.34;
  }

  .biomorph-caption {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    padding: 26px;
    padding-bottom: 268px;
  }

  .hero-biomorph {
    right: -30%;
    bottom: -8%;
    width: 132%;
    height: 330px;
  }

  .hero-biomorph::before {
    border-radius: 22px;
  }

  .biomorph-mesh,
  .biomorph-ridge {
    display: none;
  }
}


/* v13 Three.js molecular interaction hero */
.hero-biomorph {
  top: -10%;
  right: -8%;
  bottom: -14%;
  width: min(66%, 1040px);
}

.hero-biomorph::before {
  inset: 18% 6% 14% 2%;
  border-color: rgba(7,18,13,0.18);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.34), rgba(255,255,255,0.10)),
    repeating-linear-gradient(90deg, rgba(7,18,13,0.052) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(180deg, rgba(7,18,13,0.038) 0 1px, transparent 1px 58px);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.32) 15%, #000 44%);
}

.hero-biomorph::after,
.biomorph-mesh,
.biomorph-ridge,
.biomorph-caption,
#hero-biomorph-canvas,
.biomorph-svg {
  display: none;
}

.hero-structure {
  position: absolute;
  inset: 3% 0 0 0;
  z-index: 3;
  min-height: 520px;
}

.hero-structure canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.structure-fallback {
  position: absolute;
  inset: 24% 7% 18% 11%;
  z-index: 1;
  border-radius: 44% 56% 48% 52% / 48% 38% 62% 52%;
  background:
    radial-gradient(ellipse at 30% 28%, rgba(255,255,255,0.84), transparent 28%),
    radial-gradient(ellipse at 58% 42%, rgba(57,173,232,0.42), transparent 34%),
    radial-gradient(ellipse at 72% 64%, rgba(157,104,238,0.34), transparent 38%),
    linear-gradient(135deg, rgba(209,243,255,0.74), rgba(202,247,237,0.62), rgba(255,213,194,0.50));
  filter: blur(1px);
  opacity: 0.72;
}

.hero-biomorph.is-three-ready .structure-fallback {
  opacity: 0.18;
}

@media (max-width: 1180px) {
  .hero-biomorph {
    right: -16%;
    width: min(78%, 1020px);
  }
}

@media (max-width: 900px) {
  .hero-biomorph {
    right: -18%;
    bottom: -10%;
    width: min(108%, 860px);
    height: clamp(340px, 58vw, 470px);
  }

  .hero-structure {
    min-height: 0;
    inset: -5% 0 -2% 0;
  }
}

@media (max-width: 560px) {
  .hero-biomorph {
    right: -36%;
    width: 142%;
    height: 330px;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .hero-lede,
  .hero-body {
    max-width: min(100%, 300px);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1;
    letter-spacing: -0.042em;
    overflow-wrap: normal;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-body {
    font-size: 15px;
    line-height: 1.48;
  }
}


/* v14 softer layered system + upgraded platform visuals */
:root {
  --ink: #102018;
  --ink-soft: #3f5048;
  --line: rgba(16,32,24,0.20);
}

body {
  color: var(--ink);
}

.site-header {
  background: rgba(247,255,249,0.62);
  border-bottom-color: rgba(16,32,24,0.12);
}

.site-nav {
  gap: 6px;
}

.site-nav a,
.nav-cta {
  min-height: 42px;
  border-color: rgba(16,32,24,0.28);
  border-right: 1px solid rgba(16,32,24,0.28);
  border-radius: 12px !important;
  background: rgba(255,255,255,0.26);
  color: rgba(16,32,24,0.82) !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(16,32,24,0.42);
  background: rgba(255,255,255,0.56);
}

.hero-copy {
  border-color: rgba(16,32,24,0.24);
  border-radius: clamp(30px, 3.2vw, 48px);
  background:
    linear-gradient(110deg, rgba(255,255,255,0.64), rgba(255,255,255,0.18) 52%, rgba(255,255,255,0.05)),
    linear-gradient(140deg, rgba(31,123,255,0.08), transparent 34%),
    linear-gradient(310deg, rgba(255,123,69,0.10), transparent 38%),
    rgba(247,255,249,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 26px 90px rgba(16,32,24,0.045);
}

.hero-copy::before {
  opacity: 0.58;
}

.hero-copy h1 {
  color: rgba(16,32,24,0.88);
  font-weight: 300;
}

.hero-lede {
  color: rgba(16,32,24,0.86);
}

.hero-body,
.section-heading.center p:not(.eyebrow),
.platform-card p,
.science-copy p,
.lock-card p,
.team-card p,
.join-copy p:not(.eyebrow) {
  color: rgba(63,80,72,0.82);
}

.blue-rule {
  opacity: 0.82;
}

.hero-biomorph {
  right: -3%;
  width: min(72%, 1080px);
  opacity: 0.96;
}

.hero-biomorph::before {
  border-color: rgba(16,32,24,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04)),
    repeating-linear-gradient(90deg, rgba(16,32,24,0.032) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(180deg, rgba(16,32,24,0.026) 0 1px, transparent 1px 62px);
}

.structure-fallback {
  opacity: 0.94;
}

.hero-biomorph.is-three-ready .structure-fallback {
  opacity: 0.06;
}

.signal-band {
  border-color: rgba(16,32,24,0.16);
  background:
    linear-gradient(90deg, rgba(31,123,255,0.055), transparent 34%),
    linear-gradient(270deg, rgba(255,123,69,0.060), transparent 38%);
}

.signal-band > div {
  border-color: rgba(16,32,24,0.12);
}

.platform-section {
  position: relative;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  overflow: visible;
  border: 0;
  border-radius: 0;
}

.platform-card,
.editorial-card,
.jobs-list article,
.team-card,
.lock-card,
.join-form {
  border: 1px solid rgba(16,32,24,0.18);
  border-radius: clamp(24px, 2.4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.58), rgba(255,255,255,0.18)),
    rgba(247,255,249,0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.62),
    0 24px 70px rgba(16,32,24,0.045);
}

.platform-card {
  position: relative;
  min-height: 455px;
  padding: clamp(28px, 3.3vw, 46px);
  overflow: hidden;
  border-right: 1px solid rgba(16,32,24,0.18) !important;
}

.platform-card:nth-child(2) {
  transform: translateY(-22px);
}

.platform-card:nth-child(3) {
  transform: translateY(18px);
}

.platform-card::before {
  width: 118px;
  margin-bottom: 18px;
  opacity: 0.78;
}

.platform-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -24% 18%;
  height: 42%;
  background: linear-gradient(90deg, rgba(31,123,255,0.12), rgba(15,189,145,0.10), rgba(255,123,69,0.10));
  filter: blur(34px);
  pointer-events: none;
}

.card-art.platform-art {
  width: 100%;
  height: clamp(180px, 17vw, 230px);
  margin-bottom: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16,32,24,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.40), rgba(255,255,255,0.08)),
    repeating-linear-gradient(90deg, rgba(16,32,24,0.040) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(180deg, rgba(16,32,24,0.030) 0 1px, transparent 1px 38px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.58);
}

.platform-art svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.platform-art .soft-surface {
  fill: url(#designFlow);
  opacity: 0.18;
  stroke: rgba(16,32,24,0.16);
  stroke-width: 1.2;
}

.platform-art .soft-surface.teal {
  fill: rgba(15,189,145,0.16);
}

.platform-art .soft-surface.violet {
  fill: rgba(168,92,255,0.13);
}

.platform-art .grid-line {
  fill: none;
  stroke: rgba(16,32,24,0.09);
  stroke-width: 1;
}

.platform-art .flow-line,
.platform-art .translation-arc {
  fill: none;
  stroke: #1f7bff;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.82;
}

.platform-card:nth-child(2) .platform-art .flow-line,
.platform-card:nth-child(2) .platform-art .translation-arc {
  stroke: #0fbd91;
}

.platform-card:nth-child(3) .platform-art .flow-line,
.platform-card:nth-child(3) .platform-art .translation-arc {
  stroke: #ff7b45;
}

.platform-art .flow-line.alt,
.platform-art .translation-arc.alt {
  stroke-dasharray: 7 10;
  opacity: 0.55;
}

.platform-art circle {
  fill: rgba(255,255,255,0.80);
  stroke: #1f7bff;
  stroke-width: 2;
}

.platform-art .molecule-mark,
.platform-art .contour-line,
.platform-art .assay-line {
  fill: none;
  stroke: rgba(16,32,24,0.22);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.platform-art .contour-line {
  stroke: rgba(31,123,255,0.32);
}

.platform-art .well-grid circle {
  fill: rgba(255,255,255,0.72);
  stroke: #0fbd91;
}

.platform-art .strata rect {
  fill: rgba(255,255,255,0.52);
  stroke: rgba(16,32,24,0.18);
}

.platform-art .signal-bars path {
  fill: none;
  stroke: rgba(168,92,255,0.46);
  stroke-width: 6;
  stroke-linecap: round;
}

.platform-card h3 {
  color: rgba(16,32,24,0.90);
}

@media (max-width: 1080px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) {
    transform: none;
    min-height: auto;
  }
}

@media (max-width: 850px) {
  .site-nav {
    gap: 0;
  }

  .site-nav a,
  .nav-cta {
    border-radius: 0 !important;
  }

  .hero-biomorph {
    right: -14%;
    width: 112%;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    border-radius: 28px;
  }

  .hero-biomorph {
    opacity: 0.72;
  }

  .card-art.platform-art {
    height: 170px;
  }
}


/* v15 clearer Three.js presence + softer layered editorial surfaces */
:root {
  --paper: #f6fff8;
  --paper-soft: #fbfffc;
  --paper-deep: #e9f8ef;
  --ink: #17241e;
  --ink-soft: #52635b;
  --muted: #76867f;
  --line: rgba(23,36,30,0.14);
}

body {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 4% 18%, rgba(31,123,255,0.16), transparent 34rem),
    radial-gradient(ellipse at 96% 12%, rgba(255,123,69,0.13), transparent 32rem),
    radial-gradient(ellipse at 52% 34%, rgba(168,92,255,0.10), transparent 30rem),
    linear-gradient(180deg, #fbfffc 0%, #f1fcf5 52%, #edf8f2 100%);
}

h1,
h2,
h3,
.hero-copy h1 {
  letter-spacing: 0;
}

h1 {
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-size: 50px;
  line-height: 1.07;
  font-weight: 340;
}

h3 {
  font-size: 24px;
  line-height: 1.16;
  font-weight: 520;
}

.site-header {
  background: rgba(251,255,252,0.78);
  border-bottom-color: rgba(23,36,30,0.09);
  box-shadow: 0 18px 52px rgba(23,36,30,0.045);
}

.site-nav a,
.nav-cta {
  border-color: rgba(23,36,30,0.18);
  border-right-color: rgba(23,36,30,0.18);
  background: rgba(255,255,255,0.38);
  color: rgba(23,36,30,0.76) !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(23,36,30,0.26);
  background: rgba(255,255,255,0.72);
}

.hero {
  position: relative;
  padding-top: 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% 0 auto;
  z-index: -1;
  height: 58%;
  background:
    linear-gradient(105deg, rgba(31,123,255,0.12), transparent 30%),
    linear-gradient(255deg, rgba(255,123,69,0.12), transparent 34%),
    radial-gradient(ellipse at 56% 42%, rgba(15,189,145,0.12), transparent 34rem);
  filter: blur(34px);
}

.hero-copy {
  min-height: min(660px, calc(100svh - 136px));
  border-color: rgba(23,36,30,0.15);
  border-radius: 48px 72px 42px 58px / 46px 58px 44px 54px;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.74), rgba(255,255,255,0.22) 45%, rgba(255,255,255,0.06)),
    radial-gradient(ellipse at 70% 42%, rgba(31,123,255,0.12), transparent 35%),
    radial-gradient(ellipse at 88% 76%, rgba(255,123,69,0.11), transparent 32%),
    rgba(247,255,249,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 30px 90px rgba(23,36,30,0.055);
}

.hero-copy::before {
  opacity: 0.42;
}

.hero-copy::after {
  inset: auto -7% -18% 42%;
  height: 46%;
  opacity: 0.58;
  filter: blur(58px);
}

.hero-content {
  width: min(48%, 700px);
  max-width: 700px;
}

.hero .eyebrow {
  color: rgba(23,36,30,0.66);
}

.hero-copy h1 {
  max-width: 700px;
  color: rgba(23,36,30,0.90);
  font-size: 66px;
  line-height: 1.01;
  font-weight: 320;
}

.hero-copy h1 span {
  white-space: nowrap;
}

.hero-lede {
  color: rgba(23,36,30,0.84);
  font-size: 20px;
  line-height: 1.36;
}

.hero-body {
  color: rgba(82,99,91,0.86);
  font-size: 16px;
  line-height: 1.58;
}

.hero-biomorph {
  top: -19%;
  right: -8%;
  bottom: -17%;
  width: min(79%, 1180px);
  opacity: 1;
}

.hero-biomorph::before {
  inset: 14% 2% 11% 14%;
  border: 1px solid rgba(23,36,30,0.075);
  border-radius: 48% 52% 42% 58% / 42% 36% 64% 58%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.20), rgba(255,255,255,0.03)),
    repeating-linear-gradient(90deg, rgba(23,36,30,0.025) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(180deg, rgba(23,36,30,0.020) 0 1px, transparent 1px 56px);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.26) 12%, #000 36%);
}

.hero-structure {
  inset: -3% -4% -3% 9%;
  min-height: 560px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.10) 15%, #000 34%);
  filter:
    saturate(1.22)
    contrast(1.08)
    drop-shadow(0 32px 54px rgba(31,123,255,0.14))
    drop-shadow(0 42px 70px rgba(255,123,69,0.10));
}

.structure-fallback {
  inset: 25% 5% 18% 20%;
  opacity: 0.28;
  filter: blur(10px);
}

.hero-biomorph.is-three-ready .structure-fallback {
  opacity: 0.02;
}

.signal-band {
  border-color: rgba(23,36,30,0.10);
  background:
    linear-gradient(90deg, rgba(31,123,255,0.075), rgba(15,189,145,0.030) 44%, transparent),
    linear-gradient(270deg, rgba(255,123,69,0.070), rgba(168,92,255,0.030) 46%, transparent);
}

.signal-band > div {
  border-color: rgba(23,36,30,0.10);
}

.platform-section {
  overflow: hidden;
}

.platform-section .section-heading.center h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: 52px;
}

.platform-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  padding: 22px 0 34px;
}

.platform-grid::before {
  content: "";
  position: absolute;
  inset: 8% 4% 1%;
  border-radius: 56px;
  background:
    linear-gradient(90deg, rgba(31,123,255,0.08), transparent 32%),
    linear-gradient(270deg, rgba(255,123,69,0.08), transparent 36%),
    rgba(255,255,255,0.16);
  filter: blur(22px);
  pointer-events: none;
}

.platform-card,
.editorial-card,
.jobs-list article,
.team-card,
.lock-card,
.join-form {
  border-color: rgba(23,36,30,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.66), rgba(255,255,255,0.18)),
    rgba(247,255,249,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 26px 76px rgba(23,36,30,0.050);
}

.platform-card {
  min-height: 480px;
  border-radius: 42px 58px 46px 36px / 38px 48px 42px 52px;
  backdrop-filter: blur(12px);
}

.platform-card:nth-child(1) {
  z-index: 2;
  transform: translateY(16px) rotate(-0.25deg);
}

.platform-card:nth-child(2) {
  z-index: 3;
  margin-left: -14px;
  transform: translateY(-22px);
}

.platform-card:nth-child(3) {
  z-index: 1;
  margin-left: -14px;
  transform: translateY(24px) rotate(0.25deg);
}

.platform-card::before {
  width: 118px;
  height: 2px;
  margin-bottom: 18px;
  opacity: 0.82;
  background: linear-gradient(90deg, #1f7bff, #0fbd91 46%, #ff7b45);
}

.platform-card::after {
  inset: auto -10% -20% 20%;
  height: 45%;
  opacity: 0.70;
}

.card-art.platform-art {
  height: 218px;
  margin-bottom: 30px;
  border: 0;
  border-radius: 42% 58% 39% 61% / 44% 35% 65% 56%;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255,255,255,0.82), transparent 24%),
    radial-gradient(ellipse at 64% 58%, rgba(31,123,255,0.16), transparent 42%),
    radial-gradient(ellipse at 74% 70%, rgba(255,123,69,0.10), transparent 36%),
    rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 18px 46px rgba(23,36,30,0.035);
}

.platform-card:nth-child(2) .card-art.platform-art {
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255,255,255,0.82), transparent 24%),
    radial-gradient(ellipse at 62% 56%, rgba(15,189,145,0.17), transparent 44%),
    radial-gradient(ellipse at 82% 68%, rgba(31,123,255,0.09), transparent 36%),
    rgba(255,255,255,0.22);
}

.platform-card:nth-child(3) .card-art.platform-art {
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255,255,255,0.82), transparent 24%),
    radial-gradient(ellipse at 64% 56%, rgba(168,92,255,0.15), transparent 44%),
    radial-gradient(ellipse at 78% 72%, rgba(255,123,69,0.14), transparent 38%),
    rgba(255,255,255,0.22);
}

.platform-art .soft-surface {
  opacity: 0.30;
  stroke: rgba(23,36,30,0.15);
}

.platform-art .grid-line {
  opacity: 0.75;
}

.platform-art .flow-line,
.platform-art .translation-arc {
  stroke-width: 3.4;
  opacity: 0.92;
  stroke-dasharray: 160 32;
  animation: platformTrace 9s linear infinite;
}

.platform-art .flow-line.alt,
.platform-art .translation-arc.alt {
  stroke-dasharray: 9 12;
  opacity: 0.52;
  animation-duration: 13s;
}

.platform-art circle {
  fill: rgba(255,255,255,0.86);
  stroke-width: 2.1;
}

.platform-art .residue-network path,
.platform-art .assay-matrix path,
.platform-art .trajectory-fan path {
  fill: none;
  stroke: rgba(23,36,30,0.20);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-art .residue-network circle,
.platform-art .assay-matrix circle {
  fill: rgba(255,255,255,0.88);
  stroke: rgba(23,36,30,0.24);
  stroke-width: 1.4;
}

.platform-art .trajectory-fan path {
  stroke: rgba(168,92,255,0.24);
}

.platform-card h3 {
  color: rgba(23,36,30,0.82);
}

.platform-card p {
  color: rgba(61,76,68,0.90);
}

@keyframes platformTrace {
  to {
    stroke-dashoffset: -192;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-art .flow-line,
  .platform-art .translation-arc {
    animation: none;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 58px;
  }

  h2,
  .platform-section .section-heading.center h2 {
    font-size: 44px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-content {
    width: min(50%, 660px);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 48px;
  }

  h2,
  .platform-section .section-heading.center h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    min-height: 640px;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-biomorph {
    top: 30%;
    right: -22%;
    bottom: -9%;
    width: 124%;
    opacity: 0.82;
  }

  .hero-structure {
    min-height: 390px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 0;
  }

  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) {
    margin-left: 0;
    min-height: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .platform-section .section-heading.center h2 {
    font-size: 32px;
  }

  .hero-copy {
    min-height: 690px;
    padding: 28px;
    border-radius: 30px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-lede {
    font-size: 17px;
  }

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

  .hero-biomorph {
    top: 62%;
    right: -76%;
    bottom: -9%;
    width: 182%;
    opacity: 0.48;
  }

  .hero-structure {
    min-height: 330px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.08) 14%, #000 38%);
  }

  .card-art.platform-art {
    height: 180px;
  }
}


/* v16 real protein-complex visuals */
.hero-copy {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.80), rgba(255,255,255,0.26) 44%, rgba(255,255,255,0.08)),
    radial-gradient(ellipse at 70% 42%, rgba(31,123,255,0.10), transparent 35%),
    radial-gradient(ellipse at 90% 74%, rgba(255,123,69,0.10), transparent 34%),
    rgba(247,255,249,0.30);
}

.hero-biomorph {
  right: -10%;
  width: min(82%, 1220px);
}

.hero-structure {
  inset: -8% -10% -5% 30%;
  min-height: 600px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.04) 10%, rgba(0,0,0,0.48) 24%, #000 44%);
  filter:
    saturate(1.12)
    contrast(1.08)
    drop-shadow(0 28px 48px rgba(31,123,255,0.11))
    drop-shadow(0 36px 64px rgba(255,123,69,0.08));
}

.protein-viewport {
  position: relative;
  width: 100%;
  height: clamp(255px, 20vw, 330px);
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 44% 56% 42% 58% / 44% 38% 62% 56%;
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.88), transparent 25%),
    radial-gradient(ellipse at 58% 50%, rgba(31,123,255,0.13), transparent 42%),
    radial-gradient(ellipse at 76% 68%, rgba(255,123,69,0.11), transparent 34%),
    rgba(255,255,255,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 18px 48px rgba(23,36,30,0.04);
}

.protein-viewport::before,
.protein-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.protein-viewport::before {
  z-index: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(23,36,30,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23,36,30,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 52% 52%, #000 0 48%, transparent 74%);
}

.protein-viewport::after {
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.44), transparent 24%),
    linear-gradient(310deg, rgba(255,255,255,0.26), transparent 28%);
}

.protein-viewport canvas {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.platform-card:nth-child(2) .protein-viewport {
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.88), transparent 25%),
    radial-gradient(ellipse at 58% 50%, rgba(15,189,145,0.14), transparent 42%),
    radial-gradient(ellipse at 78% 70%, rgba(31,123,255,0.08), transparent 34%),
    rgba(255,255,255,0.24);
}

.platform-card:nth-child(3) .protein-viewport {
  background:
    radial-gradient(ellipse at 30% 24%, rgba(255,255,255,0.88), transparent 25%),
    radial-gradient(ellipse at 58% 50%, rgba(168,92,255,0.13), transparent 42%),
    radial-gradient(ellipse at 78% 70%, rgba(255,123,69,0.12), transparent 34%),
    rgba(255,255,255,0.24);
}

.protein-viewport.is-three-fallback {
  min-height: 245px;
  background:
    radial-gradient(ellipse at 48% 44%, rgba(31,123,255,0.20), transparent 38%),
    radial-gradient(ellipse at 68% 58%, rgba(255,123,69,0.16), transparent 36%),
    rgba(255,255,255,0.28);
}

@media (max-width: 900px) {
  .hero-biomorph {
    top: 36%;
    right: -44%;
    width: 152%;
  }

  .hero-structure {
    min-height: 390px;
  }

  .protein-viewport {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .hero-biomorph {
    top: 63%;
    right: -94%;
    width: 206%;
    opacity: 0.50;
  }

  .hero-structure {
    min-height: 330px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.08) 12%, #000 34%);
  }

  .protein-viewport {
    height: 230px;
  }
}


/* v17 sharper visuals + distinct platform illustrations */
.hero-copy {
  background:
    linear-gradient(112deg, rgba(255,255,255,0.76), rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.02)),
    radial-gradient(ellipse at 70% 42%, rgba(31,123,255,0.08), transparent 32%),
    radial-gradient(ellipse at 90% 74%, rgba(255,123,69,0.08), transparent 32%),
    rgba(247,255,249,0.24);
}

.hero-copy::after {
  opacity: 0.22;
}

.hero-structure {
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 13%, rgba(0,0,0,0.78) 27%, #000 42%);
  filter: saturate(1.36) contrast(1.18);
}

.hero-biomorph {
  opacity: 1;
}

.platform-card::after {
  opacity: 0.28;
  filter: blur(22px);
}

.platform-static {
  position: relative;
  width: 100%;
  height: clamp(245px, 19vw, 315px);
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(23,36,30,0.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.44), rgba(255,255,255,0.10)),
    rgba(251,255,252,0.30);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.56),
    0 16px 42px rgba(23,36,30,0.035);
}

.platform-static svg {
  width: 100%;
  height: 100%;
  display: block;
}

.platform-static .art-surface {
  fill: rgba(255,255,255,0.22);
  stroke: rgba(23,36,30,0.16);
  stroke-width: 1.2;
}

.platform-static .art-grid,
.platform-static .assay-frame {
  fill: none;
  stroke: rgba(23,36,30,0.12);
  stroke-width: 1;
}

.platform-static .art-cloud {
  fill: url(#designCore);
  stroke: rgba(23,36,30,0.10);
}

.platform-static .art-route,
.platform-static .translation-curve,
.platform-static .signal-wave {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-static .art-route.strong {
  stroke: url(#designSpectrum);
  stroke-width: 5;
}

.platform-static .art-route.soft {
  stroke: rgba(31,123,255,0.42);
  stroke-width: 3;
  stroke-dasharray: 11 14;
}

.platform-static .art-network path {
  fill: none;
  stroke: rgba(23,36,30,0.26);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-static .art-network circle,
.platform-static .micro-cells circle,
.platform-static .decision-points circle {
  fill: #fbfffc;
  stroke: #1f7bff;
  stroke-width: 2.2;
}

.platform-static .art-node {
  fill: rgba(255,255,255,0.82);
  stroke-width: 3;
}

.platform-static .art-node.blue { stroke: #1f7bff; }
.platform-static .art-node.teal { stroke: #0fbd91; }
.platform-static .art-node.coral { stroke: #ff7b45; }

.well-plate circle {
  fill: rgba(255,255,255,0.78);
  stroke: #0fbd91;
  stroke-width: 3;
}

.cell-field path {
  fill: none;
  stroke: rgba(31,123,255,0.28);
  stroke-width: 2;
  stroke-linecap: round;
}

.cell-field path:nth-child(2) {
  stroke: rgba(15,189,145,0.44);
  stroke-width: 4;
}

.signal-wave {
  stroke: url(#feedbackHeat);
  stroke-width: 5;
}

.micro-cells circle {
  stroke: rgba(23,36,30,0.22);
  stroke-width: 1.4;
}

.cohort-row rect,
.cohort-row circle {
  fill: rgba(255,255,255,0.72);
  stroke: rgba(23,36,30,0.18);
  stroke-width: 1.5;
}

.translation-curve.main {
  stroke: url(#translationPath);
  stroke-width: 5;
}

.translation-curve.secondary {
  stroke: rgba(255,123,69,0.44);
  stroke-width: 3;
  stroke-dasharray: 12 14;
}

.biomarker-bars path {
  fill: none;
  stroke: rgba(168,92,255,0.44);
  stroke-width: 8;
  stroke-linecap: round;
}

.decision-points circle {
  stroke: #1f7bff;
}

.trajectory-lines path {
  fill: none;
  stroke: rgba(168,92,255,0.22);
  stroke-width: 2;
  stroke-linecap: round;
}

.art-feedback {
  background:
    radial-gradient(ellipse at 52% 52%, rgba(15,189,145,0.13), transparent 50%),
    linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0.10)),
    rgba(251,255,252,0.30);
}

.art-translation {
  background:
    radial-gradient(ellipse at 55% 56%, rgba(168,92,255,0.12), transparent 48%),
    radial-gradient(ellipse at 78% 68%, rgba(255,123,69,0.10), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,0.46), rgba(255,255,255,0.10)),
    rgba(251,255,252,0.30);
}

@media (max-width: 900px) {
  .platform-static {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .hero-biomorph {
    opacity: 0.62;
  }

  .hero-structure {
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.22) 10%, #000 28%);
  }

  .platform-static {
    height: 230px;
    border-radius: 28px;
  }
}


/* v18 stronger static panel contrast */
.platform-static {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 48% 48%, rgba(31,123,255,0.20), transparent 56%),
    rgba(232,244,252,0.92);
}

.platform-static svg {
  transform: scale(1.08);
  transform-origin: center;
}

.platform-static .art-surface {
  fill: #dcefff;
  stroke: rgba(23,36,30,0.28);
}

.platform-static .art-grid,
.platform-static .assay-frame {
  stroke: rgba(23,36,30,0.24);
}

.platform-static .art-cloud {
  fill: rgba(31,123,255,0.17);
  stroke: rgba(15,189,145,0.22);
}

.platform-static .art-route.strong,
.translation-curve.main,
.signal-wave {
  stroke-width: 7;
}

.platform-static .art-route.soft,
.translation-curve.secondary {
  opacity: 0.82;
}

.platform-static .art-network path {
  stroke: rgba(23,36,30,0.36);
}

.well-plate circle,
.platform-static .art-network circle,
.platform-static .micro-cells circle,
.platform-static .decision-points circle {
  fill: rgba(251,255,252,0.96);
}

.cell-field path:first-child,
.cell-field path:last-child,
.trajectory-lines path {
  opacity: 0.92;
}

.art-feedback {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 50% 50%, rgba(15,189,145,0.22), transparent 56%),
    rgba(230,248,242,0.94);
}

.art-feedback .art-surface {
  fill: #d9f5ec;
}

.art-translation {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 54% 52%, rgba(168,92,255,0.20), transparent 56%),
    radial-gradient(ellipse at 78% 68%, rgba(255,123,69,0.18), transparent 46%),
    rgba(248,240,252,0.94);
}

.art-translation .art-surface {
  fill: #f0e2fa;
}


/* v19 concept-specific platform visuals */
.ai-core rect,
.plate rect,
.trial-arms circle,
.patient-cohort circle,
.trial-timeline circle {
  fill: rgba(255,255,255,0.76);
  stroke: rgba(23,36,30,0.24);
  stroke-width: 1.7;
}

.ai-core path,
.latent-field path,
.candidate-set path,
.selection-arc,
.pipette path,
.response-readout path,
.validation-route,
.trial-arms path,
.trial-timeline path,
.endpoint-chart path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ai-core path {
  stroke: rgba(31,123,255,0.38);
  stroke-width: 1.6;
}

.ai-core circle {
  fill: #fbfffc;
  stroke: #1f7bff;
  stroke-width: 2;
}

.latent-field path {
  stroke: rgba(31,123,255,0.28);
  stroke-width: 2;
}

.latent-field path:nth-child(2) {
  stroke: rgba(15,189,145,0.40);
  stroke-width: 3.2;
}

.latent-field path:nth-child(3) {
  stroke: rgba(255,123,69,0.32);
}

.candidate-set path {
  stroke: rgba(23,36,30,0.28);
  stroke-width: 1.8;
}

.candidate-set circle {
  fill: rgba(255,255,255,0.64);
  stroke: rgba(23,36,30,0.24);
  stroke-width: 1.8;
}

.selection-arc {
  stroke: url(#designSpectrum);
  stroke-width: 6;
}

.selected-candidate circle {
  fill: rgba(255,255,255,0.88);
  stroke: #ff7b45;
  stroke-width: 3;
}

.selected-candidate path {
  fill: none;
  stroke: #0fbd91;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pipette path:first-child {
  stroke: #1f7bff;
  stroke-width: 9;
}

.pipette path:nth-child(2),
.pipette path:nth-child(3) {
  stroke: rgba(23,36,30,0.34);
  stroke-width: 4;
}

.pipette path:last-child {
  stroke: #0fbd91;
  stroke-width: 3;
}

.plate rect {
  fill: rgba(255,255,255,0.62);
}

.plate circle {
  fill: #fbfffc;
  stroke: #0fbd91;
  stroke-width: 2.4;
}

.invivo-form path:first-child {
  fill: rgba(255,255,255,0.60);
  stroke: rgba(23,36,30,0.25);
  stroke-width: 2;
}

.invivo-form path:not(:first-child) {
  fill: none;
  stroke: rgba(23,36,30,0.30);
  stroke-width: 2;
  stroke-linecap: round;
}

.invivo-form circle {
  fill: rgba(23,36,30,0.50);
}

.response-readout path:nth-child(-n+2) {
  stroke: rgba(23,36,30,0.18);
  stroke-width: 2;
}

.response-readout path:nth-child(3) {
  stroke: url(#feedbackHeat);
  stroke-width: 5;
}

.response-readout path:last-child {
  stroke: rgba(255,123,69,0.48);
  stroke-width: 5;
}

.validation-nodes circle {
  fill: #fbfffc;
  stroke: #1f7bff;
  stroke-width: 2.6;
}

.validation-route {
  stroke: rgba(15,189,145,0.55);
  stroke-width: 4;
  stroke-dasharray: 9 11;
}

.trial-arms path,
.trial-timeline path {
  stroke: rgba(23,36,30,0.26);
  stroke-width: 2.2;
}

.trial-arms circle,
.patient-cohort circle,
.trial-timeline circle {
  stroke: #1f7bff;
}

.patient-cohort circle:nth-child(2n) {
  stroke: #a85cff;
}

.patient-cohort circle:nth-child(3n) {
  stroke: #ff7b45;
}

.trial-timeline circle:nth-child(1) {
  fill: rgba(31,123,255,0.16);
}

.trial-timeline circle:nth-child(2) {
  fill: rgba(15,189,145,0.16);
}

.trial-timeline circle:nth-child(3) {
  fill: rgba(168,92,255,0.16);
}

.trial-timeline circle:nth-child(4) {
  fill: rgba(255,123,69,0.16);
}

.endpoint-chart path:first-child {
  stroke: url(#translationPath);
  stroke-width: 5.5;
}

.endpoint-chart path:nth-child(2) {
  stroke: rgba(168,92,255,0.38);
  stroke-width: 3;
}

/* v20 sharper concept-specific platform diagrams */
.platform-static {
  isolation: isolate;
  height: clamp(260px, 20vw, 330px);
  border-radius: 42px 56px 40px 50px / 38px 48px 46px 58px;
  border-color: rgba(23,36,30,0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.04)),
    radial-gradient(ellipse at 24% 18%, rgba(255,255,255,0.82), transparent 28%),
    radial-gradient(ellipse at 72% 74%, rgba(31,123,255,0.14), transparent 42%),
    rgba(225,241,250,0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -18px 46px rgba(23,36,30,0.040),
    0 18px 42px rgba(23,36,30,0.045);
}

.platform-static::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(0deg, rgba(23,36,30,0.045) 0 1px, transparent 1px 33px),
    repeating-linear-gradient(90deg, rgba(23,36,30,0.040) 0 1px, transparent 1px 33px);
  mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 78%);
  opacity: 0.70;
}

.platform-static svg {
  position: relative;
  z-index: 1;
  transform: scale(1.06);
  transform-origin: center;
  filter: saturate(1.08) contrast(1.06);
}

.art-design {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 28% 26%, rgba(31,123,255,0.22), transparent 42%),
    radial-gradient(ellipse at 76% 58%, rgba(15,189,145,0.20), transparent 40%),
    radial-gradient(ellipse at 82% 82%, rgba(255,123,69,0.14), transparent 34%),
    rgba(224,241,252,0.86);
}

.art-feedback {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 28% 72%, rgba(15,189,145,0.23), transparent 44%),
    radial-gradient(ellipse at 70% 52%, rgba(31,123,255,0.16), transparent 44%),
    radial-gradient(ellipse at 76% 84%, rgba(255,123,69,0.16), transparent 36%),
    rgba(224,247,239,0.88);
}

.art-translation {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.05)),
    radial-gradient(ellipse at 27% 68%, rgba(31,123,255,0.15), transparent 42%),
    radial-gradient(ellipse at 66% 38%, rgba(168,92,255,0.22), transparent 46%),
    radial-gradient(ellipse at 84% 76%, rgba(255,123,69,0.18), transparent 36%),
    rgba(244,235,251,0.90);
}

.platform-static .art-surface {
  fill: rgba(246,252,255,0.44);
  stroke: rgba(23,36,30,0.26);
  stroke-width: 1.4;
}

.art-design .art-surface {
  fill: rgba(216,238,255,0.54);
}

.art-feedback .art-surface {
  fill: rgba(211,246,234,0.58);
}

.art-translation .art-surface {
  fill: rgba(239,222,249,0.58);
}

.ai-core rect,
.plate rect,
.trial-arms circle,
.patient-cohort circle,
.trial-timeline circle {
  fill: rgba(251,255,252,0.86);
  stroke: rgba(23,36,30,0.34);
  stroke-width: 1.9;
}

.ai-core path {
  stroke: rgba(31,123,255,0.58);
  stroke-width: 1.8;
}

.latent-field path {
  opacity: 0.94;
  stroke: rgba(31,123,255,0.42);
  stroke-width: 2.5;
}

.latent-field path:nth-child(2) {
  stroke: rgba(15,189,145,0.66);
  stroke-width: 3.6;
}

.latent-field path:nth-child(3) {
  stroke: rgba(255,123,69,0.48);
}

.candidate-set path {
  stroke: rgba(23,36,30,0.40);
  stroke-width: 2;
}

.candidate-set circle {
  fill: rgba(255,255,255,0.80);
  stroke: rgba(23,36,30,0.34);
}

.selection-arc {
  stroke-width: 7;
}

.selected-candidate circle {
  fill: rgba(255,255,255,0.96);
  stroke-width: 3.6;
}

.pipette path:first-child {
  stroke-width: 10;
}

.pipette path:nth-child(2),
.pipette path:nth-child(3) {
  stroke: rgba(23,36,30,0.46);
}

.plate circle {
  stroke-width: 2.8;
}

.invivo-form path:first-child {
  fill: rgba(255,255,255,0.76);
  stroke: rgba(23,36,30,0.36);
  stroke-width: 2.2;
}

.invivo-form path:not(:first-child) {
  stroke: rgba(23,36,30,0.44);
  stroke-width: 2.1;
}

.response-readout path:nth-child(-n+2) {
  stroke: rgba(23,36,30,0.28);
}

.response-readout path:nth-child(3) {
  stroke-width: 6;
}

.response-readout path:last-child {
  stroke: rgba(255,123,69,0.62);
  stroke-width: 5.4;
}

.validation-nodes circle {
  fill: rgba(251,255,252,0.96);
  stroke-width: 3;
}

.validation-route {
  stroke: rgba(15,189,145,0.72);
  stroke-width: 4.5;
}

.trial-arms path,
.trial-timeline path {
  stroke: rgba(23,36,30,0.36);
  stroke-width: 2.4;
}

.patient-cohort circle {
  fill: rgba(255,255,255,0.82);
  stroke-width: 2.2;
}

.endpoint-chart path:first-child {
  stroke-width: 6.4;
}

.endpoint-chart path:nth-child(2) {
  stroke: rgba(168,92,255,0.50);
  stroke-width: 3.4;
}

.endpoint-chart path:last-child {
  stroke: rgba(23,36,30,0.24);
  stroke-width: 1.8;
}

/* v21 remove platform illustrations and deepen hero structure */
.hero-biomorph::before {
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.42) 12%, #000 34%);
}

.hero-biomorph::after {
  opacity: 1;
  filter: saturate(1.18) contrast(1.10);
  box-shadow:
    0 38px 88px rgba(31,123,255,0.18),
    inset 18px 20px 42px rgba(255,255,255,0.44),
    inset -26px -22px 54px rgba(7,18,13,0.10);
}

#hero-biomorph-canvas {
  filter: saturate(1.36) contrast(1.16);
}

.hero-structure {
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.36) 9%, rgba(0,0,0,0.90) 22%, #000 34%);
  filter:
    saturate(1.78)
    contrast(1.38)
    brightness(0.94)
    drop-shadow(0 24px 42px rgba(31,123,255,0.22))
    drop-shadow(0 34px 58px rgba(255,115,69,0.18));
}

.platform-grid {
  padding: 10px 0 50px;
}

.platform-grid::before {
  inset: 5% 4% 8%;
  opacity: 0.72;
}

.platform-card {
  min-height: 270px;
  padding-top: clamp(38px, 4vw, 58px);
}

.platform-card h3 {
  margin-top: 0;
}

.platform-card::after {
  height: 55%;
  opacity: 0.16;
}

@media (max-width: 900px) {
  .platform-grid {
    padding-bottom: 24px;
  }

  .platform-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero-biomorph {
    opacity: 0.72;
  }

  .hero-structure {
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.30) 9%, #000 26%);
    filter:
      saturate(1.62)
      contrast(1.28)
      brightness(0.96)
      drop-shadow(0 20px 36px rgba(31,123,255,0.18));
  }
}

/* v22 compact statutory page, data-science careers, and softer non-black UI */
:root {
  --ink: #26362f;
  --ink-soft: #62746b;
  --muted: #7d8d85;
  --line: rgba(72,93,82,0.14);
  --line-blue: rgba(31,123,255,0.22);
}

body {
  color: var(--ink);
}

body::before {
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 10px 10px, rgba(72,93,82,0.026) 0.7px, transparent 0.8px),
    radial-gradient(circle at 30px 35px, rgba(72,93,82,0.020) 0.6px, transparent 0.8px);
}

.skip-link {
  background: #e8f4ff;
  color: var(--ink);
  border: 1px solid rgba(31,123,255,0.26);
}

.site-header {
  border-bottom-color: rgba(72,93,82,0.10);
}

.site-nav a,
.nav-cta {
  color: rgba(38,54,47,0.78) !important;
  border-color: rgba(72,93,82,0.16);
}

.site-footer {
  border-top-color: rgba(72,93,82,0.14);
}

input,
select,
textarea {
  border-color: rgba(72,93,82,0.20);
  color: var(--ink);
}

.disclosure-main {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  min-height: calc(100svh - 112px);
  padding: clamp(22px, 3vw, 34px) 0 clamp(18px, 2.6vw, 28px);
}

.disclosure-main .eyebrow {
  margin-bottom: 10px;
}

.disclosure-main h1 {
  max-width: 980px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03;
}

.disclosure-main > p {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.48;
}

.disclosure-main .company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 26px);
  border: 0;
}

.disclosure-main .company-details div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(72,93,82,0.14);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.32)),
    rgba(251,255,252,0.46);
  box-shadow: 0 16px 36px rgba(72,93,82,0.045);
}

.disclosure-main .company-details dt {
  color: rgba(31,123,255,0.82);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.disclosure-main .company-details dd {
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.42;
}

.disclosure-main .company-details a {
  color: #1f7bff;
}

.careers-section .section-heading.center p {
  max-width: 900px;
}

.jobs-list article {
  border-color: rgba(72,93,82,0.13);
}

@media (max-width: 760px) {
  .disclosure-main {
    width: calc(100% - 32px);
    min-height: auto;
    padding-top: 26px;
  }

  .disclosure-main .company-details {
    grid-template-columns: 1fr;
  }

  .disclosure-main .company-details div {
    min-height: auto;
  }
}

/* v23 clearer hero protein, text-only stealth card, balanced disclosure rows */
.hero-structure {
  inset: -4% -4% -2% 32%;
  min-height: 620px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.70) 7%, #000 18%);
  filter:
    saturate(1.52)
    contrast(1.58)
    brightness(0.82)
    drop-shadow(0 20px 36px rgba(31,123,255,0.28))
    drop-shadow(0 30px 52px rgba(232,86,45,0.18));
}

.structure-fallback {
  background:
    radial-gradient(ellipse at 46% 44%, rgba(31,123,255,0.22), transparent 38%),
    radial-gradient(ellipse at 70% 62%, rgba(232,86,45,0.18), transparent 34%),
    rgba(221,242,248,0.42);
}

.hero-biomorph.is-three-ready .structure-fallback {
  opacity: 0.05;
}

.lock-card.lock-card-text,
.lock-card {
  grid-template-columns: 1fr;
  padding: clamp(26px, 4vw, 44px);
  border-left: 0;
}

.lock-card .lock,
.lock {
  display: none;
}

.lock-card h3 {
  margin: 0;
}

.lock-card p {
  max-width: 620px;
}

.disclosure-main {
  width: min(1120px, calc(100% - 48px));
}

.disclosure-main .company-details {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: clamp(16px, 2vw, 22px);
}

.disclosure-main .company-details div {
  grid-template-columns: minmax(230px, 0.34fr) 1fr;
  align-items: center;
  min-height: auto;
  padding: 13px 16px;
  border-radius: 18px;
}

.disclosure-main .company-details dt {
  font-size: 9.5px;
}

.disclosure-main .company-details dd {
  font-size: clamp(14px, 1.15vw, 17px);
}

@media (max-width: 760px) {
  .disclosure-main .company-details div {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 16px 18px;
  }
}

@media (max-width: 560px) {
  .hero-structure {
    inset: 42% -20% -5% 36%;
    min-height: 360px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.70) 8%, #000 22%);
    filter:
      saturate(1.48)
      contrast(1.45)
      brightness(0.86)
      drop-shadow(0 18px 32px rgba(31,123,255,0.22));
  }
}

/* v24 foreground hero protein: visible, cleaner, less over-darkened */
.hero-content {
  z-index: 6;
}

.hero-biomorph {
  z-index: 4;
  top: -11%;
  right: -6%;
  bottom: -12%;
  width: min(68%, 1060px);
  opacity: 1;
}

.hero-biomorph::before {
  opacity: 0.46;
  border-color: rgba(72,93,82,0.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    repeating-linear-gradient(90deg, rgba(72,93,82,0.018) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(180deg, rgba(72,93,82,0.014) 0 1px, transparent 1px 58px);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 7%, #000 20%);
}

.hero-structure {
  inset: -2% -4% -3% 22%;
  z-index: 7;
  min-height: 610px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.76) 6%, #000 14%);
  filter:
    saturate(1.26)
    contrast(1.10)
    brightness(1.06)
    drop-shadow(0 24px 52px rgba(31,123,255,0.24))
    drop-shadow(0 34px 62px rgba(255,123,80,0.14));
}

.structure-fallback {
  opacity: 0.36;
  filter: blur(0);
}

.hero-biomorph.is-three-ready .structure-fallback {
  opacity: 0;
}

@media (max-width: 900px) {
  .hero-biomorph {
    top: 32%;
    right: -38%;
    width: 146%;
  }

  .hero-structure {
    inset: -2% -2% 0 22%;
    min-height: 410px;
  }
}

@media (max-width: 560px) {
  .hero-biomorph {
    top: 64%;
    right: -90%;
    width: 198%;
    opacity: 0.92;
  }

  .hero-structure {
    inset: 0 0 -4% 24%;
    min-height: 340px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.72) 8%, #000 22%);
    filter:
      saturate(1.18)
      contrast(1.08)
      brightness(1.05)
      drop-shadow(0 18px 34px rgba(31,123,255,0.18));
  }
}

/* v25 calm hero card and remove dark section box lines */
.hero-copy {
  border: 1px solid rgba(72,93,82,0.055);
  background:
    linear-gradient(112deg, rgba(218,235,234,0.88), rgba(226,241,235,0.68) 44%, rgba(239,232,224,0.28) 70%),
    radial-gradient(ellipse at 72% 40%, rgba(31,123,255,0.075), transparent 34%),
    radial-gradient(ellipse at 88% 78%, rgba(255,123,80,0.055), transparent 34%),
    rgba(226,241,235,0.66);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 22px 64px rgba(72,93,82,0.040);
}

.hero-copy::before {
  opacity: 0.24;
}

.hero-copy::after {
  opacity: 0.18;
}

.hero-copy h1 {
  color: rgba(38,54,47,0.92);
}

.hero-lede {
  color: rgba(38,54,47,0.80);
}

.hero-body {
  color: rgba(98,116,107,0.84);
}

.partnerships-section,
.team-section,
.careers-section {
  border-bottom: 0;
}

.editorial-grid,
.team-grid,
.jobs-list {
  gap: clamp(14px, 1.8vw, 22px);
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.editorial-card,
.team-card,
.jobs-list article {
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 28px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.52), rgba(255,255,255,0.20)),
    rgba(246,252,248,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.44),
    0 18px 48px rgba(72,93,82,0.040);
}

.jobs-list {
  display: grid;
}

.jobs-list article {
  margin: 0;
}

.team-card {
  align-items: center;
}

@media (max-width: 1080px) {
  .editorial-card,
  .team-card,
  .jobs-list article {
    border: 0 !important;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    background:
      linear-gradient(180deg, rgba(218,235,234,0.90), rgba(226,241,235,0.72) 52%, rgba(239,232,224,0.34)),
      rgba(226,241,235,0.70);
  }
}

/* v26 hero rebalanced after visual QA */
.hero-copy {
  border-color: rgba(72,93,82,0.070);
  background:
    linear-gradient(110deg, rgba(213,231,229,0.94) 0%, rgba(222,238,232,0.88) 40%, rgba(217,229,229,0.50) 58%, rgba(217,226,232,0.22) 100%),
    radial-gradient(ellipse at 69% 38%, rgba(31,123,255,0.070), transparent 31%),
    radial-gradient(ellipse at 92% 78%, rgba(255,123,80,0.052), transparent 32%),
    rgba(222,238,232,0.76);
}

.hero-copy::before {
  opacity: 0.18;
}

.hero-biomorph {
  top: -8%;
  right: -2%;
  bottom: -8%;
  width: min(58%, 920px);
}

.hero-biomorph::before {
  display: block;
  inset: 8% 0 7% 5%;
  opacity: 0.84;
  border: 0;
  border-radius: 48px 68px 42px 58px / 44px 62px 44px 54px;
  background:
    linear-gradient(112deg, rgba(208,226,231,0.10), rgba(184,205,214,0.54) 45%, rgba(210,218,230,0.64)),
    radial-gradient(ellipse at 42% 34%, rgba(31,123,255,0.11), transparent 38%),
    radial-gradient(ellipse at 82% 70%, rgba(255,123,80,0.10), transparent 34%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.74) 9%, #000 22%);
}

.hero-biomorph::after {
  display: block;
  content: "";
  position: absolute;
  inset: 8% -1% 7% 9%;
  z-index: 2;
  border-radius: 48px 68px 42px 58px / 44px 62px 44px 54px;
  background:
    linear-gradient(90deg, rgba(222,238,232,0.86), rgba(222,238,232,0.30) 20%, rgba(222,238,232,0.03) 42%, transparent 62%);
  pointer-events: none;
}

.hero-structure {
  inset: 1% -7% 0 10%;
  min-height: 560px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.54) 7%, #000 18%);
  filter:
    saturate(1.18)
    contrast(1.20)
    brightness(0.88)
    drop-shadow(0 24px 48px rgba(31,123,255,0.18))
    drop-shadow(0 34px 58px rgba(255,123,80,0.10));
}

.structure-fallback {
  opacity: 0.14;
}

@media (max-width: 900px) {
  .hero-biomorph {
    top: 38%;
    right: -42%;
    width: 145%;
  }

  .hero-structure {
    inset: 0 -2% 0 26%;
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    background:
      linear-gradient(180deg, rgba(213,231,229,0.96), rgba(222,238,232,0.80) 52%, rgba(217,226,232,0.36)),
      rgba(222,238,232,0.76);
  }

  .hero-biomorph {
    top: 68%;
    right: -96%;
    width: 200%;
  }

  .hero-structure {
    inset: 0 0 -5% 30%;
    min-height: 320px;
    filter:
      saturate(1.12)
      contrast(1.16)
      brightness(0.90)
      drop-shadow(0 18px 32px rgba(31,123,255,0.16));
  }
}

/* v27 hero as a full background canvas, not a contained card */
.hero.section-pad {
  position: relative;
  min-height: calc(100vh - 116px);
  min-height: calc(100dvh - 116px);
  padding-top: clamp(64px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(20, 141, 211, 0.16), transparent 34%),
    radial-gradient(ellipse at 82% 80%, rgba(255, 117, 78, 0.10), transparent 32%),
    linear-gradient(112deg, rgba(225, 240, 235, 0.98) 0%, rgba(234, 244, 238, 0.94) 44%, rgba(231, 237, 241, 0.88) 100%);
}

.hero.section-pad::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(228, 241, 236, 0.98) 0%, rgba(228, 241, 236, 0.92) 34%, rgba(228, 241, 236, 0.58) 53%, rgba(228, 241, 236, 0.08) 78%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(72, 93, 82, 0.020) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(180deg, rgba(72, 93, 82, 0.016) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.hero.section-pad::after {
  content: "";
  position: absolute;
  inset: -12% -8% -18% 42%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 42% 40%, rgba(39, 132, 216, 0.18), transparent 42%),
    radial-gradient(ellipse at 76% 68%, rgba(255, 128, 88, 0.12), transparent 38%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: min(690px, calc(100svh - 160px));
  padding: clamp(26px, 4vw, 54px) 0;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -2% -4% -2% -4%;
  z-index: 3;
  display: block !important;
  background: linear-gradient(90deg, rgba(228, 241, 236, 0.99) 0%, rgba(228, 241, 236, 0.97) 31%, rgba(228, 241, 236, 0.78) 47%, rgba(228, 241, 236, 0.18) 64%, transparent 82%);
  pointer-events: none;
}

.hero-copy::after {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(44vw, 680px);
  max-width: 680px;
  padding: clamp(16px, 2vw, 28px) 0;
}

.hero-copy h1 {
  max-width: 720px;
  color: rgba(35, 50, 43, 0.94);
}

.hero-lede {
  max-width: 560px;
  color: rgba(43, 61, 53, 0.82);
}

.hero-body {
  max-width: 560px;
  color: rgba(83, 101, 92, 0.82);
}

.hero-biomorph {
  position: absolute;
  inset: -24% -12% -26% 42%;
  z-index: 2;
  width: auto;
  height: auto;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.hero-biomorph::before,
.hero-biomorph::after {
  display: none !important;
}

.hero-structure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  z-index: 2;
  transform: scale(0.98) translateX(2%);
  transform-origin: center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 8%, rgba(0, 0, 0, 0.78) 22%, #000 36%);
  filter:
    saturate(1.22)
    contrast(1.26)
    brightness(0.86)
    drop-shadow(0 26px 54px rgba(31, 123, 255, 0.22))
    drop-shadow(0 42px 72px rgba(255, 123, 80, 0.13));
}

.structure-fallback {
  opacity: 0.06;
}

@media (max-width: 1080px) {
  .hero.section-pad {
    padding-top: clamp(52px, 7vw, 88px);
    padding-bottom: clamp(260px, 34vw, 390px);
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-content {
    width: min(100%, 680px);
  }

  .hero-biomorph {
    inset: auto -46% -10% 26%;
    height: min(58vw, 520px);
  }

  .hero-structure {
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.34) 7%, rgba(0, 0, 0, 0.94) 22%);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav,
  .nav-cta,
  .nav-toggle {
    display: none;
  }

  .brand img {
    width: 188px;
  }

  .hero.section-pad {
    min-height: calc(100vh - 96px);
    min-height: calc(100dvh - 96px);
    padding-top: 48px;
    padding-bottom: 0;
  }

  .hero.section-pad::before {
    background:
      linear-gradient(180deg, rgba(228, 241, 236, 0.98) 0%, rgba(228, 241, 236, 0.96) 52%, rgba(228, 241, 236, 0.48) 72%, transparent 100%),
      repeating-linear-gradient(90deg, rgba(72, 93, 82, 0.020) 0 1px, transparent 1px 54px),
      repeating-linear-gradient(180deg, rgba(72, 93, 82, 0.016) 0 1px, transparent 1px 54px);
  }

  .hero-copy {
    min-height: 760px;
    padding: 0;
  }

  .hero-copy::before {
    inset: -4% -6% -4% -6%;
    background: linear-gradient(180deg, rgba(228, 241, 236, 0.99) 0%, rgba(228, 241, 236, 0.98) 52%, rgba(228, 241, 236, 0.54) 76%, transparent 100%);
  }

  .hero-content {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .hero-lede,
  .hero-body {
    width: 100%;
    max-width: 340px;
    overflow-wrap: break-word;
  }

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

  .hero-biomorph {
    inset: auto -104% auto 18%;
    top: 430px;
    height: 340px;
  }

  .hero-structure {
    transform: scale(1.04) translateX(0);
    filter:
      saturate(1.18)
      contrast(1.22)
      brightness(0.88)
      drop-shadow(0 18px 36px rgba(31, 123, 255, 0.18));
  }
}

/* v28 editable content modules + separated platform cards */
.platform-section {
  border-bottom: 0;
}

.platform-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 30px);
  margin-top: clamp(34px, 4vw, 56px);
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible;
}

.platform-grid::before {
  display: none !important;
}

.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3) {
  min-height: auto;
  margin: 0 !important;
  padding: clamp(28px, 3vw, 42px);
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  border-radius: 24px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24)),
    radial-gradient(ellipse at 18% 12%, rgba(31, 123, 255, 0.065), transparent 42%),
    radial-gradient(ellipse at 90% 88%, rgba(255, 123, 80, 0.055), transparent 38%),
    rgba(246, 252, 248, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 18px 48px rgba(72, 93, 82, 0.050);
  transform: none !important;
}

.platform-card::before,
.platform-card::after {
  display: none !important;
}

.platform-card h3 {
  margin-top: 0;
}

.platform-card p {
  max-width: 34rem;
}

@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .platform-card:nth-child(1),
  .platform-card:nth-child(2),
  .platform-card:nth-child(3) {
    padding: 28px;
  }
}

/* v29 transparent peptide-binder hero video + compact careers */
.hero-video {
  position: absolute;
  inset: -20% -10% -20% 40%;
  z-index: 2;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.hero-video::before,
.hero-video::after,
.hero-video .biomorph-aura,
.hero-video .structure-fallback,
.hero-video .hero-structure {
  display: none !important;
}

.hero-binder-video {
  width: min(62vw, 1120px);
  max-width: none;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter:
    saturate(1.08)
    contrast(1.04)
    brightness(1.03)
    drop-shadow(0 28px 58px rgba(31, 123, 255, 0.18))
    drop-shadow(0 38px 70px rgba(255, 123, 80, 0.11));
}

.careers-section.section-pad {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.careers-section .section-heading.center {
  max-width: 820px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.careers-section .section-heading.center h2 {
  font-size: clamp(30px, 3.1vw, 46px);
}

.careers-section .section-heading.center p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
}

.jobs-list {
  gap: 10px;
}

.jobs-list article {
  grid-template-columns: 108px minmax(220px, 0.58fr) 1fr;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  padding: clamp(18px, 2.1vw, 28px);
  border-radius: 20px !important;
}

.jobs-list article::before {
  display: none !important;
}

.jobs-list span {
  margin-bottom: 0;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.jobs-list article h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
}

.jobs-list article p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .hero-video {
    inset: auto -40% -9% 24%;
    height: min(58vw, 520px);
  }

  .hero-binder-video {
    width: min(118vw, 940px);
  }
}

@media (max-width: 900px) {
  .jobs-list article {
    grid-template-columns: 96px 1fr;
    align-items: start;
  }

  .jobs-list article p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .hero-video {
    inset: auto -86% auto 16%;
    top: 426px;
    height: 350px;
  }

  .hero-binder-video {
    width: 186vw;
    transform: translateX(-43%);
  }

  .careers-section .section-heading.center {
    text-align: left;
  }

  .jobs-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .jobs-list article p {
    grid-column: auto;
  }
}

/* v30 expandable careers, animated logo, calmer header */
.site-header {
  background:
    linear-gradient(180deg, rgba(247, 255, 249, 0.68), rgba(247, 255, 249, 0.26));
  border-bottom-color: rgba(72, 93, 82, 0.08);
  box-shadow: 0 14px 40px rgba(72, 93, 82, 0.035);
}

.brand {
  position: relative;
  overflow: hidden;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 28px rgba(72, 93, 82, 0.055);
}

.brand img {
  position: relative;
  z-index: 1;
  animation: logo-breathe 8s ease-in-out infinite;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255,255,255,0.64) 48%, transparent 62% 100%);
  transform: translateX(-130%);
  animation: logo-sheen 7.5s ease-in-out infinite;
}

.site-nav a,
.nav-cta {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(72, 93, 82, 0.13);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.44);
}

.jobs-list {
  gap: 10px;
}

.job-card {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.54), rgba(255,255,255,0.22)),
    rgba(246,252,248,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.46),
    0 18px 48px rgba(72,93,82,0.040);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.job-card[open] {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.70), rgba(255,255,255,0.28)),
    rgba(246,252,248,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.58),
    0 24px 60px rgba(72,93,82,0.055);
}

.job-summary {
  display: grid;
  grid-template-columns: 108px minmax(220px, 1fr) auto;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  min-height: 92px;
  padding: clamp(18px, 2.1vw, 28px);
  cursor: pointer;
  list-style: none;
}

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

.job-status,
.job-toggle {
  color: var(--electric);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-summary-copy {
  min-width: 0;
}

.job-summary h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.18;
}

.job-summary p {
  max-width: 48rem;
  margin-top: 8px;
  color: rgba(98,116,107,0.88);
  font-size: 14px;
  line-height: 1.5;
}

.job-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(31,123,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.32);
}

.job-toggle::after {
  content: "+";
  margin-left: 8px;
  font-size: 15px;
  line-height: 1;
}

.job-card[open] .job-toggle::after {
  content: "-";
}

.job-expanded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  padding: 0 clamp(18px, 2.1vw, 28px) clamp(22px, 2.4vw, 32px) calc(108px + clamp(18px, 2.1vw, 28px) + clamp(14px, 2vw, 30px));
}

.job-detail-group h4 {
  margin: 0 0 10px;
  color: rgba(38,54,47,0.78);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-detail-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(82,99,91,0.90);
  font-size: 14px;
  line-height: 1.5;
}

@keyframes logo-sheen {
  0%, 58% { transform: translateX(-130%); opacity: 0; }
  66% { opacity: 0.75; }
  82%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes logo-breathe {
  0%, 100% { filter: saturate(1) brightness(1); }
  45% { filter: saturate(1.08) brightness(1.035); }
}

@media (max-width: 900px) {
  .job-summary {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
  }

  .job-toggle {
    grid-column: 2;
    justify-self: start;
  }

  .job-expanded {
    grid-template-columns: 1fr;
    padding-left: calc(96px + clamp(18px, 2.1vw, 28px) + clamp(14px, 2vw, 30px));
  }
}

@media (max-width: 560px) {
  .site-header {
    background: linear-gradient(180deg, rgba(247,255,249,0.50), rgba(247,255,249,0.12));
  }

  .brand {
    padding: 6px 8px;
    border-radius: 16px;
  }

  .job-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .job-toggle {
    grid-column: auto;
  }

  .job-expanded {
    padding: 0 18px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .brand img,
  .brand::after,
  .job-card {
    animation: none;
    transition: none;
  }
}

/* v31 transparent SVG logo, blended header, tighter hero rhythm, global grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.30;
  background-image:
    radial-gradient(circle at 35% 42%, rgba(38,54,47,0.14) 0 0.45px, transparent 0.8px),
    radial-gradient(circle at 70% 20%, rgba(31,123,255,0.09) 0 0.5px, transparent 0.9px),
    radial-gradient(circle at 22% 78%, rgba(255,123,80,0.075) 0 0.55px, transparent 0.95px);
  background-size: 4px 4px, 7px 7px, 11px 11px;
  mix-blend-mode: multiply;
}

.site-header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding-top: clamp(16px, 2.2vw, 24px);
  padding-bottom: clamp(8px, 1.3vw, 14px);
}

.brand {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand::after {
  display: none;
}

.brand img {
  width: min(224px, 28vw);
  filter: drop-shadow(0 8px 18px rgba(72,93,82,0.10));
}

.site-nav {
  gap: clamp(16px, 2.1vw, 34px);
}

.site-nav a,
.nav-cta {
  min-height: auto;
  padding: 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(38,54,47,0.78) !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--blue) !important;
  background: transparent !important;
  transform: none;
}

.hero.section-pad {
  min-height: calc(100vh - 92px);
  min-height: calc(100dvh - 92px);
  padding-top: clamp(24px, 3.8vw, 52px);
  padding-bottom: clamp(44px, 5.2vw, 78px);
}

.hero-copy {
  min-height: min(620px, calc(100svh - 132px));
  padding-top: clamp(12px, 2vw, 28px);
  padding-bottom: clamp(12px, 2vw, 28px);
}

.hero-content {
  padding-top: 0;
}

.hero-video {
  inset: -18% -10% -18% 39%;
}

@media (max-width: 850px) {
  .site-header {
    background: transparent !important;
    padding-top: 14px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 190px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 188px;
  }

  .hero.section-pad {
    padding-top: 32px;
  }
}

/* v32 header overlays the page instead of creating a top ribbon */
.site-header {
  position: absolute !important;
  z-index: 80 !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.hero.section-pad {
  padding-top: clamp(104px, 8.4vw, 126px);
}

.legal-main {
  padding-top: clamp(124px, 11vw, 154px);
}

@media (max-width: 850px) {
  .hero.section-pad {
    padding-top: 118px;
  }

  .legal-main {
    padding-top: 118px;
  }
}

@media (max-width: 560px) {
  .hero.section-pad {
    padding-top: 118px;
  }
}

/* v33 restore mobile molecule placement after header overlay overrides */
@media (max-width: 560px) {
  .hero-video {
    inset: auto -86% auto 16%;
    top: 430px;
    height: 350px;
  }

  .hero-binder-video {
    width: 186vw;
    transform: translateX(-43%);
  }
}

/* v35 pull hero background under the absolute header edge */
.hero.section-pad {
  margin-top: -26px;
  padding-top: calc(clamp(92px, 7.4vw, 112px) + 26px);
}

@media (max-width: 560px) {
  .hero.section-pad {
    margin-top: -24px;
    padding-top: 130px;
  }
}

/* v34 original logo restored, seamless header edge */
html {
  background: #e4f1ec;
}

.site-header {
  padding-top: clamp(8px, 1.2vw, 14px) !important;
  padding-bottom: 0 !important;
}

.brand,
.brand:hover,
.brand:focus-visible {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline-offset: 6px;
}

.brand img {
  width: min(220px, 28vw);
  animation: none !important;
  filter: none !important;
}

.site-nav a,
.nav-cta {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.hero.section-pad {
  padding-top: clamp(92px, 7.4vw, 112px);
}

@media (max-width: 850px) {
  .brand img {
    width: 190px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 8px !important;
  }

  .brand img {
    width: 188px;
  }

  .hero.section-pad {
    padding-top: 106px;
  }
}

/* v36 investor copy header polish */
.site-header {
  align-items: center !important;
  padding-top: clamp(14px, 1.6vw, 20px) !important;
  padding-bottom: clamp(6px, 0.8vw, 10px) !important;
}

.brand {
  transform: translateY(4px);
}

.brand img {
  width: min(165px, 21vw);
}

@media (max-width: 850px) {
  .brand img {
    width: 142px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 12px !important;
  }

  .brand {
    transform: translateY(3px);
  }

  .brand img {
    width: 140px;
  }

  .nav-toggle {
    display: inline-flex !important;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    padding: 8px 0 8px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--ink) !important;
  }

  .nav-toggle i,
  .nav-toggle i::before,
  .nav-toggle i::after {
    background: var(--ink) !important;
  }

  .site-nav {
    display: none !important;
    inset: 66px 18px auto 18px;
    background: #edf8f4 !important;
    border: 1px solid rgba(16, 32, 24, 0.18) !important;
    box-shadow: 0 18px 46px rgba(27, 48, 39, 0.12) !important;
    backdrop-filter: blur(14px);
  }

  body.nav-open .site-nav {
    display: flex !important;
  }
}

/* v37 lighter transparent section cards */
.platform-card,
.platform-card:nth-child(1),
.platform-card:nth-child(2),
.platform-card:nth-child(3),
.lock-card,
.lock-card.lock-card-text,
.editorial-card,
.team-card {
  border: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.20) !important;
}

.platform-card::before,
.platform-card::after,
.editorial-card::before,
.editorial-card::after,
.lock-card::before,
.lock-card::after,
.team-card::before,
.team-card::after {
  border: 0 !important;
  box-shadow: none !important;
}

.platform-grid,
.editorial-grid,
.team-grid {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* v38 compact founders section */
.team-section.section-pad {
  padding-top: clamp(42px, 5vw, 72px) !important;
  padding-bottom: clamp(42px, 5vw, 72px) !important;
}

.team-section .section-heading.center {
  margin-bottom: clamp(18px, 2.6vw, 34px) !important;
}

.team-section .section-heading h2:empty {
  display: none !important;
}

.team-grid {
  gap: clamp(10px, 1.4vw, 18px) !important;
}

.team-card {
  grid-template-columns: 68px 1fr !important;
  gap: 16px !important;
  padding: clamp(16px, 2vw, 24px) !important;
  min-height: 0 !important;
}

.team-card .portrait {
  width: 68px !important;
  padding-bottom: 11px !important;
  font-size: 10px !important;
}

.team-card h3 {
  font-size: clamp(18px, 1.6vw, 21px) !important;
}

.team-card p {
  margin-top: 4px !important;
  font-size: 13px !important;
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v39 fine paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 9px 8px, rgba(17, 17, 15, 0.055) 0.55px, transparent 0.75px),
    radial-gradient(circle at 23px 29px, rgba(17, 17, 15, 0.036) 0.5px, transparent 0.7px);
  background-size: 34px 34px, 47px 47px;
  mix-blend-mode: multiply;
}

/* v40 brighter grain and founder role polish */
.team-card {
  display: block !important;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px) !important;
}

.team-card .portrait {
  display: none !important;
}

.team-card h3 {
  font-size: clamp(18px, 1.55vw, 22px) !important;
  line-height: 1.15 !important;
}

.team-card p {
  display: inline-flex !important;
  margin-top: 8px !important;
  padding: 4px 9px !important;
  border-radius: 999px !important;
  background: rgba(3, 79, 197, 0.07) !important;
  color: rgba(38, 54, 47, 0.72) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
}

.founder-link {
  display: inline-flex !important;
  align-items: center !important;
  margin-left: 8px !important;
  margin-top: 8px !important;
  padding: 4px 9px !important;
  border-radius: 999px !important;
  background: rgba(3, 79, 197, 0.11) !important;
  color: rgba(3, 79, 197, 0.86) !important;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.founder-link:hover,
.founder-link:focus-visible {
  background: rgba(3, 79, 197, 0.18) !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    radial-gradient(circle at 8px 8px, rgba(17, 17, 15, 0.062) 0.58px, transparent 0.78px),
    radial-gradient(circle at 21px 27px, rgba(17, 17, 15, 0.04) 0.5px, transparent 0.72px),
    radial-gradient(circle at 31px 12px, rgba(3, 79, 197, 0.022) 0.52px, transparent 0.78px),
    radial-gradient(circle at 13px 34px, rgba(239, 106, 42, 0.020) 0.52px, transparent 0.78px);
  background-size: 26px 26px, 39px 39px, 48px 48px, 56px 56px;
  mix-blend-mode: multiply;
}

/* v41 founder sketch placeholders */
.team-card {
  display: grid !important;
  grid-template-columns: 78px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 16px !important;
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.2vw, 30px) !important;
}

.team-card .portrait {
  display: block !important;
  width: 78px !important;
  aspect-ratio: 1 !important;
  padding: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 12px 28px rgba(39, 58, 50, 0.10) !important;
}

.team-card .portrait img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.founder-copy {
  min-width: 0 !important;
}

@media (max-width: 560px) {
  .team-card {
    grid-template-columns: 68px minmax(0, 1fr) !important;
  }

  .team-card .portrait {
    width: 68px !important;
    border-radius: 16px !important;
  }
}

/* v42 remove founder portraits and intensify bright grain */
.team-card {
  display: block !important;
  grid-template-columns: none !important;
  padding: clamp(18px, 2vw, 26px) clamp(22px, 2.4vw, 32px) !important;
}

.team-card .portrait {
  display: none !important;
}

.founder-copy {
  min-width: 0 !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.66;
  background-image:
    radial-gradient(circle at 7px 7px, rgba(17, 17, 15, 0.075) 0.62px, transparent 0.86px),
    radial-gradient(circle at 18px 22px, rgba(17, 17, 15, 0.052) 0.56px, transparent 0.8px),
    radial-gradient(circle at 29px 11px, rgba(3, 79, 197, 0.030) 0.55px, transparent 0.82px),
    radial-gradient(circle at 12px 31px, rgba(239, 106, 42, 0.028) 0.55px, transparent 0.82px),
    radial-gradient(circle at 36px 38px, rgba(17, 17, 15, 0.034) 0.48px, transparent 0.72px);
  background-size: 18px 18px, 28px 28px, 36px 36px, 44px 44px, 52px 52px;
  mix-blend-mode: multiply;
}
