/* ============================================================
   THE UNDERNEATH SCORE — Skinnify leg-tone diagnostic
   Palette sampled from Skinnify's own product photography
   (#EFE5D9 is the literal seamless backdrop in their studio shots).
   ============================================================ */

:root {
  /* ground + ink */
  --stone:        #EFE5D9;
  --paper:        #FBF7F1;
  --paper-2:      #F5EDE2;
  --ink:          #16130F;
  --ink-2:        #3C352B;
  --muted:        #756B5D;
  --line:         rgba(22, 19, 15, .14);
  --line-soft:    rgba(22, 19, 15, .07);

  /* semantics: the muscle layer is either reached or it isn't */
  --engaged:      #1E5C4A;
  --engaged-ink:  #12483A;
  --engaged-wash: #DFEAE3;
  --dormant:      #A5661F;
  --dormant-wash: #F2E3CE;

  /* cross-section diagram */
  --xsec-bg:      #E2D7C8;
  --xsec-skin:    #E9D3BC;
  --xsec-fat:     #F1E5D4;
  --xsec-muscle:  #C6B6A2;
  --xsec-fiber:   rgba(22, 19, 15, .22);

  --shadow:       0 1px 2px rgba(22,19,15,.05), 0 8px 24px -12px rgba(22,19,15,.18);

  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --stone:      #141210;
    --paper:      #1D1A16;
    --paper-2:    #24201B;
    --ink:        #F1E9DD;
    --ink-2:      #D3C8B8;
    --muted:      #9B9081;
    --line:       rgba(241, 233, 221, .16);
    --line-soft:  rgba(241, 233, 221, .08);
    --engaged:      #63C3A4;
    --engaged-ink:  #8AD8BC;
    --engaged-wash: #1B302A;
    --dormant:      #E0A552;
    --dormant-wash: #332618;
    --xsec-bg:    #262119;
    --xsec-skin:  #4A3A2B;
    --xsec-fat:   #362C21;
    --xsec-muscle:#3D362C;
    --xsec-fiber: rgba(241, 233, 221, .22);
    --shadow:     0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.7);
  }
}

:root[data-theme="dark"] {
  --stone:      #141210;
  --paper:      #1D1A16;
  --paper-2:    #24201B;
  --ink:        #F1E9DD;
  --ink-2:      #D3C8B8;
  --muted:      #9B9081;
  --line:       rgba(241, 233, 221, .16);
  --line-soft:  rgba(241, 233, 221, .08);
  --engaged:      #63C3A4;
  --engaged-ink:  #8AD8BC;
  --engaged-wash: #1B302A;
  --dormant:      #E0A552;
  --dormant-wash: #332618;
  --xsec-bg:    #262119;
  --xsec-skin:  #4A3A2B;
  --xsec-fat:   #362C21;
  --xsec-muscle:#3D362C;
  --xsec-fiber: rgba(241, 233, 221, .22);
  --shadow:     0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--engaged);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- screens ---------- */

.screen { display: none; }
.screen.is-active { display: block; animation: rise .32s ease both; }

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

.wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-inline: 20px;
  padding-block: 28px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- masthead ---------- */

.brandline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2px;
}
.mark {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--stone);
  border-radius: 50%;
  padding-bottom: 2px;
}
.brandname {
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 15px;
}
.brandtag {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ---------- type ---------- */

.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--engaged);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(31px, 8.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--ink-2);
}
.display.sm { font-size: clamp(25px, 6.6vw, 31px); }

.qtitle {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 6.2vw, 29px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}

.lede { margin: 0; font-size: 16.5px; color: var(--ink-2); }
.body { margin: 0; color: var(--ink-2); }
.body b { color: var(--ink); }

.hint {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.qprompt {
  margin: 6px 0 0;
  font-weight: 600;
  font-size: 16px;
}

.footnote {
  margin: 8px 0 0;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- promise ---------- */

.promise {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promise-head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.promise-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.promise-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 2px;
  background: var(--engaged);
}
.promise-list b { color: var(--ink); font-weight: 600; }

/* ---------- intro tiles ---------- */

.tiles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 15px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.tile:hover { border-color: var(--ink); transform: translateX(2px); }
.tile-key {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  width: 22px; height: 22px;
  display: grid; place-items: center;
  flex: none;
}
.tile-label { line-height: 1.35; }

/* ---------- question options ---------- */

.rail {
  height: 2px;
  background: var(--line-soft);
  position: relative;
}
.rail-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--engaged);
  width: 0;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}

.qcount {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.opt {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: border-color .15s, background .15s, transform .12s;
}
.opt:hover { border-color: var(--ink); transform: translateX(2px); }
.opt.is-on {
  border-color: var(--engaged);
  background: var(--engaged-wash);
  box-shadow: inset 2px 0 0 var(--engaged);
}
.opt.is-on::after {
  content: "✓";
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--engaged);
  font-size: 14px;
  font-weight: 700;
}
.opt-note {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

.opts.sizes {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.opt.size {
  flex: 1 1 calc(25% - 6px);
  min-width: 68px;
  text-align: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  padding: 18px 6px;
}
.opt.size:hover { transform: translateY(-2px); }
.opt.size.is-on::after { content: none; }

/* ---------- buttons ---------- */

.cta {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: var(--ink);
  color: var(--stone);
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 16px 18px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: opacity .15s, transform .12s;
}
.cta:hover { opacity: .88; transform: translateY(-1px); }
.cta[disabled] { opacity: .32; cursor: not-allowed; transform: none; }
.cta.big { padding: 18px; font-size: 16px; }
.cta.buy {
  background: var(--engaged);
  border-color: var(--engaged);
  color: #fff;
}
:root[data-theme="dark"] .cta.buy { color: #08211A; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .cta.buy { color: #08211A; }
}

.skip {
  background: none;
  border: 0;
  font: inherit;
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 4px;
}

/* ---------- imagery ---------- */

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper-2);
}
.shot img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.shot-cap {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.pull {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--engaged);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
}
.pull em { font-family: var(--serif); font-style: italic; color: var(--ink); }

/* ---------- stat row ---------- */

.statrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: 14px 10px;
  text-align: center;
}
.stat-num {
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat-cap {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- cross-section ---------- */

.xsec {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper);
}
.xsec svg { display: block; width: 100%; height: auto; }
.xsec .xsec-muscle { transition: fill .7s ease; }
.xsec .xsec-fibers line {
  transition: stroke .7s ease, stroke-width .7s ease;
  transform-origin: center;
}
.xsec[data-state="engaged"] .xsec-muscle { fill: var(--engaged); }
.xsec[data-state="engaged"] .xsec-fibers line {
  stroke: rgba(255,255,255,.62);
  animation: pulse 2.4s ease-in-out infinite;
}
.xsec[data-state="engaged"] .xsec-fibers line:nth-child(2n) { animation-delay: .3s; }
.xsec[data-state="engaged"] .xsec-fibers line:nth-child(3n) { animation-delay: .6s; }

@keyframes pulse {
  0%, 100% { opacity: .45; }
  50%      { opacity: 1; }
}

.xsec-keys {
  display: flex;
  gap: 16px;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.xsec-keys span { display: flex; align-items: center; gap: 6px; }
.k { width: 10px; height: 10px; border-radius: 2px; display: block; }
.k-skin   { background: var(--xsec-skin); }
.k-fat    { background: var(--xsec-fat); }
.k-muscle { background: var(--xsec-muscle); }

.xsec-caption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- cascade ---------- */

.cascade {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
  font-size: 15px;
}
.c-do  { color: var(--ink-2); }
.c-hit {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--engaged);
  align-self: center;
  text-align: right;
}

/* ---------- input ---------- */

.field {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}
.field::placeholder { color: var(--muted); }
.field:focus { outline: 2px solid var(--engaged); outline-offset: -1px; border-color: transparent; }

/* ---------- calc bars ---------- */

.bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.barrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
}
.bar-label { font-size: 14px; color: var(--ink-2); }
.bar-pct {
  font-family: var(--mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.bar-track {
  grid-column: 1 / -1;
  height: 3px;
  background: var(--line-soft);
  position: relative;
  overflow: hidden;
}
.bar-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--engaged);
  transition: width .9s cubic-bezier(.4,0,.2,1);
}

/* ---------- score ---------- */

.scoreblock {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.score-num {
  font-family: var(--serif);
  font-size: 72px;
  line-height: .86;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--dormant);
  flex: none;
}
.score-num.is-good { color: var(--engaged); }
.score-side { flex: 1; min-width: 0; padding-top: 4px; }
.score-unit {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.score-label {
  font-weight: 600;
  font-size: 16px;
  margin-top: 4px;
  line-height: 1.25;
}
.score-meter {
  height: 5px;
  background: var(--line-soft);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
.score-meter i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--dormant);
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}
.score-meter i.is-good { background: var(--engaged); }
.score-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.anchor {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- readout table ---------- */

.readout {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.ro-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  align-items: baseline;
}
.ro-row:last-child { border-bottom: 0; }
.ro-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
.ro-v { color: var(--ink); line-height: 1.4; }
.ro-v .flag { color: var(--dormant); font-weight: 600; }
.ro-v .ok   { color: var(--engaged); font-weight: 600; }

/* ---------- big number ---------- */

.bignum {
  background: var(--ink);
  color: var(--stone);
  border-radius: 3px;
  padding: 24px 20px;
  text-align: center;
}
.bignum-val {
  font-family: var(--mono);
  font-size: clamp(38px, 11vw, 52px);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  /* inherits --stone from .bignum, which inverts correctly in dark */
}
.bignum-cap {
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 12px;
  opacity: .82;
  max-width: 34ch;
  margin-inline: auto;
}
.bignum-math {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(128,124,116,.45);
  opacity: .62;
}

/* ---------- chart ---------- */

.chart {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  padding: 16px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.chart-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.chart-note { font-size: 11.5px; color: var(--muted); }
.chart-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}
.crow {
  display: grid;
  grid-template-columns: 46px 1fr 62px;
  gap: 10px;
  align-items: center;
}
.crow-day {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.crow-track { height: 14px; background: var(--line-soft); position: relative; }
.crow-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--engaged);
  transition: width .9s cubic-bezier(.4,0,.2,1);
}
.crow-val {
  font-family: var(--mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.chart-foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- prescription ---------- */

.rx {
  border: 1px solid var(--engaged);
  border-radius: 3px;
  overflow: hidden;
}
.rx-head {
  background: var(--engaged);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 14px;
}
:root[data-theme="dark"] .rx-head { color: #08211A; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .rx-head { color: #08211A; }
}
.rx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.rx-cell {
  background: var(--paper);
  padding: 14px;
}
.rx-cell.wide { grid-column: 1 / -1; }
.rx-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rx-v {
  font-size: 17px;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.25;
}
.rx-v small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 3px; }
.rx-why {
  margin: 0;
  padding: 14px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- reviews ---------- */

.reviews { display: flex; flex-direction: column; gap: 10px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 16px;
}
.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.review-who { font-weight: 600; font-size: 14px; }
.review-stars { color: var(--engaged); font-size: 13px; letter-spacing: .1em; }
.review-meta {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-body { font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.review-slot {
  border-style: dashed;
  background: transparent;
}
.review-slot .review-body { color: var(--muted); font-style: italic; }

/* ---------- offer ---------- */

.timer {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--dormant-wash);
  border: 1px solid var(--dormant);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink);
}
.timer b { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.timer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--dormant);
  flex: none;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.recap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.recap-cell { background: var(--paper); padding: 12px 10px; text-align: center; }
.recap-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.recap-v {
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}

.pricebox {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-line { display: flex; align-items: baseline; gap: 12px; }
.price-was {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-cap { font-size: 13.5px; color: var(--muted); margin-top: -8px; }
.incl {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
}
.incl li { padding-left: 22px; position: relative; line-height: 1.4; }
.incl li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--engaged);
  font-weight: 700;
  font-size: 13px;
}
.paynote {
  margin: 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- faq ---------- */

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  padding: 15px 0;
  font-weight: 600;
  font-size: 14.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 17px;
  color: var(--muted);
  flex: none;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0;
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- narrow ---------- */

@media (max-width: 360px) {
  .scoreblock { flex-direction: column; gap: 12px; }
  .score-num { font-size: 60px; }
  .ro-row { grid-template-columns: 1fr; gap: 3px; }
  .rx-grid { grid-template-columns: 1fr; }
  .crow { grid-template-columns: 40px 1fr 54px; }
}
