/* T34 RedditCallTracking — redditcalltracking.com
   Reddit-mimic VARIANT for newcomers. Distinct from the planned sibling
   calltrackingreddit.com (site 33, pure sentiment aggregation, Reddit-orange):
   this site is a beginner's onboarding guide built from what Redditors recommend.
   Palette: cool app gray #E8EBEE / white cards / EMERALD #047857 accent
            (dark #065F46, soft #D1FAE5) / ink #16201C.
   Typography: IBM Plex Sans throughout (display + body).
   Layout: forum-thread "feed" of card posts with vote pills + a sticky right
   sidebar. Signature visuals: a "Most-mentioned tools" tally/leaderboard and
   beginner-oriented thread digest cards. No Reddit-orange anywhere. */

:root {
  --bg: #E8EBEE;
  --bg-card: #FFFFFF;
  --bg-soft: #F2F5F4;
  --bg-soft-2: #E6EFEB;
  --ink: #16201C;
  --ink-soft: #2C3A34;
  --muted: #677770;
  --rule: #DCE3E0;
  --rule-strong: #C5D1CB;
  --accent: #047857;
  --accent-dark: #065F46;
  --accent-soft: #D1FAE5;
  --accent-faint: #ECFDF5;
  --upvote: #047857;
  --warn: #B45309;
  --bad: #B91C1C;
  --max: 1180px;
  --max-narrow: 760px;
  --max-prose: 720px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 1.4em 0 .5em;
  font-weight: 600;
}
h1 { font-size: 38px; line-height: 1.14; letter-spacing: -0.02em; margin-top: 0; font-weight: 600; }
h2 { font-size: 26px; line-height: 1.24; margin-top: 1.7em; font-weight: 600; }
h3 { font-size: 20px; line-height: 1.32; font-weight: 600; margin-top: 1.5em; }
h4 { font-size: 16px; line-height: 1.35; font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1.1em; }
strong { font-weight: 600; color: var(--ink); }
hr.divider { border: 0; border-top: 1px solid var(--rule); margin: 2.4em 0; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 29px; }
  h2 { font-size: 22px; }
  h3 { font-size: 19px; }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 20px; }
.container-prose { max-width: var(--max-prose); margin: 0 auto; padding: 0 20px; }

/* === Header / brand (forum top bar) === */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 11px; padding-bottom: 11px; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--accent-dark); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-words { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.brand-tag { font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 22px; font-size: 14.5px; font-weight: 500; }
.nav a { color: var(--ink-soft); text-decoration: none; }
.nav a:hover { color: var(--accent-dark); }
.nav .btn-sm { color: #fff; }
.nav-toggle {
  display: none; background: var(--bg-soft); border: 1px solid var(--rule);
  border-radius: 999px; padding: 7px 15px; font-weight: 600; cursor: pointer; color: var(--ink);
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    display: none; position: absolute; top: 60px; left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--rule);
    flex-direction: column; gap: 0; padding: 8px 20px 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px 0; border-bottom: 1px solid var(--rule); width: 100%; }
  .nav a:last-child { border-bottom: 0; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 11px 22px;
  border-radius: 999px; font-weight: 600; text-decoration: none;
  font-size: 14.5px; letter-spacing: 0.005em; transition: background .12s, box-shadow .12s, transform .12s;
  border: 1px solid transparent; font-family: 'IBM Plex Sans', sans-serif;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-card); color: var(--ink); border-color: var(--rule-strong); }
.btn-secondary:hover { background: var(--bg-soft); color: var(--accent-dark); }
.btn-sm { padding: 8px 16px; font-size: 13.5px; }

/* === Breadcrumbs === */
.breadcrumb { font-size: 13.5px; color: var(--muted); padding: 14px 0; font-weight: 500; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* === Hero (pinned-post style) === */
.hero {
  background: var(--bg-card);
  padding: 30px 0 28px;
  border-bottom: 1px solid var(--rule);
}
.hero .container { max-width: var(--max-narrow); }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-faint); border: 1px solid var(--accent-soft); color: var(--accent-dark);
  padding: 5px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.hero .eyebrow::before {
  content: "\1F4CC"; font-size: 12px;
}
.hero h1 { margin-bottom: 14px; max-width: 19ch; }
.hero .lede { font-size: 18.5px; color: var(--ink-soft); max-width: 60ch; margin-bottom: 22px; }
.hero-ctas { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 560px; }
.hero-stats .stat {
  background: var(--bg-soft); border: 1px solid var(--rule); border-radius: 12px;
  padding: 14px 16px;
}
.hero-stats .stat-num { font-family: 'IBM Plex Sans', sans-serif; font-size: 24px; font-weight: 600; color: var(--accent-dark); line-height: 1; }
.hero-stats .stat-lbl { font-size: 12px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* === Two-column feed + sidebar layout === */
.feed-wrap { display: grid; grid-template-columns: 1fr 312px; gap: 26px; align-items: start; }
@media (max-width: 940px) { .feed-wrap { grid-template-columns: 1fr; } }

/* === Sidebar (sticky) === */
.sidebar { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 940px) { .sidebar { position: static; } }
.widget {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px;
  overflow: hidden;
}
.widget .widget-head {
  background: var(--accent-faint); border-bottom: 1px solid var(--rule);
  padding: 12px 16px; font-size: 12px; font-weight: 600; color: var(--accent-dark);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.widget .widget-body { padding: 14px 16px; font-size: 14px; color: var(--ink-soft); }
.widget .widget-body p { margin: 0 0 10px; }
.widget .widget-body p:last-child { margin: 0; }
.widget ul { margin: 0; padding-left: 18px; font-size: 14px; }
.widget ul li { margin: 6px 0; }

/* === Signature: Most-mentioned tools leaderboard / tally === */
.tally { list-style: none; margin: 0; padding: 6px 0; }
.tally li {
  display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center;
  padding: 9px 16px; border-bottom: 1px solid var(--rule); font-size: 14px;
}
.tally li:last-child { border-bottom: 0; }
.tally .t-rank { font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.tally li.lead .t-rank { color: var(--accent-dark); }
.tally .t-name a { font-weight: 600; color: var(--ink); text-decoration: none; }
.tally .t-name a:hover { color: var(--accent-dark); }
.tally .t-name .t-tag {
  display: inline-block; margin-left: 6px; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--accent);
  padding: 1px 7px; border-radius: 999px; vertical-align: middle;
}
.tally .t-count {
  font-variant-numeric: tabular-nums; font-weight: 600; color: var(--accent-dark);
  font-size: 13px; white-space: nowrap;
}
.tally .t-bar { grid-column: 2 / 4; height: 5px; background: var(--bg-soft-2); border-radius: 999px; overflow: hidden; margin-top: 2px; }
.tally .t-bar span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

/* === Forum-style post / thread cards (review-grid reuse) === */
.review-grid { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 0; overflow: hidden; transition: border-color .14s;
  display: grid; grid-template-columns: 52px 1fr;
}
.review-card:hover { border-color: var(--rule-strong); }
.review-card::before {
  content: ""; grid-row: 1; grid-column: 1;
  background: var(--bg-soft); border-right: 1px solid var(--rule);
}
.review-card .vote {
  grid-column: 1; grid-row: 1; align-self: stretch;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 16px 0; gap: 3px; color: var(--muted); font-size: 11px; font-weight: 600;
}
.review-card .vote .arrow { color: var(--upvote); font-size: 15px; line-height: 1; }
.review-card .vote .score-num { color: var(--accent-dark); font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.review-card .post-body { grid-column: 2; grid-row: 1; padding: 16px 20px 18px; }
.review-card .rank {
  display: inline-block; font-size: 11px; font-weight: 600; color: var(--muted);
  background: var(--bg-soft-2); padding: 2px 10px; border-radius: 999px;
  letter-spacing: 0.03em; margin-bottom: 9px;
}
.review-card.featured { border-color: var(--accent); border-width: 1.5px; }
.review-card.featured .rank { background: var(--accent); color: #fff; }
.review-card h3 { margin: 0 0 5px; font-size: 19px; }
.review-card h3 a { color: var(--ink); text-decoration: none; }
.review-card h3 a:hover { color: var(--accent-dark); }
.review-card .one-liner { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.review-card .stat-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 12px; font-size: 12.5px; }
.review-card .stat-row span { color: var(--muted); }
.review-card .stat-row strong { color: var(--ink); display: block; font-size: 15px; font-weight: 600; }
.review-card a.read { font-weight: 600; font-size: 14px; }
@media (max-width: 520px) {
  .review-card { grid-template-columns: 42px 1fr; }
  .review-card .post-body { padding: 14px 15px 16px; }
}

/* === Picks table (leaderboard table on homepage) === */
.picks-table {
  width: 100%; border-collapse: collapse; margin: 22px 0;
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px;
  overflow: hidden; font-size: 14.5px;
}
.picks-table th, .picks-table td {
  padding: 14px 16px; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--rule);
}
.picks-table th {
  background: var(--bg-soft); font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase;
}
.picks-table tr:last-child td { border-bottom: 0; }
.picks-table .tool { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.picks-table .tool strong { font-weight: 600; }
.picks-table .top-pick { background: var(--accent-faint); }
.picks-table .top-pick td:first-child { border-left: 3px solid var(--accent); padding-left: 13px; }
.picks-table .badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.picks-table td.rank-cell { width: 48px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--muted); font-size: 16px; }
.picks-table td.score-cell { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--accent-dark); }
@media (max-width: 760px) {
  .picks-table { font-size: 13.5px; }
  .picks-table th, .picks-table td { padding: 11px 9px; }
  .picks-table .col-best, .picks-table .col-price { display: none; }
}

/* === Beginner thread digest cards (signature) === */
.thread-digest { display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.digest-card {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 18px 20px;
}
.digest-card .meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted); margin-bottom: 9px;
}
.digest-card .meta .sub {
  font-weight: 600; color: var(--accent-dark); background: var(--accent-faint);
  padding: 2px 9px; border-radius: 999px;
}
.digest-card .meta .dot { color: var(--rule-strong); }
.digest-card h3 { margin: 0 0 7px; font-size: 18px; }
.digest-card p { margin: 0 0 8px; font-size: 14.5px; color: var(--ink-soft); }
.digest-card p:last-child { margin: 0; }
.digest-card .takeaway {
  margin-top: 10px; padding: 10px 14px; background: var(--accent-faint);
  border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0;
  font-size: 13.5px; color: var(--accent-dark);
}
.digest-card .takeaway strong { color: var(--accent-dark); }

/* === TLDR / CTA blocks === */
.tldr {
  background: var(--bg-card); border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  border-radius: 12px; padding: 20px 22px; margin: 26px 0;
}
.tldr h4 {
  margin: 0 0 9px; font-size: 11px; color: var(--accent-dark);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li { margin: 7px 0; color: var(--ink-soft); }
.tldr .overall {
  margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--rule);
  font-weight: 700; color: var(--accent-dark); font-size: 14px; letter-spacing: 0.02em;
}

.tldr-cta {
  background: var(--accent-faint);
  border: 1px solid var(--accent-soft);
  border-radius: 14px; padding: 22px; margin: 22px 0; text-align: center;
}
.tldr-cta .btn { margin-bottom: 8px; }
.tldr-cta .subtext { font-size: 12.5px; color: var(--ink-soft); margin: 0; font-weight: 500; }

.tldr-crosslink {
  background: var(--bg-soft); border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 15px 18px; margin: 20px 0;
  font-size: 14.5px; color: var(--ink-soft);
}
.tldr-crosslink p { margin: 0; }
.tldr-crosslink strong { color: var(--ink); }

.cta-card {
  background: var(--accent-dark); color: #fff;
  border-radius: 14px; padding: 28px 26px; margin: 32px 0; text-align: center;
}
.cta-card h4 { font-family: 'IBM Plex Sans', sans-serif; color: #fff; margin: 0 0 13px; font-size: 18px; font-weight: 600; }
.cta-card .btn-primary { background: #fff; color: var(--accent-dark); }
.cta-card .btn-primary:hover { background: var(--accent-faint); color: var(--accent-dark); }
.cta-card .subtext { color: #BBE9D7; font-size: 12.5px; margin: 12px 0 0; }

/* === Scorecard (community sentiment bars) === */
.scorecard {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 18px 20px; margin: 22px 0;
}
.scorecard h4 { margin: 0 0 13px; font-size: 13px; color: var(--ink); letter-spacing: 0.01em; }
.score-row { display: grid; grid-template-columns: 200px 1fr 44px; gap: 13px; align-items: center; margin: 10px 0; font-size: 13.5px; }
.score-row .lbl { color: var(--ink-soft); font-weight: 500; }
.score-row .bar { background: var(--bg-soft-2); height: 9px; border-radius: 999px; overflow: hidden; }
.score-row .bar span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.score-row .bar span.green { background: linear-gradient(90deg, #10B981, var(--accent)); }
.score-row .num { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--accent-dark); text-align: right; font-size: 13.5px; }
@media (max-width: 600px) { .score-row { grid-template-columns: 1fr 44px; } .score-row .bar { grid-column: 1 / -1; } }

/* === Quote / sentiment callout (paraphrased community voice) === */
.quote-callout {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  background: var(--bg-soft); border: 1px solid var(--rule);
  border-radius: 14px; padding: 16px 20px; margin: 22px 0;
}
.quote-callout .q-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.quote-callout .q-body { font-size: 14.5px; color: var(--ink-soft); }
.quote-callout .q-body p { margin: 0 0 6px; }
.quote-callout .q-body p:last-child { margin: 0; }
.quote-callout .q-src { font-size: 12px; color: var(--muted); font-weight: 600; }

/* === Pros/Cons === */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.proscons .pros, .proscons .cons {
  border: 1px solid var(--rule); border-radius: 14px; padding: 18px 20px; background: var(--bg-card);
}
.proscons .pros { border-left: 3px solid var(--accent); }
.proscons .cons { border-left: 3px solid var(--warn); }
.proscons h4 { margin: 0 0 9px; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.proscons ul { padding-left: 19px; margin: 0; }
.proscons li { margin: 6px 0; font-size: 14px; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

/* === Pricing list === */
.pricing-list { list-style: none; padding: 0; margin: 18px 0; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; background: var(--bg-card); border: 1px solid var(--rule);
  border-radius: 12px; margin: 8px 0;
}
.pricing-list .plan { font-weight: 600; }
.pricing-list .price { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--accent-dark); font-size: 14.5px; }

/* === Article body === */
.article-header { padding: 30px 0 8px; }
.article-header .kicker {
  display: inline-block; font-size: 11.5px; font-weight: 600;
  color: var(--accent-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.article-header .lede { font-size: 18.5px; color: var(--ink-soft); margin-bottom: 16px; max-width: 62ch; }
.byline-row {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted); margin-bottom: 8px;
}
.byline-row img { width: 36px; height: 36px; border-radius: 50%; }
.byline-row .sep { color: var(--rule-strong); }
.author-name { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--muted); }
.author-mention { position: relative; }
.author-card {
  display: none; position: absolute; top: 24px; left: 0; z-index: 10;
  background: var(--ink); color: #fff;
  padding: 13px 15px; border-radius: 12px; font-size: 13px;
  width: 290px; line-height: 1.55; box-shadow: 0 12px 28px rgba(22,32,28,.28);
}
.author-card strong { display: block; font-weight: 600; margin-bottom: 4px; color: #fff; }
.author-mention:hover .author-card,
.author-name:focus + .author-card { display: block; }

.article-body { max-width: var(--max-prose); margin: 0 auto; }
.article-body p, .article-body ul, .article-body ol, .article-body details, .article-body table { margin-bottom: 1.1em; }
.article-body details {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 12px;
  padding: 14px 18px;
}
.article-body details summary { cursor: pointer; font-weight: 600; color: var(--ink); padding: 2px 0; }
.article-body details[open] summary { margin-bottom: 8px; }

.tool-screenshot {
  margin: 28px 0; border: 1px solid var(--rule); border-radius: 14px; overflow: hidden;
  background: var(--bg-card);
}
.tool-screenshot img { width: 100%; display: block; }
.tool-screenshot figcaption {
  font-size: 12.5px; color: var(--muted); padding: 11px 16px;
  background: var(--bg-soft); border-top: 1px solid var(--rule);
}

/* === Section chrome === */
.section { padding: 48px 0; }
.section.alt { background: var(--bg-card); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.section-head { margin-bottom: 22px; max-width: 66ch; }
.section-head .kicker {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--accent-dark); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 9px;
}
.section-head h2 { margin-top: 0; }

/* Newcomer "where do I start" decision list */
.decision-tree { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 14px; }
.decision-tree .pick {
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 14px; padding: 18px;
}
.decision-tree .pick .if {
  font-size: 11.5px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px;
}
.decision-tree .pick strong { display: block; font-family: 'IBM Plex Sans', sans-serif; font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.decision-tree .pick p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* === Methodology / sentiment weight bars === */
.weight-row { display: grid; grid-template-columns: 220px 1fr 50px; gap: 14px; align-items: center; margin: 10px 0; font-size: 13.5px; }
.weight-row .bar { background: var(--bg-soft-2); height: 9px; border-radius: 999px; overflow: hidden; }
.weight-row .bar span { display: block; height: 100%; background: var(--accent); }
.weight-row .pct { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--accent-dark); text-align: right; font-size: 13px; }
@media (max-width: 600px) { .weight-row { grid-template-columns: 1fr 50px; } .weight-row .bar { grid-column: 1 / -1; } }

/* === Footer === */
.site-footer {
  background: var(--bg-card); color: var(--ink-soft); padding: 44px 0 24px; margin-top: 48px;
  border-top: 1px solid var(--rule);
}
.site-footer h4 { font-family: 'IBM Plex Sans', sans-serif; color: var(--ink); font-size: 13.5px; margin: 0 0 13px; letter-spacing: 0.02em; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.site-footer ul li { margin: 7px 0; }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent-dark); }
.disclosure { padding-top: 20px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.disclosure strong { color: var(--ink); }

/* References */
.references { font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 30px; }
.references a { color: var(--ink-soft); }

.muted { color: var(--muted); }

/* === Reviews dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer; display: inline-flex; align-items: center; gap: 4px; text-decoration: none;
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE"; font-size: 0.72em; margin-left: 3px; opacity: 0.6; color: currentColor;
}
.nav-dropdown:hover > .dropdown-trigger,
.nav-dropdown:focus-within > .dropdown-trigger { color: var(--accent-dark); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-card); border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 14px 32px rgba(22,32,28,.12);
  min-width: 270px; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 18px; font-size: 14px; color: var(--ink); text-decoration: none; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--accent-faint); color: var(--accent-dark); }
.nav-dropdown-menu .pick-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 2px 8px; border-radius: 999px; margin-left: 12px;
}
@media (max-width: 860px) {
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: none; box-shadow: none; background: transparent;
    padding: 4px 0 0 14px; min-width: 0; margin-top: 4px; border-left: 2px solid var(--rule);
  }
  .nav-dropdown-menu a { padding: 8px 0; font-size: 13px; color: var(--muted); }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--accent); }
}
