/* =========================================================
   Peptós.LIFE, Inner page styles
   Pages: Protocols, The Science, About, FDA Peptide Tracker
   ========================================================= */

/* ---------- Inner-page hero (shared) ---------- */
.nam-phero {
  position: relative;
  background: var(--n-void);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nam-phero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(46,114,255,0.10), transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 90%, rgba(46,114,255,0.06), transparent 60%);
}
/* Cinematic full-bleed image, dissolved into the void with a veil + vignette.
   Used on the Science page hero (peptide molecule on cosmic backdrop). */
.nam-phero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 65% 50%;
  opacity: 0.55;
  filter: saturate(0.95) contrast(1.05);
  mix-blend-mode: screen;
}
.nam-phero__bg-veil {
  position: absolute; inset: 0;
  background:
    /* Strong protect on left third, keeps headline readable */
    linear-gradient(90deg, rgba(1,9,29,0.95) 0%, rgba(1,9,29,0.75) 28%, rgba(1,9,29,0.20) 55%, transparent 80%),
    /* Vertical falloff into void at top + bottom */
    linear-gradient(180deg, rgba(1,9,29,0.55) 0%, transparent 30%, transparent 70%, rgba(1,9,29,0.85) 100%);
}
.nam-phero__bg-stars {
  position: absolute; inset: 0;
  background:
    radial-gradient(1px 1px at 12% 28%, rgba(220,238,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 28% 64%, rgba(220,238,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 65% 18%, rgba(220,238,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 82% 48%, rgba(220,238,255,0.35), transparent 60%),
    radial-gradient(2px 2px at 48% 80%, rgba(107,165,255,0.4), transparent 60%);
  opacity: 0.7;
}
.nam-phero__inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 96px 48px 80px;
}
.nam-phero__eyebrow {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--n-glow-200);
  margin-bottom: 28px;
}
.nam-phero__title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0;
  max-width: 16ch;
}
.nam-phero__title .pop { color: var(--n-glow-300); font-weight: 400; text-shadow: 0 0 22px rgba(46,114,255,0.45); }
.nam-phero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px; line-height: 1.6;
  color: rgba(220,238,255,0.72);
  max-width: 620px;
  margin: 28px 0 0;
}
.nam-phero__rule {
  width: 64px; height: 2px;
  background: var(--accent);
  margin: 28px 0 0;
  box-shadow: 0 0 14px rgba(46,114,255,0.55);
}

/* About hero, bright running woman on right two-thirds. We treat the photograph
   at near-full brightness so the energy lands, and pull a navy curtain over
   the left for headline legibility. */
.nam-phero--about .nam-phero__bg-img {
  opacity: 0.95;
  mix-blend-mode: normal;
  filter: saturate(1.02) contrast(1.0);
  object-position: 60% 50%;
}
.nam-phero--about .nam-phero__bg-veil {
  background:
    linear-gradient(90deg, rgba(1,9,29,0.95) 0%, rgba(1,9,29,0.78) 22%, rgba(1,9,29,0.18) 48%, transparent 70%),
    linear-gradient(180deg, rgba(1,9,29,0.40) 0%, transparent 22%, transparent 70%, rgba(1,9,29,0.85) 100%);
}

/* Our Story, bright Mediterranean portrait sits below the head copy,
   panoramic band closes the section to dissolve into Founders. */
.nam-sec--story { padding-bottom: 0; }
.nam-story__portrait {
  margin-top: 36px;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  width: 100%;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.nam-story__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nam-sec__story-band {
  position: relative;
  width: 100%;
  height: 380px;
  margin-top: 88px;
  overflow: hidden;
}
.nam-sec__story-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  display: block;
}
.nam-sec__story-band::after {
  /* Soft handoff into the next dark section */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, var(--n-void) 100%);
}
.nam-sec__story-band::before {
  /* Top fade so the band emerges out of the cosmos */
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 30%;
  background: linear-gradient(180deg, var(--n-cosmos) 0%, transparent 100%);
}
/* Tracker hero, Observatory image with subject on right two-thirds; we want
   the screens & ocean view to read brightly, so the image sits at higher
   opacity than the molecule hero and isn't blended. */
.nam-phero--tracker .nam-phero__bg-img {
  opacity: 0.85;
  mix-blend-mode: normal;
  filter: saturate(1.0) contrast(1.02);
  object-position: 50% 45%;
}
.nam-phero--tracker .nam-phero__bg-veil {
  background:
    /* Heavy navy curtain on the left for headline legibility */
    linear-gradient(90deg, rgba(1,9,29,0.92) 0%, rgba(1,9,29,0.72) 25%, rgba(1,9,29,0.10) 52%, transparent 75%),
    /* Soft top/bottom falloff so the hero seams cleanly into the nav + filter bar */
    linear-gradient(180deg, rgba(1,9,29,0.45) 0%, transparent 22%, transparent 70%, rgba(1,9,29,0.85) 100%);
}
.nam-sec {
  position: relative;
  background: var(--n-void);
  padding: 96px 0;
  overflow: hidden;
}
.nam-sec--alt { background: var(--n-cosmos); }
/* Decision-logic band, the test-tube image bleeds in from the left, dissolved
   into the cosmos so the type stays the lead. */
.nam-sec--lab .nam-sec__lab-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.nam-sec--lab .nam-sec__lab-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 0% 50%;
  opacity: 0.40;
  mix-blend-mode: screen;
}
.nam-sec--lab .nam-sec__lab-bg::after {
  /* Pull the right half back into pure cosmos so the text sits on a clean field */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(5,14,37,0.35) 25%, rgba(5,14,37,0.85) 55%, var(--n-cosmos) 80%);
}

/* Protocols methodology, bright overhead "intentional life" tabletop image
   sits across the top, with the type sitting on cosmos below. */
.nam-sec--method { padding-top: 0; }
.nam-sec--method .nam-sec__method-bg {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 88px;
}
.nam-sec--method .nam-sec__method-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 65%;
  display: block;
}
.nam-sec--method .nam-sec__method-bg::after {
  /* Soft handoff into the cosmos section */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--n-cosmos) 100%);
}
.nam-sec--method .nam-sec__method-bg::before {
  /* Top edge fade so the nav above doesn't seam-line */
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 40%;
  background: linear-gradient(180deg, var(--n-void) 0%, transparent 100%);
}
.nam-sec__inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.nam-sec__head { max-width: 720px; margin-bottom: 48px; }
.nam-sec__title {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(34px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -0.018em;
  color: #fff;
  margin: 14px 0 0;
}
.nam-sec__sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 16px; line-height: 1.65;
  color: rgba(220,238,255,0.66);
  margin: 22px 0 0;
  max-width: 580px;
}

/* ---------- Protocols hub ---------- */
.nam-protocols-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Media-led protocol card: 4:5 photograph at top, copy below.
   The card sits on cosmic navy, the bright imagery glows against it.   */
.nam-pcard {
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 240ms, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nam-pcard:hover {
  border-color: rgba(127,183,255,0.45);
  transform: translateY(-3px);
}
.nam-pcard--media .nam-pcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--n-cosmos);
}
.nam-pcard--media .nam-pcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nam-pcard--media:hover .nam-pcard__media img {
  transform: scale(1.035);
}
/* Bottom gradient handoff so the photo dissolves into the card body */
.nam-pcard--media .nam-pcard__media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(1,9,29,0.55) 100%);
  pointer-events: none;
}
.nam-pcard__body-wrap {
  padding: 28px 30px 30px;
  display: flex; flex-direction: column;
  flex: 1;
}
.nam-pcard__eyebrow {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--n-glow-200); margin-bottom: 10px;
}
.nam-pcard__title {
  font-family: var(--font-heading); font-weight: 400;
  font-size: 26px; letter-spacing: -0.014em;
  color: #fff;
  margin: 0 0 12px;
}
.nam-pcard__body {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(220,238,255,0.68);
  margin: 0 0 18px;
}
.nam-pcard__compounds {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.02em;
  color: rgba(220,238,255,0.55);
  padding: 10px 0;
  margin-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nam-pcard__compounds svg {
  color: var(--n-glow-300);
  filter: drop-shadow(0 0 5px rgba(46,114,255,0.4));
  flex-shrink: 0;
}
.nam-pcard__cta {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--n-glow-300);
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
  transition: color 200ms;
}
.nam-pcard:hover .nam-pcard__cta { color: #fff; }
.nam-pcard__badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase;
  color: #fff;
  background: rgba(1,9,29,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(127,183,255,0.45);
  padding: 6px 10px; border-radius: 999px;
  z-index: 2;
}
/* Tilt the "coming soon" card visually so it reads as a softer state */
.nam-pcard.is-soon .nam-pcard__media img { opacity: 0.85; }

/* Methodology strip */
.nam-method {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nam-method__step {
  display: flex; flex-direction: column; gap: 10px;
}
.nam-method__n {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--n-glow-300);
}
.nam-method__t {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 20px; letter-spacing: -0.005em;
  color: #fff;
}
.nam-method__d {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(220,238,255,0.62);
}

/* Biomarker panel, every card now leads with an icon + count + title block.
   Top-right corner halo makes each system feel like its own glowing cell. */
.nam-biopanel {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nam-bgroup {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
}
.nam-bgroup::before {
  /* Soft ice-blue corner halo */
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; border-radius: 999px;
  background: radial-gradient(circle, rgba(46,114,255,0.32) 0%, transparent 70%);
  pointer-events: none;
}
.nam-bgroup:hover { border-color: rgba(127,183,255,0.42); transform: translateY(-2px); }
.nam-bgroup__head {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 14px;
}
.nam-bgroup__icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,114,255,0.18);
  border: 1px solid rgba(127,183,255,0.32);
  color: var(--n-glow-200);
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(46,114,255,0.35));
}
.nam-bgroup__meta { display: flex; flex-direction: column; gap: 4px; }
.nam-bgroup__count {
  display: flex; align-items: baseline; gap: 6px;
}
.nam-bgroup__count-n {
  font-family: var(--font-heading); font-weight: 300;
  font-size: 24px; line-height: 1;
  color: var(--n-glow-100);
  text-shadow: 0 0 14px rgba(46,114,255,0.55);
  letter-spacing: -0.02em;
}
.nam-bgroup__count-l {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(220,238,255,0.55);
}
.nam-bgroup__title {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 18px; letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
}
.nam-bgroup__chips {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.nam-bgroup__chip {
  font-family: var(--font-mono); font-size: 11px;
  padding: 5px 10px;
  background: rgba(46,114,255,0.10);
  border: 1px solid rgba(127,183,255,0.20);
  border-radius: 999px;
  color: rgba(220,238,255,0.85);
  transition: background 200ms, border-color 200ms;
}
.nam-bgroup:hover .nam-bgroup__chip { border-color: rgba(127,183,255,0.32); }

/* Decision logic, 4 steps with glowing numbered badges connected by a faint
   horizontal accent line. Replaces the flat mono numerals. */
.nam-decision {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  position: relative;
}
.nam-decision::before {
  /* Connecting line behind the badge row */
  content: ""; position: absolute; left: 32px; right: 32px;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(127,183,255,0.45) 10%,
    rgba(127,183,255,0.45) 90%,
    transparent 100%);
  z-index: 0;
}
.nam-decision__step {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.nam-decision__step:last-child { border-right: 0; padding-right: 0; }
.nam-decision__step:not(:first-child) { padding-left: 24px; }

.nam-decision__badge {
  position: relative; z-index: 1;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(46,114,255,0.22) 0%, rgba(46,114,255,0.06) 100%);
  border: 1px solid rgba(127,183,255,0.50);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 6px rgba(1,9,29,1), /* knock out the connector line behind */
    0 0 24px rgba(46,114,255,0.45);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--n-glow-100);
  margin-bottom: 8px;
}
.nam-decision__badge span {
  text-shadow: 0 0 10px rgba(46,114,255,0.7);
}
.nam-decision__t {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 19px; letter-spacing: -0.005em;
  color: #fff;
  margin: 0;
}
.nam-decision__d {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.6;
  color: rgba(220,238,255,0.62);
  margin: 0 0 24px;
}

/* Evidence grade, bigger letter glow, name + body, and a thin bar at the
   bottom whose width visualises strength of evidence (A full, D quarter). */
.nam-grades {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.nam-grade {
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 28px 24px 0;
  background: rgba(255,255,255,0.025);
  display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
}
.nam-grade::before {
  content: ""; position: absolute; left: -30px; top: -30px;
  width: 140px; height: 140px; border-radius: 999px;
  background: radial-gradient(circle, rgba(46,114,255,0.32) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.nam-grade:hover { border-color: rgba(127,183,255,0.42); transform: translateY(-2px); }
.nam-grade__letter {
  font-family: var(--font-heading); font-weight: 200;
  font-size: 64px; line-height: 1;
  color: var(--n-glow-300);
  text-shadow:
    0 0 24px rgba(46,114,255,0.6),
    0 0 56px rgba(46,114,255,0.28);
  position: relative; z-index: 1;
}
.nam-grade__name {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  margin-top: 14px;
}
.nam-grade__d {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13.5px; line-height: 1.55;
  color: rgba(220,238,255,0.65);
  margin: 0 0 24px;
  flex: 1;
}
.nam-grade__bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  margin: 16px -24px 0;
  position: relative;
}
.nam-grade__bar-fill {
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(46,114,255,0.7);
}
/* Lower-grade variants get a slightly cooler/warmer hint */
.nam-grade--c .nam-grade__bar-fill { background: var(--n-glow-300); box-shadow: 0 0 10px rgba(107,165,255,0.55); }
.nam-grade--d .nam-grade__bar-fill { background: rgba(127,183,255,0.5); box-shadow: 0 0 8px rgba(107,165,255,0.35); }

/* Advisory board */
.nam-board {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nam-advisor {
  display: flex; flex-direction: column; gap: 12px;
}
.nam-advisor__photo {
  aspect-ratio: 1 / 1.1;
  background:
    radial-gradient(circle at 45% 30%, var(--n-horizon), var(--n-nebula) 60%, var(--n-cosmos));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  position: relative; overflow: hidden;
}
.nam-advisor__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nam-advisor__photo::after {
  content: ""; position: absolute; inset: 30% 22% 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(220,238,255,0.18), transparent 65%);
  border-radius: 999px;
  pointer-events: none;
  display: none;
}
.nam-advisor__name {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 17px; letter-spacing: -0.005em;
  color: #fff; margin-top: 6px;
}
.nam-advisor__role {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(220,238,255,0.62);
}

/* Outcomes section, leads with the specimen band: koru fern in electric ice
   blue against cosmic black, with the section eyebrow + headline overlaid on
   the left negative space. Sets the rhythm change before the three stat cards. */
.nam-sec--specimen {
  padding-top: 0;
  padding-bottom: 96px;
}
.nam-specimen-band {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 3;
  max-height: 540px;
  overflow: hidden;
  margin-bottom: 88px;
}
.nam-specimen-band__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.nam-specimen-band__veil {
  /* Pull a navy curtain over the left so the headline reads clean.
     Keep right side pristine so the koru glows. */
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(1,9,29,0.92) 0%,
      rgba(1,9,29,0.78) 18%,
      rgba(1,9,29,0.42) 38%,
      transparent 55%),
    /* Top/bottom seam into the cosmos */
    linear-gradient(180deg,
      var(--n-cosmos) 0%,
      transparent 12%,
      transparent 80%,
      var(--n-cosmos) 100%);
  pointer-events: none;
}
.nam-specimen-band__copy {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  max-width: 720px;
  padding: 0 48px 0 max(48px, calc((100vw - 1280px) / 2 + 48px));
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.nam-specimen-band__title {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.06; letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 0;
}
.nam-specimen-band__title .pop {
  color: var(--n-glow-300);
  font-weight: 400;
  text-shadow: 0 0 22px rgba(46,114,255,0.55), 0 0 56px rgba(46,114,255,0.25);
}
.nam-specimen-band__sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 15px; line-height: 1.65;
  color: rgba(220,238,255,0.72);
  max-width: 440px;
  margin: 0;
}

@media (max-width: 920px) {
  .nam-specimen-band { aspect-ratio: 4 / 5; max-height: none; }
  .nam-specimen-band__img { object-position: 70% 50%; }
  .nam-specimen-band__copy {
    width: 100%; max-width: none;
    padding: 0 32px;
  }
  .nam-specimen-band__veil {
    background:
      linear-gradient(180deg,
        rgba(1,9,29,0.92) 0%,
        rgba(1,9,29,0.55) 45%,
        rgba(1,9,29,0.20) 65%,
        transparent 80%),
      linear-gradient(180deg,
        var(--n-cosmos) 0%,
        transparent 8%,
        transparent 90%,
        var(--n-cosmos) 100%);
  }
}
.nam-outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.nam-stat {
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 32px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
}
.nam-stat::before {
  /* Soft ice-blue corner halo */
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 999px;
  background: radial-gradient(circle, rgba(46,114,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.nam-stat__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.nam-stat__n {
  font-family: var(--font-heading); font-weight: 200;
  font-size: 60px; line-height: 1;
  color: var(--n-glow-100);
  text-shadow:
    0 0 24px rgba(46,114,255,0.55),
    0 0 60px rgba(46,114,255,0.25);
  letter-spacing: -0.025em;
}
.nam-stat__n .unit { font-size: 28px; color: rgba(220,238,255,0.7); margin-left: 4px; text-shadow: none; }
.nam-stat__trend {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 8px;
}
.nam-stat__trend--up {
  background: rgba(79,181,138,0.14);
  color: var(--status-legal);
  border: 1px solid rgba(79,181,138,0.32);
}
.nam-stat__trend--down {
  background: rgba(46,114,255,0.14);
  color: var(--n-glow-300);
  border: 1px solid rgba(127,183,255,0.32);
}
.nam-spark {
  display: block;
  width: 100%;
  height: 56px;
  margin: 8px 0 18px;
}
.nam-stat__label {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 14px; letter-spacing: 0.04em;
  color: #fff;
}
.nam-stat__caption {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13px; line-height: 1.55;
  color: rgba(220,238,255,0.55);
  margin-top: 6px;
}

/* ---------- About ---------- */
.nam-about-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nam-about-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
  transition: border-color 220ms, background-color 220ms;
}
.nam-about-card:hover { border-color: rgba(127,183,255,0.4); background: rgba(46,114,255,0.06); }
.nam-about-card__icon { color: var(--n-glow-300); filter: drop-shadow(0 0 12px rgba(46,114,255,0.45)); }
.nam-about-card__title {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 22px; letter-spacing: -0.012em;
  color: #fff;
}
.nam-about-card__body {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14px; line-height: 1.6;
  color: rgba(220,238,255,0.65);
  flex: 1;
}
.nam-about-card__cta {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--n-glow-300);
  display: inline-flex; gap: 8px; align-items: center;
}
.nam-about-card:hover .nam-about-card__cta { color: #fff; }

.nam-story {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 80px; align-items: start;
}
/* Anchor the left column, head + portrait sit together, stay visible while
   reading the right column. Internal vertical rhythm balances the prose. */
.nam-story > div:first-child {
  position: sticky; top: 96px;
  display: flex; flex-direction: column;
  align-self: start;
}
.nam-story > div:first-child .nam-sec__head { margin-bottom: 0; }
.nam-story__cta {
  margin-top: 28px;
  align-self: flex-start;
}
.nam-story__p {
  font-family: var(--font-body); font-weight: 300;
  font-size: 17px; line-height: 1.7;
  color: rgba(220,238,255,0.72);
  margin: 0 0 24px;
  max-width: 560px;
}
.nam-story__pull {
  font-family: var(--font-heading); font-weight: 300;
  font-size: 26px; line-height: 1.3;
  letter-spacing: -0.012em;
  color: #fff;
  border-left: 1px solid var(--n-glow-300);
  padding-left: 28px;
  margin: 40px 0;
}

.nam-founders {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.nam-founder {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 36px;
  display: flex; gap: 32px;
  background: rgba(255,255,255,0.025);
  align-items: flex-start;
}
.nam-founder__photo {
  width: 160px; height: 160px;
  flex-shrink: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle at 45% 30%, var(--n-horizon), var(--n-nebula) 60%, var(--n-cosmos));
  border: 1px solid rgba(255,255,255,0.10);
  position: relative; overflow: hidden;
}
.nam-founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nam-founder__photo::after {
  content: ""; position: absolute; inset: 28% 22% 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(220,238,255,0.18), transparent 65%);
  border-radius: 999px;
  pointer-events: none;
  display: none;
}
.nam-founder__name {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 20px; letter-spacing: -0.008em;
  color: #fff;
}
.nam-founder__role {
  font-family: var(--font-body); font-size: 13px;
  color: var(--n-glow-300);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.nam-founder__bio {
  font-family: var(--font-body); font-weight: 300;
  font-size: 14px; line-height: 1.6;
  color: rgba(220,238,255,0.65);
  margin: 0;
}

/* ---------- FDA Peptide Tracker ---------- */
.nam-tracker-filter {
  background: var(--n-cosmos);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nam-tracker-filter__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 48px;
  display: flex; gap: 16px; align-items: center;
}
.nam-tfilter-group {
  display: flex; gap: 8px; align-items: center;
}
.nam-tfilter-label {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(220,238,255,0.55);
  margin-right: 4px;
}
.nam-tfilter-chip {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(220,238,255,0.78);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 200ms;
}
.nam-tfilter-chip:hover { border-color: rgba(127,183,255,0.5); color: #fff; }
.nam-tfilter-chip.is-active {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: var(--glow-sm);
}
.nam-tsearch {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 14px;
  width: 280px;
  color: rgba(220,238,255,0.55);
}
.nam-tsearch input {
  background: none; border: none; outline: none;
  font-family: var(--font-body); font-size: 13px;
  color: #fff; flex: 1;
}
.nam-tsearch input::placeholder { color: rgba(220,238,255,0.45); }

/* Verdict filter chips, colored swatches that match the card verdict palette */
.nam-tfilter-chip--verdict.green.is-active {
  background: var(--status-legal); border-color: var(--status-legal);
  box-shadow: 0 0 12px rgba(79,181,138,0.45);
}
.nam-tfilter-chip--verdict.amber.is-active {
  background: var(--accent); border-color: var(--accent);
}
.nam-tfilter-chip--verdict.red.is-active {
  background: var(--status-not-legal); border-color: var(--status-not-legal);
  box-shadow: 0 0 12px rgba(226,106,106,0.42);
}

/* Tracker compound grid */
.nam-tgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.nam-tcard-full {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px 22px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  min-height: 280px;
  transition: border-color 220ms, transform 220ms;
}
.nam-tcard-full:hover { border-color: rgba(127,183,255,0.45); }
.nam-tcard-full__pill {
  align-self: flex-start;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 18px;
}
.nam-tcard-full__pill--legal     { background: var(--status-legal); }
.nam-tcard-full__pill--pcac      { background: var(--accent); }
.nam-tcard-full__pill--not-legal { background: var(--status-not-legal); }
.nam-tcard-full__name {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 22px; letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 4px;
}
.nam-tcard-full__sub {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(220,238,255,0.55);
  margin-bottom: 14px;
}
.nam-tcard-full__row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(220,238,255,0.55);
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nam-tcard-full__row span:last-child {
  color: var(--n-glow-100);
  font-family: var(--font-heading); font-weight: 600;
  letter-spacing: 0.04em;
}
.nam-tcard-full__cta {
  font-family: var(--font-heading); font-weight: 500;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--n-glow-300);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nam-tcard-full:hover .nam-tcard-full__cta { color: #fff; }
.nam-tcard-full--legal { box-shadow: inset 3px 0 0 var(--status-legal); }
.nam-tcard-full--pcac { box-shadow: inset 3px 0 0 var(--accent); }
.nam-tcard-full--not-legal { box-shadow: inset 3px 0 0 var(--status-not-legal); }

/* Cite us */
.nam-cite {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nam-cite__code {
  background: var(--n-cosmos);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 24px 28px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7;
  color: rgba(220,238,255,0.78);
}
.nam-cite__code span { color: var(--n-glow-300); }

/* CTA strip */
.nam-cta-strip {
  background: var(--n-cosmos);
  padding: 96px 48px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nam-cta-strip__title {
  font-family: var(--font-heading); font-weight: 300;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0 0 12px;
}
.nam-cta-strip__sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 15px; color: rgba(220,238,255,0.65);
  margin: 0 0 32px;
}
.nam-cta-strip__actions {
  display: inline-flex; gap: 14px; align-items: center;
}

/* Responsive */
@media (max-width: 1180px) {
  .nam-protocols-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nam-protocols-grid { grid-template-columns: 1fr; }
  .nam-method { grid-template-columns: 1fr; gap: 28px; }
  .nam-biopanel { grid-template-columns: 1fr; }
  .nam-decision { grid-template-columns: 1fr; }
  .nam-decision__step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 24px; }
  .nam-grades { grid-template-columns: repeat(2, 1fr); }
  .nam-board { grid-template-columns: repeat(2, 1fr); }
  .nam-outcomes { grid-template-columns: 1fr; }
  .nam-about-grid { grid-template-columns: 1fr 1fr; }
  .nam-story { grid-template-columns: 1fr; gap: 48px; }
  .nam-story > div:first-child { position: static; }
  .nam-founders { grid-template-columns: 1fr; }
  .nam-tgrid { grid-template-columns: repeat(2, 1fr); }
  .nam-cite { grid-template-columns: 1fr; }
  .nam-tracker-filter__inner { flex-wrap: wrap; }
  .nam-tsearch { width: 100%; margin-left: 0; }
}
