/* ============================================================
   NGS ADVISORY — Design Tokens
   Cool precision palette · serif + sans pairing
   ============================================================ */

:root {
  /* ---- Surface / neutrals (cool blue-gray) ---- */
  --bg:           #EEF1F4;
  --bg-2:         #E4E8ED;
  --bg-3:         #DCE1E7;
  --paper:        #F7F8FA;
  --ink:          #0B1220;
  --ink-2:        #1B2536;
  --ink-3:        #38445A;
  --muted:        #6B7689;
  --muted-2:      #8A94A6;
  --line:         #C9D0DA;
  --line-2:       #D9DEE6;
  --line-soft:    rgba(11, 18, 32, 0.08);

  /* ---- Accents ---- */
  --blue:         #2B6CB0;   /* clinical/medical blue */
  --blue-deep:    #1E4E7E;
  --blue-soft:    #DCE7F2;
  --gold:         #B8862F;   /* evidence amber */
  --gold-soft:    #EFE3C5;
  --gold-deep:    #8C6620;

  /* ---- Semantic ---- */
  --driver:       #1E4E7E;   /* primary driver mutation */
  --resistance:   #B8862F;   /* resistance / amber */
  --passenger:    #8A94A6;   /* contextual */
  --positive:     #3F7D5F;
  --alert:        #B25842;

  /* ---- Type ---- */
  --serif:    "Newsreader", Georgia, serif;
  --sans:     "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:     "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --display:  "Playfair Display", "Newsreader", Georgia, serif; /* editorial accent only */

  /* ---- Geometry ---- */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 10px;

  /* ---- Shadow / depth ---- */
  --shadow-sm: 0 1px 2px rgba(11,18,32,0.04), 0 1px 1px rgba(11,18,32,0.03);
  --shadow-md: 0 6px 24px -8px rgba(11,18,32,0.12), 0 2px 6px rgba(11,18,32,0.05);
  --shadow-lg: 0 24px 60px -20px rgba(11,18,32,0.22), 0 8px 24px -8px rgba(11,18,32,0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---- Typography utility ---- */
.serif { font-family: var(--serif); }
.sans  { font-family: var(--sans); }
.mono  { font-family: var(--mono); }
.display { font-family: var(--display); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow__num { color: var(--blue); }

/* Display accent — italic Playfair in deep clinical blue. Used inside
   headings to call out a key word, e.g. "Your NGS report <em>decoded</em>". */
.accent-em {
  font-style: italic;
  font-family: var(--display);
  color: var(--blue-deep);
}

/* ---- Color utilities ---- */
.text-muted   { color: var(--muted); }
.text-muted-2 { color: var(--muted-2); }
.text-ink-3   { color: var(--ink-3); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(44px, 6.2vw, 88px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 1.6vw, 26px); line-height: 1.2;  letter-spacing: -0.01em; }

p  { margin: 0; color: var(--ink-2); }

/* ---- Container ---- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---- Section spacing ---- */
.section {
  padding: clamp(72px, 10vw, 140px) 0;
  border-top: 1px solid var(--line-soft);
}

/* Trim the oversized top gap directly under the sticky header. Targets the
   first content block on every page (hero or plain .section); when the thin
   audience strip leads, the hero that follows it is trimmed instead. Inter-
   section rhythm below is left untouched. */
.site-main > :first-child:not(.aud-strip),
.site-main > .aud-strip:first-child + * {
  padding-top: clamp(36px, 4.5vw, 64px);
}

/* ---- Divider ---- */
.rule { height: 1px; background: var(--line-soft); }

/* ---- Striped placeholder (for imagery) ---- */
.placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(43, 108, 176, 0.06) 0 8px,
      rgba(43, 108, 176, 0.10) 8px 16px
    ),
    var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  border-radius: var(--radius);
}
.placeholder::after {
  content: "";
  position: absolute; inset: 8px;
  border: 1px dashed rgba(11,18,32,0.15);
  pointer-events: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.4); }

.btn-link {
  padding: 0;
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 2px;
}

/* ---- Tag / chip ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-3);
  background: var(--paper);
}
.tag.tier-1 { color: var(--gold-deep); border-color: var(--gold); background: var(--gold-soft); }
.tag.tier-2 { color: var(--blue-deep); border-color: var(--blue); background: var(--blue-soft); }
.tag.tier-3 { color: var(--muted); border-color: var(--line); background: var(--bg-2); }

/* ---- Tier indicator bar (left side of evidence cards) ---- */
.tier-bar { width: 3px; align-self: stretch; }
.tier-bar.t1 { background: var(--gold); }
.tier-bar.t2 { background: var(--blue); }
.tier-bar.t3 { background: var(--muted-2); }

/* ---- Reveal animation (visible by default; only animate in when motion is allowed) ---- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.7s cubic-bezier(.2,.7,.2,1) both; }
}
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }
.delay-5 { animation-delay: 0.40s; }

/* ---- Subtle dotted bg used in some panels ---- */
.dotted {
  background-image: radial-gradient(rgba(11,18,32,0.10) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: -1px -1px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  position: relative;
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 3.5px);
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  opacity: 0.7;
}

/* ---- Floating contact ----
 * The .floating-whatsapp + .scrolltop styles live ONLY in site-chrome.css
 * (always loaded, single source of truth). A duplicate here used to override
 * the coordinated scroll-top positioning on full pages — do not re-add it. */

/* ---- Misc ---- */
.kbd {
  font-family: var(--mono);
  font-size: 10.5px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink-3);
}

::selection { background: var(--blue-soft); color: var(--ink); }

/* Responsive helpers */
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================================
   Translation / pinned scrollytelling
   One section, one card, one progress timeline, one content area
   whose copy + visual swap when ScrollTrigger advances activeIndex.
   ============================================================ */
.translation-stage-section { position: relative; }

.translation-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 64px;
}
.translation-head__title { margin-top: 18px; max-width: 920px; }
.translation-head__hint {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.stage-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-md);
}

.stage-progress {
  position: relative;
  padding: 8px 0 32px;
}
.stage-progress__line,
.stage-progress__fill {
  position: absolute;
  top: 30px;
  height: 1px;
  left: calc(10% + 12px);
}
.stage-progress__line {
  right: calc(10% + 12px);
  background: var(--line);
  z-index: 0;
}
.stage-progress__fill {
  width: 0;
  background: var(--ink);
  z-index: 1;
  transition: width 0.5s cubic-bezier(.2, .7, .2, 1);
}
.stage-progress__dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 2;
}

.stage-dot {
  background: none;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stage-dot__circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s ease, box-shadow 0.25s ease;
}
.stage-dot.is-past .stage-dot__circle {
  background: var(--ink-3);
  border-color: var(--ink);
}
.stage-dot.is-active .stage-dot__circle {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.18);
  box-shadow: 0 0 0 6px rgba(11, 18, 32, 0.06);
}
.stage-dot__num {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 14px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.stage-dot__label {
  font-size: 17px;
  margin-top: 6px;
  color: var(--ink-3);
  transition: color 0.2s, font-weight 0.2s;
}
.stage-dot.is-active .stage-dot__label {
  color: var(--ink);
  font-weight: 500;
}
.stage-dot__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* Single content panel. React re-keys this node by activeIndex so each
   step replays the entry animation. The min-height keeps the card from
   jumping while the visual on the right swaps in. */
.stage-content {
  display: none;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  min-height: 320px;
}
.stage-content.is-current {
  display: grid;
  animation: stage-rise 0.45s cubic-bezier(.2, .7, .2, 1) both;
}
.stage-content__left {
  padding: 32px 36px 8px 0;
  border-right: 1px solid var(--line);
}
.stage-content__right { padding: 32px 0 8px 36px; }
.stage-content__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stage-content__title { font-size: 26px; margin-bottom: 16px; }
.stage-content__desc {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 460px;
}

@keyframes stage-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.translation-foot {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.translation-foot__item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.translation-foot__title {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

/* Mobile: drop the timeline labels and stack the content vertically. */
@media (max-width: 820px) {
  .translation-head { grid-template-columns: 1fr; }
  .translation-head__hint { display: none; }
  .stage-card { padding: 28px 20px; }
  .stage-progress { padding: 8px 0 20px; }
  .stage-progress__line,
  .stage-progress__fill { top: 18px; }
  .stage-dot__num,
  .stage-dot__label,
  .stage-dot__sub { display: none; }
  .stage-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .stage-content__left {
    border-right: none;
    padding: 24px 0 0 0;
  }
  .stage-content__right {
    padding: 24px 0 0 0;
    border-top: 1px solid var(--line);
  }
  .translation-foot { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-progress__fill { transition: none; }
  .stage-dot__circle { transition: none; }
  .stage-content { animation: none; }
}

/* ---- Mutation bubble hover (precision-targeting) ---- */
.mutation-bubble:hover,
.mutation-bubble.is-active {
  box-shadow: 0 6px 24px -8px rgba(11, 18, 32, 0.25) !important;
  transform: scale(1.1) !important;
}

/* ---- LOT node expand/collapse (treatment-timeline) ---- */
.lot-detail { display: none; }
.lot-node.is-open .lot-detail { display: grid; animation: stage-rise 0.3s ease both; }
.lot-node.is-open .lot-toggle { background: var(--bg-2); border-color: var(--ink); }

/* ---- Audience tile hover ---- */
.audience-tile { background: transparent; }
.audience-tile__num { color: rgba(247,248,250,0.5); }
.audience-tile__cta { color: var(--paper); border-bottom: 1px solid var(--paper); }
.audience-tile:hover,
.audience-tile.is-active { background: rgba(247,248,250,0.04); }
.audience-tile:hover .audience-tile__num,
.audience-tile.is-active .audience-tile__num { color: var(--gold); }
.audience-tile:hover .audience-tile__cta,
.audience-tile.is-active .audience-tile__cta { color: var(--gold); border-bottom-color: var(--gold); }

/* ---- Evidence tier strata expand ---- */
.tier-strata .tier-cards { display: none; }
.tier-strata.is-open .tier-cards { display: grid; animation: stage-rise 0.3s ease both; }
.tier-strata.is-open .tier-plus { transform: rotate(45deg); }

/* ---- FAQ accordion (template-parts/faq.php) ---- */
.faq-section { background: var(--paper); }
.faq-section__title {
  margin-top: 18px;
  max-width: 940px;
}
.faq-list {
  margin-top: 48px;
  max-width: 880px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 4px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.faq-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-toggle:hover .faq-question {
  color: var(--blue-deep);
}
.faq-question {
  font-size: 18px;
  transition: color 0.15s ease;
}
.faq-icon {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}
.faq-body {
  padding-bottom: 22px;
  padding-right: 40px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.faq-item .faq-body { display: none; }
.faq-item.is-open .faq-body { display: block; animation: stage-rise 0.25s ease both; }
.faq-item .faq-toggle .faq-icon-close { display: none; }
.faq-item.is-open .faq-toggle .faq-icon-open { display: none; }
.faq-item.is-open .faq-toggle .faq-icon-close { display: inline-block; }
@media (max-width: 760px) {
  .faq-body { padding-right: 4px; }
  .faq-question { font-size: 16px; }
}

/* ============================================================
   Section: Hero (template-parts/hero.php)
   ============================================================ */
.hero {
  padding-top: 96px;
  padding-bottom: 64px;
}
.hero__title {
  margin-top: 22px;
  max-width: 1080px;
}
.hero__lede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: end;
}
.hero__lede-text {
  font-size: 18px;
  line-height: 1.55;
  max-width: 620px;
  color: var(--ink-3);
}
.hero__lede-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { border-right: none; padding-right: 0; }
.hero__stat-big {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero__stat-sub {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .hero { padding-top: 64px; padding-bottom: 48px; }
  .hero__lede {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 36px;
    align-items: stretch;
  }
  .hero__lede-actions { justify-content: flex-start; }
  .hero__stats {
    margin-top: 56px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stat:nth-child(2) { border-right: none; padding-right: 0; }
  .hero__stat:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
  }
  .hero__stat:nth-child(4) { border-top: 1px solid var(--line); }
  .hero__stat-big { font-size: 30px; }
}

/* ============================================================
   Section: Final CTA (template-parts/cta.php)
   ============================================================ */
.cta-section { background: var(--paper); }
.cta-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.cta-section__title {
  margin-top: 18px;
  max-width: 720px;
}
.cta-section__lede {
  margin-top: 22px;
  font-size: 16px;
  color: var(--ink-3);
  max-width: 580px;
}

.cta-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 14px;
}
.cta-form__heading {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.cta-form input[type="text"],
.cta-form input[type="email"] {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cta-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 18, 32, 0.06);
}
.cta-form__submit {
  margin-top: 6px;
  justify-content: center;
}
.cta-form__fine {
  font-size: 10.5px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  .cta-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cta-form { padding: 22px; }
}

/* ============================================================
   Shared section primitives — used across most template-parts.
   ============================================================ */
.section--bg     { background: var(--bg); }
.section--bg-2   { background: var(--bg-2); }
.section--paper  { background: var(--paper); }
.section--ink    { background: var(--ink); color: var(--paper); }
.section--ink h2,
.section--ink h3 { color: var(--paper); }

.section__title {
  margin-top: 18px;
  max-width: 940px;
}
.section__title--narrow { max-width: 720px; }
.section__title--wide   { max-width: 980px; }

.section__lede {
  margin-top: 22px;
  max-width: 720px;
  font-size: 16px;
  color: var(--ink-3);
}

.section__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
}
.section-hint {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
@media (max-width: 760px) {
  .section__head {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }
  .section__head .section-hint { display: none; }
}

/* ============================================================
   Section: Process (template-parts/process.php)
   ============================================================ */
.process-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px;
  position: relative;
  min-height: 220px;
}
.process-step__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.28;
  line-height: 1;
}
.process-step__eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.process-step__title {
  font-size: 17px;
  margin-bottom: 10px;
}
.process-step__desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (max-width: 1000px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Section: Differentiators (template-parts/differentiators.php)
   ============================================================ */
.diff-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.diff-card {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.18s;
}
.diff-card:hover { background: var(--bg-2); }
.diff-card__num {
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.diff-card__title {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.diff-card__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Section: Audiences (template-parts/audiences.php)
   ============================================================ */
.audience-eyebrow { color: var(--muted-2); }
.audience-title__faded { color: rgba(247, 248, 250, 0.5); }
.audience-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(247, 248, 250, 0.15);
  border-bottom: 1px solid rgba(247, 248, 250, 0.15);
}
.audience-tile {
  padding: 40px 32px;
  cursor: pointer;
  transition: background 0.2s;
  border-right: 1px solid rgba(247, 248, 250, 0.15);
}
.audience-tile:last-child { border-right: none; }
.audience-tile__num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.audience-tile__title {
  font-size: 26px;
  color: var(--paper);
  margin-bottom: 14px;
}
.audience-tile__copy {
  font-size: 14px;
  color: rgba(247, 248, 250, 0.7);
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 80px;
}
.audience-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 500;
}
.audience-tile__mono {
  margin-top: 26px;
  font-size: 10.5px;
  color: rgba(247, 248, 250, 0.4);
  letter-spacing: 0.1em;
}
@media (max-width: 760px) {
  .audience-grid { grid-template-columns: 1fr; }
  .audience-tile { border-right: none; border-bottom: 1px solid rgba(247, 248, 250, 0.15); }
  .audience-tile:last-child { border-bottom: none; }
}

/* ============================================================
   Section: Compare (template-parts/compare.php)
   ============================================================ */
.compare-head { margin-bottom: 56px; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.compare-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.compare-card--after {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-lg);
}
.compare-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.compare-card__stamp {
  font-size: 10px;
  color: var(--muted);
}
.compare-card__stamp--after { color: var(--gold-deep); }
.compare-card__title {
  font-size: 22px;
  margin-bottom: 16px;
}
.compare-list {
  margin-top: 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.compare-list__item {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
}
.compare-list__item--after { color: var(--ink-2); }
.compare-list__dash {
  color: var(--muted-2);
  font-family: var(--mono);
}
.compare-list__check { margin-top: 2px; }
.compare-list__check--blue { color: var(--blue); }
.compare-list__check--gold { color: var(--gold); }
@media (max-width: 760px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Section: Deliverables (template-parts/deliverables.php)
   ============================================================ */
.deliverables-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.deliverable-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.deliverable-card__head {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deliverable-card__head--blue { background: var(--blue-deep); }
.deliverable-card__title {
  font-size: 18px;
  color: var(--paper);
}
.deliverable-card__list {
  list-style: none;
  padding: 8px 24px 24px;
  margin: 0;
}
.deliverable-card__item {
  padding: 10px 0;
  font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  display: flex;
  gap: 10px;
}
.deliverable-card__item:last-child { border-bottom: none; }
.deliverable-card__bullet {
  font-size: 11px;
  color: var(--muted);
  width: 24px;
  flex-shrink: 0;
}
.tag--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.tag--gold-soft {
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-color: var(--gold);
}
@media (max-width: 760px) { .deliverables-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Section: Team (template-parts/team.php)
   ============================================================ */
.team-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 20px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--blue-deep);
}
.team-card__name {
  font-size: 20px;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.6;
}
.team-card__bio + .team-card__bio { margin-top: 12px; }
@media (max-width: 540px) {
  .team-card { grid-template-columns: 1fr; }
  .team-card__avatar { margin: 0; }
}

/* ============================================================
   Section: Pricing (template-parts/pricing.php)
   ============================================================ */
.pricing-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 980px;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-lg);
}
.pricing-card__badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
}
.pricing-card__tier {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.pricing-card__name {
  font-size: 26px;
  margin-top: 6px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pricing-card__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
  min-height: 56px;
}
.pricing-card__price-row {
  margin-top: 18px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-card__amount {
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing-card__currency {
  font-size: 12px;
  color: var(--muted);
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.pricing-card__feature::before {
  content: "•";
  color: var(--blue);
  margin-top: 2px;
}
.pricing-card__cta {
  margin-top: 22px;
  justify-content: center;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Section: Multi-platform (template-parts/multi-platform.php)
   ============================================================ */
.mp-card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.mp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mp-case-title {
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.mp-case-text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.mp-case-text:last-of-type { margin-bottom: 0; }
.mp-case-text strong { color: var(--ink); }
.mp-case-text strong.is-gold-deep { color: var(--gold-deep); }
.mp-case-text .mp-highlight {
  color: var(--blue-deep);
  font-weight: 500;
}
.mp-fine {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.mp-rows {
  display: grid;
  gap: 12px;
}
.mp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 3px solid var(--muted-2);
}
.mp-row--gold { border-left-color: var(--gold); }
.mp-row--blue { border-left-color: var(--blue); }
.mp-row__label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.mp-row__detail {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.mp-row__status {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  color: var(--muted-2);
}
.mp-row__status--gold { color: var(--gold); }
.mp-row__status--blue { color: var(--blue); }
.mp-callout {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .mp-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

/* ============================================================
   Section: Evidence Layers (template-parts/evidence-layers.php)
   ============================================================ */
.tier-shell {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 8px;
}
.tier-strata {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted-2);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.tier-strata--gold { border-left-color: var(--gold); background: var(--gold-soft); }
.tier-strata--blue { border-left-color: var(--blue); background: var(--blue-soft); }
.tier-strata--muted { background: var(--bg-2); }
.tier-strata.is-open { background: var(--paper); box-shadow: var(--shadow-md); }
.tier-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
.tier-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: -4px; }
.tier-toggle__left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tier-toggle__num {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--muted-2);
}
.tier-toggle__num--gold { color: var(--gold); }
.tier-toggle__num--blue { color: var(--blue); }
.tier-toggle__head {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.tier-toggle__sub {
  font-size: 12.5px;
  color: var(--ink-3);
}
.tier-toggle__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tier-plus {
  transition: transform 0.25s;
  color: var(--ink-3);
  display: inline-flex;
}
.tier-cards {
  padding: 0 24px 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tier-evidence-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 16px;
  display: flex;
  border-radius: var(--radius);
}
.tier-evidence-card .tier-bar { margin-right: 14px; }
.tier-evidence-card__body { flex: 1; }
.tier-evidence-card__gene {
  font-size: 16px;
  margin-bottom: 2px;
}
.tier-evidence-card__text {
  font-size: 13px;
  color: var(--ink-2);
}
.tier-evidence-card__refs {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
}
@media (max-width: 760px) {
  .tier-shell { padding: 18px 18px 4px; }
  .tier-cards { grid-template-columns: 1fr; padding: 0 16px 16px; }
  .tier-toggle { padding: 16px; }
  .tier-toggle__num { font-size: 28px; }
}

/* ============================================================
   Section: Precision Targeting (template-parts/precision-targeting.php)
   ============================================================ */
.precision-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.precision-radial {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.precision-radial__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mutation-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mutation-bubble--driver    { border-color: var(--blue-deep); }
.mutation-bubble--co        { border-color: var(--blue); }
.mutation-bubble--modifier  { border-color: var(--gold); }
.mutation-bubble--passenger { border-color: var(--muted-2); opacity: 0.7; }
.mutation-bubble__gene {
  color: var(--ink);
  line-height: 1;
}
.mutation-bubble__variant {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 3px;
}
.driver-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
}
.driver-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.driver-panel__score { font-size: 11px; color: var(--ink); }
.driver-panel__gene {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.driver-panel__variant {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
}
.driver-panel__desc {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
}
.driver-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.driver-panel__more {
  align-self: flex-start;
  margin-top: auto;
}
.precision-legend {
  margin-top: 24px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--ink-3);
}
.precision-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.precision-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}
.precision-legend__dot--driver    { background: var(--blue-deep); }
.precision-legend__dot--co        { background: var(--blue); }
.precision-legend__dot--modifier  { background: var(--gold); }
.precision-legend__dot--passenger { background: var(--muted-2); }
@media (max-width: 900px) {
  .precision-board { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .precision-radial { max-width: 360px; }
  .driver-panel { min-height: 0; }
}

/* ============================================================
   Section: Decode-Flow stage internals (template-parts/decode-flow.php)
   Stage shells / stage-progress already exist; these are the inner
   stage-content__right widgets per stage.
   ============================================================ */
.raw-block {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.7;
  background: var(--bg-2);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-height: 220px;
  overflow: hidden;
  position: relative;
}
.raw-block__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-2));
}
.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.filter-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-2);
}
.filter-block--out {
  border-color: var(--ink);
  background: var(--paper);
}
.filter-block__head {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.filter-block--out .filter-block__head { color: var(--ink); }
.filter-block__chips {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
}
.filter-chip { height: 8px; }
.prio-grid { display: grid; gap: 8px; }
.prio-row {
  display: grid;
  grid-template-columns: 180px 1fr 60px 100px;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.prio-row:last-child { border-bottom: none; }
.prio-row__gene { font-size: 13px; color: var(--ink); }
.prio-bar {
  height: 8px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
}
.prio-bar__fill {
  height: 100%;
  transition: width 0.5s;
  background: var(--muted-2);
}
.prio-bar__fill--high { background: var(--blue); }
.prio-bar__fill--mid  { background: var(--blue-soft); }
.prio-row__score {
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
}
.prio-row__role {
  font-size: 11.5px;
  color: var(--muted);
  text-align: right;
}
.interpret-grid { display: grid; gap: 10px; }
.interpret-row {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  overflow: hidden;
}
.interpret-row__body { padding: 12px 14px; flex: 1; }
.interpret-row__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.interpret-row__gene { font-size: 13.5px; font-weight: 500; }
.interpret-row__text { font-size: 12.5px; color: var(--ink-3); }
.interpret-row__refs {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.decide-grid { display: grid; position: relative; }
.decide-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  position: relative;
}
.decide-row__rail { position: relative; }
.decide-row__chip {
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
}
.decide-row__line {
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: -16px;
  width: 1px;
  background: var(--line);
}
.decide-row__body { padding-bottom: 18px; }
.decide-row__drug { font-size: 18px; margin-bottom: 2px; }
.decide-row__meta { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   Section: Treatment Timeline (template-parts/treatment-timeline.php)
   ============================================================ */
.timeline-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.timeline-axis {
  padding: 32px 0 32px 28px;
  border-right: 1px solid var(--line);
  background: var(--bg-2);
}
.timeline-axis__list {
  position: relative;
  padding-left: 8px;
}
.timeline-axis__line {
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}
.timeline-axis__step {
  position: relative;
  padding: 16px 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.timeline-axis__dot {
  position: absolute;
  left: -12px;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}
.timeline-axis__step-label { padding-left: 8px; }
.timeline-body { padding: 32px; }
.lot-node {
  position: relative;
  padding-left: 32px;
  padding-bottom: 28px;
}
.lot-node:last-child { padding-bottom: 0; }
.lot-node__line {
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.lot-node__chip {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.lot-node__chip--high     { background: var(--ink); }
.lot-node__chip--med      { background: var(--blue); }
.lot-node__chip--emerging { background: var(--gold); }
.lot-toggle {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: inherit;
  transition: all 0.18s;
  cursor: pointer;
}
.lot-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.lot-toggle__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lot-toggle__heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.lot-toggle__heading h3 { font-size: 22px; }
.lot-toggle__cls {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.lot-toggle__rationale {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.lot-toggle__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.lot-toggle__conf {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.lot-toggle__conf--high     { color: var(--ink); }
.lot-toggle__conf--med      { color: var(--blue); }
.lot-toggle__conf--emerging { color: var(--gold); }
.lot-toggle__duration {
  font-size: 11px;
  color: var(--muted);
}
.lot-detail {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lot-detail__text {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.lot-detail__fork {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--gold-soft);
  border-left: 2px solid var(--gold);
  font-size: 12.5px;
}
.lot-detail__fork-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.lot-detail__fork-drug { font-weight: 500; }
.lot-detail__fork-note { color: var(--ink-3); }
.lot-detail__refs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lot-detail__ref {
  font-size: 12.5px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}
.lot-detail__ref-icon { color: var(--blue); display: inline-flex; }
.timeline-foot {
  margin-top: 18px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.eyebrow--gold-deep { color: var(--gold-deep); }
@media (max-width: 880px) {
  .timeline-shell { grid-template-columns: 1fr; }
  .timeline-axis { display: none; }
  .lot-detail { grid-template-columns: 1fr; }
  .timeline-body { padding: 20px; }
}

