/* =============================================================
   MACRO HRD — Main Stylesheet
   The AI Architect of Purpose
   ============================================================= */


/* -------------------------------------------------------------
   1.  DESIGN TOKENS (CSS variables)
   ------------------------------------------------------------- */

:root {
  /* Color palette */
  --ivory: #fafafa;
  --ivory-deep: #f7f7f7;
  --ink: #071116;
  --ink-soft: #13272d;
  --ink-faded: #60726f;
  --ochre: #d7a35b;
  --ochre-deep: #a87535;
  --bio-teal: #0b8b88;
  --bio-cyan: #64eee7;
  --bio-navy: #061b26;

  /* Rules and lines */
  --rule: rgba(7, 17, 22, 0.12);
  --rule-soft: rgba(7, 17, 22, 0.06);
}


/* -------------------------------------------------------------
   2.  RESET + BASE
   ------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02";
}

/* Ambient background gradients */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(88, 224, 216, 0.055) 0%, transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(215, 163, 91, 0.04) 0%, transparent 46%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle paper-grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

main {
  position: relative;
  z-index: 3;
}


/* -------------------------------------------------------------
   3.  HEADER + NAV
   ------------------------------------------------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  padding: 14px clamp(22px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(6, 27, 38, 0.9);
  border-bottom: 1px solid rgba(100, 238, 231, 0.2);
  box-shadow: 0 1px 24px rgba(100, 238, 231, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

header::before {
  display: none;
}

.logo {
  width: 154px;
  min-width: 154px;
  height: 44px;
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 44px;
  color: #eefcf8;
  text-decoration: none;
  position: relative;
}

.logo a::after {
  display: none;
}

.logo img {
  width: 154px;
  height: auto;
  display: block;
  filter: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 24px);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.115em;
  font-weight: 700;
}

nav a {
  color: rgba(238, 252, 248, 0.82);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(238, 252, 248, 0.08);
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
  position: relative;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 16px rgba(88, 224, 216, 0.18);
  transform: translateY(-1px);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width 0.4s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #fff;
  text-shadow: 0 0 18px rgba(88, 224, 216, 0.22);
}

nav a.active::after {
  width: 100%;
}

nav .topbar-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(244, 183, 75, 0.72);
  border-radius: 999px;
  background: rgba(244, 183, 75, 0.16);
  color: #fff2cf;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

nav .topbar-cta:hover {
  color: #071116;
  background: #f4b74b;
  border-color: #f4b74b;
  box-shadow: 0 0 26px rgba(244, 183, 75, 0.28);
}

nav .topbar-cta::after {
  display: none;
}


/* -------------------------------------------------------------
   4.  VENTURES DROPDOWN
   ------------------------------------------------------------- */

.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-caret {
  font-size: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
  transform: translateY(-1px);
}

.nav-item-dropdown:hover .nav-caret {
  transform: translateY(1px);
}

.dropdown-panel {
  position: fixed;
  top: 70px;
  left: 48px;
  right: 48px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  box-shadow: 0 20px 60px rgba(26, 31, 46, 0.08),
              0 2px 8px rgba(26, 31, 46, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 99;
  padding: 0;
}

.nav-item-dropdown:hover .dropdown-panel,
.dropdown-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Invisible hover bridge to stop flicker */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--ivory);
  position: relative;
}

.dropdown-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(184, 135, 74, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.dropdown-col {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--rule-soft);
  position: relative;
}

.dropdown-col:last-child {
  border-right: none;
}

.dropdown-domain {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-soft);
}

.dropdown-domain-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: var(--ochre);
  letter-spacing: 0.15em;
}

.dropdown-domain-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
}

.dropdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-list li a {
  display: block;
  padding: 12px 12px 12px 12px;
  margin: 0 -12px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, padding 0.3s ease;
  position: relative;
}

.dropdown-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width 0.35s ease;
}

.dropdown-list li a:hover {
  background: rgba(184, 135, 74, 0.05);
  padding-left: 18px;
}

.dropdown-list li a:hover::before {
  width: 8px;
}

.dropdown-list li a:hover::after {
  width: 0;
}

.v-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 4px;
}

.v-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--ochre-deep);
}

.v-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ochre);
  padding: 2px 7px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  margin-bottom: 8px;
  font-weight: 400;
}

.v-tagline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-faded);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  max-width: 95%;
}

.dropdown-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--ivory-deep);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
  border-top: 1px solid var(--rule-soft);
}

.dropdown-all {
  color: var(--ochre);
  text-decoration: none;
  letter-spacing: 0.2em;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.dropdown-all:hover {
  color: var(--ochre-deep);
  letter-spacing: 0.3em;
}

.dropdown-all::after {
  display: none;
}


/* -------------------------------------------------------------
   5.  MOBILE MENU
   ------------------------------------------------------------- */

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-trigger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #e8fffb;
  transition: all 0.3s ease;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #061b26;
  background-image:
    radial-gradient(circle at 85% 16%, rgba(88, 224, 216, 0.16), transparent 30%),
    linear-gradient(180deg, #061b26 0%, #082631 100%);
  z-index: 200;
  overflow-y: auto;
  opacity: 1;
  visibility: hidden;
  transform: translateY(-8px);
  transition: visibility 0s linear 220ms, transform 220ms ease;
  pointer-events: none;
}

.mobile-overlay.open {
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 40px;
  color: #eefcf8;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  font-weight: 300;
  z-index: 2;
}

.mobile-inner {
  position: relative;
  z-index: 1;
  padding: 100px 32px 60px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.mobile-link {
  font-family: 'Poppins', sans-serif;
  font-size: 27px;
  font-weight: 500;
  color: #eefcf8;
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.mobile-link::after {
  display: none;
}

.mobile-ventures {
  border-top: 1px solid rgba(88, 224, 216, 0.16);
  border-bottom: 1px solid rgba(88, 224, 216, 0.16);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-heading {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ochre-deep);
  margin-bottom: 8px;
}

.mobile-domain-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-domain-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 4px;
}

.mobile-v {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: rgba(238, 252, 248, 0.86);
  text-decoration: none;
  padding: 4px 0;
}

.mobile-v::after {
  display: none;
}


/* -------------------------------------------------------------
   6.  HERO
   ------------------------------------------------------------- */

.hero {
  min-height: 100vh;
  padding: 180px 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ochre);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
  animation: fadeUp 1.2s ease-out 0.15s forwards;
  opacity: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 300;
}

.hero-lede {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  font-style: italic;
  animation: fadeUp 1.2s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-right {
  position: relative;
  animation: fadeUp 1.4s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-figure {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin-left: auto;
}

.diagram svg {
  width: 100%;
  height: auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -------------------------------------------------------------
   7.  MISSION / VISION
   ------------------------------------------------------------- */

.mv-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 48px;
  border-top: 1px solid var(--rule);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.mv-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}

.mv-left-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 320px;
  color: var(--ink);
}

.mv-label-num {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-faded);
  margin-right: 8px;
}

.mv-block {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}

.mv-block:first-child {
  border-top: none;
  padding-top: 0;
}

.mv-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}

.mv-block .statement {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mv-block .statement em {
  font-style: italic;
  color: var(--ochre-deep);
}

.mv-block .body {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-faded);
  max-width: 620px;
}


/* -------------------------------------------------------------
   8.  PHILOSOPHY QUOTE (dark section)
   ------------------------------------------------------------- */

.philosophy {
  background: var(--ink);
  color: var(--ivory);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(184, 135, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}

.philosophy-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.philosophy-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ochre);
}

.philosophy-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.philosophy-quote em {
  font-style: italic;
  color: var(--ochre);
}

.philosophy-quote .mark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4em;
  color: var(--ochre);
  font-style: italic;
  line-height: 0;
  position: relative;
  top: 0.15em;
}

.philosophy-attribution {
  margin-top: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faded);
}


/* -------------------------------------------------------------
   9.  GEDM-3DQ SPINE
   ------------------------------------------------------------- */

.gedm {
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 48px;
}

.gedm-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: end;
}

.gedm-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.gedm-header h2 em {
  font-style: italic;
  color: var(--ochre-deep);
}

.gedm-header .subtitle {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink-faded);
  line-height: 1.6;
  max-width: 480px;
}

.gedm-header .subtitle em {
  font-style: italic;
  color: var(--ochre-deep);
  font-weight: 400;
}

.gedm-acronym {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faded);
  max-width: 460px;
}

.gedm-acronym span {
  position: relative;
}

.gedm-acronym span:first-letter {
  color: var(--ochre);
  font-size: 14px;
  font-weight: 500;
}

.gedm-acronym span.in {
  color: var(--ink-faded);
  opacity: 0.5;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0.1em;
}

.gedm-acronym span.in:first-letter {
  color: var(--ink-faded);
  font-size: 10px;
  font-weight: 300;
}

.gedm-spine {
  position: relative;
  padding-left: 120px;
}

.gedm-spine::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--rule) 8%,
    var(--rule) 92%,
    transparent 100%);
}

.layer {
  position: relative;
  padding: 48px 0 48px 80px;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  transition: all 0.6s ease;
}

.layer:first-child {
  border-top: none;
}

.layer:hover {
  background: linear-gradient(to right, rgba(184, 135, 74, 0.03), transparent 70%);
}

.layer:hover .layer-dot {
  background: var(--ochre);
  transform: translate(-50%, -50%) scale(1.4);
}

.layer:hover .layer-num {
  color: var(--ochre-deep);
}

.layer-dot {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1px var(--rule);
  transition: all 0.4s ease;
  z-index: 2;
}

.layer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layer-num {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink-faded);
  transition: color 0.4s ease;
}

.layer-mono {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
}

.layer-name {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 8px;
}

.layer-name em {
  font-style: italic;
  color: var(--ochre-deep);
}

.layer-right {
  padding-top: 8px;
}

.layer-human {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--ink-faded);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.layer-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 540px;
}

.layer-arrow {
  display: inline-block;
  color: var(--ochre);
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin: 0 10px;
}


/* -------------------------------------------------------------
   10.  CLOSING
   ------------------------------------------------------------- */

.closing {
  max-width: 1040px;
  margin: 0 auto;
  padding: 140px 48px 180px;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.closing-mark {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ochre);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.closing h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 48px;
}

.closing h3 em {
  font-style: italic;
  color: var(--ochre-deep);
}

.closing-sig {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-faded);
}

.closing-sig::before,
.closing-sig::after {
  content: '⸻';
  color: var(--rule);
  margin: 0 20px;
  font-style: normal;
}


/* -------------------------------------------------------------
   11.  FOOTER (dark section)
   ------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 100px 48px 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(184, 135, 74, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.12em;
  color: var(--ivory);
}

.mobile-link-current {
  color: var(--ochre);
}

.route-motion-ready .route-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--route-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.route-motion-ready .route-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.vconnect-card,
.vcap-card,
.engage-pillar,
.insight-cards article,
.metric-grid div {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.vconnect-card:hover,
.vcap-card:hover,
.engage-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 111, 113, 0.28);
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.08);
}

.footer-logo img {
  width: 156px;
  height: auto;
  display: block;
  filter: none;
}

.footer-logo span {
  color: var(--ochre);
  font-style: italic;
  font-weight: 400;
}

.footer-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.55);
  max-width: 260px;
}

.footer-tag em {
  font-style: italic;
  color: var(--ochre);
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 135, 74, 0.25);
  margin-bottom: 6px;
}

.footer-address {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  font-weight: 300;
}

.footer-email,
.footer-web {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.footer-email::after,
.footer-web::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width 0.4s ease;
}

.footer-email:hover,
.footer-web:hover {
  color: var(--ochre);
}

.footer-email:hover::after,
.footer-web:hover::after {
  width: 100%;
}

.footer-web {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 232, 0.6);
  margin-top: 4px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease, padding 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  color: var(--ochre);
  transition: opacity 0.3s ease, left 0.3s ease;
}

.footer-nav a:hover {
  color: var(--ochre);
  padding-left: 18px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-motto {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(245, 241, 232, 0.45);
  font-style: italic;
}

.footer-motto em {
  font-style: italic;
  color: var(--ochre);
}

.footer-legal {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.35);
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-dot {
  color: var(--ochre);
  opacity: 0.5;
}


/* -------------------------------------------------------------
   12.  RESPONSIVE
   ------------------------------------------------------------- */

/* Tablet — tighten 4-col dropdown */
@media (max-width: 1100px) and (min-width: 901px) {
  header::before {
    display: none;
  }
  nav {
    gap: 18px;
    font-size: 9px;
  }
  nav .topbar-cta {
    padding-inline: 12px;
  }
  .dropdown-panel {
    left: 24px;
    right: 24px;
  }
  .dropdown-col {
    padding: 36px 24px 28px;
  }
  .v-name {
    font-size: 17px;
  }
  .v-tagline {
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 900px) {
  header {
    padding: 20px 24px;
  }
  header::before {
    display: none;
  }
  nav {
    gap: 0;
  }
  nav > a,
  nav > a.topbar-cta,
  .nav-item-dropdown {
    display: none;
  }
  .mobile-menu-trigger {
    display: flex;
  }
  .mobile-overlay {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 140px 24px 80px;
    gap: 60px;
  }
  .hero-figure {
    max-width: 360px;
    margin: 0 auto;
  }

  .mv-section,
  .gedm {
    padding: 80px 24px;
  }
  .mv-grid,
  .gedm-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .philosophy {
    padding: 100px 24px;
  }
  .gedm-spine {
    padding-left: 40px;
  }
  .gedm-spine::before {
    left: 20px;
  }
  .layer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 40px;
  }
  .layer-dot {
    left: -20px;
  }
  .layer-num {
    font-size: 36px;
  }
  .layer-name {
    font-size: 26px;
  }
  .closing {
    padding: 80px 24px 120px;
  }

  .site-footer {
    padding: 70px 24px 32px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-cols .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 32px;
  }
  .footer-motto {
    font-size: 15px;
  }
}


/* =============================================================
   HOMEPAGE REDESIGN - premium biotech visual system
   Scoped to body.home-page so existing program pages keep their
   established editorial layout.
   ============================================================= */

.home-page {
  --home-black: #061b26;
  --home-navy: #061017;
  --home-teal: #0e4f56;
  --home-teal-soft: #2ed9d0;
  --home-cyan: #9af8f2;
  --home-paper: var(--ivory);
  --home-ink: #0d1b22;
  --home-line-dark: rgba(13, 27, 34, 0.12);
  --home-gold: #d7a35b;
  background: var(--home-black);
  color: #eefcf8;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.home-page::before {
  background:
    radial-gradient(circle at 72% 8%, rgba(46, 217, 208, 0.16), transparent 32%),
    radial-gradient(circle at 18% 20%, rgba(215, 163, 91, 0.08), transparent 28%);
  background-size: auto, auto;
  opacity: 1;
  mix-blend-mode: normal;
}

.home-page::after {
  opacity: 0.035;
  mix-blend-mode: screen;
}

.home-page main {
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 224, 216, 0.1), transparent 28%),
    radial-gradient(circle at 16% 48%, rgba(215, 163, 91, 0.055), transparent 34%),
    var(--ivory);
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .home-nav,
.home-page .header-cta,
.home-page .btn,
.home-page .pipeline-program,
.home-page .metric-grid strong {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  margin: 0;
}

.home-page a:focus-visible,
.home-page button:focus-visible {
  outline: 2px solid var(--home-cyan);
  outline-offset: 4px;
}

.home-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-cyan);
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-page .section-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.home-page .section-kicker.dark {
  color: var(--home-teal);
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 70px;
  padding: 13px clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  background: rgba(6, 27, 38, 0.9);
  border-bottom: 1px solid rgba(154, 248, 242, 0.22);
  box-shadow: 0 1px 24px rgba(46, 217, 208, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-header::before {
  display: none;
}

.brand-lockup,
.footer-logo-img {
  display: inline-flex;
  width: 154px;
  height: 44px;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.brand-lockup::after,
.footer-logo-img::after {
  display: none;
}

.brand-lockup img,
.footer-logo-img img {
  width: 154px;
  height: auto;
  display: block;
  filter: none;
}

.home-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-nav a,
.header-cta,
.home-nav .topbar-cta {
  color: rgba(238, 252, 248, 0.72);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.home-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.home-nav a::after,
.header-cta::after,
.home-nav .topbar-cta::after {
  display: none;
}

.header-cta,
.home-nav .topbar-cta {
  min-height: 38px;
  padding: 11px 20px 10px;
  border: 1px solid rgba(215, 163, 91, 0.54);
  border-radius: 999px;
  color: #fff6e8;
  background: rgba(215, 163, 91, 0.11);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-cta:hover,
.home-nav .topbar-cta:hover {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: #081015;
  box-shadow: 0 0 30px rgba(215, 163, 91, 0.22);
}

.home-nav a.active {
  color: #fff;
}

.home-page .mobile-menu-trigger {
  justify-self: end;
}

.home-page .mobile-menu-trigger span {
  background: #dffbf8;
}

.home-page .mobile-overlay {
  background-color: #061b26;
  background-image:
    radial-gradient(circle at 86% 18%, rgba(46, 217, 208, 0.16), transparent 28%),
    linear-gradient(180deg, #061b26 0%, #082631 100%);
}

.home-page .mobile-close,
.home-page .mobile-link {
  color: #f1fffb;
}

.home-page .mobile-link-accent {
  color: var(--home-gold);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 118px clamp(22px, 4vw, 56px) 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(46, 217, 208, 0.34), transparent 34%),
    radial-gradient(circle at 86% 32%, rgba(244, 183, 75, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(7, 31, 46, 0.96), rgba(8, 63, 78, 0.94) 50%, rgba(0, 138, 140, 0.8));
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 70px 0 0;
  background:
    radial-gradient(circle at 62% 35%, rgba(154, 248, 242, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 55%, rgba(215, 163, 91, 0.20) 0 2px, transparent 5px),
    radial-gradient(circle at 76% 62%, rgba(154, 248, 242, 0.08), transparent 26%);
  background-size: 120px 120px, 180px 180px, auto;
  opacity: 0.9;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  right: -12vw;
  top: 72px;
  width: 66vw;
  height: 660px;
  background:
    radial-gradient(circle at 52% 48%, rgba(154, 248, 242, 0.26), transparent 0 9%, rgba(46, 217, 208, 0.12) 10%, transparent 34%),
    radial-gradient(circle at 62% 54%, rgba(215, 163, 91, 0.1), transparent 28%);
  filter: blur(3px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  min-height: calc(100vh - 188px);
  min-height: calc(100svh - 188px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  margin-top: 22px;
  color: #f6fffb;
  font-family: 'Poppins', 'Poppins', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--home-cyan);
  text-shadow: 0 0 28px rgba(154, 248, 242, 0.24);
}

.mobile-title-break {
  display: none;
}

.home-page .hero-lede {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(238, 252, 248, 0.8);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 1.35vw, 19px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  animation: none;
  opacity: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-amber {
  border: 1px solid var(--home-gold);
  background: linear-gradient(135deg, #e7b86f, var(--home-gold));
  color: #071116;
  box-shadow: 0 12px 34px rgba(215, 163, 91, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(154, 248, 242, 0.28);
  background: rgba(154, 248, 242, 0.06);
  color: #dffbf8;
}

.btn-secondary:hover {
  border-color: rgba(154, 248, 242, 0.58);
  box-shadow: 0 0 28px rgba(46, 217, 208, 0.14);
}

.hero-visual {
  width: min(61vw, 936px);
  height: min(45vw, 549px);
  min-height: 450px;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  overflow: hidden;
  position: absolute;
  top: 34px;
  right: max(-7vw, -120px);
  z-index: 1;
  transform: translate3d(0, var(--hero-depth, 0), 0);
  transition: box-shadow 220ms ease;
  -webkit-mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 31%, rgba(0, 0, 0, 0.82) 47%, rgba(0, 0, 0, 0.28) 67%, transparent 87%),
    linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 87%, transparent 100%);
  mask-image:
    radial-gradient(ellipse at 50% 50%, #000 0 31%, rgba(0, 0, 0, 0.82) 47%, rgba(0, 0, 0, 0.28) 67%, transparent 87%),
    linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 87%, transparent 100%);
  -webkit-mask-composite: source-in, source-in;
  mask-composite: intersect;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -25%;
  z-index: 3;
  background:
    radial-gradient(ellipse at 48% 50%, transparent 28%, rgba(5, 31, 43, 0.3) 58%, rgba(5, 31, 43, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 31, 46, 0.96) 0%, rgba(7, 31, 46, 0.28) 26%, transparent 50%, rgba(0, 111, 112, 0.56) 100%),
    linear-gradient(180deg, rgba(5, 31, 43, 0.82) 0%, transparent 24%, transparent 68%, rgba(0, 99, 101, 0.76) 100%);
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 56% 45%, rgba(154, 248, 242, 0.2), transparent 26%),
    radial-gradient(circle at 43% 58%, rgba(215, 163, 91, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(8, 94, 105, 0.3), rgba(154, 248, 242, 0.08) 42%, rgba(215, 163, 91, 0.12));
  mix-blend-mode: screen;
  opacity: 0.95;
  pointer-events: none;
}

.hero-video-frame {
  position: absolute;
  inset: -8%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 31, 46, 0.26), rgba(8, 109, 117, 0.08) 46%, rgba(0, 138, 140, 0.18)),
    linear-gradient(180deg, rgba(6, 19, 26, 0.2), rgba(154, 248, 242, 0.02) 46%, rgba(6, 19, 26, 0.22));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.07) contrast(1.04) saturate(1.02) sepia(0.02) hue-rotate(10deg);
  transform: scale(1);
}

.motion-reduced .hero-video {
  animation-play-state: paused;
}

.platform-snapshot {
  position: relative;
  z-index: 4;
  padding: 66px clamp(22px, 4vw, 56px) 72px;
  background:
    radial-gradient(circle at 82% 10%, rgba(46, 217, 208, 0.1), transparent 24%),
    #f6faf7;
  border-bottom: 1px solid rgba(7, 17, 22, 0.08);
}

.platform-snapshot-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.platform-snapshot-header {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.platform-snapshot-header h2 {
  margin-top: 18px;
  color: var(--home-ink);
  font-size: clamp(22px, 2.65vw, 39px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.platform-snapshot-header > p {
  max-width: 560px;
  color: #3d514f;
  font-size: 16px;
  line-height: 1.75;
}

.feature-row {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: transparent;
}

.feature-card {
  min-height: 184px;
  padding: 24px 22px;
  border: 1px solid rgba(7, 17, 22, 0.08);
  background: linear-gradient(180deg, #ffffff, #edf5f1);
  box-shadow: 0 14px 34px rgba(7, 17, 22, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.feature-card::after,
.insight-cards article::after,
.metric-grid div::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(154, 248, 242, 0.18), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.feature-card:hover {
  border-color: rgba(11, 139, 136, 0.26);
  box-shadow: 0 20px 48px rgba(7, 17, 22, 0.08);
}

.feature-card:hover::after,
.insight-cards article:hover::after,
.metric-grid div:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11, 139, 136, 0.36);
  border-radius: 50%;
  position: relative;
  margin-bottom: 22px;
  box-shadow: 0 0 22px rgba(46, 217, 208, 0.12);
  animation: iconPulse 4.8s ease-in-out infinite;
}

.feature-icon::before,
.feature-icon::after,
.feature-icon span {
  content: '';
  position: absolute;
  border: 1px solid rgba(11, 139, 136, 0.78);
}

.feature-icon::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  left: 10px;
  top: 10px;
}

.feature-icon::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  right: 4px;
  top: 7px;
}

.feature-icon span {
  left: 9px;
  right: 9px;
  top: 20px;
  height: 1px;
  border-width: 1px 0 0;
  transform: rotate(-24deg);
}

.icon-cell::before {
  width: 22px;
  height: 22px;
  left: 8px;
  top: 8px;
}

.icon-delivery::before {
  border-radius: 4px;
  transform: rotate(45deg);
}

.icon-focus::before {
  width: 24px;
  height: 24px;
  left: 7px;
  top: 7px;
}

.feature-card h2 {
  color: #071116;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.feature-card p {
  margin-top: 10px;
  color: #60726f;
  font-size: 13px;
  line-height: 1.65;
}

.pipeline-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(32px, 5vw, 78px);
  padding: 86px clamp(22px, 4vw, 56px);
  background:
    radial-gradient(circle at 18% 20%, rgba(46, 217, 208, 0.12), transparent 24%),
    var(--home-paper);
  color: var(--home-ink);
}

.pipeline-intro {
  max-width: 440px;
  justify-self: end;
}

.pipeline-intro h2,
.platform-snapshot-header h2,
.mission-copy h2,
.gedm-copy h2,
.insights-section h2,
.cta-strip h2 {
  margin-top: 18px;
  font-family: 'Poppins', 'Poppins', sans-serif;
  font-size: clamp(22px, 2.65vw, 39px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.pipeline-intro h2 span,
.gedm-copy h2 span {
  color: var(--home-teal);
}

.pipeline-intro p {
  margin-top: 20px;
  color: #3d514f;
  font-size: 15px;
  line-height: 1.78;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--home-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.home-section-actions .text-link {
  margin-top: 0;
}

.text-link-light {
  color: var(--home-cyan);
  border-bottom-color: rgba(154, 248, 242, 0.72);
}

.pipeline-table {
  width: min(100%, 920px);
  justify-self: start;
  border: 1px solid var(--home-line-dark);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 28px 80px rgba(13, 27, 34, 0.09);
  overflow: hidden;
}

.pipeline-head,
.pipeline-row {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr 1.52fr 1.05fr;
  gap: 18px;
  align-items: center;
}

.pipeline-head {
  padding: 16px 20px;
  background: #d8e5e1;
  color: #57706c;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pipeline-row {
  min-height: 88px;
  padding: 18px 20px;
  border-top: 1px solid var(--home-line-dark);
  color: #3c504e;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
  transition: background 160ms ease;
  position: relative;
}

.pipeline-row:hover {
  background: rgba(46, 217, 208, 0.08);
}

.pipeline-program {
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 800;
}

.stage {
  display: grid;
  gap: 8px;
  color: var(--home-teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage i {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(13, 27, 34, 0.12);
  overflow: hidden;
}

.stage i::before {
  content: '';
  display: block;
  width: var(--stage);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-teal), var(--home-teal-soft));
  transform-origin: left center;
  animation: stageFill 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.mission-split {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  min-height: 460px;
  background: linear-gradient(135deg, #061b26, #0b3a46);
  color: #f4fffc;
  border-top: 1px solid rgba(154, 248, 242, 0.12);
  border-bottom: 1px solid rgba(154, 248, 242, 0.12);
}

.mission-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(154, 248, 242, 0.18), transparent 28%),
    radial-gradient(circle at 72% 26%, rgba(215, 163, 91, 0.10), transparent 20%),
    linear-gradient(120deg, rgba(46, 217, 208, 0.1), rgba(0, 0, 0, 0));
}

.mission-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(154, 248, 242, 0.32) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 38%, rgba(154, 248, 242, 0.28) 0 3px, transparent 5px),
    radial-gradient(circle at 45% 72%, rgba(215, 163, 91, 0.24) 0 3px, transparent 6px);
}

.human-silhouette {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 210px;
  height: 360px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 20%, rgba(238, 252, 248, 0.32) 0 42px, transparent 43px),
    linear-gradient(180deg, rgba(154, 248, 242, 0.24), rgba(154, 248, 242, 0.02));
  clip-path: polygon(40% 0, 60% 0, 68% 18%, 78% 39%, 70% 100%, 30% 100%, 22% 39%, 32% 18%);
  filter: drop-shadow(0 0 42px rgba(46, 217, 208, 0.24));
  animation: silhouetteBreathe 6.4s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-cyan), transparent);
  box-shadow: 0 0 22px rgba(154, 248, 242, 0.7);
  animation: scanDrift 4.6s ease-in-out infinite;
}

.mission-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--home-cyan);
  border-radius: 50%;
  background: rgba(154, 248, 242, 0.2);
  box-shadow: 0 0 24px rgba(154, 248, 242, 0.45);
  animation: nodePulse 3.6s ease-in-out infinite;
}

.node-a { left: 24%; top: 26%; }
.node-b { right: 25%; top: 38%; }
.node-c { left: 43%; bottom: 22%; }

.mission-copy {
  max-width: 660px;
  align-self: center;
  padding: 70px clamp(28px, 6vw, 92px);
}

.mission-copy h2 {
  color: #f7fffc;
  text-transform: uppercase;
}

.mission-copy p:not(.section-kicker) {
  margin-top: 22px;
  color: rgba(238, 252, 248, 0.84);
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0;
}

.mission-copy .mission-statement-home {
  color: #f7fffc;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.42;
}

.mission-copy blockquote {
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--home-gold);
  color: var(--home-gold);
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.25;
}

.gedm-section {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: 76px clamp(22px, 4vw, 56px);
  background:
    radial-gradient(circle at 72% 46%, rgba(46, 217, 208, 0.14), transparent 30%),
    linear-gradient(180deg, #061017, #081a20);
  color: #f1fffb;
}

.gedm-copy {
  max-width: 650px;
  justify-self: end;
}

.gedm-copy h2 {
  max-width: 620px;
}

.gedm-copy p {
  margin-top: 22px;
  color: rgba(238, 252, 248, 0.78);
  font-size: 15px;
  line-height: 1.78;
}

.gedm-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.gedm-points li {
  padding: 12px 14px;
  border: 1px solid rgba(154, 248, 242, 0.16);
  background: rgba(154, 248, 242, 0.055);
  color: rgba(238, 252, 248, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.gedm-visual {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(154, 248, 242, 0.16);
  background:
    radial-gradient(circle at 52% 42%, rgba(154, 248, 242, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(154, 248, 242, 0.08), transparent),
    rgba(2, 10, 14, 0.5);
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(46, 217, 208, 0.08);
}

.gedm-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 35%, rgba(154, 248, 242, 0.26) 0 2px, transparent 4px),
    radial-gradient(circle at 68% 54%, rgba(154, 248, 242, 0.22) 0 2px, transparent 4px),
    radial-gradient(circle at 52% 70%, rgba(215, 163, 91, 0.22) 0 2px, transparent 5px);
  opacity: 0.85;
}

.axis {
  position: absolute;
  left: 24%;
  top: 58%;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--home-cyan), transparent);
  transform-origin: left center;
}

.axis-x { transform: rotate(0deg); }
.axis-y { transform: rotate(-58deg); }
.axis-z { transform: rotate(38deg); }

.data-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 28px rgba(154, 248, 242, 0.7);
}

.d1 { left: 33%; top: 40%; }
.d2 { left: 56%; top: 30%; }
.d3 { left: 70%; top: 58%; }
.d4 { left: 43%; top: 70%; background: var(--home-gold); box-shadow: 0 0 26px rgba(215, 163, 91, 0.62); }

.dashboard-card {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(154, 248, 242, 0.24);
  background: rgba(5, 18, 24, 0.78);
  color: var(--home-cyan);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  animation: dashboardFloat 5.8s ease-in-out infinite;
}

.card-a { left: 8%; top: 12%; }
.card-b { right: 8%; top: 18%; animation-delay: 600ms; }
.card-c { right: 14%; bottom: 14%; animation-delay: 1100ms; }

.gedm-architecture-section {
  padding: 104px clamp(24px, 5vw, 72px);
  color: #eefcf8;
  background:
    radial-gradient(circle at 50% 42%, rgba(100, 238, 231, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(244, 183, 75, 0.1), transparent 20%),
    linear-gradient(180deg, #061017, #082932 58%, #061017);
}

.gedm-architecture-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 78px;
}

.gedm-architecture-intro .route-heading {
  max-width: 720px;
  font-size: clamp(24px, 2.6vw, 36px);
  color: #f5fffc;
}

.gedm-architecture-intro .route-heading span {
  color: #f5fffc;
  font-weight: 800;
}

.gedm-architecture-intro p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(238, 252, 248, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.gedm-architecture-tags {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(154, 248, 242, 0.18);
  border-bottom: 1px solid rgba(154, 248, 242, 0.18);
}

.gedm-architecture-tags li {
  padding: 14px 0;
  border-top: 1px solid rgba(154, 248, 242, 0.12);
  color: rgba(238, 252, 248, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.gedm-architecture-tags li:first-child {
  border-top: 0;
}

.gedm-architecture-header {
  max-width: 860px;
  margin: 0 auto 8px;
  text-align: center;
}

.gedm-architecture-header .route-heading {
  color: #f5fffc;
}

.gedm-architecture-header p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(238, 252, 248, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.gedm-engine-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(320px, 460px) minmax(250px, 0.86fr);
  grid-template-areas:
    "vector core monte"
    "trajectory core recommendation"
    ". cost .";
  gap: 34px 56px;
  align-items: center;
  margin: 34px auto 0;
}

.engine-module {
  position: relative;
  z-index: 2;
  min-height: 136px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(154, 248, 242, 0.16);
  border-left: 5px solid var(--home-teal);
  background: rgba(4, 20, 26, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.engine-module::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(154, 248, 242, 0.18), rgba(154, 248, 242, 0.6));
  transform: translateY(-50%);
  pointer-events: none;
}

.engine-module span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-teal);
  color: #fff;
  font-weight: 800;
}

.engine-module h3,
.gedm-architecture-facts h3,
.gedm-layer-grid h3,
.gedm-support-grid h3 {
  margin: 0;
  color: #f5fffc;
  font-size: 18px;
  line-height: 1.25;
}

.engine-module p,
.gedm-layer-grid p,
.gedm-support-grid p {
  margin: 10px 0 0;
  color: rgba(238, 252, 248, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.module-vector { grid-area: vector; border-left-color: #008c8f; }
.module-vector span { background: #008c8f; }
.module-vector::after,
.module-trajectory::after {
  right: -57px;
}
.module-monte { grid-area: monte; border-left-color: #00a58f; }
.module-monte span { background: #00a58f; }
.module-monte::after,
.module-recommendation::after {
  left: -57px;
  background: linear-gradient(90deg, rgba(154, 248, 242, 0.6), rgba(154, 248, 242, 0.18));
}
.module-trajectory { grid-area: trajectory; border-left-color: #6e44b2; }
.module-trajectory span { background: #6e44b2; }
.module-recommendation { grid-area: recommendation; border-left-color: #24a85f; }
.module-recommendation span { background: #24a85f; }
.module-cost {
  grid-area: cost;
  width: min(430px, 100vw);
  justify-self: center;
  border-left-color: #ea8217;
}
.module-cost span { background: #ea8217; }
.module-cost::after {
  top: -35px;
  left: 50%;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(154, 248, 242, 0.18), rgba(154, 248, 242, 0.6));
  transform: translateX(-50%);
}

.engine-core-visual {
  grid-area: core;
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.engine-core-visual::before,
.engine-core-visual::after {
  display: none;
}

.engine-core-visual::before {
  left: -22px;
  right: -22px;
  top: 47%;
  height: 1px;
  opacity: 0.35;
}

.engine-core-visual::after {
  top: 7%;
  bottom: 0;
  left: 50%;
  width: 1px;
  opacity: 0.35;
}

.engine-core-visual img {
  position: relative;
  z-index: 1;
  width: min(575px, 130%);
  height: auto;
  opacity: 0.84;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.42));
  -webkit-mask-image: radial-gradient(ellipse at 50% 52%, #000 0 50%, rgba(0, 0, 0, 0.82) 66%, transparent 86%);
  mask-image: radial-gradient(ellipse at 50% 52%, #000 0 50%, rgba(0, 0, 0, 0.82) 66%, transparent 86%);
}

.engine-core-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: -12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5fffc;
  text-align: center;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.engine-core-label strong {
  display: block;
  color: #f5fffc;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1;
}

.engine-core-label span {
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gedm-architecture-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 56px);
  margin-top: 48px;
}

.gedm-architecture-facts article,
.gedm-layer-grid article,
.gedm-support-grid article {
  border: 1px solid rgba(154, 248, 242, 0.16);
  background: rgba(4, 20, 26, 0.64);
  padding: 22px;
}

.gedm-architecture-facts article {
  border: 0;
  border-top: 1px solid rgba(154, 248, 242, 0.22);
  background: transparent;
  padding: 18px 0 0;
}

.gedm-architecture-facts ul {
  list-style: none;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: rgba(238, 252, 248, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.gedm-architecture-facts strong {
  display: inline-flex;
  min-width: 34px;
  color: var(--home-teal);
  font-weight: 800;
}

.gedm-layers-section {
  background: #f5f8f6;
}

.gedm-layers-section .gedm-architecture-header .route-heading {
  color: var(--ink);
}

.gedm-layers-section .gedm-layer-grid article {
  border-color: rgba(7, 31, 46, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.gedm-layers-section .gedm-layer-grid h3 {
  color: var(--ink);
}

.gedm-layers-section .gedm-layer-grid p {
  color: var(--ink-soft);
}

.gedm-layer-grid,
.gedm-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.gedm-layer-grid article {
  position: relative;
  min-height: 172px;
  padding-top: 54px;
}

.gedm-layer-grid span {
  position: absolute;
  left: 22px;
  top: 20px;
  color: var(--home-teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.gedm-support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gedm-support-grid article {
  border-left: 5px solid #f4bd55;
  background: rgba(255, 255, 255, 0.08);
}

.gedm-support-grid h3,
.gedm-support-grid p {
  color: #eefcf8;
}

.gedm-support-grid p {
  color: rgba(238, 252, 248, 0.72);
}

.gedm-traction-note {
  margin-top: 30px;
  padding: 24px 28px;
  background: rgba(238, 252, 248, 0.1);
  color: rgba(238, 252, 248, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.gedm-traction-note strong {
  color: #fff;
}

.insights-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 82px clamp(22px, 4vw, 56px);
  background: var(--home-paper);
  color: var(--home-ink);
}

.insights-col,
.investor-col {
  max-width: 680px;
}

.insights-col {
  justify-self: end;
}

.insights-section h2 {
  font-size: clamp(20px, 2.1vw, 31px);
}

.insight-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.insight-cards article,
.metric-grid div {
  border: 1px solid var(--home-line-dark);
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.insight-cards article:hover,
.metric-grid div:hover {
  border-color: rgba(14, 79, 86, 0.28);
  box-shadow: 0 18px 44px rgba(13, 27, 34, 0.09);
}

.insight-cards article {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
}

.insight-cards span {
  grid-row: span 2;
  color: var(--home-teal);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}

.insight-cards h3 {
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.insight-cards p {
  color: #50625f;
  font-size: 13px;
  line-height: 1.65;
}

.investor-col h2 {
  max-width: 560px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.metric-grid div {
  min-height: 112px;
  padding: 20px;
}

.metric-grid strong {
  display: block;
  color: var(--home-teal);
  font-size: 20px;
  line-height: 1.1;
}

.metric-grid span {
  display: block;
  margin-top: 10px;
  color: #546764;
  font-size: 13px;
  line-height: 1.45;
}

.insights-col .home-section-actions {
  margin-top: 26px;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 58px clamp(22px, 4vw, 56px);
  background:
    radial-gradient(circle at 88% 46%, rgba(154, 248, 242, 0.18), transparent 24%),
    linear-gradient(135deg, #0b6a6b, #083946);
  color: #f5fffc;
}

.cta-strip > div {
  max-width: 840px;
  justify-self: end;
}

.cta-strip h2 {
  max-width: 800px;
  font-size: clamp(20px, 2.17vw, 32px);
}

.cta-strip p:not(.section-kicker) {
  margin-top: 18px;
  max-width: 790px;
  color: rgba(238, 252, 248, 0.72);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.home-page .site-footer {
  padding: 52px clamp(22px, 4vw, 56px) 30px;
  background: #061b26;
  border-top: 1px solid rgba(154, 248, 242, 0.12);
}

.home-page .site-footer::before {
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 217, 208, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(154, 248, 242, 0.04), transparent);
}

.home-page .footer-top {
  grid-template-columns: 1fr 2.2fr;
  gap: 56px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(154, 248, 242, 0.12);
}

.home-page .footer-logo-img {
  width: 156px;
}

.home-page .footer-cols {
  gap: 38px;
}

.home-page .footer-col-label {
  color: var(--home-cyan);
  border-bottom-color: rgba(154, 248, 242, 0.18);
}

.home-page .footer-tag,
.home-page .footer-address,
.home-page .footer-email,
.home-page .footer-web,
.home-page .footer-nav a,
.home-page .footer-motto {
  font-family: 'Poppins', sans-serif;
}

.home-page .footer-tag {
  color: rgba(238, 252, 248, 0.58);
  font-size: 13px;
}

.home-page .footer-tag em,
.home-page .footer-motto em {
  color: var(--home-gold);
}

.home-page .footer-address,
.home-page .footer-email,
.home-page .footer-nav a {
  color: rgba(238, 252, 248, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.home-page .footer-web {
  color: rgba(238, 252, 248, 0.5);
  font-size: 11px;
}

.home-page .footer-nav a::before {
  content: '';
}

.home-page .footer-nav a:hover {
  color: var(--home-cyan);
  padding-left: 0;
}

.home-page .footer-bottom {
  padding-top: 24px;
}

.home-page .footer-legal {
  color: rgba(238, 252, 248, 0.4);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(46, 217, 208, 0.12);
    transform: translateZ(14px) scale(1);
  }
  50% {
    box-shadow: 0 0 34px rgba(46, 217, 208, 0.28);
    transform: translateZ(14px) scale(1.035);
  }
}

@keyframes stageFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes silhouetteBreathe {
  0%, 100% {
    opacity: 0.72;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.92;
    transform: translateX(-50%) scale(1.025);
  }
}

@keyframes scanDrift {
  0%, 100% {
    transform: translateY(-62px);
    opacity: 0.38;
  }
  50% {
    transform: translateY(72px);
    opacity: 0.9;
  }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes dashboardFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after,
  .route-motion-ready *,
  .route-motion-ready *::before,
  .route-motion-ready *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal-item,
  .route-motion-ready .route-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .home-header {
    grid-template-columns: auto 1fr;
    gap: 22px;
  }

  .home-header::before {
    display: none;
  }

  .home-nav {
    gap: 18px;
    font-size: 9px;
  }

  .home-nav .topbar-cta {
    padding-inline: 12px;
  }

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

  .platform-snapshot-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pipeline-head,
  .pipeline-row {
    grid-template-columns: 1fr 0.8fr 1.35fr;
  }

  .pipeline-head span:last-child,
  .pipeline-row .stage {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .home-header {
    min-height: 66px;
    grid-template-columns: auto auto;
    padding: 12px 22px;
  }

  .brand-lockup,
  .brand-lockup img {
    width: 134px;
  }

  .home-nav > a,
  .header-cta {
    display: none;
  }

  .home-nav {
    display: flex;
    justify-self: end;
    gap: 0;
  }

  .home-page .mobile-menu-trigger {
    display: flex;
  }

  .home-page .mobile-overlay {
    display: block;
  }

  .home-hero {
    min-height: auto;
    padding: 108px 22px 42px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .feature-row {
    margin-top: 0;
  }

  .pipeline-section,
  .mission-split,
  .gedm-section,
  .insights-section,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .pipeline-intro,
  .pipeline-table,
  .gedm-copy,
  .insights-col,
  .investor-col,
  .cta-strip > div {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .pipeline-table {
    overflow-x: auto;
  }

  .pipeline-head,
  .pipeline-row {
    min-width: 760px;
  }

  .mission-split {
    min-height: auto;
  }

  .mission-visual {
    min-height: 340px;
  }

  .mission-copy {
    max-width: none;
    padding: 52px 24px;
  }

  .gedm-visual {
    min-height: 360px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .home-page .footer-top,
  .home-page .footer-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    width: 100%;
    max-width: min(calc(100vw - 44px), 346px);
  }

  .hero-copy h1 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.04;
  }

  .mobile-title-break {
    display: block;
  }

  .home-page .section-kicker {
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.16em;
  }

  .home-page .hero-lede {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-strip {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-row,
  .gedm-points,
  .metric-grid,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .pipeline-section,
  .platform-snapshot,
  .gedm-section,
  .insights-section,
  .cta-strip {
    padding: 58px 20px;
  }

  .platform-snapshot-inner {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .platform-snapshot-header h2 {
    font-size: clamp(20px, 5.6vw, 24px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .platform-snapshot-header,
  .platform-snapshot-header > div,
  .platform-snapshot-header > p {
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .platform-snapshot-header > p {
    overflow-wrap: anywhere;
  }

  .home-page .route-heading {
    font-size: clamp(24px, 6.2vw, 30px);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .home-page .route-copy {
    max-width: min(300px, calc(100vw - 72px));
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: break-word;
  }

  .home-section-actions,
  .cta-actions {
    align-items: stretch;
  }

  .home-section-actions .text-link {
    width: max-content;
  }

  .pipeline-head,
  .pipeline-row {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pipeline-head {
    display: none;
  }

  .pipeline-row {
    min-height: 0;
    padding: 20px;
  }

  .home-page .footer-bottom {
    align-items: flex-start;
  }
}


/* -------------------------------------------------------------
   21.  CORPORATE ROUTE PAGES
   Standalone Company / Platform / Investors / Contact pages.
   ------------------------------------------------------------- */

.route-page {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 224, 216, 0.1), transparent 28%),
    radial-gradient(circle at 16% 48%, rgba(215, 163, 91, 0.055), transparent 34%),
    var(--ivory);
  overflow: hidden;
}

.route-hero {
  position: relative;
  padding: 168px clamp(24px, 5vw, 72px) 92px;
  color: #eefcf8;
  background:
    radial-gradient(circle at 80% 34%, rgba(100, 238, 231, 0.28), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(244, 183, 75, 0.2), transparent 18%),
    linear-gradient(135deg, #061c2a 0%, #074858 50%, #087475 100%);
  overflow: hidden;
  isolation: isolate;
}

.route-hero::before {
  content: none;
  display: none;
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  right: -8%;
  top: 80px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 163, 91, 0.46), transparent 8%),
    radial-gradient(circle at 50% 50%, rgba(88, 224, 216, 0.16), transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 43%, rgba(88, 224, 216, 0.26) 44%, transparent 47%);
  filter: drop-shadow(0 0 50px rgba(88, 224, 216, 0.18));
  opacity: 0.78;
  z-index: 1;
  pointer-events: none;
}

.route-hero-video-bg {
  position: absolute;
  top: 50%;
  right: clamp(-140px, -7vw, -36px);
  z-index: 0;
  width: min(64vw, 860px);
  height: 136%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.84) contrast(0.92) brightness(1.02);
  transform: translateY(-50%);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(
    ellipse at 58% 50%,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 34%,
    rgba(0, 0, 0, 0.32) 58%,
    transparent 82%
  );
  mask-image: radial-gradient(
    ellipse at 58% 50%,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 34%,
    rgba(0, 0, 0, 0.32) 58%,
    transparent 82%
  );
}

@media (max-width: 980px) {
  .route-hero-video-bg {
    right: -28vw;
    width: 92vw;
    opacity: 0.15;
  }
}

@media (max-width: 640px) {
  .route-hero-video-bg {
    right: -64vw;
    width: 128vw;
    height: 118%;
    opacity: 0.12;
  }
}

.route-hero-inner,
.route-section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.route-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #f4bd55;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.route-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.route-title {
  max-width: 820px;
  margin: 0;
  color: #f8fffd;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.route-title span {
  color: #f2bd58;
  font-weight: 800;
}

.route-lede {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(248, 255, 253, 0.82);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
}

.pipeline-hero .route-lede {
  max-width: 1120px;
}

@media (min-width: 1180px) {
  .pipeline-hero .route-lede {
    white-space: nowrap;
  }
}

.route-section {
  padding: 96px clamp(24px, 5vw, 72px);
}

.route-section.light {
  background: rgba(238, 243, 239, 0.92);
}

.home-page .route-section.light {
  background: var(--home-paper);
}

.route-section.light.pipeline-discovery-section {
  position: relative;
  overflow: hidden;
  background: #f4f7f4;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pipeline-discovery-section::before,
.pipeline-discovery-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pipeline-discovery-section::before {
  z-index: 0;
  background-image: url('/assets/DNA%20helix%20in%20soft%20light.png');
  background-repeat: no-repeat;
  background-position: right 42% center;
  background-size: cover;
  opacity: 0.18;
  transform: translateX(13%);
  filter: saturate(0.62) brightness(1.18);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 18%, #000 46%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 18%, #000 46%);
}

.pipeline-discovery-section::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(244, 247, 244, 0.99) 0%, rgba(244, 247, 244, 0.96) 36%, rgba(244, 247, 244, 0.74) 68%, rgba(244, 247, 244, 0.92) 100%),
    linear-gradient(180deg, rgba(244, 247, 244, 0.97) 0%, rgba(244, 247, 244, 0.32) 24%, rgba(244, 247, 244, 0.32) 76%, rgba(244, 247, 244, 0.98) 100%);
}

.pipeline-discovery-section .route-split + .route-split {
  margin-top: clamp(34px, 4vw, 54px);
}

.pipeline-status-section {
  padding-top: clamp(48px, 6vw, 72px);
}

.pipeline-status-section .pipeline-status-board {
  margin-top: 0;
}

.pipeline-key-points {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 28px 0 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 17, 22, 0.1);
}

.pipeline-key-points p {
  margin: 0;
  color: var(--ink-faded);
  font-size: 13px;
  line-height: 1.6;
}

.pipeline-key-points strong {
  color: var(--ink);
  font-weight: 700;
}

.pipeline-discovery-note {
  max-width: 680px;
  margin: 18px 0 0 auto;
  color: rgba(96, 114, 111, 0.86);
  font-size: 12px;
  line-height: 1.6;
}

.route-section.dark {
  color: #eefcf8;
  background:
    radial-gradient(circle at 80% 20%, rgba(100, 238, 231, 0.18), transparent 28%),
    linear-gradient(135deg, #071f2e, #0b6a6b 62%, #083946);
}

.route-split {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 64px;
  align-items: start;
}

.route-heading {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dark .route-heading {
  color: #f3fbf8;
}

.route-copy {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.dark .route-copy {
  color: rgba(238, 252, 248, 0.72);
}

.route-copy p + p {
  margin-top: 22px;
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.route-split > .route-card-grid,
.route-split > .route-media-grid {
  grid-column: 1 / -1;
}

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

.therapeutic-approach-grid {
  width: 100%;
  justify-content: stretch;
  align-items: stretch;
}

.therapeutic-approach-grid .route-card {
  min-width: 0;
}

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

.route-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    rgba(238, 243, 239, 0.78);
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.06);
}

.dark .route-card {
  border-color: rgba(88, 224, 216, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.route-card-kicker {
  margin-bottom: 18px;
  color: #bf8741;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
}

.dark .route-card h3 {
  color: #f3fbf8;
}

.route-card p {
  margin: 0;
  color: var(--ink-faded);
  font-size: 14px;
  line-height: 1.65;
}

.dark .route-card p {
  color: rgba(238, 252, 248, 0.72);
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.route-chip {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid rgba(12, 111, 113, 0.22);
  border-radius: 999px;
  color: #0b6968;
  background: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark .route-chip {
  border-color: rgba(100, 238, 231, 0.24);
  color: #bdfcf7;
  background: rgba(255, 255, 255, 0.06);
}

.route-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.06);
}

.route-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.route-table th,
.route-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(7, 17, 22, 0.08);
  text-align: left;
  vertical-align: top;
}

.route-table th {
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-table td {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.route-table td strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #064044;
  background: rgba(100, 238, 231, 0.18);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.pipeline-status-board {
  margin-top: 42px;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.06);
  overflow: hidden;
  overflow-x: auto;
}

.pipeline-status-head,
.pipeline-status-summary {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(150px, 0.86fr) repeat(5, minmax(104px, 1fr));
  column-gap: 16px;
  align-items: center;
}

.pipeline-status-head {
  padding: 20px 22px 16px;
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(7, 17, 22, 0.08);
}

.pipeline-status-head span {
  display: flex;
  align-items: flex-start;
  min-height: 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(161, 101, 42, 0.82);
  line-height: 1.35;
}

.pipeline-status-row {
  border-bottom: 1px solid rgba(7, 17, 22, 0.08);
}

.pipeline-status-row:last-child {
  border-bottom: 0;
}

.pipeline-status-summary {
  min-height: 116px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  transition: background 220ms ease, min-height 220ms ease;
}

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

.pipeline-status-summary:hover {
  background: rgba(100, 238, 231, 0.06);
}

.pipeline-status-row[open] .pipeline-status-summary {
  background: rgba(100, 238, 231, 0.08);
}

.pipeline-program-name {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "toggle code"
    "toggle title";
  align-items: center;
  column-gap: 14px;
  row-gap: 5px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.pipeline-program-name strong {
  grid-area: title;
  line-height: 1.22;
}

.pipeline-program-name em {
  grid-area: code;
  justify-self: start;
  color: #0b6968;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.pipeline-indication {
  color: rgba(7, 17, 22, 0.72);
  display: grid;
  gap: 4px;
  align-content: center;
  font-size: 13px;
  line-height: 1.35;
}

.pipeline-indication-title {
  color: #087a65;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.16;
}

.pipeline-indication-note {
  color: rgba(7, 17, 22, 0.72);
  font-weight: 500;
  line-height: 1.32;
}

.pipeline-toggle-icon {
  grid-area: toggle;
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(161, 101, 42, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pipeline-toggle-icon::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #a1652a;
  transform: translate(-50%, -38%);
}

.pipeline-status-row[open] .pipeline-toggle-icon {
  border-color: rgba(11, 105, 104, 0.48);
  background: rgba(100, 238, 231, 0.14);
  transform: rotate(180deg);
}

.pipeline-stage-track {
  grid-column: calc(var(--stage-start) + 2) / span var(--stage-span);
  position: relative;
  min-height: 18px;
}

.pipeline-stage-track::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 50%;
  height: 12px;
  border-radius: 8px;
  background: rgba(11, 105, 104, 0.08);
  transform: translateY(-50%);
}

.pipeline-stage-bar {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #35aeb5 0%, #047b93 48%, #075579 100%);
  box-shadow: 0 12px 26px rgba(7, 85, 121, 0.16);
  transform-origin: left center;
  animation: pipelineBarIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pipeline-stage-bar::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #075579;
  box-shadow: 0 8px 20px rgba(7, 85, 121, 0.22);
  transform: translateY(-50%);
}

.pipeline-detail-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin: 0 22px 24px 236px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(161, 101, 42, 0.46);
  animation: pipelineDetailIn 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pipeline-detail-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pipeline-detail-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

@keyframes pipelineBarIn {
  from {
    opacity: 0;
    transform: scaleX(0.72);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes pipelineDetailIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.route-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.route-media-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-media {
  margin: 0;
  display: grid;
  gap: 12px;
}

.route-media-frame {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(7, 17, 22, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(238, 243, 239, 0.78);
  overflow: hidden;
  isolation: isolate;
}

.route-media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(11, 139, 136, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(215, 163, 91, 0.12), transparent 24%);
  pointer-events: none;
}

.route-media-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(11, 139, 136, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.dark .route-media-frame {
  border-color: rgba(88, 224, 216, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(6, 27, 38, 0.72);
}

.dark .route-media-frame::after {
  border-color: rgba(88, 224, 216, 0.22);
}

.route-media-frame img,
.route-media-frame picture {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.route-media-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.route-media-image img {
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.route-media-image-fade::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 27, 38, 0.12), rgba(6, 27, 38, 0.04) 14%, rgba(6, 27, 38, 0) 34%, rgba(6, 27, 38, 0) 66%, rgba(6, 27, 38, 0.06) 86%, rgba(6, 27, 38, 0.14)),
    linear-gradient(90deg, rgba(6, 27, 38, 0.16), rgba(6, 27, 38, 0.06) 14%, rgba(6, 27, 38, 0) 28%, rgba(6, 27, 38, 0) 72%, rgba(6, 27, 38, 0.06) 86%, rgba(6, 27, 38, 0.16));
  pointer-events: none;
}

.route-media-image-fade img {
  -webkit-mask-image: radial-gradient(circle at center, #000 60%, transparent 94%);
  mask-image: radial-gradient(circle at center, #000 60%, transparent 94%);
}

.route-media-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.route-media-placeholder > * {
  position: relative;
  z-index: 1;
}

.route-media-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-media-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.dark .route-media-kicker {
  color: #82eae3;
}

.dark .route-media-image-fade::after {
  background:
    linear-gradient(180deg, rgba(6, 27, 38, 0.16), rgba(6, 27, 38, 0.06) 14%, rgba(6, 27, 38, 0) 34%, rgba(6, 27, 38, 0) 66%, rgba(6, 27, 38, 0.08) 86%, rgba(6, 27, 38, 0.18)),
    linear-gradient(90deg, rgba(6, 27, 38, 0.18), rgba(6, 27, 38, 0.08) 14%, rgba(6, 27, 38, 0) 28%, rgba(6, 27, 38, 0) 72%, rgba(6, 27, 38, 0.08) 86%, rgba(6, 27, 38, 0.18));
}

.route-media-placeholder h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 600;
}

.dark .route-media-placeholder h3 {
  color: #f3fbf8;
}

.route-media-placeholder p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink-faded);
  font-size: 13px;
  line-height: 1.6;
}

.dark .route-media-placeholder p {
  color: rgba(238, 252, 248, 0.72);
}

.route-media figcaption {
  color: var(--ink-faded);
  font-size: 12px;
  line-height: 1.55;
}

.dark .route-media figcaption {
  color: rgba(238, 252, 248, 0.62);
}

.bbb-composite-figure {
  grid-column: 1 / -1;
  width: min(784px, 100%);
  margin: 30px auto 0;
}

.bbb-composite {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1.02fr) minmax(0, 0.86fr) minmax(92px, 0.48fr);
  grid-template-rows: auto auto;
  gap: 8px 12px;
  align-items: end;
  padding: 11px 14px 14px;
  background: #ffffff;
  color: #050505;
  box-sizing: border-box;
}

.bbb-heading {
  margin: 0;
  color: #050505;
  font-size: clamp(9px, 1.1vw, 12px);
  line-height: 1.1;
  font-weight: 600;
}

.bbb-heading--analysis {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  font-weight: 400;
}

.bbb-heading--microscope {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;
  justify-self: center;
  padding-top: 20px;
  font-weight: 700;
}

.bbb-heading--eb {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  justify-self: center;
  padding-top: 20px;
  font-weight: 700;
}

.bbb-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
}

.bbb-panel img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  border-radius: 0;
  filter: none;
}

.bbb-panel--microscope-01 {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 325 / 349;
}

.bbb-panel--microscope-01 img {
  width: 246.2%;
  left: -73.5%;
  top: -26.1%;
}

.bbb-panel--microscope-02 {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 367 / 452;
}

.bbb-panel--microscope-02 img {
  width: 218%;
  left: -58.8%;
  top: -3.8%;
}

.bbb-panel--eb {
  grid-column: 3;
  grid-row: 2;
  aspect-ratio: 315 / 480;
}

.bbb-panel--eb img {
  width: 254%;
  left: -76.6%;
  top: -6.2%;
}

.bbb-panel--lnp {
  grid-column: 4;
  grid-row: 2;
  align-self: center;
  aspect-ratio: 1;
}

.bbb-panel--lnp img {
  width: 506.3%;
  left: -203.8%;
  top: -93.7%;
}

.bbb-legend {
  grid-column: 4;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 7px 7px;
  align-items: center;
  padding-bottom: 14px;
  color: #050505;
  font-size: clamp(7px, 0.8vw, 9px);
  line-height: 1.22;
}

.bbb-panel--rhodamine {
  width: 12px;
  aspect-ratio: 1;
  background: transparent;
}

.bbb-panel--rhodamine img {
  width: 666.7%;
  left: -325%;
  top: -258%;
}

.bbb-legend i {
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-radius: 50%;
  background: #317fae;
}

.bbb-composite-caption,
.lnp-slide-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
}

.bbb-composite-caption {
  color: rgba(238, 252, 248, 0.62);
}

.lnp-slide-caption {
  color: var(--ink-faded);
}

.dark .lnp-slide-caption {
  color: rgba(238, 252, 248, 0.62);
}

.lnp-slide-figure {
  margin-top: 0;
}

.lnp-organ-figure,
.lnp-deliverability-figure {
  width: min(784px, 100%);
  margin: 34px auto 0;
}

.lnp-competitiveness-section {
  background: #eef3ef;
}

.lnp-slide {
  width: min(784px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  color: #0b0f18;
  box-sizing: border-box;
}

.lnp-slide-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #173f7a;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 500;
  line-height: 1.2;
}

.lnp-slide-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #ffffff;
  background: #173f7a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.lnp-slide-title {
  margin: 0;
  color: #1d407d;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
}

.lnp-slide-subtitle {
  margin: 8px 0 0;
  color: #050505;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
  font-weight: 400;
}

.lnp-competitiveness-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(322px, 1.35fr);
  gap: clamp(22px, 3.5vw, 41px);
  align-items: start;
  margin-top: 0;
}

.lnp-organ-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 3.5vw, 34px);
  align-items: start;
}

.lnp-organ-grid .lnp-panel--ex-vivo {
  padding-top: clamp(4px, 1vw, 12px);
}

.lnp-imaging-stack {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.lnp-panel {
  margin: 0;
  min-width: 0;
}

.lnp-panel-title {
  margin: 0 0 8px;
  color: #050505;
  font-size: clamp(16px, 1.75vw, 20px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  text-align: left;
  text-decoration: underline;
}

.lnp-panel--in-vivo .lnp-panel-title,
.lnp-panel--ex-vivo .lnp-panel-title {
  padding-left: 6px;
}

.lnp-panel--delivery .lnp-panel-title {
  text-align: center;
}

.lnp-crop {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.lnp-crop img,
.lnp-panel--delivery img {
  display: block;
  border-radius: 0;
  filter: none;
}

.lnp-crop img {
  position: absolute;
  max-width: none;
  height: auto;
}

.lnp-crop--in-vivo {
  aspect-ratio: 668 / 367;
}

.lnp-crop--in-vivo img {
  width: 119.8%;
  left: -9.25%;
  top: -25.9%;
}

.lnp-targeting-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-bottom: 8px;
}

.lnp-targeting-card {
  display: grid;
  grid-template-columns: minmax(48px, 0.56fr) minmax(74px, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.lnp-targeting-card p {
  margin: 0;
  color: #050505;
  font-size: clamp(9px, 1vw, 12px);
  line-height: 1.18;
}

.lnp-crop--target-lung,
.lnp-crop--target-spleen {
  aspect-ratio: 1.24;
}

.lnp-crop--target-lung img,
.lnp-crop--target-spleen img {
  width: 248%;
  left: -74%;
  top: -28%;
}

.lnp-ex-vivo-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lnp-crop--ex-vivo-left {
  aspect-ratio: 353 / 267;
}

.lnp-crop--ex-vivo-left img {
  width: 226.6%;
  left: -7.37%;
  top: -45.3%;
}

.lnp-crop--ex-vivo-right {
  aspect-ratio: 353 / 292;
}

.lnp-crop--ex-vivo-right img {
  width: 226.6%;
  left: -122.1%;
  top: -44.5%;
}

.lnp-panel--delivery {
  padding-top: 3px;
}

.lnp-panel--delivery img {
  width: 100%;
  height: auto;
}

.lnp-deliverability-slide {
  width: min(650px, 100%);
}

.lnp-slide-caption--dark {
  color: rgba(238, 252, 248, 0.62);
}

@media (max-width: 980px) {
  .bbb-composite {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1.02fr) minmax(0, 0.86fr);
  }

  .bbb-panel--lnp,
  .bbb-legend {
    display: none;
  }

  .lnp-competitiveness-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lnp-organ-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lnp-panel--delivery {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .bbb-composite-figure,
  .lnp-slide-figure,
  .lnp-organ-figure,
  .lnp-deliverability-figure {
    width: 100%;
  }

  .bbb-composite {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1.02fr) minmax(0, 0.86fr);
    gap: 8px;
    padding: 12px;
  }

  .bbb-heading--analysis {
    grid-column: 1;
    grid-row: 1;
  }

  .bbb-heading--microscope {
    grid-column: 1 / 3;
    grid-row: 1;
    padding-top: 18px;
  }

  .bbb-heading--eb {
    grid-column: 3;
    grid-row: 1;
    padding-top: 18px;
  }

  .bbb-panel--microscope-01 {
    grid-column: 1;
    grid-row: 2;
  }

  .bbb-panel--microscope-02 {
    grid-column: 2;
    grid-row: 2;
  }

  .bbb-panel--eb {
    grid-column: 3;
    grid-row: 2;
  }

  .lnp-slide {
    padding: 20px;
  }

  .lnp-slide-title {
    font-size: 30px;
  }

  .lnp-slide-subtitle {
    font-size: 15px;
  }

  .lnp-targeting-row,
  .lnp-ex-vivo-panels {
    gap: 10px;
  }

  .lnp-targeting-card {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.science-figure {
  width: 100%;
  margin: 38px 0 0;
}

.route-split > .science-figure {
  grid-column: 1 / -1;
}

.science-figure--inline {
  align-self: start;
  margin-top: 0;
}

.science-figure--wide {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.science-figure--portrait {
  max-width: 680px;
}

.advanced-lnp-page .science-figure--wide {
  max-width: 588px;
}

.advanced-lnp-page .science-figure--portrait {
  max-width: 408px;
}

.advanced-lnp-page .science-figure {
  margin-top: 30px;
}

.advanced-lnp-page .route-card-grid {
  margin-top: 34px;
}

.science-figure__frame {
  padding: clamp(10px, 1.25vw, 16px);
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(7, 17, 22, 0.08);
  overflow: hidden;
}

.dark .science-figure__frame {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.advanced-lnp-page .science-figure__frame,
.ahd-peptide-page .science-figure__frame {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

/* AH-D peptide: LEAD mechanism figure should sit above the 4-step cards
   without showing the PNG's edge and at a smaller scale. */
.ahd-peptide-page .lead-figure {
  width: min(100%, 588px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 19px;
}

.ahd-peptide-page .lead-validation-figure.science-figure--wide {
  max-width: 588px;
  margin-top: 19px;
}

.ahd-peptide-page .lead-figure .science-figure__image {
  /* Crop away the baked-in label at the bottom of the PNG.
     Also trims a couple pixels on the other edges. */
  clip-path: inset(2px 2px 14% 2px);
}

.ahd-peptide-page .lead-figure__caption {
  margin-top: 8px;
  text-align: center;
  color: inherit;
  font-size: clamp(14px, 1.7vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ahd-peptide-page .lead-step-grid {
  margin-top: 22px;
}

.ahd-peptide-page .science-figure--trim-bottom .science-figure__image,
.advanced-lnp-page .science-figure--trim-bottom .science-figure__image {
  clip-path: inset(0 0 6% 0);
}

.science-figure__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.advanced-lnp-page .science-figure__image,
.ahd-peptide-page .science-figure__image {
  border-radius: 0;
  filter: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.14) 3%, #000 11%, #000 89%, rgba(0, 0, 0, 0.14) 97%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.14) 3%, #000 11%, #000 89%, rgba(0, 0, 0, 0.14) 97%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.14) 3%, #000 11%, #000 89%, rgba(0, 0, 0, 0.14) 97%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.14) 3%, #000 11%, #000 89%, rgba(0, 0, 0, 0.14) 97%, transparent 100%);
  mask-composite: intersect;
}

/* Advanced LNP: keep the soft edge fade, but make it much narrower
   so figure labels near the border aren't washed out. */
.advanced-lnp-page .science-figure__image {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 1%, #000 4%, #000 96%, rgba(0, 0, 0, 0.18) 99%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 1%, #000 4%, #000 96%, rgba(0, 0, 0, 0.18) 99%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.18) 1%, #000 4%, #000 96%, rgba(0, 0, 0, 0.18) 99%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 1%, #000 4%, #000 96%, rgba(0, 0, 0, 0.18) 99%, transparent 100%);
}

.advanced-lnp-page .science-figure__caption,
.ahd-peptide-page .science-figure__caption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
}

.science-figure--no-fade .science-figure__image {
  -webkit-mask-image: none;
  mask-image: none;
}

.science-figure__caption {
  margin-top: 12px;
  color: var(--ink-faded);
  font-size: 12px;
  line-height: 1.55;
}

.dark .science-figure__caption {
  color: rgba(238, 252, 248, 0.62);
}

.ahd-overview-layout {
  align-items: center;
}

.ahd-pandemic-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 38%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 86% 42%, rgba(100, 238, 231, 0.07), transparent 32%),
    linear-gradient(180deg, #eef3ef, #f8fbf9);
}

.ahd-pandemic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.ahd-pandemic-layout .route-copy {
  max-width: 620px;
}

.ahd-pandemic-copy .route-eyebrow {
  margin-bottom: 26px;
}

.ahd-pandemic-copy .route-heading {
  max-width: 470px;
}

.ahd-pandemic-copy p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}

.ahd-pandemic-video-figure {
  width: min(100%, 470px);
  margin: clamp(24px, 3vw, 34px) 0 0;
}

.ahd-pandemic-video-frame {
  aspect-ratio: 640 / 361;
  border: 1px solid rgba(7, 17, 22, 0.12);
  border-radius: 8px;
  background: #071116;
  box-shadow: 0 22px 54px rgba(7, 17, 22, 0.16);
  overflow: hidden;
}

.ahd-pandemic-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #071116;
  object-fit: cover;
}

.ahd-pandemic-figure {
  justify-self: end;
  width: min(100%, 760px);
  margin: 0;
}

.ahd-pandemic-visual {
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.ahd-pandemic-figure .science-figure__image {
  display: block;
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 28px 42px rgba(7, 17, 22, 0.04));
}

.ahd-overview-layout > .science-figure {
  grid-column: auto;
}

.peptide-validation-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(100, 238, 231, 0.08), transparent 30%),
    linear-gradient(180deg, #eef3ef, #f8fbf9);
}

@media (max-width: 640px) {
  .ahd-pandemic-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ahd-pandemic-figure {
    justify-self: stretch;
    width: 100%;
  }

  .ahd-pandemic-video-figure {
    width: 100%;
  }

  .ahd-pandemic-visual {
    padding: 0;
    border-radius: 0;
  }

  .ahd-overview-layout > .science-figure {
    grid-column: 1;
  }

  .science-figure,
  .science-figure--inline,
  .science-figure--wide {
    max-width: 100%;
    margin-top: 28px;
  }

  .advanced-lnp-page .science-figure--wide,
  .advanced-lnp-page .science-figure--portrait {
    max-width: 100%;
  }

  .science-figure__frame {
    padding: 9px;
    border-radius: 12px;
  }

  .ahd-peptide-page .lead-figure .science-figure__image {
    clip-path: inset(1px 1px 18% 1px);
  }

  .ahd-peptide-page .lead-figure__caption {
    font-size: 14px;
  }

  .ahd-peptide-page .science-figure--trim-bottom .science-figure__image,
  .advanced-lnp-page .science-figure--trim-bottom .science-figure__image {
    clip-path: inset(0 0 4% 0);
  }

  .science-figure__image {
    border-radius: 8px;
  }
}

.platform-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(100, 238, 231, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(100, 238, 231, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.platform-node {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(100, 238, 231, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.platform-node:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 189, 85, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.platform-node.core {
  background: rgba(100, 238, 231, 0.12);
  box-shadow: 0 0 40px rgba(100, 238, 231, 0.12);
}

.platform-node h3 {
  margin: 0 0 10px;
  color: #f3fbf8;
  font-size: 16px;
  line-height: 1.3;
}

.platform-node p {
  margin: 0;
  color: rgba(238, 252, 248, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.route-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 17, 22, 0.08);
}

.route-fact {
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.route-fact strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.route-fact span {
  display: block;
  margin-top: 8px;
  color: var(--ink-faded);
  font-size: 13px;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.route-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-button.primary {
  background: var(--ochre);
  color: #071116;
}

.route-button.secondary {
  border: 1px solid rgba(12, 111, 113, 0.26);
  color: var(--ink);
}

.route-hero .route-button.secondary {
  border-color: rgba(238, 252, 248, 0.22);
  color: #eefcf8;
  background: rgba(255, 255, 255, 0.04);
}

.dark .route-button.secondary {
  border-color: rgba(88, 224, 216, 0.28);
  color: #eefcf8;
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 42px;
}

.publication-count {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(12, 111, 113, 0.18);
  border-radius: 999px;
  color: #0b6968;
  background: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.publication-count span {
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.publication-pagination {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.publication-page-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(12, 111, 113, 0.22);
  border-radius: 999px;
  color: #0b6968;
  background: rgba(255, 255, 255, 0.56);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.publication-page-button:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 139, 136, 0.42);
}

.publication-page-button.is-active {
  color: #eefcf8;
  border-color: #0b6968;
  background: #0b6968;
}

.publication-card {
  display: flex;
  flex-direction: column;
  min-height: 544px;
  padding: 22px;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    rgba(238, 243, 239, 0.8);
  box-shadow: 0 14px 34px rgba(7, 17, 22, 0.05);
}

.publication-card[hidden] {
  display: none;
}

.publication-card.is-expanded {
  min-height: 0;
}

.publication-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.publication-card p {
  margin: 0;
  color: var(--ink-faded);
  font-size: 13px;
  line-height: 1.62;
}

.publication-card p + p {
  margin-top: 12px;
}

.publication-more {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.publication-more[hidden] {
  display: none;
}

.publication-authors {
  color: #0b6968;
  font-size: 12px;
  font-weight: 600;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.publication-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border: 1px solid rgba(12, 111, 113, 0.18);
  border-radius: 999px;
  color: #0b6968;
  background: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.publication-card .publication-meta span:nth-child(n + 4):not(:last-child) {
  display: none;
}

.publication-card.is-expanded .publication-meta span,
.publication-card.is-expanded .publication-meta span:nth-child(n + 4):not(:last-child) {
  display: inline-flex;
}

.publication-card > .route-actions,
.publication-card .publication-actions {
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
}

.publication-card .route-actions {
  gap: 10px;
}

.publication-card .route-button {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 11px;
}

.publication-toggle {
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.publication-toggle[aria-expanded="true"] {
  background: rgba(11, 139, 136, 0.08);
  border-color: rgba(11, 139, 136, 0.32);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list a,
.contact-list address {
  color: inherit;
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: min(560px, 100%);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(238, 252, 248, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(100, 238, 231, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3fbf8;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form select option {
  color: #071116;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 189, 85, 0.58);
  box-shadow: 0 0 0 3px rgba(244, 189, 85, 0.12);
}

/* -------------------------------------------------------------
   22.  Shared polish overrides
   Header, typography, cards, and footer consistency across routes.
   ------------------------------------------------------------- */

body:not(.home-page) header,
.home-header {
  min-height: 70px;
  padding: 13px clamp(22px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  background: rgba(6, 27, 38, 0.92);
  border-bottom: 1px solid rgba(154, 248, 242, 0.22);
  box-shadow: 0 1px 24px rgba(46, 217, 208, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body:not(.home-page) .logo,
body:not(.home-page) .logo a,
.brand-lockup {
  width: 154px;
  height: 44px;
}

body:not(.home-page) .logo img,
.brand-lockup img {
  width: 154px;
  height: auto;
}

body:not(.home-page) nav,
.home-nav {
  justify-self: end;
  gap: clamp(16px, 2.1vw, 30px);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

body:not(.home-page) nav a,
.home-nav a {
  color: rgba(238, 252, 248, 0.72);
}

body:not(.home-page) nav a::after,
.home-nav a::after {
  display: none;
}

body:not(.home-page) nav a:hover,
body:not(.home-page) nav a.active,
.home-nav a:hover,
.home-nav a.active {
  color: #fff;
  text-shadow: none;
}

body:not(.home-page) nav .topbar-cta,
.home-nav .topbar-cta {
  min-height: 38px;
  padding: 11px 20px 10px;
  border-color: rgba(215, 163, 91, 0.54);
  background: rgba(215, 163, 91, 0.11);
  color: #fff6e8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.route-title,
.engage-title {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.route-lede,
.engage-lede {
  max-width: 760px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
  font-weight: 400;
}

.route-heading {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.route-copy {
  font-size: 16px;
  line-height: 1.75;
}

.route-card {
  display: flex;
  flex-direction: column;
}

.route-card .route-actions,
.route-card .route-meta {
  margin-top: auto;
  padding-top: 22px;
}

/* Sitewide UX polish: visual behavior only, no content changes. */
.route-section {
  padding-block: clamp(72px, 7vw, 92px);
}

.route-section.light + .route-section.light {
  padding-top: clamp(56px, 6vw, 78px);
}

.route-section.dark + .route-section.light,
.route-section.light + .route-section.dark {
  padding-top: clamp(70px, 7vw, 90px);
}

.route-split {
  gap: clamp(34px, 5vw, 58px);
}

.route-card-grid,
.publication-grid,
.team-grid,
.gedm-layer-grid,
.gedm-support-grid {
  gap: clamp(16px, 2vw, 22px);
}

.route-card-grid {
  margin-top: clamp(30px, 4vw, 40px);
}

.route-card,
.publication-card,
.team-card,
.platform-node,
.engine-module,
.gedm-layer-grid article,
.gedm-support-grid article,
.gedm-architecture-facts article,
.route-fact,
.contact-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.route-card::before,
.publication-card::before,
.team-card::before,
.platform-node::before,
.engine-module::before,
.gedm-layer-grid article::before,
.gedm-support-grid article::before,
.gedm-architecture-facts article::before,
.route-fact::before,
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at var(--ui-glow-x, 50%) var(--ui-glow-y, 12%), rgba(100, 238, 231, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 46%);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.dark .route-card::before,
.dark .platform-node::before,
.dark .engine-module::before,
.dark .gedm-support-grid article::before,
.dark .contact-form::before {
  background:
    radial-gradient(circle at var(--ui-glow-x, 50%) var(--ui-glow-y, 12%), rgba(100, 238, 231, 0.22), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

.route-card:hover,
.publication-card:hover,
.team-card:hover,
.platform-node:hover,
.engine-module:hover,
.gedm-layer-grid article:hover,
.gedm-support-grid article:hover,
.gedm-architecture-facts article:hover,
.route-fact:hover,
.contact-form:focus-within {
  transform:
    perspective(900px)
    rotateX(var(--ui-tilt-x, 0deg))
    rotateY(var(--ui-tilt-y, 0deg))
    translateY(-4px);
  border-color: rgba(11, 139, 136, 0.26);
  box-shadow: 0 22px 52px rgba(7, 17, 22, 0.1);
}

.route-card:hover::before,
.publication-card:hover::before,
.team-card:hover::before,
.platform-node:hover::before,
.engine-module:hover::before,
.gedm-layer-grid article:hover::before,
.gedm-support-grid article:hover::before,
.gedm-architecture-facts article:hover::before,
.route-fact:hover::before,
.contact-form:focus-within::before {
  opacity: 1;
}

.route-button,
.publication-page-button,
.pipeline-toggle-icon {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.route-button:hover,
.route-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 17, 22, 0.09);
}

.route-button.primary:hover,
.route-button.primary:focus-visible {
  box-shadow: 0 16px 34px rgba(215, 163, 91, 0.28);
}

.route-button.secondary:hover,
.route-button.secondary:focus-visible {
  border-color: rgba(11, 139, 136, 0.42);
  background: rgba(255, 255, 255, 0.44);
}

.dark .route-button.secondary:hover,
.dark .route-button.secondary:focus-visible,
.route-hero .route-button.secondary:hover,
.route-hero .route-button.secondary:focus-visible {
  border-color: rgba(154, 248, 242, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.pipeline-status-summary {
  transition:
    background 220ms ease,
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.pipeline-status-row:hover .pipeline-status-summary {
  background: rgba(100, 238, 231, 0.055);
  box-shadow: inset 3px 0 0 rgba(11, 139, 136, 0.32);
}

.pipeline-status-row:hover .pipeline-toggle-icon,
.pipeline-status-row[open] .pipeline-toggle-icon {
  border-color: rgba(161, 101, 42, 0.9);
  background: rgba(255, 255, 255, 0.94);
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .route-card:hover,
  .publication-card:hover,
  .team-card:hover,
  .platform-node:hover,
  .engine-module:hover,
  .gedm-layer-grid article:hover,
  .gedm-support-grid article:hover,
  .gedm-architecture-facts article:hover,
  .route-fact:hover,
  .contact-form:focus-within,
  .route-button:hover,
  .route-button:focus-visible {
    transform: none;
  }
}

.team-section {
  padding: 96px clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 14%, rgba(88, 224, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #f7faf8, #edf4f1);
}

.team-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.team-header {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 58px;
  align-items: start;
}

.team-header .route-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
  color: #0b6968;
}

.team-lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.team-group {
  margin-top: 46px;
}

.team-group + .team-group {
  margin-top: 58px;
}

.team-group-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 17, 22, 0.1);
}

.team-group-heading span {
  color: #0b6968;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.team-group-heading h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 650;
}

.team-group .team-grid {
  margin-top: 28px;
}

.team-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.06);
}

.team-initials {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(12, 111, 113, 0.2);
  border-radius: 50%;
  color: #0b6968;
  background: rgba(100, 238, 231, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.team-card p {
  margin: 0;
  color: var(--ink-faded);
  font-size: 13px;
  line-height: 1.55;
}

/* Company page investor narrative */
.company-hero {
  padding-bottom: 104px;
}

.company-hero::before {
  width: min(46vw, 620px);
  right: 4%;
  top: 92px;
  opacity: 0.36;
}

.company-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(154, 248, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 248, 242, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 74% 38%, #000 0%, transparent 58%);
  pointer-events: none;
}

.company-hero-grid {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.company-hero-copy .route-title {
  max-width: 780px;
}

.company-hero-visual {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}

.bio-orb {
  width: min(420px, 100%);
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 183, 75, 0.28), transparent 3%),
    radial-gradient(circle at 50% 50%, rgba(100, 238, 231, 0.18), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 56%);
  filter: drop-shadow(0 0 48px rgba(100, 238, 231, 0.22));
  animation: companyOrbFloat 8s ease-in-out infinite;
}

.orb-core {
  position: absolute;
  width: 34%;
  aspect-ratio: 1;
  inset: 33%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(100, 238, 231, 0.84), rgba(7, 116, 117, 0.48) 52%, rgba(7, 31, 46, 0.1));
  box-shadow:
    0 0 36px rgba(100, 238, 231, 0.36),
    inset 0 0 34px rgba(255, 255, 255, 0.14);
}

.orb-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(154, 248, 242, 0.36);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
}

.ring-two {
  inset: 20%;
  border-color: rgba(244, 183, 75, 0.38);
  transform: rotateX(74deg) rotateZ(54deg);
  animation: companyRingDrift 13s linear infinite;
}

.ring-three {
  inset: 8%;
  border-color: rgba(154, 248, 242, 0.22);
  transform: rotateX(58deg) rotateZ(116deg);
  animation: companyRingDrift 18s linear infinite reverse;
}

.orb-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f4bd55;
  box-shadow: 0 0 24px rgba(244, 189, 85, 0.55);
}

.node-a { left: 20%; top: 30%; }
.node-b { right: 18%; top: 42%; }
.node-c { left: 43%; bottom: 16%; }
.node-d { right: 30%; top: 18%; background: #9af8f2; }

.hero-data-panel {
  position: absolute;
  right: 4%;
  bottom: 12%;
  width: min(250px, 72%);
  padding: 18px 20px;
  border: 1px solid rgba(154, 248, 242, 0.22);
  border-radius: 8px;
  background: rgba(6, 27, 38, 0.6);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-data-panel span {
  display: block;
  color: #f4bd55;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-data-panel strong {
  display: block;
  margin-top: 8px;
  color: #eefcf8;
  font-size: 19px;
  line-height: 1.25;
}

.mission-section {
  position: relative;
  overflow: hidden;
}

.mission-split-company {
  align-items: start;
}

.mission-copy-company {
  padding-left: 0;
  border-left: 0;
}

.mission-statement {
  color: var(--ink);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.42;
  font-weight: 600;
  letter-spacing: 0;
}

.platform-positioning {
  position: relative;
}

.platform-positioning::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 28% 26%, rgba(244, 189, 85, 0.12), transparent 18%),
    radial-gradient(circle at 74% 62%, rgba(154, 248, 242, 0.16), transparent 26%);
  pointer-events: none;
}

.company-platform-map {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1.05fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1.08fr;
  align-items: stretch;
  gap: 0;
  padding: 24px;
  border: 1px solid rgba(154, 248, 242, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(6, 27, 38, 0.32);
  box-shadow: inset 0 0 60px rgba(154, 248, 242, 0.04);
}

.platform-flow-node {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(154, 248, 242, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.platform-flow-node:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 189, 85, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.platform-flow-node.core,
.platform-flow-node.programs {
  background: rgba(100, 238, 231, 0.1);
  box-shadow: 0 0 42px rgba(100, 238, 231, 0.08);
}

.platform-flow-node span {
  color: #f4bd55;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-flow-node strong {
  margin-top: 10px;
  color: #f3fbf8;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
}

.platform-flow-arrow {
  position: relative;
  align-self: center;
  height: 1px;
  background: rgba(154, 248, 242, 0.38);
}

.platform-flow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(154, 248, 242, 0.68);
  border-right: 1px solid rgba(154, 248, 242, 0.68);
  transform: translateY(-50%) rotate(45deg);
}

.company-facts-section {
  padding-top: 64px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 163, 91, 0.08), transparent 26%),
    linear-gradient(180deg, #edf4f1, #f8fbf9);
}

.company-fact-strip {
  margin-top: 0;
  gap: 18px;
  border: none;
  overflow: visible;
  background: transparent;
}

.company-fact-strip .route-fact {
  min-height: 210px;
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54));
  box-shadow: 0 18px 44px rgba(7, 17, 22, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.company-fact-strip .route-fact:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 111, 113, 0.22);
  box-shadow: 0 22px 52px rgba(7, 17, 22, 0.075);
}

.company-fact-strip .route-card-kicker {
  margin-bottom: 20px;
}

.company-team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 163, 91, 0.07), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(88, 224, 216, 0.14), transparent 30%),
    linear-gradient(180deg, #f7faf8, #edf4f1);
}

.company-team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 111, 113, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 111, 113, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 78% 12%, #000 0%, transparent 54%);
  pointer-events: none;
}

.company-management-section {
  border-top: 1px solid rgba(7, 17, 22, 0.08);
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 163, 91, 0.06), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(88, 224, 216, 0.12), transparent 30%),
    linear-gradient(180deg, #edf4f1, #f7faf8);
}

.company-management-section::before {
  mask-image: radial-gradient(circle at 18% 12%, #000 0%, transparent 54%);
}

.company-team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.advisory-team-grid {
  width: min(780px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-card {
  min-height: 0;
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 111, 113, 0.22);
  box-shadow: 0 24px 56px rgba(7, 17, 22, 0.08);
}

.profile-media {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 22px;
  border: 1px solid rgba(12, 111, 113, 0.18);
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(154, 248, 242, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff, #edf4f1);
  box-shadow:
    0 16px 34px rgba(7, 17, 22, 0.08),
    inset 0 0 0 8px rgba(255, 255, 255, 0.42);
}

.profile-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.profile-media img.profile-media-tight {
  object-position: center 20%;
  transform: scale(1.14);
  transform-origin: center;
}

.profile-media.profile-media-fallback {
  display: grid;
  place-items: center;
}

.profile-media-initials {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(12, 111, 113, 0.24);
  border-radius: 50%;
  color: #0b6968;
  background: rgba(100, 238, 231, 0.14);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(7, 17, 22, 0.08);
}

.team-more {
  margin-top: 18px;
  border-top: 1px solid rgba(7, 17, 22, 0.08);
  padding-top: 16px;
}

.team-more summary {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(12, 111, 113, 0.22);
  border-radius: 999px;
  color: #0b6968;
  background: rgba(100, 238, 231, 0.08);
  font-size: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 22px rgba(7, 17, 22, 0);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.team-more summary::before {
  content: 'Read more';
  font-size: 10px;
  line-height: 1;
}

.team-more[open] summary::before {
  content: 'Read less';
}

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

.team-more summary:hover,
.team-more[open] summary {
  color: #071116;
  background: #d7a35b;
  border-color: #d7a35b;
  box-shadow: 0 14px 28px rgba(215, 163, 91, 0.2);
  transform: translateY(-1px);
}

.team-more ul {
  margin: 16px 0 0 18px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.55;
}

.team-more[open] ul {
  animation: teamMoreReveal 220ms ease both;
}

.team-more.is-toggling summary {
  animation: teamMoreButtonPulse 240ms ease;
}

@keyframes teamMoreReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes teamMoreButtonPulse {
  0% {
    transform: translateY(-1px) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.04);
  }

  100% {
    transform: translateY(-1px) scale(1);
  }
}

.team-more li + li {
  margin-top: 8px;
}

.global-network-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(100, 238, 231, 0.12), transparent 28%),
    radial-gradient(circle at 16% 74%, rgba(215, 163, 91, 0.08), transparent 28%),
    linear-gradient(180deg, #f7faf8, #edf4f1);
}

.global-network-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 111, 113, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 111, 113, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 70% 24%, #000 0%, transparent 62%);
  pointer-events: none;
}

.network-map-panel {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: 52px 50% 0;
  min-height: clamp(720px, calc(88px + 46.7vw), 940px);
  border: 1px solid rgba(7, 17, 22, 0.1);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(100, 238, 231, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  box-shadow: 0 24px 70px rgba(7, 17, 22, 0.08);
  transform: translateX(-50%);
}

.network-map-header {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(7, 17, 22, 0.08);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.network-map-header span {
  display: block;
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.network-map-header strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.18;
}

.network-map-svg {
  position: absolute;
  inset: 86px 0 0;
  width: 100%;
  height: calc(100% - 86px);
}

.map-land path {
  fill: rgba(7, 17, 22, 0.15);
  stroke: rgba(7, 17, 22, 0.05);
  stroke-width: 1;
}

.network-arcs path {
  fill: none;
  stroke: url(#networkArc);
  stroke-width: 1.35;
  stroke-dasharray: 8 9;
  animation: networkDash 18s linear infinite;
}

.network-pins circle {
  fill: #f4bd55;
  stroke: #ffffff;
  stroke-width: 3;
}

.network-pins .hub-pin {
  fill: #64eee7;
  stroke: #073947;
  stroke-width: 4;
}

.network-hub text:first-child {
  fill: #071116;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.network-hub text:last-child {
  fill: #0b6968;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-labels {
  position: absolute;
  inset: 86px 0 0;
  pointer-events: none;
}

.network-label {
  position: absolute;
  width: min(260px, 24%);
  padding: 13px 14px;
  border: 1px solid rgba(12, 111, 113, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(7, 17, 22, 0.08);
  backdrop-filter: blur(14px);
}

.network-label span {
  display: block;
  margin-bottom: 6px;
  color: #a87535;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-label strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
}

.network-label em {
  display: block;
  margin-top: 5px;
  color: var(--ink-faded);
  font-size: 11px;
  line-height: 1.35;
  font-style: normal;
}

.label-ragon { left: 5%; top: 29%; }
.label-antwerp { left: 37%; top: 10%; }
.label-beijing { right: 4%; top: 11%; }
.label-thailand { right: 11%; top: 40%; }
.label-singapore { right: 7%; top: 69%; }
.label-durban { left: 36%; top: 70%; }

.network-world-map {
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  aspect-ratio: 1200 / 560;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(100, 238, 231, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(247, 250, 248, 0.8), rgba(223, 233, 228, 0.62));
  border-radius: 0;
  transform: none;
}

.network-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.network-arc-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.network-arc-layer path {
  fill: none;
  stroke: rgba(11, 139, 136, 0.34);
  stroke-width: 1.25;
  stroke-dasharray: 8 10;
  animation: networkDash 18s linear infinite;
}

.network-hub-card {
  position: absolute;
  left: 78.9%;
  top: 49.2%;
  display: grid;
  justify-items: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}

.network-hub-card::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 4px solid #64eee7;
  border-radius: 50%;
  background: #f7faf8;
  box-shadow: 0 0 0 6px rgba(100, 238, 231, 0.12), 0 10px 24px rgba(7, 17, 22, 0.16);
}

.network-hub-card img {
  width: 146px;
  height: auto;
  filter: saturate(1.05) contrast(1.05);
}

.network-hub-card span {
  color: #0b6968;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.network-node {
  position: absolute;
  z-index: 2;
  width: 116px;
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(12, 111, 113, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(7, 17, 22, 0.1);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, box-shadow 180ms ease, z-index 180ms ease;
  outline: none;
}

.network-node:hover,
.network-node:focus {
  z-index: 8;
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 52px rgba(7, 17, 22, 0.16);
}

.network-node > img,
.network-logo-stack {
  width: 92px;
  max-height: 48px;
  object-fit: contain;
}

.network-logo-stack {
  display: grid;
  gap: 3px;
  align-items: center;
}

.network-logo-stack img {
  width: 92px;
  max-height: 16px;
  object-fit: contain;
}

.network-node-detail {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 250px;
  padding: 13px 14px;
  border: 1px solid rgba(12, 111, 113, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(7, 17, 22, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.network-node:hover .network-node-detail,
.network-node:focus .network-node-detail {
  opacity: 1;
  transform: translate(-50%, 0);
}

.network-node-detail span {
  display: block;
  margin-bottom: 5px;
  color: #a87535;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-node-detail strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.network-node-detail em {
  display: block;
  margin-top: 5px;
  color: var(--ink-faded);
  font-size: 10.5px;
  line-height: 1.35;
  font-style: normal;
}

.network-pin {
  display: none;
}

.node-ragon { left: 30.2%; top: 26.5%; }
.node-antwerp { left: 51.2%; top: 21.5%; }
.node-beijing { left: 82.4%; top: 27.8%; }
.node-thailand { left: 77.7%; top: 38.9%; }
.node-singapore { left: 79.8%; top: 55%; }
.node-durban { left: 58.6%; top: 66.6%; }

.network-region-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

@keyframes networkDash {
  to {
    stroke-dashoffset: -180;
  }
}

.value-chain-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(100, 238, 231, 0.08), transparent 26%),
    linear-gradient(180deg, #eef3ef, #f9fbfa);
}

.value-chain-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.value-chain-cards::before {
  content: '';
  position: absolute;
  left: 16%;
  right: 16%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 111, 113, 0.32), transparent);
}

.value-card {
  position: relative;
  min-height: 278px;
}

.value-step {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #071116;
  background: #d7a35b;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(215, 163, 91, 0.22);
}

.company-closing-cta {
  padding: 86px clamp(24px, 5vw, 72px);
  color: #eefcf8;
  background:
    radial-gradient(circle at 84% 20%, rgba(100, 238, 231, 0.18), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(215, 163, 91, 0.14), transparent 28%),
    linear-gradient(135deg, #061b26 0%, #0a4e5a 58%, #082631 100%);
}

.company-cta-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(154, 248, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.company-cta-inner h2 {
  max-width: 720px;
  margin: 0;
  color: #f8fffd;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 600;
}

.company-closing-cta .route-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.company-closing-cta .route-button.secondary {
  border-color: rgba(238, 252, 248, 0.22);
  color: #eefcf8;
  background: rgba(255, 255, 255, 0.035);
}

.route-button {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.route-button.primary:hover {
  box-shadow: 0 14px 34px rgba(215, 163, 91, 0.28);
}

.route-button.secondary:hover {
  border-color: rgba(12, 111, 113, 0.44);
  box-shadow: 0 14px 30px rgba(7, 17, 22, 0.08);
}

@keyframes companyOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes companyRingDrift {
  to { rotate: 360deg; }
}

.site-footer,
.home-page .site-footer {
  padding: 74px clamp(22px, 4vw, 56px) 34px;
  background:
    radial-gradient(circle at 84% 18%, rgba(46, 217, 208, 0.1), transparent 32%),
    linear-gradient(180deg, #061b26 0%, #071116 100%);
  border-top: 7px solid #0d7777;
}

.site-footer::before,
.home-page .site-footer::before {
  background:
    radial-gradient(circle at 12% 85%, rgba(215, 163, 91, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(154, 248, 242, 0.045), transparent 48%, rgba(215, 163, 91, 0.035));
}

.footer-inner {
  max-width: 1280px;
}

.footer-top,
.home-page .footer-top {
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(48px, 7vw, 96px);
  padding-bottom: 58px;
  border-bottom: 1px solid rgba(154, 248, 242, 0.12);
}

.footer-brand {
  gap: 24px;
}

.footer-logo img,
.footer-logo-img img {
  width: 164px;
}

.footer-tag,
.home-page .footer-tag {
  max-width: 300px;
  color: rgba(238, 252, 248, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.footer-tag em,
.home-page .footer-tag em,
.footer-motto em,
.home-page .footer-motto em {
  color: var(--ochre);
}

.footer-cols,
.home-page .footer-cols {
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 58px);
}

.footer-col-label,
.home-page .footer-col-label {
  color: #d7a35b;
  border-bottom-color: rgba(215, 163, 91, 0.22);
}

.footer-address,
.footer-email,
.footer-nav a,
.home-page .footer-address,
.home-page .footer-email,
.home-page .footer-nav a {
  color: rgba(238, 252, 248, 0.82);
  font-size: 15px;
  line-height: 1.72;
}

.footer-web,
.home-page .footer-web {
  color: rgba(238, 252, 248, 0.52);
  font-size: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.footer-nav a::before,
.home-page .footer-nav a::before {
  display: none;
}

.footer-nav a:hover,
.home-page .footer-nav a:hover {
  padding-left: 0;
  color: #d7a35b;
}

.footer-bottom {
  padding-top: 34px;
}

.footer-legal {
  color: rgba(238, 252, 248, 0.38);
}

@media (max-width: 980px) {
  body:not(.home-page) header,
  .home-header {
    min-height: 66px;
    grid-template-columns: auto auto;
    padding: 12px 22px;
  }

  body:not(.home-page) .logo,
  body:not(.home-page) .logo a,
  body:not(.home-page) .logo img,
  .brand-lockup,
  .brand-lockup img {
    width: 134px;
  }

  .route-split,
  .route-card-grid,
  .route-card-grid.three,
  .route-card-grid.two,
  .route-media-grid,
  .route-media-grid.three,
  .publication-grid,
  .team-header,
  .platform-map,
  .route-fact-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-top,
  .home-page .footer-top,
  .footer-cols,
  .home-page .footer-cols {
    grid-template-columns: 1fr;
  }

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

  .pipeline-status-board {
    overflow-x: visible;
  }

  .pipeline-status-head {
    display: none;
  }

  .pipeline-status-summary {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .pipeline-stage-track {
    grid-column: auto;
  }

  .pipeline-stage-track::before {
    top: 50%;
    bottom: auto;
  }

  .pipeline-stage-bar {
    margin-top: 0;
  }

  .pipeline-detail-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 22px 24px;
  }

}

@media (max-width: 640px) {
  .site-footer,
  .home-page .site-footer {
    padding-top: 58px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .route-hero {
    padding-top: 132px;
    padding-bottom: 74px;
  }

  .route-hero-inner,
  .route-section-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .route-title {
    max-width: 100%;
    font-size: clamp(28px, 8.2vw, 32px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .route-lede {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  .route-heading {
    max-width: 100%;
    font-size: clamp(22px, 6.6vw, 28px);
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .route-actions {
    width: 100%;
  }

  .route-button {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .route-hero::before {
    width: 84vw;
    right: -38%;
    opacity: 0.5;
  }

  .route-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .route-split,
  .route-card-grid,
  .route-card-grid.three,
  .route-card-grid.two,
  .route-media-grid,
  .route-media-grid.three,
  .publication-grid,
  .team-header,
  .team-grid,
  .platform-map,
  .route-fact-strip {
    grid-template-columns: 1fr;
  }

  .pipeline-key-points,
  .pipeline-discovery-note {
    max-width: 100%;
    margin-left: 0;
  }

  .pipeline-status-board {
    margin-top: 30px;
  }

  .pipeline-status-summary {
    padding: 18px;
  }

  .pipeline-program-name {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 12px;
    font-size: 15px;
  }

  .pipeline-toggle-icon {
    width: 28px;
    height: 28px;
  }

  .pipeline-stage-track {
    min-height: 18px;
  }

  .pipeline-stage-bar {
    height: 10px;
  }

  .pipeline-detail-panel {
    grid-template-columns: 1fr;
    margin: 0 18px 22px;
    gap: 14px;
  }

  .team-header .route-eyebrow {
    margin-bottom: -12px;
  }

  .gedm-section,
  .gedm-architecture-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .route-media-frame {
    min-height: 200px;
    padding: 18px;
  }

  .route-media-placeholder h3 {
    font-size: 17px;
  }

  .gedm-copy h2 {
    max-width: 100%;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .gedm-copy p,
  .gedm-architecture-header p {
    font-size: 14px;
  }

  .gedm-points {
    grid-template-columns: 1fr;
  }

  .gedm-visual {
    min-height: 280px;
  }

  .gedm-engine-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "vector"
      "monte"
      "trajectory"
      "recommendation"
      "cost";
    margin-top: 34px;
  }

  .gedm-architecture-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 58px;
  }

  .gedm-architecture-tags {
    max-width: 100%;
  }

  .engine-core-visual {
    min-height: 320px;
    justify-self: center;
  }

  .engine-core-visual::before,
  .engine-core-visual::after {
    display: none;
  }

  .engine-core-visual img {
    width: min(390px, 120%);
  }

  .engine-module::after {
    display: none;
  }

  .engine-core-label {
    margin-top: -14px;
  }

  .engine-module {
    min-height: auto;
    padding: 18px;
  }

  .module-cost {
    width: 100%;
  }

  .gedm-architecture-facts,
  .gedm-layer-grid,
  .gedm-support-grid {
    grid-template-columns: 1fr;
  }

  .gedm-layer-grid,
  .gedm-support-grid {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .route-hero,
  .route-section,
  .gedm-section,
  .gedm-architecture-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .route-hero-inner,
  .route-section-inner,
  .gedm-copy,
  .route-copy,
  .gedm-visual,
  .gedm-architecture-header,
  .gedm-architecture-intro,
  .gedm-architecture-tags,
  .gedm-engine-map,
  .engine-core-visual,
  .gedm-architecture-facts,
  .gedm-layer-grid,
  .gedm-support-grid {
    width: 100%;
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
  }

  .route-title {
    max-width: 330px;
    font-size: 28px;
  }

  .gedm-copy h2 {
    max-width: 330px;
    font-size: 26px;
  }

  .route-title,
  .route-lede,
  .route-heading,
  .gedm-copy h2,
  .gedm-copy p,
  .gedm-architecture-header p,
  .engine-module h3,
  .engine-module p,
  .gedm-layer-grid p,
  .gedm-support-grid p {
    overflow-wrap: anywhere;
  }

  .route-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .route-button {
    width: 100%;
  }
}

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

  .company-hero-visual {
    min-height: 360px;
    max-width: 520px;
  }

  .company-platform-map {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .platform-flow-arrow {
    width: 1px;
    height: 24px;
    justify-self: center;
  }

  .platform-flow-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }

  .platform-flow-node {
    min-height: 116px;
  }
}

@media (max-width: 980px) {
  .company-team-grid,
  .value-chain-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-cta-inner {
    grid-template-columns: 1fr;
  }

  .company-closing-cta .route-actions {
    justify-content: flex-start;
  }

  .network-map-panel {
    min-height: 760px;
  }

  .network-label {
    width: min(230px, 30%);
  }

  .network-node {
    width: 104px;
    min-height: 48px;
  }

  .network-node > img,
  .network-logo-stack {
    width: 84px;
    max-height: 46px;
  }

  .network-logo-stack img {
    width: 84px;
    max-height: 15px;
  }

  .network-node-detail {
    width: 220px;
  }

  .network-region-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .company-hero {
    padding-top: 132px;
  }

  .company-hero-copy {
    width: min(100%, 360px);
  }

  .company-hero .route-title {
    font-size: clamp(31px, 8.2vw, 36px);
    line-height: 1.08;
  }

  .company-hero .route-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .company-hero-visual {
    min-height: 300px;
    width: min(100%, 360px);
  }

  .bio-orb {
    width: min(300px, 90vw);
  }

  .hero-data-panel {
    right: 0;
    bottom: 0;
  }

  .mission-copy-company {
    padding-left: 0;
    padding-top: 0;
    border-left: 0;
    border-top: 0;
  }

  .company-fact-strip,
  .company-team-grid,
  .value-chain-cards {
    grid-template-columns: 1fr;
  }

  .company-fact-strip .route-fact {
    min-height: 0;
  }

  .profile-media {
    width: 152px;
    height: 152px;
  }

  .value-chain-cards::before {
    display: none;
  }

  .network-map-panel {
    min-height: 0;
    padding-bottom: 22px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    border-left: 1px solid rgba(7, 17, 22, 0.1);
    border-right: 1px solid rgba(7, 17, 22, 0.1);
    border-radius: 10px;
  }

  .network-map-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .network-map-header .route-button {
    width: 100%;
  }

  .network-map-svg {
    position: relative;
    inset: auto;
    display: block;
    height: auto;
    min-height: 270px;
  }

  .network-labels {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
    padding: 0 18px;
  }

  .network-label {
    position: static;
    width: 100%;
  }

  .network-world-map {
    position: relative;
    inset: auto;
    left: auto;
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    padding: 170px 18px 22px;
    border-radius: 0;
    transform: none;
  }

  .network-map-img {
    top: 0;
    bottom: auto;
    height: 170px;
    opacity: 0.86;
  }

  .network-arc-layer {
    display: none;
  }

  .network-hub-card {
    left: 50%;
    top: 54px;
  }

  .network-hub-card img {
    width: 138px;
  }

  .network-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-height: 74px;
    display: grid;
    grid-template-columns: 128px 1fr;
    place-items: center start;
    transform: none;
  }

  .network-node:hover,
  .network-node:focus {
    transform: none;
  }

  .network-node + .network-node {
    margin-top: 12px;
  }

  .network-node-detail {
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .network-pin {
    left: 22px;
    top: 16px;
    bottom: auto;
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .company-closing-cta {
    padding: 64px 20px;
  }

  .company-cta-inner {
    padding: 24px;
  }

  .company-closing-cta .route-actions,
  .company-hero .route-actions {
    align-items: stretch;
  }

  .company-closing-cta .route-button,
  .company-hero .route-button {
    width: 100%;
  }
}
/* =============================================================
   Trispecific antibody construct visuals
   Remove dark frame and blend image edges with background
   ============================================================= */

.scientific-construct-grid {
  margin-top: 34px;
}

.construct-visual-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.construct-visual-card-wide {
  grid-column: 1 / -1;
  width: min(820px, 100%);
  justify-self: center;
}

.construct-visual-frame {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

/* Remove inherited decorative overlays */
.construct-visual-frame::before,
.construct-visual-frame::after {
  display: none;
  content: none;
}

.construct-visual-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 22px;
  box-shadow: none;

  /* soft edge fade */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.construct-visual-card figcaption {
  margin-top: 14px;
  color: rgba(238, 252, 248, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

/* =============================================================
   Login page
   ============================================================= */

.login-page {
  min-height: 100vh;
  background: #061b26;
  color: #eefcf8;
}

.login-page::before {
  z-index: 1;
  background-image:
    radial-gradient(circle at 76% 24%, rgba(100, 238, 231, 0.16) 0%, transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(215, 163, 91, 0.14) 0%, transparent 36%),
    linear-gradient(135deg, rgba(6, 27, 38, 0.94), rgba(7, 31, 46, 0.98));
}

.login-page::after {
  opacity: 0.055;
  mix-blend-mode: screen;
}

.login-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 1380px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 468px);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
}

.login-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: brightness(0.82) contrast(1.05) saturate(0.95) hue-rotate(10deg);
}

.login-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 27, 38, 0.96) 0%, rgba(6, 27, 38, 0.86) 42%, rgba(6, 27, 38, 0.54) 100%),
    radial-gradient(circle at 70% 44%, rgba(100, 238, 231, 0.18), transparent 28%);
  pointer-events: none;
}

.login-panel,
.login-context {
  position: relative;
  z-index: 2;
}

.login-panel {
  grid-column: 2;
  justify-self: end;
  width: min(100%, 468px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(100, 238, 231, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 252, 248, 0.11), rgba(238, 252, 248, 0.055)),
    rgba(6, 27, 38, 0.78);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.login-brand {
  width: 176px;
  margin-bottom: clamp(32px, 6vw, 64px);
}

.login-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.login-page .section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #d7a35b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.login-page .section-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.login-copy h1 {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.login-copy p:not(.section-kicker) {
  margin-top: 16px;
  color: rgba(238, 252, 248, 0.72);
  font-size: 15px;
  line-height: 1.7;
  white-space: normal;
  overflow-wrap: break-word;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.login-form label {
  display: grid;
  gap: 8px;
}

.login-form label > span,
.login-check span {
  color: rgba(238, 252, 248, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-form input[type="email"],
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(100, 238, 231, 0.2);
  border-radius: 8px;
  background: rgba(238, 252, 248, 0.08);
  color: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.login-form input::placeholder {
  color: rgba(238, 252, 248, 0.42);
}

.login-form input:focus {
  border-color: rgba(100, 238, 231, 0.62);
  background: rgba(238, 252, 248, 0.12);
  box-shadow: 0 0 0 4px rgba(100, 238, 231, 0.1);
}

.login-error {
  min-height: 20px;
  color: #ffb8b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 2px;
}

.login-check {
  display: inline-flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.login-check input {
  width: 16px;
  height: 16px;
  accent-color: #d7a35b;
}

.login-options a {
  color: #fff2cf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.login-submit {
  width: 100%;
  margin-top: 8px;
  min-height: 54px;
  border: 1px solid rgba(244, 183, 75, 0.72);
}

.login-footnote {
  margin-top: 28px;
  color: rgba(238, 252, 248, 0.48);
  font-size: 12px;
  line-height: 1.6;
}

.login-context {
  grid-column: 1;
  grid-row: 1;
  max-width: 620px;
  align-self: center;
  justify-self: start;
}

.login-context h2 {
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(36px, 3.9vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.login-context h2 span {
  color: var(--home-cyan, #9af8f2);
  text-shadow: 0 0 28px rgba(154, 248, 242, 0.24);
}

@media (max-width: 980px) {
  .login-shell {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .login-panel {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .login-context {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    max-width: 760px;
    padding-bottom: 0;
  }

  .login-context h2 {
    font-size: clamp(32px, 5.8vw, 44px);
  }
}

@media (max-width: 640px) {
  .login-shell {
    max-width: 100vw;
    padding: 18px;
    gap: 18px;
    overflow: visible;
    justify-items: start;
  }

  .login-panel {
    justify-self: start;
    width: min(354px, calc(100vw - 36px));
    min-width: 0;
    max-width: none;
    padding: 22px;
    overflow: hidden;
  }

  .login-brand {
    width: 132px;
    margin-bottom: 22px;
  }

  .login-options {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .login-copy h1 {
    min-width: 0;
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.08;
    word-break: break-word;
  }

  .login-copy p:not(.section-kicker) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
  }

  .login-form {
    gap: 14px;
    margin-top: 24px;
  }

  .login-form input[type="email"],
  .login-form input[type="text"],
  .login-form input[type="password"] {
    min-height: 48px;
  }

  .login-error {
    min-height: 16px;
  }

  .login-submit {
    min-height: 50px;
    margin-top: 4px;
  }

  .login-footnote {
    margin-top: 18px;
    font-size: 11px;
  }

  .login-form,
  .login-form label,
  .login-form input[type="email"],
  .login-form input[type="text"],
  .login-form input[type="password"] {
    min-width: 0;
  }

  .login-copy p:not(.section-kicker),
  .login-context h2 {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .login-context {
    justify-self: start;
    width: min(354px, calc(100vw - 36px));
    min-width: 0;
    max-width: none;
  }

  .login-context h2 {
    font-size: clamp(28px, 7.8vw, 34px);
    word-break: break-word;
  }
}
