/* ============================================================
   MYRO — science.css
   The clinical layer (Nomio-inspired): evidence band, molecule,
   pathway diagram, lactate curve, specimen strip, soil reveal,
   dosing protocol, research index, athlete wall.
   ============================================================ */

/* ============================================================
   EVIDENCE BAND — "Based on clinical science"
   ============================================================ */
.evidence { background: var(--paper); border-block: 1px solid var(--line-soft); }
.evidence__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.evidence__copy h2 { margin-top: 16px; }
.evidence__copy .lead { margin-top: 20px; }
.evidence__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--paper); padding: clamp(22px, 2.6vw, 34px); position: relative; min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; }
.stat .k { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.stat .v { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.03em; color: var(--espresso); margin-top: 18px; }
.stat .v small { font-size: .42em; color: var(--lab); letter-spacing: 0; font-family: var(--mono); margin-left: 6px; vertical-align: super; }
.stat .l { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.4; }
.stat--dark { background: var(--espresso); }
.stat--dark .v { color: var(--bone); }
.stat--dark .l { color: rgba(239,233,222,.6); }
.stat--dark .k { color: var(--gold-2); }
.evidence__note { font-family: var(--mono); font-size: 10.5px; color: var(--ink-faint); letter-spacing: .04em; margin-top: 14px; line-height: 1.6; }

/* ============================================================
   MOLECULE — sulforaphane render + annotations
   ============================================================ */
.molecule { overflow: hidden; position: relative; background:
  radial-gradient(90% 70% at 70% 30%, #fbf9f4 0%, var(--paper) 40%, var(--bone) 100%); }
.molecule__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.molecule__copy { max-width: 500px; }
.molecule__copy h2 { margin: 16px 0 22px; }
.molecule__art { position: relative; aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); background: #F4F0E7; }
.molecule__art img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; animation: molFloat 10s ease-in-out infinite; }
@keyframes molFloat { 0%,100% { transform: scale(1.02) translateY(0); } 50% { transform: scale(1.05) translateY(-10px); } }
.molecule__art .formula {
  position: absolute; left: 22px; top: 20px; font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-soft); display: flex; flex-direction: column; gap: 4px;
}
.molecule__art .formula b { font-family: var(--display); font-size: 1.5rem; letter-spacing: -.02em; color: var(--espresso); font-weight: 500; }
.molecule__art .formula b sub { font-size: .55em; }
.molecule__annot { position: absolute; inset: 0; pointer-events: none; }
.molecule__annot span {
  position: absolute; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); display: flex; align-items: center; gap: 10px; white-space: nowrap;
  opacity: 0; transform: translateY(6px); transition: all .7s var(--ease);
}
.molecule__annot span::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.molecule.in .molecule__annot span { opacity: 1; transform: none; }
.molecule__annot .a1 { top: 30%; left: 6%; transition-delay: .15s; }
.molecule__annot .a2 { top: 22%; right: 6%; flex-direction: row-reverse; transition-delay: .3s; }
.molecule__annot .a3 { bottom: 16%; left: 40%; transition-delay: .45s; }
.molecule__art .scale {
  position: absolute; right: 22px; bottom: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint); display: flex; align-items: center; gap: 10px;
}
.molecule__art .scale i { width: 44px; height: 1px; background: var(--ink-faint); display: block; position: relative; }
.molecule__art .scale i::before, .molecule__art .scale i::after { content: ""; position: absolute; top: -3px; width: 1px; height: 7px; background: var(--ink-faint); }
.molecule__art .scale i::after { right: 0; }

/* ============================================================
   PATHWAY — how ITC works, four-step mechanism
   ============================================================ */
.pathway { background: var(--espresso); color: var(--bone); overflow: hidden; }
.pathway .eyebrow { color: var(--gold-2); }
.pathway h2 { color: var(--bone); }
.pathway .lead { color: rgba(239,233,222,.62); }
.pathway__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.pathway__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid rgba(239,233,222,.12); }
.pathway__media img { width: 100%; height: 100%; object-fit: cover; }
.pathway__media .cap {
  position: absolute; left: 18px; bottom: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone); background: rgba(20,17,11,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(239,233,222,.2); border-radius: 100px; padding: 8px 14px;
}
.steps { display: grid; grid-template-columns: 1fr; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: start;
  padding: 26px 0; border-top: 1px solid rgba(239,233,222,.14); position: relative;
  opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.pathway.in .step { opacity: 1; transform: none; }
.pathway.in .step:nth-child(2) { transition-delay: .1s; } .pathway.in .step:nth-child(3) { transition-delay: .2s; }
.pathway.in .step:nth-child(4) { transition-delay: .3s; } .pathway.in .step:nth-child(5) { transition-delay: .4s; }
.step:last-child { border-bottom: 1px solid rgba(239,233,222,.14); }
.step .n { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--gold-2); padding-top: 6px; }
.step .n::after { content: ""; display: block; width: 1px; height: 24px; background: linear-gradient(var(--gold-2), transparent); margin: 12px 0 0 1px; }
.step:last-child .n::after { display: none; }
.step h3 { color: var(--bone); font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 8px; }
.step h3 em { color: var(--lab-2); font-style: italic; }
.step p { color: rgba(239,233,222,.62); font-size: 14.5px; max-width: 52ch; }
.step .tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(239,233,222,.6);
  border: 1px solid rgba(239,233,222,.2); border-radius: 100px; padding: 7px 12px; white-space: nowrap; margin-top: 4px;
}
.step .tag.on { color: var(--espresso); background: var(--lab-2); border-color: var(--lab-2); }

/* ============================================================
   LACTATE CURVE — SVG chart drawn on reveal
   ============================================================ */
.curve { background: var(--paper); border-block: 1px solid var(--line-soft); }
.curve__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.curve__copy h2 { margin: 16px 0 20px; }
.chart { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #FBF9F4; padding: clamp(18px, 2.5vw, 30px); overflow: hidden; }
.chart__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.chart__legend { display: flex; gap: 18px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.chart__legend span { display: inline-flex; align-items: center; gap: 8px; }
.chart__legend i { width: 22px; height: 2px; display: inline-block; background: var(--ink-faint); }
.chart__legend i.itc { background: var(--lab); }
.chart__legend i.dash { background: repeating-linear-gradient(90deg, var(--ink-faint) 0 5px, transparent 5px 9px); }
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart .grid line { stroke: rgba(33,30,24,.08); stroke-width: 1; }
.chart .axis { font-family: var(--mono); font-size: 10px; fill: var(--ink-faint); letter-spacing: .1em; text-transform: uppercase; }
.chart .zone { fill: var(--lab-soft); opacity: 0; transition: opacity 1s var(--ease) .9s; }
.chart .line { fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.chart .line.placebo { stroke: var(--ink-faint); stroke-dasharray: 6 5; stroke-dashoffset: 0; opacity: 0; transition: opacity 1s var(--ease) .2s; }
.chart .line.itc { stroke: var(--lab); transition: stroke-dashoffset 2.2s var(--ease) .3s; }
.chart .pt { fill: var(--lab); opacity: 0; transition: opacity .5s var(--ease) 2.2s; }
.chart .callout { font-family: var(--mono); font-size: 10.5px; fill: var(--lab); letter-spacing: .1em; opacity: 0; transition: opacity .6s var(--ease) 2.3s; }
.chart.in .line.itc { stroke-dashoffset: 0; }
.chart.in .line.placebo, .chart.in .zone, .chart.in .pt, .chart.in .callout { opacity: 1; }
.chart__foot { margin-top: 12px; font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .06em; line-height: 1.6; }
.curve__list { margin-top: 26px; border-top: 1px solid var(--line); }
.curve__list li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.curve__list li .ic { font-family: var(--mono); color: var(--lab); font-size: 12px; }
.curve__list li b { display: block; font-weight: 500; color: var(--espresso); }
.curve__list li span { color: var(--ink-soft); font-size: 13.5px; }

/* ============================================================
   SPECIMEN STRIP — seed → day 3
   ============================================================ */
.specimen { background: var(--paper); }
.specimen__frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #F7F4EC; position: relative; }
.specimen__frame img { width: 100%; height: auto; display: block; mix-blend-mode: multiply;
  aspect-ratio: 16 / 6.2; object-fit: cover; object-position: 50% 45%; }
.specimen__ticks { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.specimen__ticks > div { padding: 16px 14px; border-left: 1px solid var(--line-soft); text-align: center; }
.specimen__ticks > div:first-child { border-left: none; }
.specimen__ticks b { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); }
.specimen__ticks span { display: block; font-family: var(--display); font-size: 1.15rem; color: var(--espresso); margin-top: 4px; }
.specimen__ticks .hi b { color: var(--lab); }
.specimen__ticks .hi span::after { content: " ↑"; color: var(--lab); }
.specimen__meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 18px; }

/* ============================================================
   SOIL — scroll-driven photo reveal (replaces the SVG sprouts)
   ============================================================ */
.soil { position: relative; background: #0f0d09; color: var(--bone); overflow: hidden; }
.soil__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: end start; }
.soil__img { position: absolute; inset: 0; }
.soil__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transform: scale(1.12); transition: transform .1s linear; }
.soil__mask { position: absolute; inset: 0; background: #0f0d09; transform-origin: top; will-change: transform; }
.soil__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,13,9,.55) 0%, rgba(15,13,9,0) 40%, rgba(15,13,9,.1) 70%, rgba(15,13,9,.85) 100%); }
.soil__copy { position: relative; z-index: 2; padding: 0 var(--gutter) clamp(50px, 8vh, 100px); max-width: 720px; }
.soil__copy .eyebrow { color: rgba(239,233,222,.75); }
.soil__copy h2 { color: var(--bone); margin-top: 16px; font-size: clamp(2.4rem, 6.5vw, 5.4rem); }
.soil__copy h2 em { color: var(--lab-2); }
.soil__copy .lead { color: rgba(239,233,222,.75); margin-top: 18px; }
.soil__hud {
  position: absolute; right: var(--gutter); bottom: clamp(50px, 8vh, 100px); z-index: 2;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(239,233,222,.7);
  text-align: right; display: grid; gap: 8px;
}
.soil__hud b { font-family: var(--display); font-size: 2rem; color: var(--bone); letter-spacing: -.02em; display: block; font-weight: 500; }
.soil__hud .bar { width: 160px; height: 2px; background: rgba(239,233,222,.2); margin-left: auto; position: relative; }
.soil__hud .bar i { position: absolute; left: 0; top: 0; bottom: 0; background: var(--lab-2); width: 0%; }

/* ============================================================
   PROTOCOL — through training, all the way to race day
   ============================================================ */
.protocol { background: var(--bone-2); }
.protocol__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.protocol__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; border: 1px solid var(--line-soft); }
.protocol__media img { width: 100%; height: 100%; object-fit: cover; }
.dose { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.dose > div { background: var(--paper); padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 24px); min-height: 250px; display: flex; flex-direction: column; }
.dose .k { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.dose h4 { font-family: var(--display); font-size: 1.35rem; margin-top: 8px; color: var(--espresso); font-weight: 500; }
.dose .bottles { display: flex; gap: 6px; margin: 24px 0 auto; height: 44px; align-items: flex-end; }
.dose .bottles i {
  width: 14px; height: 36px; border: 1.5px solid var(--clay); border-radius: 4px 4px 5px 5px; position: relative; display: block;
}
.dose .bottles i::before { content: ""; position: absolute; left: 3px; right: 3px; top: -5px; height: 4px; background: var(--clay); border-radius: 2px; }
.dose .bottles i.on { border-color: var(--espresso); background: linear-gradient(180deg, transparent 30%, var(--sand) 30%); }
.dose .bottles i.on::before { background: var(--espresso); }
.dose .bottles i.night { border-style: dashed; }
.dose .bottles i.none { border-color: var(--line); opacity: .5; }
.dose .t { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; }
.dose .t b { color: var(--espresso); font-weight: 400; }
.dose .race { background: var(--espresso); }
.dose .race .k { color: var(--gold-2); } .dose .race h4 { color: var(--bone); } .dose .race .t { color: rgba(239,233,222,.6); } .dose .race .t b { color: var(--bone); }
.dose .race .bottles i.on { border-color: var(--bone); background: linear-gradient(180deg, transparent 30%, rgba(239,233,222,.25) 30%); }
.dose .race .bottles i.on::before { background: var(--bone); }
.protocol__notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.protocol__notes > div { font-size: 13.5px; color: var(--ink-soft); padding-top: 14px; border-top: 1px solid var(--line); }
.protocol__notes b { display: block; color: var(--espresso); font-weight: 500; margin-bottom: 3px; }

/* ============================================================
   RESEARCH INDEX — the literature
   ============================================================ */
.research { background: var(--paper); }
.research__grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.research__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; position: relative; border: 1px solid var(--line-soft); }
.research__media img { width: 100%; height: 100%; object-fit: cover; }
.research__media .cap { position: absolute; left: 18px; bottom: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone); background: rgba(20,17,11,.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(239,233,222,.2); border-radius: 100px; padding: 8px 14px; }
.papers { border-top: 1px solid var(--line); }
.paper {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 20px; align-items: start;
  padding: 22px 0; border-bottom: 1px solid var(--line-soft); transition: background .3s;
}
.paper .n { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--gold); padding-top: 4px; }
.paper h3 { font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.45rem); color: var(--espresso); font-weight: 500; line-height: 1.15; }
.paper p { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; max-width: 58ch; }
.paper .meta { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
.paper .meta i { font-style: normal; color: var(--lab); }
.paper a.go {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--espresso);
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 14px; white-space: nowrap; transition: all .3s var(--ease); margin-top: 2px;
}
.paper a.go:hover { background: var(--espresso); color: var(--bone); border-color: var(--espresso); }
.research__disc { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .04em; line-height: 1.7; margin-top: 18px; max-width: 70ch; }

/* ============================================================
   ATHLETE WALL — trusted by people who suffer for it
   ============================================================ */
.athletes { background: var(--bone); }
.athletes__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: auto; gap: 18px; }
.ath { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); aspect-ratio: 4/5; }
.ath--wide { aspect-ratio: auto; min-height: 100%; }
.ath img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ath:hover img { transform: scale(1.04); }
.ath__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; background: linear-gradient(transparent, rgba(10,8,5,.75)); }
.ath__cap q { font-family: var(--display); font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.2; display: block; quotes: "“" "”"; }
.ath__cap .who { margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; display: flex; justify-content: space-between; gap: 10px; }
.ath__cap .who i { font-style: normal; color: var(--gold-2); }
.ath--wide .ath__cap q { font-size: clamp(1.3rem, 2.2vw, 1.9rem); max-width: 26ch; }
.athletes__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.athletes__row .disciplines { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.athletes__row .disciplines span::before { content: "◦ "; color: var(--gold); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .dose { grid-template-columns: repeat(2, 1fr); }
  .athletes__grid { grid-template-columns: 1fr 1fr; }
  .ath--wide { grid-column: 1 / -1; aspect-ratio: 16/10; }
}
@media (max-width: 820px) {
  .evidence__grid, .molecule__grid, .pathway__grid, .curve__grid, .protocol__grid, .research__grid { grid-template-columns: 1fr; }
  .molecule__art { order: -1; }
  .pathway__media, .protocol__media, .research__media { aspect-ratio: 16/10; }
  .step { grid-template-columns: 44px 1fr; }
  .step .tag { grid-column: 2; margin-top: 8px; justify-self: start; }
  .paper { grid-template-columns: 40px 1fr; }
  .paper a.go { grid-column: 2; justify-self: start; }
  .protocol__notes { grid-template-columns: 1fr; gap: 10px; }
  .specimen__frame img { aspect-ratio: 4 / 3; }
  .specimen__ticks { grid-template-columns: repeat(5, 1fr); }
  .specimen__ticks span { font-size: .95rem; }
  .specimen__ticks > div { padding: 12px 6px; }
  .soil__hud { display: none; }
  .soil__sticky { height: 90svh; }
}
@media (max-width: 560px) {
  .evidence__stats { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 140px; }
  .dose { grid-template-columns: 1fr 1fr; }
  .dose > div { min-height: 200px; }
  .athletes__grid { grid-template-columns: 1fr; }
  .specimen__ticks b { font-size: 8.5px; letter-spacing: .1em; }
}

/* ============================================================
   BENEFITS — AG1-style photo cards (desktop grid)
   ============================================================ */
.benefits2 { background: var(--bone); }
.bcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.4; background: var(--sand); margin: 0; }
.bcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bcard:hover img { transform: scale(1.04); }
.bcard figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: #fff; background: linear-gradient(transparent, rgba(10,8,5,.55) 38%, rgba(10,8,5,.85)); }
.bcard h3 { color: #fff; font-size: 1.5rem; margin-bottom: 7px; text-shadow: 0 1px 18px rgba(0,0,0,.4); }
.bcard p { font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,.88); }
.bfacts { margin-top: 22px; width: 100%; }
@media (max-width: 1000px) { .bcards { grid-template-columns: repeat(2, 1fr); } }

/* subscription: "first box includes" (desktop) */
.subs__includes { margin: 6px 0 18px; border-top: 1px solid var(--line); padding-top: 12px; }
.subs__inc-title { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.inc { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 9px 0; }
.inc b { display: block; font-size: 14px; font-weight: 500; }
.inc span { font-size: 12.5px; color: var(--ink-soft); }
.inc em { font-style: normal; font-family: var(--mono); font-size: 13px; white-space: nowrap; }
.inc em s { color: var(--ink-faint); margin-right: 6px; }
.inc.total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 12px; }
.inc.total b { font-size: 15px; }
.subs__checks { display: none; }
.dose__legend { display: none; }


/* ============================================================
   UGC — portrait clip rail (Organised-style)
   ============================================================ */
.ugc { background: var(--bone); overflow: hidden; }
.ugc__rail { margin-top: 4px; }
.ugc__row {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px var(--gutter) 8px;
}
.ugc__row::-webkit-scrollbar { display: none; }
.ugcard {
  position: relative; flex: 0 0 clamp(210px, 19vw, 280px); aspect-ratio: 9/16;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--sand);
  scroll-snap-align: start; padding: 0; border: none; cursor: pointer; display: block;
  transition: transform .5s var(--ease);
}
.ugcard:hover { transform: translateY(-4px); }
.ugcard img, .ugcard video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ugcard__scrim { position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(10,8,5,.72)); }
.ugcard__play {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(20,17,11,.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; color: #fff; font-size: 13px;
  transition: transform .35s var(--ease), background .3s;
}
.ugcard:hover .ugcard__play { transform: scale(1.08); background: rgba(20,17,11,.72); }
.ugcard video { opacity: 0; transition: opacity .5s var(--ease); }
.ugcard.live video { opacity: 1; }
.ugcard__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; text-align: left; color: #fff;
  transition: opacity .3s;
}
.ugcard__cap q { display: block; font-size: 15px; line-height: 1.35; quotes: "\201C" "\201D"; }
.ugcard__cap span {
  display: block; margin-top: 8px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75);
}
.ugc__head-side { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.ugc__tag { display: block; text-align: center; margin-top: 26px; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.ugc__tag b { color: var(--espresso); font-weight: 400; }
@media (max-width: 820px) {
  .ugcard { flex-basis: 66vw; border-radius: 14px; }
  .ugc__head-side { align-items: stretch; gap: 18px; }
  .ugc__head-side .btn { width: 100%; border-radius: 6px; }
}
