/* ===================================================================
   LIMITLESS HUMAN — Editorial / Luxury System (v2)
   Type: Fraunces (display & quotes), Inter (body), JetBrains Mono (mono)
=================================================================== */

:root {
  --ink: #011223;
  --ink-2: #021c33;
  --ink-3: #032742;
  --paper: #f5f1ea;
  --paper-2: #ece6dc;
  --line: rgba(1, 18, 35, .16);
  --line-soft: rgba(1, 18, 35, .08);
  --gold: #b89265;
  --gold-2: #cda878;
  --gold-soft: #d8bf94;
  --mute: rgba(1, 18, 35, .55);
  --mute-2: rgba(1, 18, 35, .4);

  --display: "Michroma", "Courier New", monospace;
  --mono: "Michroma", "Courier New", monospace;
  --body: "Michroma", "Courier New", monospace;

  --container: 1280px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

/* ============== Ambient cursor light ============== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle 600px at var(--mx, 50%) var(--my, 50%), rgba(184, 146, 101, .08), transparent 50%);
  mix-blend-mode: screen;
  transition: opacity .4s;
}

@media (prefers-reduced-motion:reduce) {
  .ambient {
    display: none
  }
}

/* ============== Particle canvas ============== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .4;
}

@media (prefers-reduced-motion:reduce) {
  .particles {
    display: none
  }
}

/* ============== Scroll progress ============== */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 50;
  background: rgba(245, 241, 234, .06);
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 8px var(--gold);
  transition: width .12s linear;
}

.btn {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .25s, color .25s, border-color .25s, letter-spacing .25s
}

body {
  position: relative;
  z-index: 0
}

.nav,
.marquee,
.section,
.hero,
.footer,
.rewind {
  position: relative;
  z-index: 2
}

.particles {
  z-index: 0
}

.ambient {
  z-index: 1
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px
}

/* ===== Typographic primitives ===== */

.kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-weight: 400;
}

.rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--ink);
  opacity: .4;
}

.display {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 14px 0 24px;
}

.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0;
  margin: 0 0 22px;
  max-width: 60ch;
}

.body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--mute);
  max-width: 62ch;
  margin: 0;
  font-family: var(--body);
}

.max-680 {
  max-width: 680px
}

.max-720 {
  max-width: 720px
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 0;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.btn--ghost {
  border-color: rgba(1, 18, 35, .3);
  padding: 14px 22px;
  font-size: 10.5px
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper)
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink)
}

.btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink)
}

.btn--link {
  border: none;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}

.btn--link:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.btn--center {
  display: flex;
  width: fit-content;
  margin: 64px auto 0
}

/* On dark backgrounds */
.section--ink .btn,
.section--peptides .btn,
.section--cta .btn {
  border-color: var(--paper);
  color: var(--paper);
}

.section--ink .btn--solid,
.section--peptides .btn--solid,
.section--cta .btn--solid {
  background: var(--paper);
  color: var(--ink);
}

.section--ink .btn--solid:hover,
.section--peptides .btn--solid:hover,
.section--cta .btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.section--ink .btn--link,
.section--peptides .btn--link,
.section--cta .btn--link {
  border-bottom-color: var(--paper);
  color: var(--paper);
}

.section--ink .btn--link:hover,
.section--peptides .btn--link:hover,
.section--cta .btn--link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Brand / Nav ===== */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit
}

.brand__logo {
  width: 46px;
  height: auto;
  display: block;
  filter: invert(56%) sepia(18%) saturate(700%) hue-rotate(0deg) brightness(95%);
}

.brand__logo--mark {
  width: auto;
  height: 44px;
  filter: none;
}

.brand__word {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .32em;
  line-height: 1;
  font-weight: 500;
}

.brand__word small {
  display: block;
  font-size: 7.5px;
  letter-spacing: .42em;
  color: var(--mute);
  margin-top: 5px;
  font-weight: 400;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 30px 0
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 48px
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 36px;
  align-items: center;
}

.nav__burger {
  display: none;
}

/* hidden on desktop */
.nav__links a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .85;
  font-weight: 400;
}

.nav__links a:hover {
  opacity: 1;
  color: var(--gold)
}

.nav .btn {
  border-color: rgba(245, 241, 234, .35);
  color: var(--paper)
}

.nav .btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink)
}

.nav .brand {
  color: var(--paper)
}

.nav .brand__logo {
  filter: invert(80%) sepia(40%) saturate(440%) hue-rotate(0deg) brightness(95%)
}

.nav .brand__logo--mark {
  filter: none
}

.nav .brand__word small {
  color: rgba(245, 241, 234, .55)
}

/* ====================================================================
   HERO — asymmetric editorial split (Michroma, controlled scale)
==================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: #011223;
  color: var(--paper);
  padding: 120px 0 80px;
  overflow: visible;
  clip-path: inset(0);
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 60% 40% at 78% 28%, rgba(184, 146, 101, .18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 22% 88%, rgba(40, 30, 20, .55), transparent 60%),
    linear-gradient(180deg, #011223 0%, #000a15 60%, #011223 100%);
}

.hero__helix {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  display: block;
  pointer-events: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* horizontal: heavy on the left, soft re-darken in the lower right under support block */
    linear-gradient(90deg, rgba(1, 18, 35, .94) 0%, rgba(1, 18, 35, .55) 38%, rgba(1, 18, 35, 0) 62%, rgba(1, 18, 35, .55) 100%),
    /* vertical: subtle top + heavier bottom-right pool */
    linear-gradient(180deg, rgba(1, 18, 35, .4) 0%, transparent 26%, transparent 60%, rgba(1, 18, 35, .82) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Jy45NScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJyBmaWx0ZXI9J3VybCglMjNuKScgb3BhY2l0eT0nLjU1Jy8+PC9zdmc+");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "lead     ."
    ".        ."
    ".        support";
  gap: 48px 64px;
  min-height: calc(100vh - 200px);
  padding-top: 24px;
  padding-bottom: 48px;
}

/* Top-left lead */
.hero__lead {
  grid-area: lead;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 780px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  letter-spacing: .32em;
}

/* Bottom-right support */
.hero__support {
  grid-area: support;
  justify-self: end;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 440px;
  text-align: left;
  position: relative;
  padding-top: 30px;
}

.hero__support-rule {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.hero__support .hero__lede {
  margin: 0;
  padding-left: 0;
  border-left: none;
  max-width: none;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 241, 234, .82);
}

.hero__support .hero__cta {
  margin: 0
}

.hero__support-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .45);
  margin-top: 6px;
}

.hero__support-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 101, .18);
  font-style: normal;
}

/* Top bar with kicker on each side */
.hero__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero__bar .hero__meta {
  display: flex;
  align-items: center;
  gap: 14px
}

.hero__bar .rule {
  background: var(--paper);
  opacity: .55
}

.hero__bar .kicker {
  color: rgba(245, 241, 234, .7)
}

.hero__cohort {
  color: var(--gold) !important
}

/* Main split: copy left, portrait right */
.hero__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: center;
  flex: 1;
}

.hero__main--single {
  display: block;
  flex: 1;
}

.hero__main--single .hero__copy {
  max-width: 560px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  color: var(--paper);
  text-transform: none;
}

.hero__line {
  display: block;
  position: relative;
  white-space: nowrap
}

.hero__dot {
  width: .16em;
  height: .16em;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-left: .05em;
  vertical-align: .06em;
  box-shadow: 0 0 30px var(--gold);
  animation: dotPulse 2.4s ease-in-out infinite;
  font-style: normal;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(.8);
    opacity: .6
  }
}

/* Program DNA strap */
.hero__dna {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(245, 241, 234, .16);
  background: rgba(8, 8, 12, .5);
  backdrop-filter: blur(6px);
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
}

.hero__dna-k {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 241, 234, .55);
  padding: 14px 20px;
  border-right: 1px solid rgba(245, 241, 234, .16);
}

.hero__dna-k i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 101, .18);
}

.hero__dna-v {
  color: var(--gold-soft);
  padding: 14px 20px;
  font-weight: 500
}

.hero__lede {
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 234, .78);
  max-width: 50ch;
  margin: 0;
  letter-spacing: .03em;
  padding-left: 18px;
  border-left: 1px solid rgba(184, 146, 101, .4);
}

.hero__lede-note {
  color: var(--gold-soft)
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap
}

.hero .btn--solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper)
}

.hero .btn--solid:hover {
  background: var(--gold);
  border-color: var(--gold)
}

.hero .btn--link {
  color: var(--paper);
  border-bottom-color: rgba(245, 241, 234, .4)
}

/* Hero portrait card */
.hero__card {
  position: relative;
  margin: 0;
  width: min(100%, 460px);
  aspect-ratio: 4/5;
  border: 1px solid rgba(216, 191, 148, .22);
  background: linear-gradient(180deg, rgba(20, 20, 24, .6), rgba(8, 8, 12, .85));
  isolation: isolate;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(245, 241, 234, .04);
}

.hero__card::before,
.hero__card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  z-index: 4;
}

.hero__card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none
}

.hero__card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none
}

.hero__portrait {
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(.18) contrast(1.05) brightness(.92);
  z-index: 0;
}

.hero__card-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 241, 234, .05) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .05) 1px, transparent 1px) 0 0/25% 100%;
  mix-blend-mode: overlay;
}

.hero__card-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, transparent 96px, rgba(184, 146, 101, .22) 97px, transparent 99px),
    radial-gradient(circle at 50% 38%, transparent 138px, rgba(184, 146, 101, .14) 139px, transparent 141px);
}

.hero__card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .22em;
  color: var(--gold);
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(184, 146, 101, .3);
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__card-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5252;
  box-shadow: 0 0 10px #ff5252;
  animation: livedot 1.2s ease-in-out infinite;
}

.hero__chip {
  position: absolute;
  z-index: 3;
  background: rgba(8, 8, 12, .82);
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  min-width: 130px;
  animation: chipIn .8s ease both;
}

.hero__chip::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 146, 101, .18);
  top: 50%;
  transform: translateY(-50%);
}

.hero__chip--top {
  top: 14%;
  left: -90px;
  animation-delay: .1s
}

.hero__chip--top::before {
  right: -30px
}

.hero__chip--mid {
  top: 46%;
  right: -100px;
  animation-delay: .3s
}

.hero__chip--mid::before {
  left: -30px
}

.hero__chip--btm {
  bottom: 18%;
  left: -90px;
  animation-delay: .5s
}

.hero__chip--btm::before {
  right: -30px
}

.chip__k {
  font-size: 8.5px;
  letter-spacing: .22em;
  color: rgba(245, 241, 234, .6);
  text-transform: uppercase
}

.chip__v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold-soft);
  line-height: 1
}

.chip__v i {
  font-size: 10px;
  color: rgba(245, 241, 234, .55);
  margin-left: 2px;
  font-style: normal;
  letter-spacing: .04em
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes livedot {

  0%,
  100% {
    opacity: .4
  }

  50% {
    opacity: 1
  }
}

.hero__card-cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 241, 234, .18);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .18em;
  color: rgba(245, 241, 234, .7);
}

.hero__card-cap span {
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: .22em
}

.hero__card-cap i {
  color: rgba(245, 241, 234, .55);
  font-style: normal;
  text-transform: uppercase
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, .18);
  padding-top: 42px;
  width: 100%;
}

.hero__stats>div {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(245, 241, 234, .12);
}

.hero__stats>div:last-child {
  border-right: none
}

.hero__stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--paper);
  margin-bottom: 14px;
}

.hero__stats strong i {
  color: var(--gold);
  font-style: normal;
  font-size: .6em;
  margin-left: .05em
}

.hero__stats span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .6);
  line-height: 1.6;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 36px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .55);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero__scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  display: inline-block;
  animation: scrollLine 2s ease-in-out infinite;
  font-style: normal;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(.4);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }
}

/* ===== Marquee strip ===== */

.marquee {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(245, 241, 234, .08);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.marquee__track i {
  color: var(--gold);
  font-style: normal
}

@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}

/* ===== Section base ===== */

.section {
  padding: 112px 0;
  position: relative
}

.section--editorial,
.section--age,
.section--program,
.section--team,
.section--partners,
.section--cta {
  background: var(--paper)
}

.section--ink,
.section--peptides,
.section--quote {
  background: var(--ink);
  color: var(--paper);
}

.section--ink .display,
.section--peptides .display,
.section--quote .display,
.section--cta .display {
  color: var(--paper)
}

.section--ink .lede,
.section--peptides .lede,
.section--quote .lede,
.section--cta .lede {
  color: rgba(245, 241, 234, .78)
}

.section--ink .body,
.section--peptides .body {
  color: rgba(245, 241, 234, .6)
}

.section--ink .kicker,
.section--peptides .kicker,
.section--quote .kicker,
.section--cta .kicker {
  color: rgba(245, 241, 234, .65)
}

.section--ink .rule,
.section--peptides .rule,
.section--quote .rule,
.section--cta .rule {
  background: var(--paper);
  opacity: .5
}

.section-head {
  margin-bottom: 48px;
  max-width: 920px
}

.section-head .display {
  font-size: clamp(32px, 3.6vw, 54px);
  max-width: 920px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center
}

.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 56px;
  align-items: end;
}

.section-head__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.section-head__label.center {
  justify-content: center
}

/* ===== Two-col Editorial ===== */

.two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 0;
}

.two-col__label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 14px
}

.two-col__body .display {
  margin-top: 0
}

.method-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: 70px;
  align-items: end;
}

.method-panel__copy .display {
  margin-top: 0;
  font-size: clamp(32px, 3.8vw, 56px);
  max-width: 850px;
}

.method-panel__copy .body {
  max-width: 58ch
}

.method-panel__visual {
  position: relative;
  margin: 0;
  min-height: 390px;
  border: 0;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}

.method-panel__visual::before {
  content: "";
  position: absolute;
  inset: 9% -5% 18%;
  background:
    linear-gradient(rgba(1, 18, 35, .055) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(1, 18, 35, .045) 1px, transparent 1px) 0 0/20% 100%;
  mask-image: radial-gradient(ellipse 72% 70% at 56% 46%, #000 32%, transparent 76%);
  opacity: .75;
  pointer-events: none;
}

.method-panel__visual::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 6px;
  width: 54px;
  height: 54px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: .75;
}

.method-art {
  color: var(--ink);
}

.method-art__map,
.method-art>span {
  position: absolute;
  pointer-events: none;
}

.method-art__map {
  z-index: 1;
  inset: 10px 0 76px;
  width: 100%;
  height: calc(100% - 86px);
  overflow: visible;
  filter: drop-shadow(0 22px 48px rgba(1, 18, 35, .08));
}

.method-art__grid path {
  fill: none;
  stroke: rgba(1, 18, 35, .075);
  stroke-width: 1;
}

.method-art__orbit-group {
  transform-origin: 314px 186px;
}

.method-art__orbit {
  fill: none;
  stroke: rgba(1, 18, 35, .24);
  stroke-width: 1.2;
}

.method-art__orbit--inner {
  stroke: rgba(1, 18, 35, .18);
}

.method-art__thread {
  fill: none;
  stroke: rgba(1, 18, 35, .2);
  stroke-width: 1.2;
  stroke-linecap: round;
}

.method-art__signal {
  fill: none;
  stroke: url(#protocolBlue);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: .18 .82;
  stroke-dashoffset: 1;
  animation: methodSignal 4.8s linear infinite;
}

.method-art__node {
  fill: url(#protocolNode);
  stroke: rgba(1, 18, 35, .38);
  stroke-width: 1.2;
}

.method-art__core {
  fill: var(--ink-3);
  stroke: var(--paper);
  stroke-width: 2;
  filter: drop-shadow(0 0 18px rgba(1, 18, 35, .22));
}

.method-art__pulse {
  z-index: 0;
  left: 50%;
  top: 42%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 39, 66, .16), rgba(3, 39, 66, .06) 34%, transparent 68%);
  animation: methodPulse 5.2s ease-in-out infinite;
}

.method-panel__visual figcaption {
  position: absolute;
  z-index: 3;
  left: 2px;
  top: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(1, 18, 35, .72);
  border: 1px solid rgba(1, 18, 35, .16);
  padding: 9px 12px;
  background: rgba(245, 241, 234, .64);
  backdrop-filter: blur(10px);
}

.method-panel__metrics {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(1, 18, 35, .16);
  border-bottom: 1px solid rgba(1, 18, 35, .1);
  background: rgba(245, 241, 234, .48);
  backdrop-filter: blur(14px);
}

.method-panel__metrics span {
  padding: 16px 16px 14px;
  border-right: 1px solid rgba(1, 18, 35, .12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(1, 18, 35, .55);
}

.method-panel__metrics span:last-child {
  border-right: none
}

.method-panel__metrics b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}

@keyframes methodSignal {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes methodPulse {

  0%,
  100% {
    opacity: .5;
    transform: translate(-50%, -50%) scale(.92)
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08)
  }
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  border: 0;
  margin-top: 86px;
  padding-top: 34px;
}

.method-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 18, 35, .28), rgba(184, 146, 101, .5), rgba(1, 18, 35, .18), transparent);
}

/* .method-grid article {
  position: relative;
  min-height: 220px;
  border: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  transition: transform .35s ease;
} */

.method-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(1, 18, 35, .12));
}

.method-grid article::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(184, 146, 101, .09);
}

.method-grid article:hover {
  transform: translateY(-8px);
}

.method-grid span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--gold);
}

/* .method-grid h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.18;
  margin: auto 0 0;
  color: var(--ink);
  letter-spacing: 0;
}

.method-grid p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--mute);
  margin: 0;
} */


.method-grid article {
  position: relative;
  min-height: 220px;
  border: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  /* Remove justify-content: space-between */
  gap: 24px;
  background: transparent;
  transition: transform .35s ease;
}

.method-grid h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.18;
  margin: 0; /* Changed from margin: auto 0 0 */
  color: var(--ink);
  letter-spacing: 0;
  /* Add fixed height or min-height to ensure consistency */
  min-height: 56px; /* Adjust based on your font size */
  display: flex;
  align-items: center; /* Vertically center the text */
}

.method-grid p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--mute);
  margin: 0;
  /* Optional: Add flex-grow to push content down evenly */
  flex: 1;
}

.bio-age-lab {
  min-height: 100svh;
  padding: 92px 0;
  background: var(--ink);
  color: var(--paper);
  overflow: visible;
  clip-path: inset(0);
  isolation: isolate;
}

.bio-age-lab__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 54% 44% at 72% 28%, rgba(184, 146, 101, .15), transparent 66%),
    linear-gradient(rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/100% 78px,
    linear-gradient(90deg, rgba(245, 241, 234, .035) 1px, transparent 1px) 0 0/92px 100%,
    #011223;
  mask-image: radial-gradient(ellipse 88% 74% at 50% 42%, #000 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 88% 74% at 50% 42%, #000 0%, transparent 90%);
}

.bio-age-lab__inner {
  min-height: calc(100svh - 184px);
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: center;
}

.bio-age-lab__copy {
  max-width: 620px;
}

.bio-age-lab__copy .display {
  color: var(--paper);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.06;
  margin: 18px 0 22px;
}

.bio-age-lab__copy .lede {
  color: rgba(245, 241, 234, .72);
}

.bio-age-lab__cta {
  margin-top: 14px;
  color: var(--paper);
}

.age-intel {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(245, 241, 234, .18);
  background:
    radial-gradient(circle at 62% 22%, rgba(216, 191, 148, .12), transparent 30%),
    linear-gradient(180deg, rgba(245, 241, 234, .04), rgba(245, 241, 234, .012));
  overflow: hidden;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(245, 241, 234, .035);
}

.age-intel::before,
.age-intel::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
  z-index: 3;
}

.age-intel::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.age-intel::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.age-intel__topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 234, .14);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .58);
}

.age-intel__topline span:first-child {
  color: var(--gold-soft)
}

.age-intel__chart {
  position: relative;
  z-index: 1;
  padding: 34px 0 22px;
}

.age-intel__chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.age-intel__grid-lines {
  fill: none;
  stroke: rgba(245, 241, 234, .1);
  stroke-width: 1;
}

.age-intel__area {
  fill: url(#ageArea);
  opacity: 0;
  transition: opacity 1s ease .25s;
}

.age-intel__line {
  fill: none;
  stroke: url(#ageLine);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s cubic-bezier(.22, .8, .2, 1) .15s;
  filter: drop-shadow(0 0 18px rgba(184, 146, 101, .36));
}

.age-intel__dot {
  fill: var(--paper);
  stroke: var(--gold);
  stroke-width: 2.5;
  opacity: 0;
  transform: scale(.4);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity .45s ease, transform .55s cubic-bezier(.34, 1.56, .64, 1);
}

.age-intel__dot:nth-of-type(1) {
  transition-delay: .3s
}

.age-intel__dot:nth-of-type(2) {
  transition-delay: .62s
}

.age-intel__dot:nth-of-type(3) {
  transition-delay: .94s
}

.age-intel__dot:nth-of-type(4) {
  transition-delay: 1.2s
}

.bio-age-lab.is-in .age-intel__area {
  opacity: 1
}

.bio-age-lab.is-in .age-intel__line {
  stroke-dashoffset: 0
}

.bio-age-lab.is-in .age-intel__dot {
  opacity: 1;
  transform: scale(1)
}

.age-intel__modules {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 241, 234, .14);
  border-left: 1px solid rgba(245, 241, 234, .14);
}

.age-intel__modules article {
  min-height: 138px;
  border-right: 1px solid rgba(245, 241, 234, .14);
  border-bottom: 1px solid rgba(245, 241, 234, .14);
  padding: 18px 16px;
  background: rgba(1, 18, 35, .2);
}

.age-intel__modules span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--gold);
}

.age-intel__modules strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.18;
  color: var(--paper);
}

.age-intel__modules p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(245, 241, 234, .58);
}

/* ====================================================================
   REWIND — Bio Age section (cleaner, more cinematic)
==================================================================== */

.rewind {
  position: relative;
  background: #011223;
  color: var(--paper);
  padding: 160px 0 0;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid rgba(245, 241, 234, .08);
}

.rewind__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/100% 80px,
    linear-gradient(90deg, rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/80px 100%;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 80%);
}

.rewind__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .4;
  mix-blend-mode: overlay;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Jy45MicgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScyMjAnIGhlaWdodD0nMjIwJyBmaWx0ZXI9J3VybCglMjNuKScvPjwvc3ZnPg==");
  background-size: 220px 220px;
  pointer-events: none;
}

.rewind__case {
  position: absolute;
  top: 42px;
  right: 42px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .2em;
  color: rgba(245, 241, 234, .55);
  border: 1px solid rgba(245, 241, 234, .14);
  padding: 14px 18px;
}

.rewind__case strong {
  color: var(--gold);
  font-weight: 400
}

.rewind__case::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -9px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.rewind__case::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -9px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.rewind__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 120px
}

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

.rewind__head .kicker {
  color: var(--gold)
}

/* ===== Bio age hero (photo + copy) ===== */

.rewind__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.rewind__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border: 1px solid rgba(245, 241, 234, .18);
  background: #011a30;
  overflow: hidden;
}

.rewind__photo img,
.rewind__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.85);
}

.rewind__photo-img {
  position: absolute;
  inset: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
}

.rewind__photo-img--old {
  z-index: 0;
}

/* Mask wrapper: animated height with overflow:hidden — guarantees a hard, opaque wipe edge */
.rewind__photo-mask {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 0;
  overflow: hidden;
  z-index: 1;
  animation: bioWipe 4s ease-in-out infinite alternate;
  pointer-events: none;
  background: #011223;
}

.rewind__photo-img--young {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--bio-photo-h, 100%);
  object-fit: cover;
}

@keyframes bioWipe {
  0% {
    height: 0
  }

  100% {
    height: calc(100% - 2px)
  }
}

.rewind__photo-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 241, 234, .06) 1px, transparent 1px) 0 0/100% 20%,
    linear-gradient(90deg, rgba(245, 241, 234, .06) 1px, transparent 1px) 0 0/20% 100%;
  mix-blend-mode: overlay;
}

.rewind__photo::before,
.rewind__photo::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
  z-index: 2;
}

.rewind__photo::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none
}

.rewind__photo::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none
}

.rewind__photo-label {
  position: absolute;
  top: 14px;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .28em;
  color: var(--paper);
  background: rgba(0, 0, 0, .65);
  padding: 5px 9px;
  border: 1px solid rgba(245, 241, 234, .2);
  z-index: 3;
}

.rewind__photo-label--old {
  left: 14px;
}

.rewind__photo-label--young {
  right: 14px;
  color: var(--gold);
  border-color: rgba(184, 146, 101, .4);
}

.rewind__hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3
}

.rewind__hud .hud-corner {
  position: absolute;
  width: 42px;
  height: 42px
}

.rewind__hud .hud-corner::before,
.rewind__hud .hud-corner::after {
  content: "";
  position: absolute;
  background: var(--gold)
}

.rewind__hud .hud-corner::before {
  height: 1px;
  left: 0;
  right: 0;
  animation: hudscan 3s ease-in-out infinite
}

.rewind__hud .hud-corner::after {
  width: 1px;
  top: 0;
  bottom: 0;
  animation: hudscan 3s ease-in-out infinite
}

.rewind__hud .tl {
  top: 8px;
  left: 8px
}

.rewind__hud .tl::before {
  top: 0
}

.rewind__hud .tl::after {
  left: 0
}

.rewind__hud .tr {
  top: 8px;
  right: 8px
}

.rewind__hud .tr::before {
  top: 0
}

.rewind__hud .tr::after {
  right: 0
}

.rewind__hud .bl {
  bottom: 8px;
  left: 8px
}

.rewind__hud .bl::before {
  bottom: 0
}

.rewind__hud .bl::after {
  left: 0
}

.rewind__hud .br {
  bottom: 8px;
  right: 8px
}

.rewind__hud .br::before {
  bottom: 0
}

.rewind__hud .br::after {
  right: 0
}

@keyframes hudscan {

  0%,
  100% {
    opacity: .3
  }

  50% {
    opacity: 1
  }
}

.hud-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .28em;
  color: var(--gold);
  background: rgba(0, 0, 0, .65);
  padding: 6px 12px;
  border: 1px solid rgba(184, 146, 101, .4);
}

.hud-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5252;
  margin-right: 8px;
  vertical-align: middle;
  animation: livedot 1.2s ease-in-out infinite;
  box-shadow: 0 0 10px #ff5252;
}

.rewind__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  top: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(184, 146, 101, .0) 30%, rgba(184, 146, 101, .45) 75%, rgba(245, 241, 234, .85) 100%);
  box-shadow: 0 12px 40px rgba(184, 146, 101, .5), 0 0 60px rgba(184, 146, 101, .3);
  mix-blend-mode: screen;
  animation: scan 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 2;
}

@keyframes scan {
  0% {
    top: -10%;
    opacity: 1
  }

  100% {
    top: 100%;
    opacity: 1
  }
}

.rewind__copy {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.rewind__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  color: var(--paper);
}

.rewind__title em {
  color: var(--gold-soft);
  font-weight: 300
}

.rewind__lede {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 241, 234, .78);
  max-width: 48ch;
  margin: 0;
  letter-spacing: 0;
}

.rewind__lede i {
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold)
}

.rewind__marks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(245, 241, 234, .16);
  border-left: 1px solid rgba(245, 241, 234, .16);
  margin-top: 8px;
}

.rewind__marks li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-right: 1px solid rgba(245, 241, 234, .16);
  border-bottom: 1px solid rgba(245, 241, 234, .16);
  padding: 18px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(245, 241, 234, .65);
}

.rewind__marks b {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1
}

.rewind__marks em {
  font-style: normal;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 9.5px
}

.rewind__marks strong {
  color: var(--gold);
  font-weight: 400;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0
}

/* ===== 47 → 32 Cinematic Compare ===== */

.compare {
  position: relative;
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 48px 56px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 146, 101, .08), transparent 70%),
    linear-gradient(180deg, rgba(245, 241, 234, .02), rgba(245, 241, 234, 0));
  isolation: isolate;
}

.compare::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}

.compare::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 32px;
  height: 32px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

.compare__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(245, 241, 234, .12);
  flex-wrap: wrap;
}

.compare__delta {
  color: var(--gold) !important
}

.compare__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(245, 241, 234, .12);
}

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

.compare__col--from {
  align-items: flex-start;
  text-align: left
}

.compare__col--to {
  align-items: flex-end;
  text-align: right
}

.compare__col .kicker {
  color: rgba(245, 241, 234, .6)
}

.compare__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(120px, 18vw, 260px);
  line-height: .85;
  letter-spacing: 0;
  color: rgba(245, 241, 234, .6);
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.compare__num--gold {
  background: linear-gradient(180deg, #fff 0%, var(--gold-soft) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(184, 146, 101, .25);
  filter: drop-shadow(0 0 24px rgba(184, 146, 101, .18));
}

.compare__unit {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .55);
  max-width: 18ch;
  line-height: 1.6;
}

.compare__bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: rgba(245, 241, 234, .62);
}

.compare__col--from .compare__bullets li::before {
  content: "− ";
  color: rgba(245, 241, 234, .4)
}

.compare__col--to .compare__bullets li::before {
  content: "+ ";
  color: var(--gold)
}

.compare__chart {
  position: relative;
  padding: 54px 0 16px;
  width: 100%;
}

.compare__chart-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
}

.compare__chart-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  background: #011223;
  padding: 0 10px;
  white-space: nowrap;
}

/* ----- Chart on-appear animation ----- */
.compare__chart-svg .chart__area {
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}

.compare__chart-svg .chart__line {
  /* pathLength="1" → dasharray:1 covers the full path */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.8s cubic-bezier(.65, .05, .36, 1) .2s;
}

.compare__chart-svg .chart__pt {
  opacity: 0;
  transform: scale(.2);
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity .5s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1);
}

.compare__chart-svg .chart__pt:nth-of-type(1) {
  transition-delay: .25s
}

.compare__chart-svg .chart__pt:nth-of-type(2) {
  transition-delay: .7s
}

.compare__chart-svg .chart__pt:nth-of-type(3) {
  transition-delay: 1.15s
}

.compare__chart-svg .chart__pt:nth-of-type(4) {
  transition-delay: 1.7s
}

.compare__chart-svg .chart__labels text {
  opacity: 0;
  transition: opacity .6s ease;
}

.compare__chart-svg .chart__labels text:nth-of-type(1) {
  transition-delay: .35s
}

.compare__chart-svg .chart__labels text:nth-of-type(2) {
  transition-delay: 1.85s
}

/* Driven by IntersectionObserver adding .is-in to the .rewind section */
.rewind.is-in .compare__chart-svg .chart__area {
  opacity: 1
}

.rewind.is-in .compare__chart-svg .chart__line {
  stroke-dashoffset: 0
}

.rewind.is-in .compare__chart-svg .chart__pt {
  opacity: 1;
  transform: scale(1)
}

.rewind.is-in .compare__chart-svg .chart__labels text {
  opacity: 1
}

@media (prefers-reduced-motion: reduce) {

  .compare__chart-svg .chart__area,
  .compare__chart-svg .chart__line,
  .compare__chart-svg .chart__pt,
  .compare__chart-svg .chart__labels text {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
    transition: none;
  }
}

/* Promise list */
.rewind__promise {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid rgba(245, 241, 234, .18);
  border-top: 1px solid rgba(245, 241, 234, .18);
}

.rewind__promise li {
  border-right: 1px solid rgba(245, 241, 234, .18);
  border-bottom: 1px solid rgba(245, 241, 234, .18);
  padding: 40px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 241, 234, .7);
  font-weight: 400;
}

.rewind__promise .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
  flex: 0 0 auto;
}

.rewind__promise strong {
  color: var(--paper);
  font-weight: 400;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 8px;
}

/* Ticker bottom */
.rewind__ticker {
  border-top: 1px solid rgba(245, 241, 234, .16);
  background: #000a15;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.rewind__ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--paper);
}

.rewind__ticker-track i {
  font-style: normal;
  color: var(--gold);
  margin-left: 8px
}

.rewind__ticker-track b {
  color: rgba(245, 241, 234, .3);
  font-weight: 400
}

/* ===== Diagnostics product list ===== */

.section--diagnostics {
  padding: 104px 0 112px;
  overflow: hidden;
}

.diagnostics-head {
  max-width: 920px;
  margin-bottom: 42px;
}

.diagnostics-head .display {
  margin-bottom: 18px;
  max-width: 880px;
}

.diagnostics-head .lede {
  max-width: 70ch;
}

.diagnostics-products {
  margin: 0 -36px;
  padding: 0 36px;
}

.diagnostics-products .cards-scroll__nav {
  position: static;
  justify-content: flex-end;
  margin: 0 0 18px;
  padding-right: 36px;
}

.diagnostics-cards {
  gap: 22px;
  padding: 2px 36px 4px;
}

.diagnostic-product {
  flex-basis: 370px;
  min-height: 0;
}

.diagnostic-product .card__visual {
  aspect-ratio: 1.3;
}

.diagnostic-product .card__title {
  min-height: 50px;
}

.diagnostic-product .card__copy {
  min-height: 74px;
}

.diagnostic-product .card__buy {
  text-decoration: none;
}

.section--lab-tests {
  position: relative;
  overflow: hidden;
  padding: 108px 0 116px;
  border-top: 1px solid rgba(245, 241, 234, .08);
}

.section--lab-tests::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 146, 101, .12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(63, 120, 157, .18), transparent 34%),
    linear-gradient(rgba(245, 241, 234, .032) 1px, transparent 1px) 0 0/100% 76px,
    linear-gradient(90deg, rgba(245, 241, 234, .032) 1px, transparent 1px) 0 0/76px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .68) 62%, transparent);
}

.lab-tests-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.lab-tests-head .display {
  max-width: 860px;
}

.lab-tests-head .lede {
  max-width: 48ch;
  align-self: end;
}

.lab-panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 42px;
}

.lab-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, .16);
  background:
    linear-gradient(180deg, rgba(245, 241, 234, .04), rgba(245, 241, 234, .01)),
    radial-gradient(circle at 82% 12%, rgba(184, 146, 101, .16), transparent 32%);
  transition: border-color .35s ease, transform .35s ease, background .35s ease;
}

.lab-panel:hover {
  border-color: rgba(184, 146, 101, .42);
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(184, 146, 101, .07), rgba(245, 241, 234, .01)),
    radial-gradient(circle at 82% 12%, rgba(184, 146, 101, .18), transparent 34%);
}

.lab-panel__media {
  position: relative;
  margin: 14px 14px 0;
  aspect-ratio: 1.62;
  overflow: hidden;
  background: #06192b;
  border-bottom: 1px solid rgba(184, 146, 101, .18);
}

.lab-panel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 10, 18, .15), rgba(1, 10, 18, .22)),
    linear-gradient(rgba(245, 241, 234, .035) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .035) 1px, transparent 1px) 0 0/25% 100%;
}

.lab-panel__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.lab-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  display: block;
  filter: contrast(1.06) saturate(.88) brightness(.9);
  transform: scale(1.18);
  transform-origin: 50% 18%;
  transition: transform 1.1s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

.lab-panel:hover .lab-panel__media img {
  transform: scale(1.23);
  filter: contrast(1.08) saturate(1) brightness(.96);
}

.lab-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid rgba(245, 241, 234, .16);
  background: rgba(1, 12, 22, .48);
  backdrop-filter: blur(12px);
  color: rgba(245, 241, 234, .84);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lab-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(184, 146, 101, .58);
}

.lab-pill--left {
  left: 18px;
  top: 18px
}

.lab-pill--right {
  right: 18px;
  top: 18px
}

.lab-panel__metrics {
  position: absolute;
  z-index: 3;
  inset: auto 18px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.lab-panel__metrics span {
  display: flex;
  flex-direction: column;
  color: rgba(245, 241, 234, .68);
  font-family: var(--body);
  font-size: 11px;
  line-height: 1.15;
}

.lab-panel__metrics span:first-child {
  max-width: 130px;
  flex-direction: row;
  align-items: flex-end;
  gap: 7px;
}

.lab-panel__metrics b {
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  line-height: .9;
  font-weight: 400;
}

.lab-panel__metrics small {
  color: rgba(245, 241, 234, .58);
  font-size: 11px;
}

.lab-panel__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 26px 28px 12px;
}

.lab-panel__body h3 {
  margin: 14px 0 10px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
}

.lab-panel__body p {
  margin: 0;
  color: rgba(245, 241, 234, .64);
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: .04em;
}

.lab-panel__body>strong {
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 20px;
  /* line-height: 1; */
  font-weight: 400;
  white-space: nowrap;
  padding-top: 37px;
}

.lab-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 28px 22px;
}

.lab-markers span {
  border: 1px solid rgba(245, 241, 234, .16);
  background: rgba(245, 241, 234, .035);
  color: rgba(245, 241, 234, .66);
  font-family: var(--body);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .02em;
  padding: 8px 10px;
}

.lab-panel__cta {
  margin-top: auto;
}

.lab-tests-products {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.lab-tests-products .cards-scroll__nav {
  position: static;
  justify-content: flex-end;
  margin: 0 0 18px;
  padding-right: 36px;
}

.lab-test-cards {
  gap: 22px;
  padding-bottom: 34px;
}

.lab-test-card {
  flex-basis: 340px;
  background:
    linear-gradient(180deg, rgba(245, 241, 234, .018), rgba(245, 241, 234, 0)),
    radial-gradient(circle at 50% 0%, rgba(184, 146, 101, .08), transparent 42%);
}

.lab-test-card__visual {
  aspect-ratio: 1.14;
}

.lab-test-card__visual .lab-pill {
  top: 16px;
  right: 16px;
}

.lab-test-card .card__title {
  min-height: 70px;
}

.lab-test-card .card__copy {
  min-height: 94px;
}

.diagnostic-art {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 24%, rgba(184, 146, 101, .18), transparent 34%),
    linear-gradient(135deg, #06192b, #010b15);
}

.diagnostic-art--photo {
  background: #06192b;
}

.diagnostic-art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(.92) brightness(.86);
}

.card:hover .diagnostic-art--photo img {
  filter: contrast(1.04) saturate(1) brightness(.92);
}

.diagnostic-art>span {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.diagnostic-art--blood {
  background:
    radial-gradient(circle at 28% 34%, rgba(184, 146, 101, .32) 0 3%, transparent 4%),
    radial-gradient(circle at 42% 42%, rgba(245, 241, 234, .38) 0 2%, transparent 3%),
    radial-gradient(circle at 58% 30%, rgba(184, 146, 101, .24) 0 3%, transparent 4%),
    radial-gradient(circle at 74% 60%, rgba(245, 241, 234, .2) 0 2.4%, transparent 3.4%),
    radial-gradient(circle at 50% 50%, rgba(184, 146, 101, .12), transparent 62%),
    linear-gradient(135deg, #071b2d, #020c17);
}

.diagnostic-art--blood span {
  border: 1px solid rgba(245, 241, 234, .38);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(184, 146, 101, .2);
}

.diagnostic-art--blood span:nth-child(1) {
  width: 72px;
  height: 72px;
  left: 18%;
  top: 18%
}

.diagnostic-art--blood span:nth-child(2) {
  width: 116px;
  height: 116px;
  right: 18%;
  top: 25%;
  opacity: .75
}

.diagnostic-art--blood span:nth-child(3) {
  width: 54px;
  height: 54px;
  left: 48%;
  bottom: 18%;
  opacity: .62
}

.diagnostic-art--resonance {
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 146, 101, .18), transparent 58%),
    linear-gradient(135deg, #031323, #081d30);
}

.diagnostic-art--resonance span {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(245, 241, 234, .34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.diagnostic-art--resonance span:nth-child(1) {
  width: 84px;
  height: 84px;
  box-shadow: 0 0 30px rgba(184, 146, 101, .24)
}

.diagnostic-art--resonance span:nth-child(2) {
  width: 168px;
  height: 168px;
  opacity: .7
}

.diagnostic-art--resonance span:nth-child(3) {
  width: 260px;
  height: 260px;
  opacity: .42
}

.diagnostic-art--dna {
  background:
    radial-gradient(ellipse at 72% 20%, rgba(184, 146, 101, .2), transparent 46%),
    linear-gradient(135deg, #021221, #071a2b);
}

.diagnostic-art--dna span:nth-child(1),
.diagnostic-art--dna span:nth-child(2) {
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(245, 241, 234, .6), transparent);
}

.diagnostic-art--dna span:nth-child(1) {
  left: 42%;
  transform: skewY(-24deg)
}

.diagnostic-art--dna span:nth-child(2) {
  right: 42%;
  transform: skewY(24deg)
}

.diagnostic-art--dna span:nth-child(3) {
  inset: 22% 24%;
  background:
    radial-gradient(circle at 25% 8%, var(--gold-soft) 0 4px, transparent 5px),
    radial-gradient(circle at 75% 24%, rgba(245, 241, 234, .7) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 42%, rgba(245, 241, 234, .7) 0 4px, transparent 5px),
    radial-gradient(circle at 75% 60%, var(--gold-soft) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 78%, rgba(245, 241, 234, .7) 0 4px, transparent 5px),
    repeating-linear-gradient(164deg, transparent 0 28px, rgba(184, 146, 101, .42) 29px 30px, transparent 31px 54px);
}

.diagnostic-art--microbiome {
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 146, 101, .18), transparent 38%),
    linear-gradient(135deg, #031525, #071d2f);
}

.diagnostic-art--microbiome span {
  border-radius: 44% 56% 48% 52%;
  border: 1px solid rgba(245, 241, 234, .32);
  background: rgba(184, 146, 101, .08);
  box-shadow: inset 0 0 28px rgba(184, 146, 101, .08), 0 0 26px rgba(245, 241, 234, .06);
}

.diagnostic-art--microbiome span:nth-child(1) {
  width: 108px;
  height: 78px;
  left: 16%;
  top: 22%;
  transform: rotate(-18deg)
}

.diagnostic-art--microbiome span:nth-child(2) {
  width: 138px;
  height: 92px;
  right: 14%;
  top: 34%;
  transform: rotate(24deg)
}

.diagnostic-art--microbiome span:nth-child(3) {
  width: 84px;
  height: 122px;
  left: 42%;
  bottom: 12%;
  transform: rotate(9deg);
  opacity: .72
}

.diagnostic-art--age {
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 146, 101, .18), transparent 48%),
    linear-gradient(135deg, #071727, #020c17);
}

.diagnostic-art--age span:nth-child(1) {
  inset: 18%;
  border: 1px solid rgba(184, 146, 101, .58);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(245, 241, 234, .035);
}

.diagnostic-art--age span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left center;
  transform: rotate(-34deg);
}

.diagnostic-art--age span:nth-child(3) {
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 12px rgba(184, 146, 101, .14);
}

.diagnostic-art--mito {
  background:
    radial-gradient(circle at 70% 34%, rgba(184, 146, 101, .2), transparent 36%),
    linear-gradient(135deg, #021221, #081d2f);
}

.diagnostic-art--mito span {
  border: 1px solid rgba(245, 241, 234, .32);
  background:
    radial-gradient(circle at 38% 42%, rgba(184, 146, 101, .34) 0 5px, transparent 6px),
    repeating-linear-gradient(120deg, transparent 0 13px, rgba(184, 146, 101, .26) 14px 15px, transparent 16px 25px);
  border-radius: 46% 54% 44% 56%;
  box-shadow: 0 0 28px rgba(184, 146, 101, .12);
}

.diagnostic-art--mito span:nth-child(1) {
  width: 150px;
  height: 80px;
  left: 12%;
  top: 30%;
  transform: rotate(-16deg)
}

.diagnostic-art--mito span:nth-child(2) {
  width: 130px;
  height: 70px;
  right: 12%;
  bottom: 22%;
  transform: rotate(18deg);
  opacity: .78
}

.diagnostic-art--mito span:nth-child(3) {
  width: 84px;
  height: 48px;
  left: 44%;
  top: 16%;
  transform: rotate(9deg);
  opacity: .64
}

/* ===== Optimization process ===== */

.section--process-cinema {
  --process-progress: 0;
  --cursor-x: 14%;
  --cursor-y: 56%;
  --stage-x: 10%;
  --stage-y: 62%;
  min-height: 310svh;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.section.section--process-cinema {
  padding: 0
}

.section--process-cinema[data-active-step="0"] {
  --cursor-x: 14%;
  --cursor-y: 56%;
  --stage-x: 10%;
  --stage-y: 62%;
}

.section--process-cinema[data-active-step="1"] {
  --cursor-x: 25%;
  --cursor-y: 22%;
  --stage-x: 18%;
  --stage-y: 30%;
}

.section--process-cinema[data-active-step="2"] {
  --cursor-x: 51%;
  --cursor-y: 48%;
  --stage-x: 44%;
  --stage-y: 54%;
}

.section--process-cinema[data-active-step="3"] {
  --cursor-x: 65%;
  --cursor-y: 61%;
  --stage-x: 56%;
  --stage-y: 67%;
}

.section--process-cinema[data-active-step="4"] {
  --cursor-x: 84%;
  --cursor-y: 76%;
  --stage-x: 63%;
  --stage-y: 58%;
}

.process-cinema__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 48% 42% at 50% 42%, rgba(184, 146, 101, .13), transparent 64%),
    radial-gradient(ellipse 42% 36% at 92% 18%, rgba(245, 241, 234, .07), transparent 60%),
    linear-gradient(rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/100% 84px,
    linear-gradient(90deg, rgba(245, 241, 234, .035) 1px, transparent 1px) 0 0/104px 100%,
    #011223;
}

.process-cinema__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 56% at 50% 50%, rgba(1, 18, 35, 0), rgba(1, 18, 35, .88) 78%),
    linear-gradient(180deg, rgba(1, 18, 35, .94), rgba(1, 18, 35, .42) 32%, rgba(1, 18, 35, .9));
}

.process-cinema__inner {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  padding: 76px clamp(24px, 4vw, 68px) 64px;
  overflow: hidden;
}

.process-cinema__copy {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  max-width: min(940px, 78vw);
  text-align: center;
}

.process-cinema__copy .section-head__label {
  justify-content: center
}

.process-cinema__copy .display {
  color: var(--paper);
  font-size: clamp(34px, 4.7vw, 72px);
  line-height: 1.02;
  margin: 18px auto 18px;
  max-width: 1000px;
}

.process-cinema__copy .lede {
  color: rgba(245, 241, 234, .7);
  font-size: clamp(14px, 1.15vw, 18px);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.process-cinema__copy .section-head__label .kicker,
.process-cinema__copy .kicker {
  color: rgba(245, 241, 234, .66)
}

.process-cinema__copy .rule {
  background: var(--paper);
  opacity: .5
}

.process-cinema__copy .btn {
  margin-top: 4px
}

.section--process-cinema .btn {
  border-color: rgba(245, 241, 234, .34);
  color: var(--paper);
}

.section--process-cinema .btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.process-trajectory {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.process-trajectory::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(78vw, 1180px);
  height: min(54svh, 560px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 241, 234, .08);
  background:
    linear-gradient(rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/16.66% 100%;
  opacity: .72;
}

.process-trajectory svg {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(118vw, 1480px);
  max-width: none;
  height: auto;
  overflow: visible;
  transform: translate(-50%, -43%);
}

.process-trajectory__ghost {
  fill: none;
  stroke: rgba(245, 241, 234, .12);
  stroke-width: 2.2;
}

.process-trajectory__line {
  fill: none;
  stroke: url(#processPathGrad);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--process-progress));
  filter: drop-shadow(0 0 18px rgba(184, 146, 101, .44));
}

.process-trajectory__nodes circle {
  fill: var(--paper);
  stroke: var(--gold);
  stroke-width: 2.5;
  transform-origin: center;
  transform-box: fill-box;
  opacity: .32;
  transition: opacity .35s ease, transform .35s ease, fill .35s ease;
}

.section--process-cinema[data-active-step="0"] .process-trajectory__nodes circle:nth-child(1),
.section--process-cinema[data-active-step="1"] .process-trajectory__nodes circle:nth-child(2),
.section--process-cinema[data-active-step="2"] .process-trajectory__nodes circle:nth-child(3),
.section--process-cinema[data-active-step="3"] .process-trajectory__nodes circle:nth-child(4),
.section--process-cinema[data-active-step="4"] .process-trajectory__nodes circle:nth-child(5) {
  opacity: 1;
  fill: var(--gold);
  transform: scale(1.55);
}

.process-trajectory__halo,
.process-trajectory__glow {
  position: absolute;
  left: var(--cursor-x);
  top: var(--cursor-y);
  transform: translate(-50%, -50%);
  transition: left .65s cubic-bezier(.22, .8, .2, 1), top .65s cubic-bezier(.22, .8, .2, 1);
}

.process-trajectory__halo {
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 101, .18);
  background:
    radial-gradient(circle, rgba(184, 146, 101, .08), transparent 60%),
    conic-gradient(from 36deg, transparent 0 62%, rgba(216, 191, 148, .22) 70%, transparent 78% 100%);
  opacity: .82;
  filter: blur(.2px);
}

.process-trajectory__glow {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 241, 234, .7) 0 3px, rgba(184, 146, 101, .38) 4px 12px, rgba(184, 146, 101, .12) 28%, transparent 68%);
  filter: blur(6px);
  mix-blend-mode: screen;
}

.process-stages {
  position: absolute;
  inset: 0;
  z-index: 4;
  list-style: none;
  margin: 0;
  /* margin-top: 35px; */
  padding: 0;
  pointer-events: none;
}

.process-stage {
  position: absolute;
  left: var(--stage-x);
  top: var(--stage-y);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  width: min(520px, 35vw);
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(184, 146, 101, .68);
  border-top: 0;
  background: linear-gradient(90deg, rgba(1, 18, 35, .78), rgba(1, 18, 35, .32) 62%, rgba(1, 18, 35, 0));
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate3d(-2%, 18px, 0);
  transition:
    opacity .48s ease,
    transform .55s cubic-bezier(.22, .8, .2, 1),
    left .65s cubic-bezier(.22, .8, .2, 1),
    top .65s cubic-bezier(.22, .8, .2, 1);
  pointer-events: none;
}

.process-stage::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -44px;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
}

.process-stage.is-active {
  opacity: 1;
  transform: none;
}

.process-stage__num {
  padding-top: 1px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--gold-soft);
}

.process-stage h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 1.85vw, 30px);
  line-height: 1.13;
  color: var(--paper);
}

.process-stage p {
  margin: 0;
  max-width: 64ch;
  font-size: 12px;
  line-height: 1.72;
  color: rgba(245, 241, 234, .68);
}

.process-stage--dense p {
  max-width: 72ch;
}

.method-grid article,
.diagnostic-product {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.22, .8, .2, 1), background .28s ease, border-color .25s ease;
}

.section.is-in .method-grid article,
.section.is-in .diagnostic-product {
  opacity: 1;
  transform: none;
}

.section.is-in .method-grid article:nth-child(2),
.section.is-in .diagnostic-product:nth-child(2) {
  transition-delay: .08s
}

.section.is-in .method-grid article:nth-child(3),
.section.is-in .diagnostic-product:nth-child(3) {
  transition-delay: .16s
}

.section.is-in .method-grid article:nth-child(4),
.section.is-in .diagnostic-product:nth-child(4) {
  transition-delay: .24s
}

.section.is-in .method-grid article:nth-child(5),
.section.is-in .diagnostic-product:nth-child(5) {
  transition-delay: .32s
}

.section.is-in .diagnostic-product:nth-child(6) {
  transition-delay: .4s
}

/* ====================================================================
   PEPTIDE DOMAINS — premium card grid
==================================================================== */

.section--peptides {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #022038 0%, #011223 60%);
  overflow: hidden;
}

.domains__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 146, 101, .16), transparent 40%),
    radial-gradient(circle at 82% 78%, rgba(184, 146, 101, .10), transparent 45%);
}

.domains__head {
  position: relative;
  z-index: 1
}

.pillar {
  position: relative;
  z-index: 1;
  padding: 48px 0 32px
}

.pillar+.pillar {
  margin-top: 48px;
  padding-top: 80px;
  border-top: 1px solid rgba(245, 241, 234, .10)
}

/* horizontal scroller wrapper */
.cards-scroll {
  position: relative;
  margin: 0 -36px;
  padding: 0 36px
}

.cards-scroll__nav {
  position: absolute;
  top: -72px;
  right: 36px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.cards-scroll__btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 241, 234, .2);
  background: transparent;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.cards-scroll__btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink)
}

.cards-scroll__btn:disabled {
  opacity: .3;
  cursor: not-allowed
}

/* horizontal scroll cards */
.cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0;
  padding: 2px 36px 2px 0;
}

.cards::-webkit-scrollbar {
  display: none
}

.cards.diagnostics-cards {
  gap: 22px;
  padding: 2px 36px 34px;
  scroll-padding-left: 36px;
}

.card {
  position: relative;
  flex: 0 0 360px;
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 0;
  background: linear-gradient(180deg, rgba(245, 241, 234, .012), rgba(245, 241, 234, 0));
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}

.card:hover {
  border-color: rgba(184, 146, 101, .4)
}

.card__visual {
  position: relative;
  aspect-ratio: 5/3;
  border-bottom: 1px solid rgba(184, 146, 101, .22);
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184, 146, 101, .08), transparent 70%), #011a30;
  overflow: hidden;
}

.card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(.85) brightness(.78);
  transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

/* IV cards: show full IV bag without cropping its background */
#ivdrips .card__visual img {
  object-fit: contain;
  filter: contrast(1.02) saturate(1) brightness(1);
  padding: 6px;
}

.card:hover .card__visual img {
  transform: scale(1.06);
  filter: contrast(1.05) saturate(1) brightness(.88);
}

.card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, .05) 0%, rgba(8, 8, 12, .55) 100%),
    linear-gradient(rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .04) 1px, transparent 1px) 0 0/25% 100%;
}

.card__visual::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 14px;
  height: 14px;
  z-index: 2;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: .85;
}

.card--feature .card__visual {
  box-shadow: inset 0 0 0 1px rgba(184, 146, 101, .4)
}

.card__visual {
  margin: 14px 14px 0
}

.card__head,
.card__title,
.card__copy,
.card__foot,
.card__buy {
  margin-left: 28px;
  margin-right: 28px
}

.card__head {
  margin-top: 24px
}

.card__title {
  margin-top: 0
}

.card__copy {
  min-height: 84px
}

.card__foot {
  margin-bottom: 18px
}

/* Consultation request button on each card */
.card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 241, 234, .16);
  background: rgba(184, 146, 101, .06);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: .25s ease;
  font-weight: 500;
  cursor: pointer;
  width: calc(100% - 56px);
  appearance: none;
}

.card__buy:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px
}

.card__buy i {
  font-style: normal;
  color: var(--gold);
  transition: transform .3s ease
}

.card__buy:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.card__buy:hover i {
  color: var(--ink);
  transform: translateX(4px)
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}

.card:hover {
  background: linear-gradient(180deg, rgba(184, 146, 101, .05), rgba(184, 146, 101, 0))
}

.card:hover::after {
  transform: scaleX(1)
}

.card--feature {
  background: linear-gradient(180deg, rgba(184, 146, 101, .07), rgba(184, 146, 101, .01));
  border-left: 1px solid rgba(184, 146, 101, .35);
}

.card--feature .card__title {
  color: var(--gold-soft)
}

.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 241, 234, .10);
  margin-bottom: 20px;
}

.card__no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--gold);
}

.card__tag {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .55);
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 5px 9px;
}

.card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: .01em;
  color: var(--paper);
  margin-top: 0;
  margin-bottom: 14px;
}

.card__copy {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(245, 241, 234, .65);
  margin-top: 0;
  margin-bottom: 24px;
  flex: 1;
}

.card__foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 241, 234, .10);
}

.card__foot span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left
}

.card__foot span:last-child {
  text-align: right;
  align-items: flex-end
}

.card__foot small {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .5);
}

.card__foot b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: 0;
}

/* Peptide consult panel */
.pillar--consult {
  padding-bottom: 0
}

.consult {
  position: relative;
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 48px 56px 48px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184, 146, 101, .10), transparent 60%),
    linear-gradient(180deg, rgba(245, 241, 234, .02), rgba(245, 241, 234, 0));
}

.consult::before,
.consult::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
}

.consult::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none
}

.consult::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none
}

.consult__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(245, 241, 234, .10);
}

.consult__pills li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .7);
  border: 1px solid rgba(245, 241, 234, .16);
  padding: 10px 16px;
  transition: .25s ease;
}

.consult__pills li:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.consult__cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}

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

.consult__copy .kicker {
  color: var(--gold)
}

.consult__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 8px 0 0;
  color: var(--paper);
}

.consult__sub {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 241, 234, .65);
  margin: 0;
  max-width: 46ch
}

.consult__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right
}

/* ===== Founder Quote ===== */

.section--quote {
  padding: 80px 0;
  overflow: hidden
}

.quote {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.quote__copy .kicker {
  margin-bottom: 32px;
  display: inline-flex;
  color: var(--gold)
}

.quote__copy blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--paper);
  margin: 0 0 36px;
}

.quote__copy blockquote em {
  color: var(--gold-soft);
  font-weight: 300
}

.quote__by {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(245, 241, 234, .2);
  padding-top: 24px;
}

.quote__by strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  color: var(--paper)
}

.quote__by span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .55)
}

.quote__photo {
  margin: 0;
  position: relative;
  align-self: end;
  display: flex;
  justify-content: flex-end;
}

.quote__photo img {
  width: clamp(540px, 50vw, 800px);
  max-height: 440px;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  filter: contrast(1.04) saturate(.95);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}

.quote__photo figcaption {
  display: none;
}

/* ===== Team ===== */

.section--team {
  padding: 110px 0 124px;
  overflow: hidden;
}

.section--team .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 62px;
}

.section--team .section-head .display {
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.02;
  margin: 0;
  max-width: 1120px;
}

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

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

.member {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  transition: .35s ease;
}

.team-grid--featured .member {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
  column-gap: 34px;
  align-items: end;
}

.member::before {
  content: "";
  position: absolute;
  left: 22%;
  right: -18px;
  top: 12%;
  bottom: 8%;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 22% 24%, rgba(184, 146, 101, .11), transparent 64%),
    linear-gradient(180deg, rgba(1, 18, 35, .025), rgba(1, 18, 35, 0));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.team-grid--featured .member__photo {
  grid-row: 1/4;
  margin: 0;
}

.team-grid--featured .member__meta,
.team-grid--featured .member__bio,
.team-grid--featured .member__skills {
  grid-column: 2;
}

.member:hover {
  transform: translateY(-8px)
}

.member__photo {
  margin: 0 0 24px;
  aspect-ratio: 4/5.2;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #dad2c5, #bdb09a);
  border: 0;
  box-shadow: 0 28px 70px rgba(1, 18, 35, .12);
}

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.02) saturate(.9);
  transition: transform 1.2s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

.member:hover .member__photo img {
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1)
}

.member__photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 241, 234, .42);
  pointer-events: none;
  mix-blend-mode: screen;
}

.member__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 14px;
  row-gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}

.member__meta span {
  font-family: var(--display);
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  grid-row: 1/3;
}

.member__meta h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 36px);
  letter-spacing: 0;
  margin: 0;
  line-height: 1.08;
}

.member__meta p {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 6px 0 0
}

.member__bio {
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.76;
  color: var(--mute);
  margin: 0;
}

.member__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
}

.member__skills li {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ink);
  border: 0;
  padding: 0;
  background: transparent;
}

.member__skills li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: 1px;
}

/* ===== Partners ===== */

.partners-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: partnersScroll 60s linear infinite;
}

.partners-marquee__track img {
  height: 96px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0);
  opacity: .75;
  transition: opacity .25s ease;
}

.partners-marquee__track img:hover {
  opacity: 1
}

@keyframes partnersScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== CTA ===== */

.section--cta {
  background:
    radial-gradient(ellipse 46% 58% at 78% 32%, rgba(184, 146, 101, .12), transparent 70%),
    linear-gradient(180deg, #011223 0%, #000b16 100%);
  text-align: left;
  padding: 104px 0 112px;
  overflow: hidden;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.cta .display {
  margin: 8px 0 12px
}

.cta .lede {
  margin: 0 auto 18px
}

.cta__buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px
}

.cta__title em {
  color: var(--gold-soft)
}

.cta__subline {
  margin: -8px 0 0;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(245, 241, 234, .76);
}

.consult-dossier {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(480px, 1fr);
  gap: 70px;
  align-items: center;
  text-align: left;
}

.consult-dossier__copy {
  position: relative;
  top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consult-dossier__copy .display {
  margin: 8px 0 8px;
  font-size: clamp(42px, 5.2vw, 86px);
  line-height: 1.02;
}

.consult-dossier__copy .lede {
  margin: 0;
  max-width: 50ch;
  font-size: clamp(15px, 1.25vw, 19px);
}

.consult-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(245, 241, 234, .14);
}

.consult-steps li {
  position: relative;
  border-bottom: 1px solid rgba(245, 241, 234, .11);
  padding: 18px 0 18px 58px;
  min-height: 0;
  display: block;
}

.consult-steps span {
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--gold);
}

.consult-steps p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(245, 241, 234, .66);
}

.consult-form {
  position: relative;
  border: 1px solid rgba(245, 241, 234, .18);
  padding: 34px;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(184, 146, 101, .12), transparent 62%),
    linear-gradient(180deg, rgba(245, 241, 234, .06), rgba(245, 241, 234, .018));
  box-shadow: 0 36px 120px rgba(0, 0, 0, .26);
  backdrop-filter: blur(10px);
}

.consult-form::before,
.consult-form::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
}

.consult-form::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none
}

.consult-form::after {
  right: -1px;
  bottom: -1px;
  border-left: none;
  border-top: none
}

.consult-form__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(245, 241, 234, .14);
}

.consult-form__head .kicker {
  color: var(--gold)
}

.consult-form__head p {
  margin: 0;
  max-width: 34ch;
  text-align: right;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(245, 241, 234, .6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.consult-form-host {
  justify-self: end;
  width: 100%;
  max-width: 860px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.field span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .68);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(245, 241, 234, .18);
  background: rgba(1, 18, 35, .54);
  color: var(--paper);
  font: inherit;
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: .03em;
  padding: 14px 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.field input[readonly] {
  color: var(--gold-soft);
  background: rgba(184, 146, 101, .08);
}

.field textarea {
  resize: vertical;
  min-height: 110px
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 234, .34)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: rgba(1, 18, 35, .78);
  box-shadow: 0 0 0 1px rgba(184, 146, 101, .24), 0 0 32px rgba(184, 146, 101, .08);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: rgba(255, 19, 19, 0.95);
  box-shadow: 0 0 0 1px rgba(205, 168, 120, .28);
}

.phone-composite {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
}

.phone-composite select {
  min-width: 0;
  padding-left: 10px;
  padding-right: 28px;
  letter-spacing: 0;
}

.consult-form__footer {
  /* display: flex; */
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(245, 241, 234, .12);
}
.consult-form_btn{
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
}
.consult-form__footer .btn {
  flex: 0 0 auto
}

.form-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(245, 241, 234, .58);
  max-width: 34ch;
  text-align: right;
}

.form-status.is-error {
  color: var(--gold-soft)
}

.form-status.is-success {
  color: var(--paper)
}

.booking-dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: min(92svh, 920px);
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
}

.booking-dialog.is-open {
  display: flex;
  position: fixed;
  inset: 0;
  width: auto;
  max-height: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(1, 10, 18, .72);
  backdrop-filter: blur(14px);
  z-index: 100;
}

.booking-dialog::backdrop {
  background: rgba(1, 10, 18, .72);
  backdrop-filter: blur(14px);
}

.booking-dialog.is-open .booking-dialog__panel {
  width: min(920px, 100%);
}

.booking-dialog__panel {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(245, 241, 234, .2);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 146, 101, .18), transparent 36%),
    linear-gradient(180deg, rgba(6, 25, 43, .98), rgba(1, 12, 22, .98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, .42);
  overflow: auto;
  max-height: min(92svh, 920px);
}

.booking-dialog__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/100% 56px,
    linear-gradient(90deg, rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/56px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 88%);
}

.booking-dialog__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 18px;
  padding: 0 56px 18px 0;
  border-bottom: 1px solid rgba(245, 241, 234, .14);
}

.booking-dialog__head .kicker {
  color: var(--gold)
}

.booking-dialog__head h2 {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--paper);
}

.booking-dialog__head p {
  margin: 0;
  max-width: min(38ch, 45%);
  text-align: right;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.booking-dialog__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 241, 234, .2);
  background: rgba(245, 241, 234, .05);
  color: var(--paper);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.booking-dialog__close:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.booking-dialog__body {
  position: relative;
}

.booking-dialog .consult-form {
  max-width: none;
  justify-self: stretch;
  box-shadow: none;
}

/* ===== Footer ===== */

.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 50px;
  border-top: 1px solid rgba(245, 241, 234, .06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.footer__col .kicker {
  color: var(--gold);
  margin-bottom: 6px
}

.footer__col a {
  font-size: 14px;
  color: rgba(245, 241, 234, .75);
}

.footer__col a:hover {
  color: var(--gold)
}

.footer__addr {
  font-size: 13px;
  color: rgba(245, 241, 234, .55);
  margin: 6px 0 0
}

.footer__copy {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  color: rgba(245, 241, 234, .4);
  margin-top: 24px
}

.footer .brand {
  color: var(--paper)
}

.footer .brand__logo {
  filter: invert(80%) sepia(40%) saturate(440%) hue-rotate(0deg) brightness(95%)
}

.footer .brand__logo--mark {
  filter: none;
  height: 48px;
  width: auto
}

.footer .brand__word small {
  color: rgba(245, 241, 234, .55)
}

/* ====================================================================
   RESPONSIVE — fluid down to 320px portrait mobile
==================================================================== */

/* Prevent the DNA canvas / off-screen decorations from creating a horizontal scrollbar without breaking sticky scenes. */
html,
body {
  overflow-x: clip;
  max-width: 100%;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.hero__helix {
  max-width: 100%;
}

/* ===== ≤1280: trim outer padding ===== */
@media (max-width: 1280px) {
  .container {
    padding: 0 32px;
  }
}

/* ===== ≤1100: large-tablet adjustments ===== */
@media (max-width: 1100px) {
  :root {
    --container: 100%;
  }

  .display {
    font-size: clamp(34px, 4.6vw, 48px);
  }

  /* Hero — let the title wrap */
  .hero__title {
    font-size: clamp(38px, 6vw, 64px);
  }

  .hero__line {
    white-space: normal;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__support {
    max-width: 460px;
  }

  /* Section grids */
  .method-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .method-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .method-panel__visual {
    min-height: 300px;
  }

  .bio-age-lab {
    padding: 86px 0;
    min-height: auto;
  }

  .bio-age-lab__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bio-age-lab__copy {
    max-width: 820px;
  }

  .age-intel {
    min-height: 500px;
  }

  .section-head--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section--process-cinema {
    min-height: 300svh;
  }

  .process-cinema__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-items: stretch;
    padding-top: 78px;
    padding-bottom: 62px;
  }

  .process-cinema__copy {
    grid-column: 1;
    grid-row: 1;
    max-width: min(840px, 86vw);
  }

  .process-trajectory {
    position: absolute;
    inset: 0;
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .process-trajectory svg {
    width: 132vw;
  }

  .process-stages {
    position: absolute;
    inset: 0;
    grid-column: auto;
    grid-row: auto;
    width: auto;
    margin-top: 35px;
    justify-self: auto;
    transform: none;
  }

  .process-stage {
    width: min(460px, 42vw);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rewind__hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compare__body {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .compare__col--from,
  .compare__col--to {
    align-items: center;
    text-align: center;
  }

  .consult__cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .consult__action {
    align-items: flex-start;
    text-align: left;
  }

  .consult-dossier {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .consult-dossier__copy {
    position: static;
  }

  .rewind__case {
    display: none;
  }

  .card {
    flex: 0 0 320px;
  }
}

/* ===== ≤1024: stack the diagonal hero ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .section {
    padding: 100px 0;
  }

  .bio-age-lab {
    padding: 86px 0;
  }

  /* Hero — collapse the diagonal grid into a single centered column */
  .hero {
    padding: 120px 0 60px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
    padding-top: 0;
    padding-bottom: 40px;
    min-height: calc(100vh - 160px);
  }

  .hero__lead {
    align-self: stretch;
    max-width: 100%;
    gap: 24px;
    margin: 0;
  }

  .hero__support {
    justify-self: stretch;
    align-self: stretch;
    max-width: 560px;
    text-align: left;
    margin: 0;
  }

  /* Soften veil since DNA now reads behind a single-column layout */
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(1, 18, 35, .55) 0%, rgba(1, 18, 35, .25) 28%, rgba(1, 18, 35, .78) 100%);
  }

  /* Founder quote — stack with the photo below the copy */
  .quote {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    text-align: left;
  }

  .quote__photo {
    justify-content: center;
  }

  .quote__photo img {
    width: min(420px, 80%);
    max-height: 400px;
  }

  /* Partners — scale down the marquee */
  .partners-marquee {
    padding: 48px 0;
  }

  .partners-marquee__track {
    gap: 96px;
  }

  .partners-marquee__track img {
    height: 72px;
  }
}

/* ===== ≤780: tablet portrait + small tablet ===== */
@media (max-width: 780px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .display {
    font-size: clamp(28px, 5.4vw, 38px);
  }

  .lede {
    font-size: 15.5px;
  }

  /* Nav — hide links, show hamburger + slide-down menu */
  .nav {
    padding: 22px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__inner {
    justify-content: space-between;
    gap: 16px;
  }

  /* Hamburger button */
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid rgba(245, 241, 234, .28);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
  }

  .nav__burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition: transform .28s ease, opacity .2s ease;
    transform-origin: center;
  }

  /* X state */
  .nav--open .nav__burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav--open .nav__burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav--open .nav__burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Mobile drawer */
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(1, 18, 35, .97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(245, 241, 234, .1);
    border-bottom: 1px solid rgba(245, 241, 234, .08);
    padding: 16px 0;
    margin-right: 0;
    animation: navDrop .25s ease both;
    z-index: 19;
  }

  .nav__links.is-open a {
    padding: 14px 24px;
    font-size: 11px;
    border-bottom: 1px solid rgba(245, 241, 234, .07);
    opacity: 1;
  }

  /* .nav__links.is-open a:last-child{ border-bottom: none; } */

  /* Hide the CTA from the top bar on mobile; show it inside the drawer */
  .nav__cta {
    display: none;
  }

  .nav__links.is-open .nav__cta {
    display: flex;
    margin: 12px 24px 4px;
    width: calc(100% - 48px);
    justify-content: center;
    border-color: rgba(245, 241, 234, .35);
    color: var(--paper);
    padding: 14px 22px;
    font-size: 10.5px;
  }

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

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* Hero */
  .hero {
    padding: 110px 0 48px;
  }

  .hero__inner {
    gap: 32px;
    min-height: calc(100vh - 140px);
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: clamp(32px, 7.5vw, 48px);
    letter-spacing: -.005em;
  }

  .hero__support {
    padding-top: 24px;
    gap: 22px;
  }

  .hero__support .hero__lede {
    font-size: 14px;
  }

  /* Editorial split */
  .two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bio-age-lab {
    padding: 78px 0;
  }

  .age-intel {
    min-height: 0;
    padding: 24px;
  }

  .age-intel__modules {
    grid-template-columns: 1fr;
  }

  /* Method rail keeps five pillars from becoming an orphaned grid */
  .method-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .method-grid::-webkit-scrollbar {
    display: none
  }

  .method-grid article {
    flex: 0 0 260px;
    min-height: 170px;
    border: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .process-cinema__inner {
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .process-cinema__copy {
    max-width: 90vw;
  }

  .process-trajectory {
    min-height: auto;
  }

  .process-trajectory::before {
    width: 88vw;
    height: 52svh;
  }

  .process-trajectory svg {
    top: 58%;
    width: 170vw;
  }

  .process-stages {
    width: auto;
  }

  .process-stage {
    left: 50%;
    top: auto;
    bottom: 48px;
    margin-top: 35px;
    width: min(560px, 86vw);
    transform: translate3d(-50%, 18px, 0);
  }

  .process-stage.is-active {
    transform: translate3d(-50%, 0, 0);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .rewind__marks {
    grid-template-columns: 1fr;
  }

  .rewind__promise {
    grid-template-columns: 1fr;
  }

  /* Compare / consult panels */
  .compare {
    padding: 32px 22px;
  }

  .consult {
    padding: 32px 22px;
  }

  .consult-form {
    padding: 30px 22px;
  }

  .consult-form__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .consult-form__head p {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .phone-composite {
    grid-template-columns: 1fr;
  }

  .booking-dialog__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-right: 48px;
  }

  .booking-dialog__head p {
    max-width: none;
    text-align: left;
  }

  .consult-form__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-status {
    text-align: left;
  }

  .lab-panel-grid {
    grid-template-columns: 1fr;
  }

  .lab-tests-head .lede {
    align-self: auto;
  }

  .lab-panel__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lab-panel__body>strong {
    padding-top: 0;
  }

  /* Cards */
  .card {
    flex: 0 0 84vw;
    max-width: 340px;
  }

  .cards-scroll__nav {
    position: static;
    justify-content: flex-end;
    margin-bottom: 14px;
  }

  .diagnostics-products .cards-scroll__nav {
    top: auto;
    right: auto;
  }

  /* Founder quote */
  .quote__copy blockquote {
    font-size: 20px;
    line-height: 1.45;
  }

  .quote__photo img {
    width: min(360px, 86%);
    max-height: 360px;
  }

  /* Partners */
  .partners-marquee {
    padding: 36px 0;
  }

  .partners-marquee__track {
    gap: 64px;
  }

  .partners-marquee__track img {
    height: 52px;
  }

  /* Footer */
  .footer {
    padding: 60px 0 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ===== ≤520: phone landscape & narrower ===== */
@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .display {
    font-size: 28px;
  }

  .bio-age-lab {
    padding: 68px 0;
  }

  /* Hero */
  .hero {
    padding: 96px 0 32px;
  }

  .hero__title {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.05;
  }

  .hero__kicker {
    font-size: 9px;
    letter-spacing: .28em;
  }

  .hero__support {
    max-width: 100%;
    gap: 18px;
  }

  .hero__support .hero__lede {
    font-size: 13.5px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Veil heavier on phones so the helix stays atmospheric, not distracting */
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(1, 18, 35, .65) 0%, rgba(1, 18, 35, .35) 28%, rgba(1, 18, 35, .85) 100%);
  }

  /* Cards — use viewport width and tighter inner padding */
  .card {
    flex: 0 0 86vw;
    max-width: 320px;
  }

  .card__head,
  .card__title,
  .card__copy,
  .card__foot,
  .card__buy {
    margin-left: 20px;
    margin-right: 20px;
  }

  .card__title {
    font-size: 18px;
  }

  .card__visual {
    margin: 12px 12px 0;
  }

  .diagnostic-product .card__title,
  .diagnostic-product .card__copy {
    min-height: 0;
  }

  .diagnostics-products {
    margin: 0 -20px;
    padding: 0 20px;
  }

  .section--lab-tests {
    padding: 72px 0 86px;
  }

  .lab-panel__media {
    aspect-ratio: 1.16;
    margin: 12px 12px 0;
  }

  .lab-panel__body {
    padding: 22px 22px 10px;
  }

  .lab-panel__body h3 {
    font-size: 19px;
  }

  .lab-markers {
    padding: 10px 22px 20px;
  }

  .lab-panel__metrics {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .lab-panel__metrics span:first-child {
    max-width: 110px;
  }

  .lab-panel__metrics b {
    font-size: 19px;
  }

  .lab-pill {
    font-size: 7.5px;
    padding: 6px 8px;
  }

  .lab-pill--left {
    left: 14px;
    top: 14px;
  }

  .lab-pill--right {
    right: 14px;
    top: 14px;
  }

  .lab-test-card {
    flex-basis: min(315px, 86vw);
  }

  .cards.diagnostics-cards {
    padding-left: 10px;
    padding-right: 20px;
    padding-bottom: 30px;
    scroll-padding-left: 10px;
  }

  .age-intel {
    padding: 20px;
  }

  .age-intel__topline {
    flex-direction: column;
    gap: 8px;
  }

  .age-intel__chart {
    padding: 24px 0 18px;
  }

  /* Founder quote */
  .quote {
    gap: 28px;
  }

  .quote__copy blockquote {
    font-size: 18px;
  }

  .quote__photo img {
    width: 100%;
    max-height: 320px;
  }

  /* Partners */
  .partners-marquee {
    padding: 28px 0;
  }

  .partners-marquee__track {
    gap: 48px;
    animation-duration: 40s;
  }

  .partners-marquee__track img {
    height: 40px;
  }

  /* Pillars row chips wrap nicely on small */
  .pillars-row {
    gap: 8px;
  }

  .consult-steps {
    grid-template-columns: 1fr;
  }

  .consult-form__footer .btn {
    width: 100%;
  }

  .method-grid article {
    flex-basis: 84vw;
    max-width: 320px;
  }

  .section--process-cinema {
    min-height: 250svh;
  }

  .process-cinema__inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .process-cinema__copy .display {
    font-size: 32px;
  }

  .process-cinema__copy .lede {
    font-size: 13.5px;
  }

  .process-trajectory {
    min-height: auto;
  }

  .process-trajectory::before {
    top: 60%;
    width: 92vw;
    height: 48svh;
  }

  .process-trajectory svg {
    top: 60%;
    width: 220vw;
  }

  .process-stages {
    width: auto;
  }

  .process-stage {
    grid-template-columns: 1fr;
    gap: 8px;
    bottom: 34px;
    width: calc(100vw - 40px);
    padding: 16px 0 16px 18px;
  }

  .process-stage h3 {
    font-size: 22px;
  }

  .team-grid--featured .member {
    display: block;
  }

  .team-grid--featured .member__photo {
    margin: 0 0 24px;
    aspect-ratio: 16/11;
  }

  /* Footer collapses */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== ≤360: tiny phones (rare but cleanly handled) ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 26px;
  }

  .display {
    font-size: 24px;
  }

  .partners-marquee__track img {
    height: 34px;
  }
}

/* ====================================================================
   FINAL COMPOSITION PASS — controlled structure after visual review
==================================================================== */

.display,
.hero__title,
.member__meta h3,
.consult-dossier__copy .display,
.process-cinema__copy .display,
.process-stage h3 {
  letter-spacing: 0;
}

.gsap-active .hero__line,
.gsap-active .hero__support,
.gsap-active .method-panel__visual,
.gsap-active .method-grid article,
.gsap-active .diagnostic-product,
.gsap-active .age-intel,
.gsap-active .process-trajectory,
.gsap-active .process-console,
.gsap-active .process-stage,
.gsap-active .member,
.gsap-active .consult-form {
  will-change: transform, opacity;
}

.gsap-active .process-trajectory__halo,
.gsap-active .process-trajectory__glow {
  transition: none;
  will-change: left, top, transform;
}

.gsap-active .process-trajectory__line {
  will-change: stroke-dashoffset;
}

.gsap-active .process-panel {
  will-change: transform, opacity, filter;
}

.gsap-active .diagnostic-art>span,
.gsap-active .method-art__node,
.gsap-active .method-art__core,
.gsap-active .age-intel__dot {
  transform-origin: center;
  transform-box: fill-box;
}

.gsap-active .card,
.gsap-active .member__photo img,
.gsap-active .btn {
  backface-visibility: hidden;
}

.gsap-active .method-grid article,
.gsap-active .diagnostic-product {
  opacity: 1;
  transform: none;
}

.section--process-cinema {
  --process-progress: 0;
  min-height: 340svh;
  padding: 0;
  overflow: visible;
  background: var(--ink);
}

.section.section--process-cinema {
  padding: 0
}

.process-cinema__inner {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  height: 100svh;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "copy visual"
    "stage visual";
  gap: 34px clamp(44px, 6vw, 92px);
  align-items: center;
  align-content: center;
  padding: clamp(74px, 8svh, 104px) clamp(40px, 5vw, 92px) clamp(54px, 6svh, 82px);
  overflow: hidden;
}

.process-cinema__copy {
  grid-area: copy;
  align-self: center;
  justify-self: start;
  max-width: 660px;
  text-align: left;
}

.process-cinema__copy .section-head__label {
  justify-content: flex-start;
}

.process-cinema__copy .display {
  max-width: 660px;
  margin: 18px 0 22px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.06;
}

.process-cinema__copy .lede {
  max-width: 56ch;
  margin: 0 0 18px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.72;
}

.process-trajectory {
  position: relative;
  grid-area: visual;
  z-index: 1;
  width: 100%;
  min-height: min(68svh, 640px);
  align-self: center;
  pointer-events: none;
}

.process-trajectory::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
  border: 1px solid rgba(245, 241, 234, .1);
  background:
    radial-gradient(ellipse 48% 52% at var(--cursor-x) var(--cursor-y), rgba(216, 191, 148, .14), transparent 62%),
    linear-gradient(rgba(245, 241, 234, .055) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/20% 100%;
  opacity: 1;
}

.process-trajectory svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 880px);
  transform: translate(-50%, -50%);
}

.process-trajectory__halo {
  width: min(28vw, 340px);
  height: min(28vw, 340px);
  opacity: .62;
}

.process-trajectory__glow {
  width: 120px;
  height: 120px;
  filter: blur(5px);
}

.process-stages {
  grid-area: stage;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 680px;
  height: 188px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-stage {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(245, 241, 234, .22);
  border-left: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .42s ease, transform .48s cubic-bezier(.22, .8, .2, 1);
}

.process-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 72px;
  height: 1px;
  background: var(--gold-soft);
}

.process-stage.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.process-stage h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.16;
}

.process-stage p {
  max-width: 68ch;
  font-size: 12.5px;
  line-height: 1.75;
}

/* ====================================================================
   PROCESS CONSOLE — scroll reveal without the curve-line diagram
==================================================================== */

.section--process-cinema {
  --console-glow-x: 50%;
  --console-glow-y: 50%;
}

.section--process-cinema[data-active-step="0"] {
  --console-glow-x: 18%;
  --console-glow-y: 28%
}

.section--process-cinema[data-active-step="1"] {
  --console-glow-x: 72%;
  --console-glow-y: 24%
}

.section--process-cinema[data-active-step="2"] {
  --console-glow-x: 50%;
  --console-glow-y: 54%
}

.section--process-cinema[data-active-step="3"] {
  --console-glow-x: 26%;
  --console-glow-y: 72%
}

.section--process-cinema[data-active-step="4"] {
  --console-glow-x: 78%;
  --console-glow-y: 72%
}

.process-console {
  grid-area: visual;
  position: relative;
  min-height: min(68svh, 640px);
  align-self: center;
  border: 1px solid rgba(245, 241, 234, .14);
  background:
    radial-gradient(circle at var(--console-glow-x) var(--console-glow-y), rgba(216, 191, 148, .18), transparent 24%),
    linear-gradient(180deg, rgba(245, 241, 234, .05), rgba(245, 241, 234, .012));
  box-shadow:
    inset 0 0 0 1px rgba(245, 241, 234, .035),
    0 42px 110px rgba(0, 0, 0, .22);
  overflow: hidden;
  isolation: isolate;
  transition: background-position .4s ease;
}

.process-console::before,
.process-console::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.process-console::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.process-console::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.process-console__chrome {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(245, 241, 234, .12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .58);
}

.process-console__counter {
  color: rgba(245, 241, 234, .68);
}

.process-console__counter b {
  color: var(--gold-soft);
  font-weight: 400;
}

.process-console__viewport {
  position: absolute;
  inset: 68px 28px 74px;
  border: 1px solid rgba(245, 241, 234, .1);
  background:
    linear-gradient(rgba(245, 241, 234, .05) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .045) 1px, transparent 1px) 0 0/20% 100%,
    rgba(1, 18, 35, .24);
  overflow: hidden;
  perspective: 1100px;
}

.process-console__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  transform: none;
  background:
    radial-gradient(ellipse 34% 46% at 52% 48%, rgba(216, 191, 148, .08), transparent 68%),
    linear-gradient(120deg, transparent 0 42%, rgba(245, 241, 234, .035) 48%, transparent 56%);
  filter: none;
  mix-blend-mode: screen;
  opacity: .75;
  z-index: 2;
  pointer-events: none;
}

.process-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(34px) scale(.965) rotateX(8deg);
  filter: blur(8px);
  transition:
    opacity .55s ease,
    visibility .55s ease,
    transform .72s cubic-bezier(.22, .8, .2, 1),
    filter .55s ease;
}

.process-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  filter: none;
}

.process-panel__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 234, .12);
}

.process-panel__meta span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.process-panel__meta strong {
  max-width: 620px;
  text-align: right;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.12;
  color: var(--paper);
}

.process-panel__visual {
  position: relative;
  grid-column: 1 / -1;
  align-self: stretch;
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
}

.process-panel__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 241, 234, .11);
  background:
    radial-gradient(circle at var(--console-glow-x) var(--console-glow-y), rgba(216, 191, 148, .11), transparent 34%),
    linear-gradient(rgba(245, 241, 234, .038) 1px, transparent 1px) 0 0/100% 25%,
    linear-gradient(90deg, rgba(245, 241, 234, .032) 1px, transparent 1px) 0 0/20% 100%;
  opacity: .88;
  z-index: -2;
}

.process-panel__visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-top: 1px solid rgba(245, 241, 234, .08);
  border-bottom: 1px solid rgba(245, 241, 234, .08);
  pointer-events: none;
  z-index: -1;
}

.process-panel__visual i {
  position: absolute;
  display: block;
  font-style: normal;
}

.process-panel__readout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 241, 234, .12);
  border-left: 1px solid rgba(245, 241, 234, .12);
}

.process-panel__readout span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid rgba(245, 241, 234, .12);
  border-bottom: 1px solid rgba(245, 241, 234, .12);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(245, 241, 234, .64);
}

.process-console__rail {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(245, 241, 234, .12);
  border-left: 1px solid rgba(245, 241, 234, .12);
}

.process-console__rail span {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(245, 241, 234, .12);
  border-bottom: 1px solid rgba(245, 241, 234, .12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .24em;
  color: rgba(245, 241, 234, .38);
  transition: color .35s ease, background .35s ease;
}

.process-console__rail span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: var(--gold-soft);
  transition: width .42s cubic-bezier(.22, .8, .2, 1);
}

.process-console__rail span.is-active {
  color: var(--gold-soft);
  background: rgba(184, 146, 101, .06);
}

.process-console__rail span.is-active::before {
  width: 100%
}

.process-panel__visual--connection i:nth-child(1) {
  left: 10%;
  top: 27%;
  width: min(260px, 34%);
  height: 44%;
  border: 1px solid rgba(245, 241, 234, .18);
  background:
    linear-gradient(rgba(245, 241, 234, .12) 1px, transparent 1px) 28px 34px/72% 24px no-repeat,
    linear-gradient(rgba(245, 241, 234, .07), rgba(245, 241, 234, .02));
  box-shadow: inset 0 0 0 1px rgba(245, 241, 234, .035);
}

.process-panel__visual--connection i:nth-child(1)::before,
.process-panel__visual--connection i:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 28px;
  height: 1px;
  background: rgba(216, 191, 148, .58);
}

.process-panel__visual--connection i:nth-child(1)::before {
  top: 26px;
  width: 42px
}

.process-panel__visual--connection i:nth-child(1)::after {
  bottom: 28px;
  width: 70%
}

.process-panel__visual--connection i:nth-child(2) {
  right: 10%;
  top: 21%;
  width: min(240px, 34%);
  height: 58%;
  border-radius: 999px;
  border: 1px solid rgba(216, 191, 148, .34);
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 191, 148, .2), transparent 22%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(245, 241, 234, .06) 35% 36%, transparent 37%),
    rgba(245, 241, 234, .018);
}

.process-panel__visual--connection i:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(245, 241, 234, .1);
}

.process-panel__visual--connection i:nth-child(3) {
  left: 36%;
  top: 50%;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 241, 234, .2), var(--gold-soft), rgba(245, 241, 234, .2));
  box-shadow: 0 0 20px rgba(216, 191, 148, .28);
}

.process-panel__visual--connection i:nth-child(3)::before,
.process-panel__visual--connection i:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(184, 146, 101, .08);
}

.process-panel__visual--connection i:nth-child(3)::before {
  left: -3px
}

.process-panel__visual--connection i:nth-child(3)::after {
  right: -3px
}

.process-panel__visual--connection i:nth-child(4) {
  right: 19.5%;
  top: 42%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(216, 191, 148, .42);
  background: radial-gradient(circle, var(--gold-soft) 0 7px, rgba(184, 146, 101, .12) 8px 100%);
  box-shadow: 0 0 0 16px rgba(245, 241, 234, .035), 0 0 42px rgba(184, 146, 101, .28);
}

.process-panel__visual--assessment i {
  left: 12%;
  width: 54%;
  height: 14px;
  border: 1px solid rgba(245, 241, 234, .14);
  background:
    linear-gradient(90deg, rgba(216, 191, 148, .34), rgba(216, 191, 148, .1) 46%, rgba(245, 241, 234, .035));
  box-shadow: inset 0 0 0 1px rgba(245, 241, 234, .025);
}

.process-panel__visual--assessment i:nth-child(1) {
  top: 24%;
  width: 34%
}

.process-panel__visual--assessment i:nth-child(2) {
  top: 38%;
  width: 50%
}

.process-panel__visual--assessment i:nth-child(3) {
  top: 52%;
  width: 62%
}

.process-panel__visual--assessment i:nth-child(4) {
  top: 66%;
  width: 43%
}

.process-panel__visual--assessment i:nth-child(1)::after,
.process-panel__visual--assessment i:nth-child(2)::after,
.process-panel__visual--assessment i:nth-child(3)::after,
.process-panel__visual--assessment i:nth-child(4)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateY(-50%);
}

.process-panel__visual--assessment i:nth-child(5) {
  right: 12%;
  left: auto;
  top: 22%;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(216, 191, 148, .22);
  background:
    conic-gradient(from 220deg, rgba(216, 191, 148, .45), rgba(216, 191, 148, .08), transparent 58%, rgba(216, 191, 148, .38)),
    radial-gradient(circle, rgba(216, 191, 148, .18), transparent 58%);
  opacity: .88;
}

.process-panel__visual--assessment i:nth-child(5)::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: inherit;
  border: 1px solid rgba(245, 241, 234, .13);
}

.process-panel__visual--diagnostics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  padding: 38px;
}

.process-panel__visual--diagnostics i {
  position: relative;
  border: 1px solid rgba(245, 241, 234, .13);
  background:
    radial-gradient(circle at 74% 24%, rgba(216, 191, 148, .2), transparent 22%),
    linear-gradient(135deg, rgba(245, 241, 234, .045), rgba(245, 241, 234, .012));
}

.process-panel__visual--diagnostics i::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 42%;
  top: 18px;
  height: 1px;
  background: rgba(245, 241, 234, .22);
}

.process-panel__visual--diagnostics i::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 18px;
  width: 34px;
  height: 1px;
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(216, 191, 148, .28);
}

.process-panel__visual--strategy i:nth-child(1) {
  left: 9%;
  right: 9%;
  top: 18%;
  bottom: 16%;
  border: 1px solid rgba(245, 241, 234, .13);
  background:
    linear-gradient(rgba(245, 241, 234, .055) 1px, transparent 1px) 0 0/100% 50%,
    linear-gradient(90deg, rgba(245, 241, 234, .055) 1px, transparent 1px) 0 0/50% 100%,
    radial-gradient(circle at 50% 50%, rgba(216, 191, 148, .1), transparent 44%);
}

.process-panel__visual--strategy i:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 180px;
  height: 112px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216, 191, 148, .32);
  background:
    linear-gradient(90deg, rgba(216, 191, 148, .12), rgba(245, 241, 234, .035)),
    rgba(1, 18, 35, .22);
  box-shadow: 0 0 36px rgba(184, 146, 101, .12);
}

.process-panel__visual--strategy i:nth-child(2)::before,
.process-panel__visual--strategy i:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  background: rgba(245, 241, 234, .18);
}

.process-panel__visual--strategy i:nth-child(2)::before {
  top: 34px
}

.process-panel__visual--strategy i:nth-child(2)::after {
  bottom: 34px
}

.process-panel__visual--strategy i:nth-child(3) {
  left: 50%;
  top: 18%;
  width: 1px;
  height: 64%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(216, 191, 148, .9), transparent);
  border: 0;
}

.process-panel__visual--strategy i:nth-child(4) {
  left: 14%;
  top: 50%;
  width: 72%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(216, 191, 148, .9), transparent);
  border: 0;
}

.process-panel__visual--strategy i:nth-child(3)::before,
.process-panel__visual--strategy i:nth-child(4)::before,
.process-panel__visual--strategy i:nth-child(4)::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 9px rgba(184, 146, 101, .08);
}

.process-panel__visual--strategy i:nth-child(3)::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.process-panel__visual--strategy i:nth-child(4)::before {
  left: 18%;
  top: 50%;
  transform: translate(-50%, -50%)
}

.process-panel__visual--strategy i:nth-child(4)::after {
  right: 18%;
  top: 50%;
  transform: translate(50%, -50%)
}

.process-panel__visual--guidance i:nth-child(1),
.process-panel__visual--guidance i:nth-child(2),
.process-panel__visual--guidance i:nth-child(3) {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(216, 191, 148, .25);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, transparent 58%, rgba(245, 241, 234, .035) 59%, transparent 66%);
}

.process-panel__visual--guidance i:nth-child(1) {
  width: 282px;
  height: 282px
}

.process-panel__visual--guidance i:nth-child(2) {
  width: 196px;
  height: 196px
}

.process-panel__visual--guidance i:nth-child(3) {
  width: 108px;
  height: 108px
}

.process-panel__visual--guidance i:nth-child(4) {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(216, 191, 148, .35);
  background: radial-gradient(circle, var(--gold-soft) 0 7px, rgba(184, 146, 101, .12) 8px 100%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(184, 146, 101, .08), 0 0 48px rgba(184, 146, 101, .28);
}

.section--team {
  padding: 104px 0 122px;
  overflow: hidden;
}

.section--team .section-head {
  display: block;
  max-width: 1060px;
  margin-bottom: 58px;
}

.section--team .section-head .display {
  max-width: 980px;
  margin-top: 20px;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.08;
}

.team-grid--featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

.team-grid--featured .member {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: 22px clamp(40px, 6vw, 92px);
  align-items: center;
  min-height: 500px;
  padding: clamp(42px, 5vw, 66px) 0;
  border-top: 1px solid var(--line-soft);
  background: transparent;
  isolation: isolate;
}

.team-grid--featured .member:last-child {
  border-bottom: 1px solid var(--line-soft)
}

.team-grid--featured .member:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr);
}

.team-grid--featured .member:nth-child(even) .member__photo {
  grid-column: 2;
  justify-self: end;
}

.team-grid--featured .member:nth-child(even) .member__meta,
.team-grid--featured .member:nth-child(even) .member__bio,
.team-grid--featured .member:nth-child(even) .member__skills {
  grid-column: 1;
}

.member::before {
  display: block;
  content: "";
  position: absolute;
  inset: 18% 0 12%;
  z-index: -1;
  background:
    radial-gradient(ellipse 46% 68% at 20% 42%, rgba(184, 146, 101, .12), transparent 70%),
    linear-gradient(90deg, rgba(1, 18, 35, .035), transparent 62%);
  opacity: .82;
}

.member:nth-child(even)::before {
  background:
    radial-gradient(ellipse 46% 68% at 80% 42%, rgba(184, 146, 101, .12), transparent 70%),
    linear-gradient(270deg, rgba(1, 18, 35, .035), transparent 62%);
}

.member::after {
  content: "I";
  position: absolute;
  right: 3%;
  top: 10%;
  z-index: -1;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 138px);
  line-height: 1;
  color: rgba(1, 18, 35, .035);
  letter-spacing: 0;
}

.member:nth-child(even)::after {
  content: "II";
  left: 1%;
  right: auto;
}

.team-grid--featured .member:hover {
  transform: none
}

.team-grid--featured .member__photo {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: start;
  margin: 0;
  width: min(360px, 100%);
  aspect-ratio: 4/5;
  min-height: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.team-grid--featured .member__meta,
.team-grid--featured .member__bio,
.team-grid--featured .member__skills {
  grid-column: 2;
}

.member__meta {
  margin: 0;
  padding: 0 0 22px;
  border-top: 0;
  border-bottom: 1px solid var(--line-soft);
}

.member__meta h3 {
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.12;
}

.member__bio {
  max-width: 66ch;
  font-size: clamp(13.5px, 1vw, 15.5px);
  line-height: 1.78;
}

.member__skills {
  margin-top: 0;
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.member__photo img {
  clip-path: inset(0);
  box-shadow: 0 28px 72px rgba(1, 18, 35, .12);
}

.member__photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(184, 146, 101, .34);
}

.member:nth-child(even) .member__photo::before {
  inset: 18px 18px -18px -18px;
}

.section--cta {
  padding: 104px 0 112px;
  overflow: hidden;
}

.consult-dossier {
  grid-template-columns: minmax(360px, .72fr) minmax(520px, 1fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: start;
}

.consult-dossier__copy .display {
  max-width: 760px;
  font-size: clamp(36px, 3.6vw, 56px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.consult-dossier__copy .cta__subline {
  max-width: 20ch;
  font-size: clamp(20px, 1.65vw, 28px);
}

.consult-dossier__copy .lede {
  max-width: 58ch;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.7;
}

.consult-steps {
  margin-top: 38px;
}

.consult-form {
  max-width: 860px;
  justify-self: end;
  padding: clamp(28px, 3vw, 44px);
}

@media (max-width: 1180px) {
  .process-cinema__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      "copy"
      "visual"
      "stage";
    gap: 24px;
    min-height: 780px;
  }

  .process-cinema__copy {
    max-width: 760px;
  }

  .process-trajectory {
    min-height: 42svh;
  }

  .process-trajectory svg {
    width: min(118vw, 900px);
  }

  .process-stages {
    height: 170px;
    max-width: 760px;
  }

  .team-grid--featured {
    grid-template-columns: 1fr;
  }

  .team-grid--featured .member {
    min-height: 0;
  }

  .consult-dossier {
    grid-template-columns: 1fr;
  }

  .consult-form-host {
    justify-self: stretch;
    max-width: none;
  }

  .consult-form {
    justify-self: stretch;
  }
}

@media (max-width: 780px) {
  .section--process-cinema {
    min-height: 300svh;
  }

  .process-cinema__inner {
    height: 100svh;
    min-height: 760px;
    grid-template-rows: auto minmax(250px, 1fr) auto;
    gap: 18px;
    padding: 54px 24px 28px;
  }

  .process-cinema__copy .display {
    margin: 14px 0 14px;
    font-size: clamp(28px, 7.8vw, 38px);
    line-height: 1.08;
  }

  .process-cinema__copy .section-head__label {
    align-items: flex-start;
  }

  .process-cinema__copy .section-head__label .kicker {
    white-space: normal;
    line-height: 1.5;
  }

  .process-cinema__copy .section-head__label .rule {
    flex: 0 0 36px;
    margin-top: .72em;
  }

  .process-cinema__copy .lede {
    font-size: 12.5px;
    line-height: 1.62;
  }

  .process-cinema__copy .btn {
    display: none;
  }

  .process-trajectory {
    min-height: 250px;
  }

  .process-trajectory svg {
    width: 150vw;
  }

  .process-stages {
    height: 176px;
  }

  .process-stage {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding-top: 16px;
  }

  .process-stage h3 {
    font-size: 20px;
    line-height: 1.14;
  }

  .process-stage p {
    font-size: 11px;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  .section--team .section-head {
    display: block;
  }

  .section--team .section-head .display {
    margin-top: 18px;
    font-size: clamp(28px, 8vw, 42px);
  }

  .team-grid--featured .member {
    display: block;
    min-height: 0;
    padding: 42px 0;
  }

  .team-grid--featured .member__photo {
    aspect-ratio: 16/11;
    width: 100%;
    margin-bottom: 26px;
  }

  .member__photo::before {
    inset: 14px -10px -10px 14px
  }

  .member:nth-child(even) .member__photo::before {
    inset: 14px -10px -10px 14px
  }

  .member__meta {
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  .member__skills {
    grid-template-columns: 1fr
  }

  .consult-dossier__copy .display {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero__kicker {
    white-space: normal;
    line-height: 1.45;
  }

  .hero .btn {
    white-space: normal;
    line-height: 1.32;
    letter-spacing: .12em;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 1180px) {
  .process-console {
    min-height: 42svh;
  }

  .process-panel {
    padding: 28px;
  }

  .process-panel__visual {
    min-height: 220px;
  }
}

@media (max-width: 780px) {
  .process-console {
    min-height: 360px;
  }

  .process-console__chrome {
    min-height: 52px;
    padding: 0 16px;
    font-size: 8px;
    letter-spacing: .18em;
  }

  .process-console__viewport {
    inset: 52px 14px 46px;
  }

  .process-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 14px;
    padding: 18px;
  }

  .process-panel__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
  }

  .process-panel__meta strong {
    text-align: left;
    font-size: 18px;
  }

  .process-panel__visual {
    min-height: 150px;
  }

  .process-panel__readout {
    display: none;
  }

  .process-console__rail {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .process-console__rail span {
    min-height: 24px;
    font-size: 8px;
  }

  .process-panel__visual--connection i:nth-child(1) {
    width: 46%;
    height: 58px;
  }

  .process-panel__visual--connection i:nth-child(2) {
    width: 112px;
    height: 112px;
  }

  .process-panel__visual--assessment i:nth-child(5) {
    width: 96px;
    height: 96px;
  }

  .process-panel__visual--diagnostics {
    gap: 10px;
    padding: 28px;
  }

  .process-panel__visual--guidance i:nth-child(1) {
    width: 156px;
    height: 156px
  }

  .process-panel__visual--guidance i:nth-child(2) {
    width: 104px;
    height: 104px
  }

  .process-panel__visual--guidance i:nth-child(3) {
    width: 54px;
    height: 54px
  }
}

@media (max-width: 520px) {
  .process-console {
    min-height: 330px;
  }

  .process-console__chrome {
    gap: 12px;
  }

  .process-console__chrome span:first-child {
    max-width: 22ch;
    line-height: 1.45;
  }

  .process-panel__visual {
    min-height: 132px;
  }
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  color: #071e10;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.whatsapp-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fab__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width:520px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg{
    width:40px;
    height:35px;
    
}
}

.whatsapp-fab svg {
  width: 70px;
  height: 35px;
  /* color:#fff;
    fill:currentColor; */
}

/* ====================================================================
   BIOLOGICAL AGE SECTION — FIX FOR MOBILE SHRINKING
==================================================================== */

/* Fix for the bio-age-lab grid on mobile */
@media (max-width: 1100px) {
  .bio-age-lab__inner {
    grid-template-columns: 1fr !important;
    gap: 38px !important;
    min-height: auto !important;
  }

  .bio-age-lab__copy {
    max-width: 100% !important;
  }

  /* .bio-age-lab__copy .display{
    font-size: clamp(28px, 5.4vw, 38px) !important;
  } */
  .age-intel {
    min-height: auto !important;
    padding: 24px !important;
  }
}

/* Further refinement for smaller screens */
@media (max-width: 780px) {
  .bio-age-lab {
    padding: 68px 0 !important;
    min-height: auto !important;
  }

  .bio-age-lab__inner {
    gap: 28px !important;
  }

  .bio-age-lab__copy .display {
    /* font-size: clamp(24px, 6vw, 32px) !important; */
    margin: 12px 0 16px !important;
  }

  .bio-age-lab__copy .lede {
    /* font-size: 14px !important; */
    line-height: 1.6 !important;
  }

  .bio-age-lab__cta {
    width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
    padding: 16px 18px !important;
    /* font-size: 10px !important; */
    letter-spacing: .12em !important;
  }

  .age-intel {
    padding: 18px !important;
  }

  .age-intel__topline {
    flex-direction: column !important;
    gap: 6px !important;
    padding-bottom: 16px !important;
    font-size: 8px !important;
  }

  .age-intel__chart {
    padding: 20px 0 14px !important;
  }

  .age-intel__chart svg {
    height: auto !important;
    max-height: 200px !important;
  }

  .age-intel__modules {
    grid-template-columns: 1fr !important;
    border-left: none !important;
  }

  .age-intel__modules article {
    min-height: 100px !important;
    padding: 14px 16px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(245, 241, 234, .14) !important;
  }

  .age-intel__modules article:last-child {
    border-bottom: none !important;
  }

  .age-intel__modules span {
    margin-bottom: 10px !important;
    font-size: 8px !important;
  }

  .age-intel__modules strong {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .age-intel__modules p {
    font-size: 11px !important;
    line-height: 1.5 !important;
  }
}

/* Extra small screens */
@media (max-width: 520px) {
  .bio-age-lab {
    padding: 54px 0 !important;
  }

  .bio-age-lab__inner {
    gap: 22px !important;
  }

  .bio-age-lab__copy .display {
    /* font-size: 22px !important; */
    line-height: 1.1 !important;
    margin: 10px 0 14px !important;
  }

  /* .bio-age-lab__copy .lede{
    font-size: 13px !important;
  } */
  .bio-age-lab__copy .kicker {
    font-size: 9px !important;
    letter-spacing: .18em !important;
  }

  .age-intel {
    padding: 14px !important;
  }

  .age-intel__topline {
    font-size: 7.5px !important;
    letter-spacing: .18em !important;
  }

  .age-intel__chart {
    padding: 12px 0 10px !important;
  }

  .age-intel__chart svg {
    max-height: 150px !important;
  }

  .age-intel__modules article {
    min-height: 80px !important;
    padding: 10px 12px !important;
  }

  .age-intel__modules strong {
    font-size: 14px !important;
  }

  .age-intel__modules p {
    font-size: 10px !important;
  }
}

/* ====================================================================
   SECTION HEAD LABEL FIX — Mobile wrapping
==================================================================== */

/* Fix for section-head__label on mobile */
@media (max-width: 780px) {
  .section-head__label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .section-head__label .rule {
    flex: 0 0 24px !important;
    margin-top: 6px !important;
  }

  .section-head__label .kicker {
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 10px !important;
    letter-spacing: .18em !important;
    line-height: 1.5 !important;
    display: inline !important;
  }

  /* If you want the rule to be on its own line on very small screens */
  .section-head__label .kicker {
    flex: 1 !important;
    min-width: 0 !important;
  }
}

/* Extra small screens */
@media (max-width: 520px) {
  .section-head__label .kicker {
    font-size: 9px !important;
    letter-spacing: .14em !important;
    line-height: 1.4 !important;
  }

  .section-head__label .rule {
    flex: 0 0 20px !important;
    margin-top: 4px !important;
  }

  .section-head__label {
    gap: 8px !important;
  }
}

/* Also fix any other kicker instances that might have nowrap */
.kicker {
  white-space: normal !important;
  /* Override the global nowrap on mobile */
}

/* But keep it as a fallback for desktop */
@media (min-width: 781px) {
  .kicker {
    white-space: nowrap !important;
  }
}



/* ====================================================================
   LAB TEST CARDS — Mobile padding and spacing fix
==================================================================== */

/* Fix for lab test cards container on mobile */
@media (max-width: 780px) {

  /* The container holding the cards */
  .lab-tests-products,
  .cards-scroll {
    margin: 0 -20px !important;
    padding: 0 20px !important;
  }

  /* The cards wrapper */
  .lab-test-cards {
    gap: 16px !important;
    padding: 2px 20px 30px !important;
    scroll-padding-left: 20px !important;
  }

  /* Individual cards */
  .lab-test-card {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    min-width: 240px !important;
  }

  /* Card inner padding */
  .lab-test-card .card__head,
  .lab-test-card .card__title,
  .lab-test-card .card__copy,
  .lab-test-card .card__foot,
  .lab-test-card .card__buy {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  /* Card title */
  .lab-test-card .card__title {
    font-size: 17px !important;
    line-height: 1.2 !important;
    min-height: 56px !important;
    margin-bottom: 10px !important;
  }

  /* Card copy */
  .lab-test-card .card__copy {
    font-size: 11px !important;
    line-height: 1.6 !important;
    min-height: 60px !important;
    margin-bottom: 16px !important;
  }

  /* Card head (number + tag) */
  .lab-test-card .card__head {
    margin-top: 16px !important;
    padding-bottom: 10px !important;
    margin-bottom: 14px !important;
  }

  .lab-test-card .card__no {
    font-size: 9px !important;
  }

  .lab-test-card .card__tag {
    font-size: 7.5px !important;
    padding: 4px 8px !important;
  }

  /* Card foot (biomarkers + results) */
  .lab-test-card .card__foot {
    padding-top: 12px !important;
    margin-bottom: 14px !important;
  }

  .lab-test-card .card__foot small {
    font-size: 7.5px !important;
  }

  .lab-test-card .card__foot b {
    font-size: 16px !important;
  }

  /* Book button */
  .lab-test-card .card__buy {
    width: calc(100% - 32px) !important;
    margin-bottom: 16px !important;
    padding: 12px 14px !important;
    font-size: 9px !important;
    letter-spacing: .16em !important;
  }

  /* Card visual */
  .lab-test-card .card__visual {
    margin: 12px 12px 0 !important;
    aspect-ratio: 1.2 !important;
  }

  /* Lab pill inside card */
  .lab-test-card .lab-pill {
    font-size: 7px !important;
    padding: 4px 8px !important;
    top: 12px !important;
    right: 12px !important;
  }
}

/* For extra small screens */
@media (max-width: 520px) {

  .lab-tests-products,
  .cards-scroll {
    margin: 0 -16px !important;
    padding: 0 16px !important;
  }

  .lab-test-cards {
    gap: 14px !important;
    padding: 2px 16px 26px !important;
    scroll-padding-left: 16px !important;
  }

  .lab-test-card {
    flex: 0 0 260px !important;
    max-width: 260px !important;
    min-width: 220px !important;
  }

  .lab-test-card .card__head,
  .lab-test-card .card__title,
  .lab-test-card .card__copy,
  .lab-test-card .card__foot,
  .lab-test-card .card__buy {
    margin-left: 14px !important;
    margin-right: 14px !important;
  }

  .lab-test-card .card__title {
    font-size: 15px !important;
    min-height: 48px !important;
  }

  .lab-test-card .card__copy {
    font-size: 10.5px !important;
    min-height: 50px !important;
  }

  .lab-test-card .card__buy {
    width: calc(100% - 28px) !important;
    font-size: 8.5px !important;
    padding: 10px 12px !important;
  }

  .lab-test-card .card__visual {
    margin: 10px 10px 0 !important;
  }
}

/* If you want to show scroll indicators */
@media (max-width: 780px) {
  .lab-test-cards::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(1, 18, 35, .08));
    pointer-events: none;
    flex-shrink: 0;
  }
}

/* Fix for the cards-scroll nav (if present) */
@media (max-width: 780px) {
  .lab-tests-products .cards-scroll__nav {
    position: static !important;
    justify-content: flex-end !important;
    margin: 0 0 12px !important;
    padding-right: 20px !important;
  }

  .cards-scroll__btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 12px !important;
  }
}

/* Ensure cards scroll smoothly on touch devices */
.lab-test-cards {
  -webkit-overflow-scrolling: touch !important;
  scroll-snap-type: x mandatory !important;
}

.lab-test-card {
  scroll-snap-align: start !important;
}

/* If you want visible scrollbar on mobile (optional) */
@media (max-width: 780px) {
  .lab-test-cards {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(184, 146, 101, .3) transparent !important;
  }

  .lab-test-cards::-webkit-scrollbar {
    height: 3px !important;
  }

  .lab-test-cards::-webkit-scrollbar-track {
    background: transparent !important;
  }

  .lab-test-cards::-webkit-scrollbar-thumb {
    background: rgba(184, 146, 101, .3) !important;
    border-radius: 10px !important;
  }
}


.aging_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 241, 234, .16);
  background: rgba(184, 146, 101, .06);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: .25s ease;
  font-weight: 500;
  cursor: pointer;
  width: calc(100% - 56px);
  appearance: none;
}

.aging_btn:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px
}

.aging_btn i {
  font-style: normal;
  color: var(--gold);
  transition: transform .3s ease
}

.aging_btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.aging_btn:hover i {
  color: var(--ink);
  transform: translateX(4px)
}

.rc-anchor-light.rc-anchor-compact, .rc-anchor-light.rc-anchor-normal{
    /* border: 1px solid #d3d3d3; */
    background: none !important;
    color: white !important;
}