/* PickWize site styles — Clean Minimalist (owner-approved design).
   Restrained greys, clean layout, white cards with subtle borders.
   Spec: docs/DESIGN.md.
*/

:root {
  --bg: #fafafa;
  --card: #ffffff;
  --border: #e4e4e7;
  --text: #18181b;
  --muted: #71717a;
  --faint: #a1a1aa;
  --link: #2563eb;
  --link-ink: #ffffff;
  --good: #16a34a;
  --good-bg: #f0fdf4;
  --good-line: #bbf7d0;
  --mid: #d97706;
  --mid-bg: #fffbeb;
  --mid-line: #fde68a;
  --bad: #dc2626;
  --bad-bg: #fef2f2;
  --bad-line: #fecaca;
  --radius: 8px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12151f;
    --card: #1a1f2e;
    --border: #343d55;
    --text: #f4f6ea;
    --muted: #a4adbf;
    --faint: #8892a6;
    --link: #7aa2ff;
    --link-ink: #12151f;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10;
  background: var(--text); color: var(--bg); padding: 10px 18px; font-weight: 600;
}
.skip-link:focus-visible { left: 0; }

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.brand { display: inline-flex; align-items: center; padding: 2px 0; }
.brand picture { display: block; }
.brand img { height: 50px; width: auto; display: block; }
@media (max-width: 620px) { .brand img { height: 38px; } }

.site-header nav { display: flex; gap: 8px; }
.site-header nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
}
.site-header nav a:hover { color: var(--text); text-decoration: none; background: var(--bg); }

main { max-width: 1200px; margin: 0 auto; padding: 16px 24px 64px; }

.hero { padding: 24px 0 12px; }
.hero h1 { font-size: 26px; font-weight: 700; letter-spacing: -.3px; line-height: 1.25; }
.hero p { color: var(--muted); font-size: 14px; margin-top: 8px; max-width: 62ch; }

/* Category Navigation Pills */
.cat-tabs { display: flex; gap: 8px; margin: 0; flex-wrap: wrap; }
.cat-tab {
  font-size: 13px; font-weight: 600; color: var(--text); padding: 6px 16px;
  border-radius: 999px; border: 1px solid var(--border); background: var(--card);
  cursor: pointer; transition: all 0.15s ease;
}
.cat-tab:hover { border-color: var(--text); }
.cat-tab.active { color: #ffffff; background: var(--link); border-color: var(--link); }

/* Home Page 3-Column Layout */
.home-grid {
  display: grid;
  grid-template-columns: 240px 1fr 280px;
  gap: 16px;
  margin: 20px 0 28px;
}
@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; }
}

.sidebar-card, .concept-card, .comparison-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.sidebar-section { margin-top: 14px; }
.sidebar-section h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 6px; }

.radio-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); margin-bottom: 6px; cursor: pointer;
}
.radio-label.disabled { opacity: 0.6; cursor: not-allowed; }

.concept-title { font-size: 19px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.hero-tagline { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }

.hero-highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.hero-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
}
.highlight-icon { font-size: 16px; margin-top: 1px; }
.hero-highlight-item strong { display: block; color: var(--text); font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.hero-highlight-item span { color: var(--muted); line-height: 1.4; }

.comp-hero-graphic { margin-bottom: 14px; }

.comp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.comp-card-header h3 { font-size: 14px; font-weight: 700; color: var(--text); margin: 0; }
.comp-count-pill {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 999px; background: var(--good-bg); color: var(--good); border: 1px solid var(--good-line);
}
.comp-subtext { font-size: 12px; color: var(--muted); margin-bottom: 12px; }

.comp-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.comp-item-link:hover {
  background: var(--card);
  border-color: var(--link);
}
.comp-icon-box {
  width: 32px; height: 32px; border-radius: 6px; background: rgba(37, 99, 235, 0.1);
  color: var(--link); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.comp-details { display: flex; flex-direction: column; gap: 2px; }
.comp-title { font-size: 13px; font-weight: 700; color: var(--text); }
.comp-meta { font-size: 11.5px; font-weight: 600; color: var(--link); }

.donation-banner {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--good);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.donation-header { margin-bottom: 6px; }
.shield-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--good); background: var(--good-bg); border: 1px solid var(--good-line);
  padding: 3px 10px; border-radius: 999px; display: inline-block;
}
.donation-banner p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }

/* Article Competitor Cards Grid */
.competitor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.competitor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.competitor-card-header a {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.competitor-card-header a:hover {
  color: var(--link);
}

.competitor-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.competitor-card-badge.good {
  background: var(--good-bg);
  color: var(--good);
  border: 1px solid var(--good-line);
}
.competitor-card-badge.mid {
  background: var(--mid-bg);
  color: var(--mid);
  border: 1px solid var(--mid-line);
}

.competitor-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.competitor-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.competitor-card-bullets li {
  font-size: 12.5px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.competitor-card-bullets li strong {
  color: var(--muted);
  font-weight: 600;
}

/* Product Summary Blocks in Articles */
.product-summary-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.product-summary-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);

}
.provider-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.product-summary-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--link);
}
.product-summary-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}

.product-summary-meta {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-item {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.meta-label {
  font-weight: 700;
  color: var(--muted);
  margin-right: 4px;
}
.meta-item.verdict {
  background: var(--good-bg);
  border: 1px solid var(--good-line);
  padding: 10px 14px;
  border-radius: 6px;
  margin-top: 6px;
  color: var(--good);
  font-weight: 600;
}
.meta-label.verdict-label {
  color: var(--good);
}

/* Article Markdown Tables */
article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
article table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--bg);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
article table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text);
  vertical-align: top;
}
article table tr:last-child td {
  border-bottom: none;
}
article table tr:hover td {
  background: rgba(0, 0, 0, 0.015);
}

/* Product Cards Grid */
.home-products-section { margin-top: 24px; }
.section-head { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin: 0 0 8px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 14px 0 28px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: all 0.15s ease;
}
.product-card.real-card.highlighted {
  border-color: var(--link);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}
.product-card-header h3 { font-size: 17px; font-weight: 700; color: var(--text); }
.product-card-header a { text-decoration: none; color: var(--text); }
.product-card-header a:hover { color: var(--link); }

.product-badge {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 4px;
}
.product-badge.best { background: var(--good-bg); color: var(--good); border: 1px solid var(--good-line); }
.product-badge.faint { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

.bench-badges-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.bench-badge { font-size: 11px; background: var(--good-bg); color: var(--good); border: 1px solid var(--good-line); padding: 2px 8px; border-radius: 4px; }

.product-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }

.pro-con-section {
  margin: 10px 0 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pro-con-list { list-style: none; padding: 0; margin: 0; }
.pro-con-list.pros li {
  position: relative; padding-left: 18px; font-size: 12.5px; color: var(--text); margin-bottom: 4px;
}
.pro-con-list.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: bold; }
.pro-con-list.cons li {
  position: relative; padding-left: 18px; font-size: 12.5px; color: var(--muted); margin-bottom: 4px;
}
.pro-con-list.cons li::before { content: "—"; position: absolute; left: 0; color: var(--bad); font-weight: bold; }

.btn-evidence {
  font-size: 12px; font-weight: 600; color: var(--link); background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2); padding: 6px 12px; border-radius: 6px; cursor: pointer;
  margin-bottom: 12px; text-align: center;
}
.btn-evidence:hover { background: rgba(37, 99, 235, 0.1); }

.product-scores-footer { border-top: 1px solid var(--border); padding-top: 10px; }
.product-score-wrapper { display: flex; align-items: baseline; gap: 3px; }
.product-score-num { font-size: 24px; font-weight: 800; color: var(--text); }
.product-score-of { font-size: 12px; color: var(--muted); }
.product-score-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

.score-bar { height: 4px; background: var(--border); border-radius: 2px; margin: 6px 0 4px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--link); }
.score-bar-fill.good-bar { background: var(--good); }
.score-bar-fill.mid-bar { background: var(--mid); }
.score-bar-fill.bad-bar { background: var(--bad); }

/* Situation Score Cards (Product Page) */
.score-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px; margin: 18px 0 24px;
}
.score-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; text-align: left; cursor: pointer; color: var(--text);
  font: inherit; width: 100%; transition: border-color .15s ease;
}
.score-card:hover { border-color: var(--link); }
.score-card.active { border-color: var(--text); }
.score-card .label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.score-card .value { font-size: 22px; font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.score-card .value .of { font-size: 12px; color: var(--muted); font-weight: 400; }

.score-card.good .score-bar-fill { background: var(--good); }
.score-card.mid .score-bar-fill { background: var(--mid); }
.score-card.bad .score-bar-fill { background: var(--bad); }

.methodology-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 28px 0 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.methodology-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.methodology-header h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.breakdown-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--link);
  border: 1px solid var(--border);
}

.methodology-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Executive Product Hero Card */
.product-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.product-title-row h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.product-category-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--link);
  border: 1px solid var(--border);
}

.product-hero-header p.lede {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.product-verdict-box {
  background: var(--good-bg);
  border: 1px solid var(--good-line);
  border-radius: 6px;
  padding: 14px 16px;
}
.verdict-headline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 4px;
}
.verdict-icon { font-size: 16px; margin-top: 1px; }
.verdict-subtext {
  font-size: 12px;
  color: var(--muted);
  margin-left: 24px;
}

/* Executive Article Hero Card */
.article-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.article-meta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.article-cat-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--good-bg);
  color: var(--good);
  border: 1px solid var(--good-line);
}

.article-date-badge {
  font-size: 12px;
  color: var(--muted);
}

.article-hero-card h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-byline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Dark Mode Toggle Button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  transition: all 0.15s ease;
}
.theme-toggle-btn:hover {
  background: var(--bg);
  border-color: var(--text);
}

/* Home Hero Section */
.home-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: center;
  padding: 24px 0 16px;
}
@media (max-width: 860px) {
  .home-hero-wrapper { grid-template-columns: 1fr; }
}

.home-hero-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.home-hero-title span {
  color: var(--link);
}

.home-hero-subtitle {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 58ch;
}

.home-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.trust-badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--good-bg);
  color: var(--good);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: 1px solid var(--good-line);
}
.trust-badge-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

/* Horizontal Interactive Filter Bar */
.horizontal-filter-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.filter-group-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.filter-item select {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  outline: none;
}

.btn-update-recs {
  background: var(--link);
  color: var(--link-ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s ease;
}
.btn-update-recs:hover {
  opacity: 0.9;
}

/* Product Page Top Alternatives Row */
.top-alternatives-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.top-alternatives-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.top-alternatives-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.top-alternatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.alt-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.15s ease;
}
.alt-card:hover {
  border-color: var(--link);
}
.alt-card.selected {
  background: var(--card);
  border: 2px solid var(--link);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.alt-card-info { display: flex; align-items: center; gap: 8px; }
.alt-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-name { font-size: 13px; font-weight: 700; color: var(--text); }
.alt-fit-tag { font-size: 10.5px; font-weight: 600; margin-top: 1px; }
.alt-fit-tag.best { color: var(--link); }
.alt-fit-tag.good { color: var(--good); }
.alt-fit-tag.bad { color: var(--bad); }

.alt-score-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
}
.alt-score-pill.good { background: var(--good-bg); color: var(--good); border: 1px solid var(--good-line); }
.alt-score-pill.mid { background: var(--mid-bg); color: var(--mid); border: 1px solid var(--mid-line); }
.alt-score-pill.bad { background: var(--bad-bg); color: var(--bad); border: 1px solid var(--bad-line); }

/* All Criteria & Scores Table */
.all-criteria-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.all-criteria-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.all-criteria-header h3 { font-size: 17px; font-weight: 800; color: var(--text); }
.all-criteria-sub { font-size: 12.5px; color: var(--muted); }

.criteria-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.criteria-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.criteria-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.criteria-name-cell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.criteria-icon { font-size: 15px; margin-top: 1px; color: var(--link); }
.criteria-title { font-weight: 700; color: var(--text); font-size: 13px; }
.criteria-desc { font-size: 11px; color: var(--muted); margin-top: 1px; }

.score-cell-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.score-cell-badge.good { background: var(--good-bg); color: var(--good); }
.score-cell-badge.mid { background: var(--mid-bg); color: var(--mid); }
.score-cell-badge.bad { background: var(--bad-bg); color: var(--bad); }

.overall-score-row td {
  padding-top: 14px;
  font-weight: 800;
  border-bottom: none;
}
.overall-score-cell {
  font-size: 17px;
  font-weight: 900;
}
.overall-score-cell.good { color: var(--good); }
.overall-score-cell.mid { color: var(--mid); }
.overall-score-cell.bad { color: var(--bad); }
.overall-score-cell span.of { font-size: 11px; font-weight: 400; color: var(--muted); }

/* What the Scores Mean for You Callout Grid */
.scores-meaning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 28px;
}
@media (max-width: 768px) {
  .scores-meaning-grid { grid-template-columns: 1fr; }
}

.meaning-card {
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 1px solid var(--border);
}
.meaning-card.best-fit {
  background: var(--good-bg);
  border-color: var(--good-line);
}
.meaning-card.lower-fit {
  background: var(--bad-bg);
  border-color: var(--bad-line);
}
.meaning-title { font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.meaning-card.best-fit .meaning-title { color: var(--good); }
.meaning-card.lower-fit .meaning-title { color: var(--bad); }
.meaning-desc { font-size: 12.5px; color: var(--text); line-height: 1.5; margin-bottom: 6px; }
.meaning-highlight { font-size: 12px; font-weight: 700; color: var(--text); }

/* Detailed Strengths & Weaknesses 4-Card Grid */
.strengths-weaknesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 16px 0 28px;
}
.sw-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.sw-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sw-card-header h4 { font-size: 14.5px; font-weight: 800; color: var(--text); }
.sw-section-head { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin: 8px 0 5px; }
.sw-list { list-style: none; padding: 0; margin: 0 0 10px; }
.sw-list li { font-size: 11.5px; color: var(--text); margin-bottom: 3px; position: relative; padding-left: 15px; line-height: 1.35; }
.sw-list.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: bold; }
.sw-list.cons li::before { content: "—"; position: absolute; left: 0; color: var(--bad); font-weight: bold; }

.btn-full-analysis {
  background: var(--bg);
  color: var(--link);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-full-analysis:hover {
  background: var(--card);
  border-color: var(--link);
}

/* Latest Real-World Feedback Section */
.feedback-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.feedback-header h3 { font-size: 17px; font-weight: 800; color: var(--text); }
.feedback-tabs { display: flex; gap: 6px; }
.feedback-tab-btn {
  font-size: 11.5px; font-weight: 600; color: var(--muted); background: var(--bg);
  border: 1px solid var(--border); padding: 3px 10px; border-radius: 999px; cursor: pointer;
}
.feedback-tab-btn.active { color: var(--text); background: var(--card); border-color: var(--text); }

.feedback-list { display: flex; flex-direction: column; gap: 8px; }
.feedback-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  gap: 10px;
}
.feedback-user-info { display: flex; align-items: center; gap: 8px; flex: 1; }
.feedback-avatar { width: 26px; height: 26px; border-radius: 50%; background: #ff4500; color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.feedback-avatar.yt { background: #ff0000; }
.feedback-content { display: flex; flex-direction: column; gap: 1px; }
.feedback-author { font-size: 11.5px; font-weight: 700; color: var(--text); }
.feedback-quote { font-size: 12.5px; color: var(--text); }
.feedback-tag { font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; }
.feedback-tag.positive { background: var(--good-bg); color: var(--good); }
.feedback-tag.negative { background: var(--bad-bg); color: var(--bad); }

/* Sources We Trust Section */
.sources-we-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 14px 0 28px;
}
.source-trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.source-trust-icon { font-size: 18px; color: var(--link); }
.source-trust-title { font-size: 12.5px; font-weight: 700; color: var(--text); }
.source-trust-sub { font-size: 10.5px; color: var(--muted); }

/* Guides & Comparisons Section on Home Page */
.guides-horizontal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.guide-horizontal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.guide-horizontal-card:hover {
  border-color: var(--link);
}
.guide-horizontal-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.guide-thumb {
  width: 56px;
  height: 40px;
  border-radius: 6px;
  background: #18181b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.guide-horizontal-left h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.guide-horizontal-left p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.guide-chevron {
  font-size: 15px;
  color: var(--muted);
}

.jump-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-right: 4px;
}

.jump-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.15s ease;
}

.jump-pill:hover {
  background: var(--card);
  border-color: var(--link);
  color: var(--link);
}

h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }

.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 28px;
}
@media (max-width: 768px) {
  .two-up { grid-template-columns: 1fr; }
}

.mini {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.mini.good-for { border-top: 3px solid var(--good); }
.mini.not-for { border-top: 3px solid var(--bad); }
.mini h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.mini.good-for h3 { color: var(--good); }
.mini.not-for h3 { color: var(--bad); }
.mini p { font-size: 13.5px; color: var(--text); line-height: 1.55; margin: 0; }

.price-summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 16px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.price-tag { font-size: 22px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.price-meta { font-size: 13px; color: var(--muted); }

.facts-callout-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--link);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 16px 0 20px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sum-panel { margin: 14px 0 24px; overflow-x: auto; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.facts-table, .sum-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.facts-table th, .sum-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--border); }
.facts-table td, .sum-table td { padding: 10px; border-bottom: 1px solid var(--border); vertical-align: top; }

.sum-table th.num { text-align: right; }
.sum-table td.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.sum-expr { white-space: nowrap; font-variant-numeric: tabular-nums; text-align: right; }

.aspect {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--good-bg);
  color: var(--good);
  border: 1px solid var(--good-line);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.quote { font-size: 12px; color: var(--muted); border-left: 2px solid var(--border); padding-left: 8px; margin-top: 4px; font-style: italic; }
.pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 4px; background: var(--border); color: var(--text); }
.pill.drawback { background: var(--bad-bg); color: var(--bad); border: 1px solid var(--bad-line); }

.community-opinions-block, .youtube-reviews-block { margin: 14px 0 24px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.modal-list { list-style: none; display: grid; gap: 10px; }
.modal-list li { font-size: 13px; color: var(--text); line-height: 1.45; }
.modal-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--good); background: var(--good-bg); border: 1px solid var(--good-line); padding: 1px 6px; border-radius: 4px; margin-right: 6px; }
.sub-h { font-size: 12px; color: var(--muted); }

/* Modal Dialog */
.modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(3px); z-index: 1000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  width: 90%; max-width: 620px; max-height: 85vh; overflow-y: auto; padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.btn-modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); }

.cards { display: grid; gap: 10px; margin-top: 16px; }
.card { display: block; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; color: var(--text); }

/* Article Top Disclosure Banner */
.disclosure-note {
  background: var(--good-bg);
  border: 1px solid var(--good-line);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 20px;
}
.disclosure-note a { color: var(--link); text-decoration: underline; }

/* Competitor & Summary Title with Logo Square */
.comp-title-with-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-logo-square {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #18181b;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Short Answer Bullet List */
.short-answer-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 24px;
}
.short-answer-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.short-answer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--good);
  font-weight: bold;
  font-size: 14px;
}

/* Detailed Product Summary Cards */
.product-summary-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}
.product-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.product-summary-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.provider-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.product-summary-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
}
.product-summary-link:hover { text-decoration: underline; }

.product-summary-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.product-summary-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Nobody Tells You Callout Box */
.nobody-tells-you-box {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0 24px;
}
@media (prefers-color-scheme: dark) {
  .nobody-tells-you-box {
    background: #1e293b;
    border-color: #334155;
  }
}
.nobody-tells-you-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.speech-icon { font-size: 18px; color: var(--link); }
.nobody-tells-you-box p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 10px;
}
.nobody-tells-you-box p.fine {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.site-footer {
  max-width: 1200px; margin: 40px auto 0; padding: 20px 24px;
  border-top: 1px solid var(--border); color: var(--muted); font-size: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
