/* ═══════════════════════════════════════════════════════════════
   VSRadar — Nike-inspired editorial design (v3)
   Monochromatic UI. White canvas. Oswald display + Inter body.
   Score badges are the only chromatic punctuation on the page.
   Based on data/design-md/nike.DESIGN.md
   ═══════════════════════════════════════════════════════════════ */

/* ─── Self-hosted variable fonts ───────────────────── */
@font-face {
  font-family: 'Oswald';
  src: url('/fonts/oswald-variable.woff2') format('woff2-variations'),
       url('/fonts/oswald-variable.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-variable.woff2') format('woff2-variations'),
       url('/fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Nike palette — intentionally monochrome */
  --nike-black: #111111;        /* primary text, buttons, nav text */
  --nike-white: #ffffff;        /* page canvas, button text on dark */

  /* Grey scale (Podium CDS) */
  --grey-50:  #fafafa;          /* snow */
  --grey-100: #f5f5f5;          /* subtle bg, input fill, skeleton */
  --grey-200: #e5e5e5;          /* hover state bg, disabled fill */
  --grey-300: #cacacb;          /* border secondary */
  --grey-500: #707072;          /* secondary text, border primary */
  --grey-400: #9e9ea0;          /* disabled text */
  --grey-700: #39393b;          /* dark hover */
  --grey-800: #28282a;          /* dark surface */
  --grey-900: #1f1f21;          /* deep charcoal */

  /* Semantic — strictly for state communication */
  --red:    #d30005;            /* errors, sale badges */
  --green:  #007d48;            /* success, availability */
  --blue:   #1151ff;            /* links */
  --yellow: #fedf35;            /* warnings */
  --focus-ring: rgba(39, 93, 197, 1);

  /* Score badges — the ONLY chromatic punctuation on the site */
  --score-great: #16a34a;
  --score-great-bg: #dcfce7;
  --score-good: #65a30d;
  --score-good-bg: #ecfccb;
  --score-ok: #ca8a04;
  --score-ok-bg: #fef3c7;
  --score-mid: #ea580c;
  --score-mid-bg: #ffedd5;
  --score-bad: #dc2626;
  --score-bad-bg: #fee2e2;

  /* Typography */
  --font-display: 'Oswald', 'Futura PT', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', Menlo, Monaco, Consolas, monospace;

  /* Spacing — Nike 8px grid */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 32px;
  --sp-8: 48px;
  --sp-9: 64px;
  --sp-10: 80px;

  /* Layout */
  --max-w: 1440px;
  --sidebar-w: 260px;
  --main-gap: 40px;
  --radius: 8px;              /* form inputs */
  --radius-pill: 30px;        /* buttons, tags */
  --radius-card: 20px;        /* content containers */

  /* Type scale */
  --fs-xs: 0.75rem;     /* 12 */
  --fs-sm: 0.875rem;    /* 14 */
  --fs-base: 1rem;      /* 16 */
  --fs-lg: 1.125rem;    /* 18 */
  --fs-xl: 1.5rem;      /* 24 */
  --fs-2xl: 2rem;       /* 32 */
  --fs-3xl: 3rem;       /* 48 */
  --fs-display: 6rem;   /* 96 — Nike hero scale */
}

/* ─── Reset + base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--nike-black);
  background: var(--nike-white);
  font-size: var(--fs-base);
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--nike-black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
a:hover { color: var(--grey-500); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--nike-black);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, var(--fs-3xl));
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--fs-2xl);
  font-weight: 500;
  margin: var(--sp-9) 0 var(--sp-4);
  line-height: 1.2;
}
h3 { font-size: var(--fs-xl); font-weight: 500; margin: var(--sp-6) 0 var(--sp-3); }
h4 { font-size: var(--fs-lg); font-weight: 500; margin: var(--sp-4) 0 var(--sp-2); }

p { margin: var(--sp-3) 0; line-height: 1.75; }
p, li { font-size: var(--fs-base); }
ul, ol { margin: var(--sp-3) 0; padding-left: var(--sp-6); }
li { margin: var(--sp-1) 0; line-height: 1.75; }
hr { border: none; border-top: 1px solid var(--grey-200); margin: var(--sp-8) 0; }
code {
  font-family: var(--font-mono);
  background: var(--grey-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
strong { font-weight: 600; color: var(--nike-black); }

.site-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
@media (max-width: 768px) {
  .site-container { padding: 0 var(--sp-4); }
}

/* Display headline utility — Nike hero style */
.display-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, var(--fs-display));
  font-weight: 500;
  line-height: 0.90;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--nike-black);
  margin: 0 0 var(--sp-6);
}

.muted { color: var(--grey-500); }
.small { font-size: var(--fs-sm); }

/* ─── Nav (white sticky, single bar) ───────────────── */
.nav-bar {
  background: var(--nike-white);
  color: var(--nike-black);
  border-bottom: 1px solid var(--grey-200);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}
.nav-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--nike-black);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--nike-black); text-decoration: none; }
.nav-logo .dot { color: var(--grey-500); font-size: 0.75em; margin-left: 2px; }

.nav-primary {
  display: flex;
  gap: var(--sp-7);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-primary a {
  color: var(--nike-black);
  font-size: var(--fs-base);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-primary a:hover { color: var(--grey-500); }

/* Sub-nav promotional strip (RTINGS-era remnant — keep as utility row) */
.nav-sub {
  background: var(--nike-black);
  color: var(--nike-white);
  font-size: var(--fs-xs);
  font-weight: 500;
}
.nav-sub-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.nav-sub a {
  color: var(--nike-white);
  text-decoration: none;
  margin-right: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-sub a:hover { color: var(--grey-300); }
.nav-sub .trust { color: var(--grey-300); text-transform: uppercase; letter-spacing: 0.04em; }
.nav-sub .trust strong { color: var(--nike-white); }

@media (max-width: 720px) {
  .nav-primary { gap: var(--sp-4); }
  .nav-primary a { font-size: var(--fs-sm); }
  .nav-bar-inner { flex-wrap: wrap; padding: var(--sp-3) var(--sp-4); }
}

/* ─── Article layout ───────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: var(--main-gap);
  margin: var(--sp-8) 0 var(--sp-10);
}
.article-content { min-width: 0; }
.article-body { font-size: var(--fs-lg); line-height: 1.75; color: var(--nike-black); }
.article-body p { margin: var(--sp-4) 0; }
.article-body h2, .article-body h3 { margin-top: var(--sp-8); }

@media (max-width: 1024px) { :root { --sidebar-w: 220px; --main-gap: 28px; } }
@media (max-width: 880px) {
  .article-layout { grid-template-columns: 1fr; gap: var(--sp-4); }
  .sidebar { display: none; }
  .mobile-cta { display: block; }
}
@media (min-width: 881px) { .mobile-cta { display: none; } }

/* ─── Breadcrumb ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: var(--sp-6) 0 var(--sp-4);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--grey-500);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--nike-black); text-decoration: underline; }
.breadcrumb .sep { color: var(--grey-300); }

/* ─── Article header ───────────────────────────────── */
.article-header { margin-bottom: var(--sp-6); }
.article-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--nike-black);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}
.article-eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--nike-black);
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-4);
  color: var(--nike-black);
}

/* ─── Source strip (our trust claim — synthesis not lab) ─── */
.source-strip {
  background: var(--grey-100);
  border: none;
  border-left: 3px solid var(--nike-black);
  padding: var(--sp-4) var(--sp-5);
  border-radius: 0;
  margin: var(--sp-5) 0;
  font-size: var(--fs-sm);
  color: var(--grey-500);
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}
.source-strip .label {
  font-weight: 700;
  color: var(--nike-black);
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}
.source-strip .dot { color: var(--grey-300); }
.source-strip strong { color: var(--nike-black); }

/* ─── Disclosure ───────────────────────────────────── */
.disclosure {
  background: var(--grey-100);
  border: none;
  border-left: 3px solid var(--nike-black);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0;
  font-size: var(--fs-sm);
  color: var(--grey-500);
  margin: var(--sp-4) 0;
  line-height: 1.55;
}
.disclosure strong {
  color: var(--nike-black);
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
}

/* ─── Author line ──────────────────────────────────── */
.author-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-4) 0 var(--sp-6);
  color: var(--grey-500);
  font-size: var(--fs-sm);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--grey-200);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.author-line .name { color: var(--nike-black); font-weight: 600; }
.author-line .dot { color: var(--grey-300); }

/* ─── Verdict card ─────────────────────────────────── */
.verdict-card {
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  padding: var(--sp-7);
  margin: var(--sp-6) 0 var(--sp-8);
}
.verdict-head {
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  gap: var(--sp-7);
  align-items: center;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--grey-200);
}
.verdict-score {
  background: var(--nike-black);
  color: var(--nike-white);
  border-radius: var(--radius-card);
  padding: var(--sp-5) var(--sp-7);
  text-align: center;
  min-width: 140px;
}
.verdict-score .num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: block;
}
.verdict-score .max {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--sp-2);
  color: var(--grey-300);
  font-weight: 500;
}
.verdict-copy .label {
  color: var(--grey-500);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.verdict-copy h2 {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 500;
  margin: var(--sp-2) 0 0;
  padding: 0;
  border: none;
  line-height: 1.35;
}
.verdict-subscores {
  margin-top: var(--sp-5);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-3);
}
.subscore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--nike-white);
}
.subscore .k {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  font-weight: 600;
}

/* ─── Score badge (the only chromatic element) ────── */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  min-width: 52px;
  border: 1px solid transparent;
}
.score-badge.lg { font-size: var(--fs-base); padding: 6px 14px; min-width: 64px; }
.score-badge.great { background: var(--score-great-bg); color: var(--score-great); border-color: var(--score-great); }
.score-badge.good  { background: var(--score-good-bg);  color: #3f6212;          border-color: var(--score-good); }
.score-badge.ok    { background: var(--score-ok-bg);    color: #854d0e;          border-color: var(--score-ok); }
.score-badge.mid   { background: var(--score-mid-bg);   color: #9a3412;          border-color: var(--score-mid); }
.score-badge.bad   { background: var(--score-bad-bg);   color: var(--score-bad); border-color: var(--score-bad); }

.verdict-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.verdict-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.verdict-tag.best  { background: var(--score-great-bg); color: var(--score-great); }
.verdict-tag.avoid { background: var(--score-bad-bg);   color: var(--score-bad); }

/* ─── Scored section cards ────────────────────────── */
.scored-section {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-7);
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--grey-200);
}
.scored-section .rail { display: flex; flex-direction: column; gap: var(--sp-3); }
.scored-section .rail .section-score {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  text-align: center;
}
.scored-section .rail .section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.scored-section h2 {
  margin: 0 0 var(--sp-3);
  padding: 0;
  border: none;
  font-size: var(--fs-2xl);
  font-weight: 500;
}
.scored-section .body-text { color: var(--nike-black); line-height: 1.75; }
@media (max-width: 700px) {
  .scored-section { grid-template-columns: 1fr; gap: var(--sp-3); }
  .scored-section .rail { flex-direction: row; align-items: center; gap: var(--sp-3); }
  .scored-section .rail .section-score { font-size: 1.5rem; padding: var(--sp-2) var(--sp-3); }
}

/* ─── Sidebar ─────────────────────────────────────── */
.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: var(--sp-3);
}
.sidebar-title {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--grey-500);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--nike-black);
  margin-bottom: var(--sp-3);
}
.sidebar-nav { list-style: none; padding: 0; margin: 0 0 var(--sp-8); }
.sidebar-nav li { margin: 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  color: var(--nike-black);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--grey-200);
  transition: color 0.12s ease;
}
.sidebar-nav a:hover { color: var(--grey-500); text-decoration: none; }
.sidebar-nav a.active { color: var(--nike-black); }
.sidebar-nav .mini-score {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  min-width: 34px;
  text-align: center;
}

.sidebar-card {
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.sidebar-card h4 {
  margin: 0 0 var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  font-weight: 600;
}
.sidebar-card .product-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--nike-black);
  margin: 0 0 var(--sp-2);
  text-transform: uppercase;
  line-height: 1.1;
}
.sidebar-card .big-score {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  padding: var(--sp-3);
  border-radius: var(--radius);
  text-align: center;
  margin: var(--sp-3) 0;
}

/* ─── Pros / Cons ─────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.pros-cons > div {
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
}
.pros-cons h3 {
  margin: 0 0 var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--grey-200);
}
.pros-cons .pros { border-top: 3px solid var(--score-great); }
.pros-cons .cons { border-top: 3px solid var(--score-bad); }
.pros-cons .pros h3 { color: var(--score-great); }
.pros-cons .cons h3 { color: var(--score-bad); }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li {
  padding: var(--sp-2) 0;
  display: flex;
  gap: var(--sp-3);
  line-height: 1.5;
  font-size: var(--fs-sm);
  color: var(--nike-black);
  border-bottom: 1px solid var(--grey-100);
}
.pros-cons li:last-child { border-bottom: none; }
.pros-cons .pros li::before {
  content: "✓";
  color: var(--score-great);
  font-weight: 700;
  flex-shrink: 0;
  font-size: var(--fs-lg);
  line-height: 1;
}
.pros-cons .cons li::before {
  content: "✕";
  color: var(--score-bad);
  font-weight: 700;
  flex-shrink: 0;
  font-size: var(--fs-lg);
  line-height: 1;
}
@media (max-width: 640px) { .pros-cons { grid-template-columns: 1fr; } }

/* ─── Comparison table ────────────────────────────── */
.cmp-wrapper { overflow-x: auto; margin: var(--sp-6) 0; }
.cmp-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: var(--fs-sm);
}
.cmp-table thead th {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  background: var(--nike-black);
  color: var(--nike-white);
  font-family: var(--font-body);
  font-weight: 500;
  vertical-align: top;
  min-width: 140px;
  border-right: 1px solid var(--grey-700);
}
.cmp-table thead th:last-child { border-right: none; }
.cmp-table thead th.winner { background: var(--score-great); }
.cmp-table thead th .winner-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.9;
  margin-bottom: var(--sp-1);
  text-transform: uppercase;
  font-weight: 700;
}
.cmp-table thead th .product-name {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
.cmp-table thead th .product-rating { font-size: var(--fs-xs); opacity: 0.9; }
.cmp-table thead th .mini-cta {
  display: inline-block;
  margin-top: var(--sp-2);
  background: var(--nike-white);
  color: var(--nike-black);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cmp-table tbody th {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  color: var(--nike-black);
  font-weight: 600;
  background: var(--grey-100);
  border-right: 1px solid var(--grey-200);
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
}
.cmp-table tbody td {
  padding: var(--sp-3);
  text-align: center;
  color: var(--nike-black);
  border-top: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}
.cmp-table tbody td:last-child { border-right: none; }
.cmp-table tbody td.winner-cell {
  font-weight: 700;
  color: var(--score-great);
  background: var(--score-great-bg);
}

/* ─── CTA button — Nike pill ──────────────────────── */
.cta {
  text-align: center;
  margin: var(--sp-7) 0;
}
.cta a.btn {
  display: inline-block;
  background: var(--nike-black);
  color: var(--nike-white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  border: none;
  transition: background 0.2s ease;
}
.cta a.btn:hover {
  background: var(--grey-500);
  text-decoration: none;
  color: var(--nike-white);
}
.cta .cta-disclosure {
  margin-top: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .cta-row { grid-template-columns: 1fr; } }

/* Secondary outline button */
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--nike-black);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-base);
  border: 1.5px solid var(--grey-300);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-secondary:hover {
  border-color: var(--grey-500);
  background: var(--grey-100);
  color: var(--nike-black);
  text-decoration: none;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq { margin: var(--sp-9) 0; }
.faq h2 { margin-bottom: var(--sp-5); }
.faq-item {
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: var(--sp-3);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--nike-black);
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.faq-question::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--nike-black);
  font-weight: 400;
  transition: transform 0.18s ease;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 var(--sp-5);
  color: var(--grey-500);
}
.faq-item.open .faq-answer { max-height: 800px; padding-bottom: var(--sp-4); }

/* ─── Changelog box ───────────────────────────────── */
.changelog {
  background: var(--grey-100);
  border: none;
  border-left: 3px solid var(--nike-black);
  border-radius: 0;
  padding: var(--sp-5);
  margin: var(--sp-8) 0;
  font-size: var(--fs-sm);
  color: var(--grey-500);
}
.changelog h4 {
  font-family: var(--font-body);
  margin: 0 0 var(--sp-2);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nike-black);
  font-weight: 700;
}
.changelog .ver {
  display: inline-block;
  background: var(--nike-black);
  color: var(--nike-white);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  margin-right: var(--sp-2);
}
.changelog ul { margin: var(--sp-2) 0 0; padding-left: var(--sp-5); }
.changelog li { margin: var(--sp-1) 0; color: var(--grey-500); }

/* ─── Related articles ────────────────────────────── */
.related-section { margin: var(--sp-10) 0 var(--sp-6); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.related-card {
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: var(--sp-5);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.related-card:hover {
  border-color: var(--nike-black);
  text-decoration: none;
}
.related-card .type-badge {
  display: inline-block;
  background: var(--grey-100);
  color: var(--grey-500);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin: var(--sp-3) 0 0;
  color: var(--nike-black);
  text-transform: uppercase;
  line-height: 1.1;
}

/* ─── Ranked pick card (best_of) ──────────────────── */
.ranked-pick {
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: var(--sp-5) 0;
  position: relative;
  transition: border-color 0.15s ease;
}
.ranked-pick:hover { border-color: var(--nike-black); }
.ranked-pick .rp-head {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--sp-6);
  padding: var(--sp-6) var(--sp-7);
  align-items: center;
  border-bottom: 1px solid var(--grey-200);
}
.ranked-pick .rp-thumb {
  height: 120px;
  width: 180px;
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;                /* Nike: images have 0 radius */
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: var(--sp-3);
  position: relative;
  letter-spacing: 0.02em;
}
.ranked-pick .rp-rank {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--nike-white);
  color: var(--nike-black);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-xl);
  border: 2px solid var(--nike-black);
  z-index: 2;
}
.ranked-pick .rp-meta { min-width: 0; }
.ranked-pick .rp-meta .tagline {
  color: var(--nike-black);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-2);
}
.ranked-pick .rp-meta h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin: 0 0 var(--sp-2);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.0;
}
.ranked-pick .rp-meta .price {
  font-size: var(--fs-sm);
  color: var(--grey-500);
}
.ranked-pick .rp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.ranked-pick .rp-action .score-badge {
  font-size: var(--fs-lg);
  padding: 8px 16px;
  min-width: 72px;
}
.ranked-pick .rp-body { padding: var(--sp-6) var(--sp-7); }
.ranked-pick .rp-body p { margin-top: 0; color: var(--nike-black); }
.ranked-pick .rp-body .pros-cons { margin: var(--sp-4) 0 0; }
.ranked-pick.editors-choice {
  border: 2px solid var(--nike-black);
}
.ranked-pick.editors-choice::before {
  content: "EDITOR'S CHOICE";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--nike-black);
  color: var(--nike-white);
  padding: 6px 18px 6px 22px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
  z-index: 2;
}

@media (max-width: 720px) {
  .ranked-pick .rp-head { grid-template-columns: 1fr; gap: var(--sp-4); }
  .ranked-pick .rp-thumb { width: 100%; }
}

/* ─── Alternative card ────────────────────────────── */
.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.alt-card {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.alt-card:hover { border-color: var(--nike-black); text-decoration: none; }
.alt-card .alt-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  flex-shrink: 0;
  font-size: var(--fs-sm);
  text-transform: uppercase;
}
.alt-card .alt-name { color: var(--nike-black); font-weight: 700; }
.alt-card .alt-meta { color: var(--grey-500); font-size: var(--fs-sm); }

/* ─── Homepage ────────────────────────────────────── */
.home-hero {
  background: var(--nike-black);
  color: var(--nike-white);
  padding: var(--sp-10) 0;
  margin: 0;
  border-bottom: none;
}
.home-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.home-hero .eyebrow {
  font-family: var(--font-display);
  color: var(--nike-white);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.home-hero h1 {
  font-family: var(--font-display);
  color: var(--nike-white);
  font-size: clamp(2.5rem, 8vw, var(--fs-display));
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: var(--sp-4) 0 var(--sp-5);
  max-width: 840px;
}
.home-hero p {
  color: var(--grey-300);
  font-size: var(--fs-lg);
  max-width: 680px;
  line-height: 1.6;
}

.trust-stats {
  background: var(--nike-white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: var(--sp-8) 0;
}
.trust-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--sp-7);
  text-align: center;
}
.trust-stats .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--fs-3xl));
  font-weight: 500;
  color: var(--nike-black);
  line-height: 0.9;
  text-transform: uppercase;
}
.trust-stats .lbl {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 600;
  margin-top: var(--sp-3);
  display: block;
}

.category-row { padding: var(--sp-10) 0; border-bottom: 1px solid var(--grey-200); }
.category-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.category-row-head h2 {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, var(--fs-2xl));
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.0;
}
.category-row-head a.see-all {
  color: var(--nike-black);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;       /* Nike tight grid */
}
.product-thumb {
  background: var(--nike-white);
  border: none;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.product-thumb:hover { opacity: 0.9; text-decoration: none; }
.product-thumb .thumb-image {
  height: 180px;
  background: var(--nike-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nike-white);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-4);
  text-align: center;
}
.product-thumb .thumb-body { padding: var(--sp-4) 0 var(--sp-6); }
.product-thumb .thumb-type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 600;
}
.product-thumb h4 {
  font-family: var(--font-display);
  margin: var(--sp-2) 0 var(--sp-1);
  font-size: var(--fs-lg);
  color: var(--nike-black);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 500;
}
.product-thumb .thumb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--grey-500);
  margin-top: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ─── Category listing page ───────────────────────── */
.category-header {
  margin: var(--sp-8) 0 var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 3px solid var(--nike-black);
}
.category-header h1 {
  margin: 0 0 var(--sp-2);
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.9;
}
.category-header p { color: var(--grey-500); max-width: 640px; }

.filter-pills {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin: var(--sp-5) 0;
}
.filter-pills a {
  background: var(--nike-white);
  border: 1.5px solid var(--grey-300);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: var(--nike-black);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.filter-pills a.active {
  background: var(--nike-black);
  color: var(--nike-white);
  border-color: var(--nike-black);
}
.filter-pills a:hover {
  border-color: var(--nike-black);
  color: var(--nike-black);
  text-decoration: none;
}

/* ─── Footer ──────────────────────────────────────── */
.footer {
  background: var(--nike-black);
  color: var(--grey-300);
  padding: var(--sp-10) 0 var(--sp-5);
  margin-top: var(--sp-10);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--sp-10);
}
.footer .brand-block .brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--nike-white);
  font-size: var(--fs-2xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer .brand-block .brand .dot { color: var(--grey-500); font-size: 0.7em; }
.footer .brand-block .tagline { color: var(--grey-300); margin-top: var(--sp-3); font-size: var(--fs-sm); max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-7);
}
.footer-col h5 {
  color: var(--nike-white);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--sp-3);
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: var(--sp-2) 0; }
.footer-col a {
  color: var(--grey-300);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.footer-col a:hover { color: var(--nike-white); text-decoration: underline; }
.footer-bottom {
  max-width: var(--max-w);
  margin: var(--sp-8) auto 0;
  padding: var(--sp-5) var(--sp-8) 0;
  border-top: 1px solid var(--grey-800);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; } }

/* ─── Quick box / honesty box / steps ─────────────── */
.quick-box {
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--nike-black);
  border-radius: var(--radius);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
}
.quick-box h3 {
  margin: 0 0 var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 700;
}
.quick-box ul { list-style: none; padding: 0; margin: 0; }
.quick-box li {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  font-size: var(--fs-sm);
}
.quick-box li:last-child { border-bottom: none; }

.honesty-box {
  background: var(--score-ok-bg);
  border: 1px solid var(--score-ok);
  border-left: 3px solid var(--score-ok);
  border-radius: var(--radius);
  padding: var(--sp-6);
  margin: var(--sp-6) 0;
  color: var(--nike-black);
  font-weight: 600;
}
.honesty-box::before { content: "⚠ "; font-size: 1.2em; }

.steps { counter-reset: step; }
.steps .step {
  background: var(--nike-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  padding: var(--sp-6) var(--sp-7);
  margin: var(--sp-5) 0;
  position: relative;
  padding-left: 96px;
}
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-xl);
}
.steps .step h3 { margin: 0 0 var(--sp-2); font-family: var(--font-display); text-transform: uppercase; }
.steps .step .warnings {
  background: var(--score-bad-bg);
  border-left: 2px solid var(--score-bad);
  padding: var(--sp-2) var(--sp-3);
  border-radius: 3px;
  font-size: var(--fs-sm);
  color: var(--score-bad);
  margin-top: var(--sp-2);
}

/* ─── Pricing table ────────────────────────────────── */
.pricing-table-wrapper { overflow-x: auto; margin: var(--sp-6) 0; }
.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  font-size: var(--fs-sm);
}
.pricing-table thead th {
  background: var(--nike-black);
  color: var(--nike-white);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font-body);
}
.pricing-table .plan-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--nike-black);
  font-size: var(--fs-lg);
  text-transform: uppercase;
}
.pricing-table tr.best-value { background: var(--score-great-bg); }
.pricing-table tr.best-value .plan-name { color: var(--score-great); }
.best-value-badge {
  display: inline-block;
  background: var(--score-great);
  color: var(--nike-white);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: var(--sp-2);
  vertical-align: middle;
}

/* ─── Independence block ──────────────────────────── */
.independence {
  background: var(--nike-white);
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--grey-200);
}
.independence-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
.independence h2 {
  text-align: center;
  margin: 0 0 var(--sp-3);
  padding: 0;
  border: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.9;
}
.independence .sub {
  text-align: center;
  color: var(--grey-500);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.independence-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.independence-col {
  background: var(--grey-100);
  border: none;
  border-radius: var(--radius-card);
  padding: var(--sp-7);
}
.independence-col h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin: 0 0 var(--sp-3);
  text-transform: uppercase;
  line-height: 1.0;
}
.independence-col p { color: var(--grey-500); font-size: var(--fs-sm); margin: 0; line-height: 1.6; }
.independence-col .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
}

/* ─── Trust card (sidebar — "why you can trust us") ─ */
.trust-card {
  background: var(--nike-white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-card);
  padding: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.trust-card .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: var(--sp-4);
}
.trust-card .expert {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: var(--sp-4);
}
.trust-card .expert-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nike-black);
  color: var(--nike-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-lg);
  flex-shrink: 0;
}
.trust-card .expert-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-base);
  color: var(--nike-black);
  text-transform: uppercase;
  line-height: 1.1;
}
.trust-card .expert-title {
  font-size: var(--fs-xs);
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.trust-card .trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.trust-card .trust-metric .n {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--nike-black);
  line-height: 1;
}
.trust-card .trust-metric .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  font-weight: 600;
  margin-top: var(--sp-1);
  display: block;
}

/* ─── Editors' Choice ribbon ──────────────────────── */
.ec-ribbon {
  display: inline-block;
  background: var(--nike-black);
  color: var(--nike-white);
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 0;
}

/* ─── Check price strip ───────────────────────────── */
.check-price {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin: var(--sp-5) 0;
}
.check-price .cp-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  font-weight: 700;
}
.check-price .cp-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--nike-white);
  border: 1.5px solid var(--grey-300);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--nike-black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: border-color 0.15s ease;
}
.check-price .cp-chip:hover {
  border-color: var(--nike-black);
  color: var(--nike-black);
  text-decoration: none;
}

/* ─── Score bar row (vs rounds) ──────────────────── */
.score-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--grey-200);
}
.score-bar-row .label {
  font-size: var(--fs-sm);
  color: var(--nike-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.score-bar-row .bar {
  height: 8px;
  background: var(--grey-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.score-bar-row .bar-fill {
  height: 100%;
  background: var(--nike-black);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.score-bar-row .score-num {
  font-family: var(--font-mono);
  font-weight: 700;
  text-align: right;
  color: var(--nike-black);
}
.score-bar-row.lose .bar-fill { background: var(--grey-500); }

/* ─── Utilities ───────────────────────────────────── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
