/* ============================================================
   Postureletics — marketing site
   Web extension of the Postureletics app design system.
   Premium monochrome minimalism: warm off-white, near-black,
   amber/green/red used ONLY as meaning. Inter (grotesque sans).
   ============================================================ */

:root {
  /* surfaces */
  --bg:        #F2F2F0;   /* warm off-white page */
  --paper:     #FFFFFF;   /* cards, modals, nav */
  --paper-2:   #FAFAF8;   /* subtle alt fill */
  --line:      #E4E4E0;   /* hairlines on warm bg */
  --line-2:    #DEDED9;

  /* ink */
  --ink:       #0E0E0E;   /* near-black text, primary button */
  --ink-soft:  #1A1A1A;   /* button hover */
  --muted:     #6B6B6B;   /* secondary text */
  --muted-2:   #6E6E6A;   /* tertiary / captions — darkened for WCAG AA on light bg */

  --amber:     #F5A800;   /* data, scores, stats — amber (large numerals) */
  --amber-ink: #B26A00;   /* amber text on light — deepened for legibility */
  --green:     #1FA86B;   /* ideal / correct */
  --green-ink: #157A4D;
  --red:       #E0442C;   /* deviation / problem */
  --red-ink:   #C13A24;

  /* radius */
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* shadow — very soft */
  --sh-1: 0 1px 2px rgba(14,14,14,.04), 0 4px 14px rgba(14,14,14,.04);
  --sh-2: 0 2px 6px rgba(14,14,14,.05), 0 18px 50px rgba(14,14,14,.08);
  --sh-phone: 0 8px 24px rgba(14,14,14,.10), 0 40px 90px rgba(14,14,14,.18);

  /* type */
  --font: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  /* layout */
  --maxw: 1100px;
  --gut: 24px;
  --nav-h: 72px;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--bg); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ───────── Typography ───────── */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
.display {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h-xl { font-size: clamp(30px, 4.2vw, 52px); letter-spacing: -0.03em; }
.h-lg { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.025em; }
.h-md { font-size: clamp(21px, 2.2vw, 26px); letter-spacing: -0.02em; line-height: 1.15; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
}
.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: 0.005em;
}
p { text-wrap: pretty; }
.muted { color: var(--muted); }

/* ───────── Layout ───────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.wrap-wide { max-width: 1240px; margin: 0 auto; padding: 0 var(--gut); }
section { position: relative; }
.section-pad { padding: clamp(48px, 5.5vw, 72px) 0; }
.section-pad-sm { padding: clamp(40px, 4.5vw, 56px) 0; }
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }
.prose-rule { border: none; border-top: 1px solid var(--line); margin: 36px 0; }
.legal-contents { margin: 24px 0 8px; }
.legal-contents h2 { margin-top: 0 !important; }
.prose ul.legal-toc li { padding-left: 0; }
.prose ul.legal-toc li::before { display: none; }

/* ───────── Buttons (pills) ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.975); }
.btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--primary:hover { background: var(--ink-soft); box-shadow: 0 8px 22px rgba(14,14,14,.22); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: rgba(14,14,14,.05); }
.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; padding: 0 12px; }
.btn--ghost:hover { color: var(--muted); }
.btn--sm { height: 46px; padding: 0 22px; font-size: 15px; }
.btn--lg { height: 60px; padding: 0 36px; font-size: 17px; }
.btn .ic { width: 19px; height: 19px; }

/* App store badges */
.badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-store {
  display: inline-flex; align-items: center; gap: 11px;
  height: 56px; padding: 0 22px 0 20px;
  background: var(--ink); color: #fff;
  border-radius: 14px;
  transition: transform .18s var(--ease), background .2s var(--ease);
}
.badge-store:hover { background: var(--ink-soft); transform: translateY(-1px); }
.badge-store svg { width: 24px; height: 24px; flex: none; }
.badge-store .bt { display: flex; flex-direction: column; line-height: 1.05; }
.badge-store .bt small { font-size: 10px; font-weight: 500; opacity: .72; letter-spacing: .02em; }
.badge-store .bt strong { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__in { max-width: 1240px; margin: 0 auto; height: 100%; padding: 0 var(--gut);
  display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.02em; font-size: 19px; }
.brand__mark { width: 19px; height: 28px; display: block; }
.brand__mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.footer .brand__mark img { filter: brightness(0) invert(1); }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(14,14,14,.05); }
.nav__link.is-active { color: var(--ink); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; }
/* condense the CTA on phones so it fits beside the burger */
@media (max-width: 540px) {
  .nav__in { gap: 10px; padding: 0 16px; }
  .nav__cta { gap: 2px; }
  .nav__cta .btn--primary.btn--sm { height: 40px; padding: 0 15px; font-size: 14px; }
}

/* mobile nav */
.mnav { display: none; }
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
    background: transparent; color: var(--ink);
  }
  .nav__burger:hover { background: rgba(14,14,14,.05); }
  .mnav {
    display: block; position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .mnav.open { opacity: 1; transform: none; pointer-events: auto; }
  .mnav a { display: block; padding: 14px 6px; font-size: 19px; font-weight: 600; border-bottom: 1px solid var(--line); }
  .mnav .btn { width: 100%; margin-top: 18px; }
}

/* ───────── Cards ───────── */
.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  border: 1px solid rgba(14,14,14,.04);
}
.card-pad { padding: clamp(24px, 3vw, 36px); }

/* ───────── Stats / data (amber) ───────── */
.stat-num {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* skeletal overlay colors */
.kp-green { stroke: var(--green); }
.kp-red { stroke: var(--red); }

/* segmented progress dashes */
.dashes { display: inline-flex; gap: 5px; align-items: center; }
.dashes i { width: 22px; height: 4px; border-radius: 2px; background: var(--line-2); display: block; }
.dashes i.on { background: var(--ink); }
.dashes i.amber { background: var(--amber); }

/* thin slider (decorative app echo) */
.slider { display: flex; align-items: center; gap: 0; height: 24px; }
.slider .track { flex: 1; height: 3px; border-radius: 2px; background: var(--line-2); position: relative; }
.slider .track .fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--ink); border-radius: 2px; }
.slider .knob { width: 18px; height: 18px; border-radius: 50%; background: var(--ink); margin-left: -9px; box-shadow: 0 1px 4px rgba(0,0,0,.25); }

/* pills / tags */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  height: 32px; padding: 0 14px; border-radius: var(--r-pill);
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.tag--red { color: var(--red-ink); border-color: color-mix(in srgb, var(--red) 30%, var(--line)); }
.tag--red .dot { background: var(--red); }
.tag--green { color: var(--green-ink); border-color: color-mix(in srgb, var(--green) 30%, var(--line)); }
.tag--green .dot { background: var(--green); }
.tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); }

/* star rating */
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }

/* ───────── Footnotes / citations ───────── */
.cite { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.cite sup { color: var(--amber-ink); font-weight: 700; }

/* ───────── Footer ───────── */
.footer { background: var(--ink); color: #EDEDEA; padding: clamp(56px, 7vw, 88px) 0 36px; }
.footer a { color: #BFBFBC; transition: color .18s var(--ease); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 40px 32px; }
.footer__col--brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer__col--brand .badges { justify-content: flex-start; }
.footer__addr { color: #8E8E8B; font-size: 13px; line-height: 1.6; margin: 22px 0 0; max-width: 30ch; }
.footer__col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: none; margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer .brand { color: #fff; }
.footer .brand__mark { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); color: #8E8E8B; font-size: 13.5px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: inline-flex; align-items: center; justify-content: center; }
.footer__social a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); }
.footer__social svg { width: 18px; height: 18px; }
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ───────── Scroll reveal ───────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-anim .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ───────── FAQ accordion ───────── */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; text-align: left;
  font-family: var(--font); font-size: clamp(18px, 2vw, 21px); font-weight: 700; letter-spacing: -.015em; color: var(--ink);
}
.faq__q .pm { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq__q .pm::before { left: 0; right: 0; top: 12px; height: 2px; }
.faq__q .pm::after { top: 0; bottom: 0; left: 12px; width: 2px; transition: transform .3s var(--ease); }
.faq__item.open .pm::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-in { padding: 0 50px 28px 4px; color: var(--muted); font-size: 17px; line-height: 1.6; }

/* ───────── iPhone frame ───────── */
.iphone {
  position: relative;
  width: 320px;
  aspect-ratio: 320 / 660;
  background: #0b0b0b;
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--sh-phone);
}
.iphone__screen {
  position: relative; width: 100%; height: 100%;
  background: var(--paper); border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
}
.iphone__notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 28px; background: #0b0b0b; border-radius: 16px; z-index: 5;
}
.statusbar { display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.statusbar .sb-r { display: flex; gap: 6px; align-items: center; }

/* utility */
.grid { display: grid; gap: 24px; }
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}
.nowrap { white-space: nowrap; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }

/* ============================================================
   Inner page templates: article (Library), comparison, about
   ============================================================ */

/* ── Page header (editorial) ── */
.page-head { padding: clamp(40px, 6vw, 72px) 0 clamp(24px, 3vw, 36px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--muted-2); }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .03em;
  color: var(--amber-ink); margin-bottom: 18px; }

/* ── Byline ── */
.byline { display: flex; align-items: center; gap: 14px; }
.byline__av { width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: linear-gradient(160deg,#cfcdc6,#a9a69e); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.byline__meta b { font-size: 15px; display: block; }
.byline__meta span { font-size: 13px; color: var(--muted); }
.byline__meta .verified { display: inline-flex; align-items: center; gap: 5px; }
.byline__meta .verified svg { width: 14px; height: 14px; color: var(--green); }

/* ── Article layout ── */
.article-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(32px,5vw,64px); align-items: start; }
.prose { max-width: 680px; }
.prose > * + * { margin-top: 26px; }
.prose p { font-size: 18.5px; line-height: 1.65; color: var(--ink-2, #1f1f1f); color: #232323; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.025em; margin-top: 52px; }
.prose h3 { font-size: 21px; letter-spacing: -.02em; margin-top: 38px; }
.prose ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.prose ul li { position: relative; padding-left: 30px; font-size: 18px; line-height: 1.6; color: #232323; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.prose strong { font-weight: 700; color: var(--ink); }
.prose a.inline { color: var(--ink); text-decoration: underline; text-decoration-color: var(--amber); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.prose figure { margin: 40px 0; }
.prose figure img, .prose figure .figbox { border-radius: var(--r-lg); overflow: hidden; }
.prose figcaption { margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.pullquote { border: none; margin: 48px 0; padding: 0 0 0 28px; border-left: 3px solid var(--amber);
  font-size: clamp(22px, 2.6vw, 28px); line-height: 1.32; letter-spacing: -.02em; font-weight: 600; color: var(--ink); }
.callout { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; }
.callout h4 { font-size: 16px; margin-bottom: 8px; }
.callout p { font-size: 16px; color: var(--muted); margin: 0; }

/* sidebar sticky quiz card */
.aside { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.quizcard { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 30px 28px; }
.quizcard .qscore { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.quizcard .qscore b { font-size: 40px; font-weight: 800; letter-spacing: -.04em; color: var(--amber); line-height: 1; }
.quizcard h4 { color: #fff; font-size: 20px; letter-spacing: -.02em; margin-bottom: 10px; }
.quizcard p { color: #B9B9B5; font-size: 14.5px; margin: 0 0 22px; line-height: 1.5; }
.quizcard .btn { width: 100%; background: #fff; color: var(--ink); border-color: #fff; }
.quizcard .btn:hover { background: #ededea; }
.aside .toc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; }
.aside .toc h5 { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--muted); margin: 0 0 14px; }
.aside .toc a { display: block; font-size: 14.5px; color: var(--muted); padding: 6px 0; line-height: 1.4; }
.aside .toc a:hover { color: var(--ink); }
@media (max-width: 920px) {
  .article-grid { grid-template-columns: 1fr; }
  .aside { position: static; }
  .aside .toc { display: none; }
}

/* end-of-article CTA band */
.endcta { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(32px,4vw,48px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.endcta h3 { font-size: clamp(22px,2.6vw,28px); letter-spacing: -.025em; }
.endcta p { color: var(--muted); margin: 8px 0 0; max-width: 40ch; }

/* related cards */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rcard { display: block; }
.rcard__img { aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden; background: linear-gradient(160deg,#d8d6cf,#b8b5ac); margin-bottom: 16px; }
.rcard__cat { font-size: 12px; font-weight: 700; letter-spacing: .03em; color: var(--amber-ink); }
.rcard h4 { font-size: 18px; letter-spacing: -.015em; margin-top: 8px; line-height: 1.25; transition: color .18s var(--ease); }
.rcard:hover h4 { color: var(--muted); }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }

/* ── Comparison table ── */
.cmp-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--paper); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
table.cmp thead th { background: var(--ink); color: #fff; font-size: 15px; font-weight: 700; text-align: left;
  padding: 20px 22px; letter-spacing: -.01em; vertical-align: bottom; }
table.cmp thead th.feat { width: 30%; }
table.cmp thead th .pill { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 600; color: #B9B9B5; }
table.cmp thead th.win { position: relative; }
table.cmp thead th.win::after { content: "Our pick"; position: absolute; top: 10px; right: 16px; font-size: 10px; font-weight: 700;
  letter-spacing: .04em; color: var(--ink); background: var(--amber); padding: 3px 8px; border-radius: 999px; }
table.cmp tbody td, table.cmp tbody th { padding: 18px 22px; border-top: 1px solid var(--line); font-size: 15px; vertical-align: top; }
table.cmp tbody th { text-align: left; font-weight: 700; color: var(--ink); }
table.cmp tbody td { color: var(--muted); }
table.cmp tbody td.win { background: color-mix(in srgb, var(--amber) 9%, var(--paper)); color: var(--ink); font-weight: 600; }
table.cmp .yes { color: var(--green-ink); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
table.cmp .no { color: var(--muted-2); display: inline-flex; align-items: center; gap: 6px; }
table.cmp .yes svg, table.cmp .no svg { width: 16px; height: 16px; }
table.cmp tbody tr:hover td:not(.win) { background: var(--paper-2); }

/* Comparison table → stacked cards on mobile (avoids horizontal scroll) */
@media (max-width: 760px) {
  .cmp-wrap { overflow-x: visible; border: none; background: transparent; border-radius: 0; }
  table.cmp { min-width: 0; width: 100%; }
  table.cmp thead { display: none; }
  table.cmp, table.cmp tbody { display: block; }
  table.cmp tbody tr {
    display: block; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden; margin-bottom: 16px;
  }
  table.cmp tbody tr > th {
    display: block; padding: 14px 18px 12px; border-top: none;
    font-size: 16px; color: var(--ink); background: var(--paper-2);
  }
  table.cmp tbody td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
    padding: 12px 18px; border-top: 1px solid var(--line); text-align: right; color: var(--ink);
  }
  table.cmp tbody td::before {
    content: attr(data-label); flex: 0 1 auto; min-width: 0;
    color: var(--muted-2); font-weight: 600; font-size: 13px; text-align: left;
  }
  table.cmp tbody td.win { font-weight: 600; }
  table.cmp .yes, table.cmp .no { justify-content: flex-end; text-align: right; }
}

/* roundup item cards */
.roundup { display: flex; flex-direction: column; gap: 18px; }
.runit { display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: center; padding: 24px 26px; }
.runit__rank { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.runit__rank.top { background: var(--ink); color: var(--amber); }
.runit h3 { font-size: 20px; letter-spacing: -.02em; }
.runit p { color: var(--muted); font-size: 15px; margin: 6px 0 0; max-width: 52ch; }
.runit__score { text-align: right; }
.runit__score b { font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: var(--amber); }
.runit__score span { display: block; font-size: 11px; color: var(--muted); }
@media (max-width: 700px) { .runit { grid-template-columns: 48px 1fr; } .runit__score { grid-column: 2; text-align: left; margin-top: 6px; } }

/* ── About ── */
.about-hero h1 { font-size: clamp(38px,5.5vw,68px); letter-spacing: -.035em; max-width: 16ch; }
.about-portrait { aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(160deg,#d8d6cf,#b6b3aa); }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.about-stat b { font-size: clamp(36px,4.5vw,56px); font-weight: 800; letter-spacing: -.04em; color: var(--ink); line-height: 1; display: block; }
.about-stat b .amber { color: var(--amber); }
.about-stat b span { font-size: inherit; color: inherit; display: inline; margin: 0; }
.about-stat > span { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.tline { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); }
.tline__yr { font-size: 20px; font-weight: 800; color: var(--amber-ink); letter-spacing: .02em; }
.tline h3 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 8px; }
.tline p { color: var(--muted); font-size: 16px; margin: 0; max-width: 56ch; }
@media (max-width: 640px){ .about-stats{ grid-template-columns:1fr; gap:18px;} .tline{ grid-template-columns:1fr; gap:6px;} }
