/* ── upgrade-gpu.com · design v2 · best-gpu palette ────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap");

/* ── Dark palette (default) ─────────────────────────────────────────── */
:root {
  --bg:      #0a0a0c;
  --bg-1:    #111116;
  --bg-2:    #18181f;
  --bg-3:    #1e1e28;
  --border:  #2a2a35;
  --border-2:#333344;
  --border-3:#3d3d50;
  --text:    #e8e8f0;
  --text-2:  #a8a8c8;
  --text-3:  #62628a;
  --text-4:  #3d3d55;

  /* accent slot — cyan electric blue */
  --lime:      #00e5ff;
  --lime-2:    #66f0ff;
  --lime-deep: #00b8cc;
  --lime-glow: rgba(0,229,255,0.15);

  --red:   #ff1744;
  --amber: #ffd600;
  --blue:  #4a6cf7;

  --nv:    #76b900;
  --amd:   #ed1c24;
  --intel: #00e5ff;

  --sans: "Geist", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "JetBrains Mono", Menlo, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
}

/* ── Light palette ──────────────────────────────────────────────────── */
html[data-theme="light"] {
  --bg:      #f8f7fc;
  --bg-1:    #f1eef9;
  --bg-2:    #e9e4f4;
  --bg-3:    #ddd8ed;
  --border:  #cac4e4;
  --border-2:#b8b0d8;
  --border-3:#aaa4cc;
  --text:    #16142a;
  --text-2:  #3e3868;
  --text-3:  #8078b0;
  --text-4:  #b0a8d0;

  /* accent slot — indigo in light mode */
  --lime:      #4a3ec8;
  --lime-2:    #3328a8;
  --lime-deep: #2820a0;
  --lime-glow: rgba(74,62,200,0.12);

  --red:   #c02430;
  --amber: #8a6800;
  --blue:  #4a3ec8;

  --nv:    #4a7800;
  --amd:   #b81e22;
  --intel: #4a3ec8;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv11" 1;
}
body { min-height: 100vh; overflow-x: hidden; }

::selection { background: var(--lime); color: #0a0a0c; }
html[data-theme="light"] ::selection { color: #fff; }

a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; color: inherit; background: transparent; border: 0; outline: 0; }
button { cursor: pointer; }

.mono { font-family: var(--mono); }
.tabular { font-variant-numeric: tabular-nums; }
.lime-text { color: var(--lime); }

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(10,10,12,0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
html[data-theme="light"] .nav {
  background: rgba(248,247,252,0.88);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.4), 0 0 20px var(--lime-glow);
  flex-shrink: 0;
  display: block;
}
html[data-theme="light"] .brand-mark {
  box-shadow: 0 0 0 1px rgba(74,62,200,0.4), 0 0 20px var(--lime-glow);
}
.brand-name .dot { color: var(--text-3); }
.brand-name .tld { color: var(--text-3); font-weight: 400; }

.nav-left {
  display: flex; align-items: center; gap: 16px;
}
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-links {
  display: flex; gap: 24px; align-items: center;
  font-size: 13.5px; color: var(--text-2);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--text); }

.nav-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}
.nav-status::before {
  content: ""; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── Store switcher ─────────────────────────────────────────────────── */
.store-switcher { position: relative; }
.store-btn {
  display: inline-flex; align-items: center; gap: 7px;
  height: 28px; padding: 0 10px;
  border-radius: 7px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-2);
  cursor: pointer;
  transition: all .12s;
}
.store-btn:hover { color: var(--text); border-color: var(--border-2); }
.store-chevron { font-size: 9px; color: var(--text-3); }
.store-flag { border-radius: 1px; vertical-align: middle; }
.store-dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  min-width: 160px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
html[data-theme="light"] .store-dropdown {
  box-shadow: 0 12px 40px rgba(22,20,42,0.15);
}
.store-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: background .1s;
  text-decoration: none;
}
.store-dropdown a:last-child { border-bottom: 0; }
.store-dropdown a:hover { background: var(--bg-2); color: var(--text); }
.store-dropdown a.active { color: var(--lime); }

/* ── Theme button ───────────────────────────────────────────────────── */
.theme-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--text-3);
  font-size: 14px; line-height: 1;
  transition: all .12s;
  flex-shrink: 0;
}
.theme-btn:hover { color: var(--text); border-color: var(--border-3); }

/* ── Kicker / eyebrow ─────────────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  height: 28px; padding: 0 12px 0 10px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.kicker .lime-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  flex-shrink: 0;
}

/* ── Chip ─────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center;
  height: 32px; padding: 0 12px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12.5px; font-weight: 500;
  color: var(--text-2);
  transition: all .12s;
  cursor: pointer;
}
.chip:hover { border-color: var(--border-3); color: var(--text); background: var(--bg-3); }

/* ── Brand badge ──────────────────────────────────────────────────── */
.brand-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
}
.brand-badge::before {
  content: ""; display: block;
  width: 8px; height: 8px; border-radius: 2px;
  flex-shrink: 0;
}
.brand-badge.nv::before    { background: var(--nv); }
.brand-badge.amd::before   { background: var(--amd); }
.brand-badge.intel::before { background: var(--intel); }

/* ── Condition badge ─────────────────────────────────────────────── */
.cond-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--mono); font-size: 10.5px;
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-3); color: var(--text-2);
  border: 1px solid var(--border-2);
}
.cond-badge.new {
  color: var(--lime);
  border-color: rgba(0,229,255,0.3);
  background: rgba(0,229,255,0.06);
}
html[data-theme="light"] .cond-badge.new {
  border-color: rgba(74,62,200,0.3);
  background: rgba(74,62,200,0.06);
}

/* ── CPP cell ─────────────────────────────────────────────────────── */
.cpp-cell {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-weight: 600;
  font-size: 13px;
}
.cpp-cell .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.cpp-cell.good { color: #00e676; }
.cpp-cell.good .dot { background: #00e676; box-shadow: 0 0 6px rgba(0,230,118,0.20); }
html[data-theme="light"] .cpp-cell.good { color: #2e7d32; }
html[data-theme="light"] .cpp-cell.good .dot { background: #2e7d32; box-shadow: none; }
.cpp-cell.mid  { color: var(--amber); }
.cpp-cell.mid  .dot { background: var(--amber); }
.cpp-cell.bad  { color: var(--red); }
.cpp-cell.bad  .dot { background: var(--red); }

/* ── Footer ──────────────────────────────────────────────────────── */
.foot {
  margin-top: 100px;
  padding: 28px 32px;
  border-top: 1px solid var(--border);
}
.foot-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-3);
}
.foot strong { color: var(--text-2); font-weight: 500; }
.foot a { color: var(--text-3); transition: color .15s; }
.foot a:hover { color: var(--lime); }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rise    { animation: rise .7s cubic-bezier(.16,.84,.34,1) both; }
.rise-d1 { animation-delay: .08s; }
.rise-d2 { animation-delay: .16s; }
.rise-d3 { animation-delay: .24s; }
.rise-d4 { animation-delay: .32s; }

/* ════════════════════════════════════════════════════════════════════
   STATE A — Landing
   ════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, var(--lime-glow) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.hero .kicker { margin-bottom: 20px; }

.headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--text);
  text-wrap: balance;
}
.headline .lime {
  color: var(--lime);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.055em;
}
.headline .lime::after {
  content: "?";
  color: var(--lime);
  font-weight: 600;
  font-style: normal;
}

.lead {
  margin: 16px auto 0;
  max-width: 620px;
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
  text-wrap: pretty;
}
.lead strong { color: var(--text); font-weight: 500; }

/* Search bar */
.search {
  margin: 28px auto 0;
  max-width: 720px;
  display: flex; align-items: center;
  height: 60px;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 6px 6px 6px 22px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}
html[data-theme="light"] .search {
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 30px rgba(22,20,42,0.08);
}
.search:focus-within {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px var(--lime-glow), 0 1px 0 rgba(255,255,255,0.03) inset;
}
.search-icon {
  color: var(--text-3);
  font-size: 20px;
  margin-right: 14px;
  flex-shrink: 0;
  transition: color .15s;
}
.search:focus-within .search-icon { color: var(--lime); }
.search input {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  height: 100%;
  min-width: 0;
}
.search input::placeholder { color: var(--text-3); font-weight: 400; }
.search-btn {
  flex-shrink: 0;
  height: 56px; padding: 0 22px;
  background: var(--lime); color: #0a0a0c;
  font-weight: 600; font-size: 15px;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s;
  letter-spacing: -0.01em;
  cursor: pointer;
}
html[data-theme="light"] .search-btn { color: #fff; }
.search-btn:hover { background: var(--lime-2); transform: translateY(-1px); box-shadow: 0 6px 20px var(--lime-glow); }
.search-btn .arrow { transition: transform .15s; }
.search-btn:hover .arrow { transform: translateX(2px); }

/* Autocomplete dropdown */
.suggestions {
  position: absolute;
  top: calc(100% + 8px); left: 0; right: 0;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  max-height: 320px; overflow-y: auto;
  z-index: 30;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  text-align: left;
}
html[data-theme="light"] .suggestions {
  box-shadow: 0 12px 40px rgba(22,20,42,0.15);
}
.suggestions.is-open { display: block; }
.sug {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.sug:last-child { border-bottom: 0; }
.sug:hover, .sug.is-focus { background: var(--bg-2); }
.sug-name { font-weight: 500; }
.sug-meta { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.sug-meta .lime-text { color: var(--lime); }

/* Popular chip row */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 14px auto 0;
  max-width: 720px;
  align-items: center;
  justify-content: center;
}
.chips-label {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-right: 4px;
}

/* Hero warn */
.hero-warn {
  margin-top: 16px;
  color: var(--amber);
  font-size: 14px;
  font-family: var(--mono);
}

/* Stats strip */
.stats {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015) 0%, transparent 100%);
}
html[data-theme="light"] .stats {
  background: linear-gradient(180deg, rgba(74,62,200,0.03) 0%, transparent 100%);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-k {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.stat-v {
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  font-family: var(--mono);
  font-feature-settings: "tnum" 1;
}
.stat-v small { font-size: 14px; color: var(--text-3); margin-left: 6px; font-weight: 400; }
.stat-v.lime-text { color: var(--lime); }
.stat-delta {
  margin-top: 8px;
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3);
}

/* How it works */
.section { padding: 50px 0; }
.section-head {
  max-width: 1200px; margin: 0 auto 48px;
  padding: 0 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.section-h {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 16ch;
  text-wrap: balance;
}
.section-h .lime { color: var(--lime); }
.section-sub {
  font-family: var(--mono); font-size: 12px;
  color: var(--text-3); letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 6px;
}
.steps {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  padding: 32px 28px 36px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .2s;
}
.step:hover { border-color: var(--border-3); background: var(--bg-2); }
.step-n {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-h {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-h .lime { color: var(--lime); }
.step-body { color: var(--text-2); font-size: 14px; line-height: 1.6; }

/* CTA */
.cta {
  max-width: 1200px; margin: 0 auto;
  padding: 50px 32px;
  text-align: center;
}
.cta h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.cta h2 .lime { color: var(--lime); }
.cta p { color: var(--text-2); font-size: 17px; margin-bottom: 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 28px;
  background: var(--lime); color: #0a0a0c;
  border-radius: 12px;
  font-weight: 600; font-size: 16px;
  transition: all .15s;
  cursor: pointer;
}
html[data-theme="light"] .cta-btn { color: #fff; }
.cta-btn:hover { background: var(--lime-2); transform: translateY(-2px); box-shadow: 0 12px 32px var(--lime-glow); }

/* ════════════════════════════════════════════════════════════════════
   STATE B — Results
   ════════════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.crumb {
  max-width: 1280px; margin: 0 auto;
  padding: 6px 32px 0;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.crumb a {
  color: var(--text-2);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-1);
  transition: all .15s;
  text-decoration: none;
}
.crumb a:hover { color: var(--text); border-color: var(--border-2); }
.crumb .sep { color: var(--text-4); }
.crumb .here { color: var(--text); }

/* Verdict block */
.verdict-block {
  max-width: 1280px; margin: 6px auto 4px;
  padding: 0 32px;
}
.verdict-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.verdict-grid.go   { box-shadow: 0 0 0 1px rgba(0,230,118,0.20), 0 30px 80px rgba(0,230,118,0.06); }
.verdict-grid.mid  { box-shadow: 0 0 0 1px rgba(105,240,174,0.12); }
.verdict-grid.hold { box-shadow: 0 0 0 1px rgba(255,214,0,0.16); }
.verdict-grid.skip { box-shadow: 0 0 0 1px rgba(255,23,68,0.14); }
html[data-theme="light"] .verdict-grid.go {
  box-shadow: 0 0 0 1px rgba(46,125,50,0.22), 0 30px 80px rgba(46,125,50,0.07);
}
html[data-theme="light"] .verdict-grid.mid {
  box-shadow: 0 0 0 1px rgba(46,125,50,0.10);
}

/* Subject panel */
.subject {
  padding: 10px 16px 12px;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
}
.subject-k {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.subject-k::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.subject-name {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 3px;
}
.subject-brand-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.subject-era { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.subject-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 12px;
  padding-top: 8px;
  border-top: 1px dashed var(--border-2);
}
.spec { padding: 3px 0; }
.spec-k {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.spec-v {
  font-family: var(--mono); font-weight: 600;
  font-size: 17px; color: var(--text);
  letter-spacing: -0.01em;
}
.spec-v small { font-size: 11px; color: var(--text-3); margin-left: 3px; font-weight: 400; }

/* Verdict panel */
.verdict {
  padding: 10px 20px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 20px;
  align-items: start;
}
.verdict-k {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.verdict-k::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.verdict-word {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: var(--lime);
  display: block;
  text-shadow: 0 0 60px var(--lime-glow);
  grid-row: 2; grid-column: 1;
  align-self: center;
  white-space: nowrap;
}
.verdict-grid.go   .verdict-word { color: #00e676; text-shadow: 0 0 60px rgba(0,230,118,0.18); }
.verdict-grid.mid  .verdict-word { color: #69f0ae; text-shadow: 0 0 60px rgba(105,240,174,0.18); }
.verdict-grid.hold .verdict-word { color: var(--amber); text-shadow: 0 0 60px rgba(255,214,0,0.2); }
.verdict-grid.skip .verdict-word { color: var(--red);   text-shadow: 0 0 60px rgba(255,23,68,0.18); }
html[data-theme="light"] .verdict-grid.go   .verdict-word { color: #2e7d32; text-shadow: none; }
html[data-theme="light"] .verdict-grid.mid  .verdict-word { color: #388e3c; text-shadow: none; }
html[data-theme="light"] .verdict-grid.hold .verdict-word { color: var(--amber); text-shadow: none; }
html[data-theme="light"] .verdict-grid.skip .verdict-word { color: var(--red);   text-shadow: none; }
.verdict-word .punct { color: var(--text); font-weight: 600; text-shadow: none; }

.verdict-body {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-2);
  grid-row: 2; grid-column: 2;
  align-self: center;
}
.verdict-body strong { color: var(--text); font-weight: 600; }
.verdict-body .accent { color: var(--lime); font-weight: 600; }
.verdict-grid.go .verdict-body .accent { color: #00e676; }
html[data-theme="light"] .verdict-grid.go .verdict-body .accent { color: #2e7d32; }

/* Meter */
.meter {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  grid-row: 3; grid-column: 1 / -1;
}
.meter-label {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.meter-label .value {
  color: var(--lime); font-size: 13px; font-weight: 600;
  letter-spacing: -0.01em;
}
.verdict-grid.go   .meter-label .value { color: #00e676; }
.verdict-grid.mid  .meter-label .value { color: #69f0ae; }
.verdict-grid.hold .meter-label .value { color: var(--amber); }
.verdict-grid.skip .meter-label .value { color: var(--red); }
html[data-theme="light"] .verdict-grid.go   .meter-label .value { color: #2e7d32; }
html[data-theme="light"] .verdict-grid.mid  .meter-label .value { color: #388e3c; }
html[data-theme="light"] .verdict-grid.hold .meter-label .value { color: var(--amber); }
html[data-theme="light"] .verdict-grid.skip .meter-label .value { color: var(--red); }
.meter-track {
  height: 8px;
  background: var(--bg-3);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.meter-fill {
  position: absolute; top: 0; bottom: 0; left: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-2) 100%);
  box-shadow: 0 0 12px var(--lime-glow);
  width: 0;
  transition: width 1s cubic-bezier(.16,.84,.34,1);
}
.verdict-grid.go   .meter-fill { background: linear-gradient(90deg, #00e676 0%, #69f0ae 100%); box-shadow: 0 0 12px rgba(0,230,118,0.20); }
.verdict-grid.mid  .meter-fill { background: linear-gradient(90deg, #69f0ae 0%, #b9f6ca 100%); box-shadow: 0 0 12px rgba(105,240,174,0.20); }
.verdict-grid.hold .meter-fill { background: linear-gradient(90deg, var(--amber) 0%, #ffe566 100%); box-shadow: 0 0 12px rgba(255,214,0,0.25); }
.verdict-grid.skip .meter-fill { background: linear-gradient(90deg, var(--red) 0%, #ff6b8a 100%); box-shadow: 0 0 12px rgba(255,23,68,0.25); }
.meter-scale {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text-4); letter-spacing: 0.04em;
}
.meter-scale .ok { color: var(--lime); }
.verdict-grid.go .meter-scale .ok { color: #00e676; }
html[data-theme="light"] .verdict-grid.go .meter-scale .ok { color: #2e7d32; }

/* Section header */
.sec {
  max-width: 1280px; margin: 0 auto;
  padding: 6px 32px;
}
.sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: nowrap;
  margin-bottom: 6px;
}
.sec-h {
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1;
  white-space: nowrap;
}
.sec-h .lime { color: var(--lime); }
.sec-sub {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-3); letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Pick cards */
.picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pick {
  position: relative;
  padding: 8px 12px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .2s;
  display: flex; flex-direction: column;
}
.pick:hover { transform: translateY(-2px); border-color: var(--border-2); background: var(--bg-2); }
.pick.featured {
  border-color: rgba(0,230,118,0.40);
  background: radial-gradient(ellipse at top right, rgba(0,230,118,0.06) 0%, transparent 50%), var(--bg-1);
}
html[data-theme="light"] .pick.featured {
  border-color: rgba(46,125,50,0.40);
  background: radial-gradient(ellipse at top right, rgba(46,125,50,0.06) 0%, transparent 50%), var(--bg-1);
}
.pick.featured:hover { border-color: var(--lime); }

.pick-rank {
  display: inline-flex; align-items: center; gap: 6px;
  height: 20px; padding: 0 8px;
  border-radius: 999px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  font-family: var(--mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
  width: max-content;
}
.pick.featured .pick-rank {
  background: var(--lime); color: #0a0a0c; border-color: var(--lime);
}
html[data-theme="light"] .pick.featured .pick-rank { color: #fff; }
.pick.featured .pick-rank::before { content: "★"; color: #0a0a0c; font-size: 11px; margin-right: 2px; }
html[data-theme="light"] .pick.featured .pick-rank::before { color: #fff; }

.pick-header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 4px; margin-bottom: 4px;
}
.pick-header-right {
  display: flex; flex-direction: row; align-items: center; gap: 6px; flex-shrink: 0;
}
.pick-name {
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pick-thumb {
  height: 30px; width: auto;
  object-fit: contain; flex-shrink: 0;
  border-radius: 4px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform .2s;
}
.pick:hover .pick-thumb { transform: scale(1.06); }

.pick-gain-block {
  padding: 6px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between;
}
.pick-gain {
  font-family: var(--mono);
  font-size: 22px; font-weight: 600;
  color: var(--lime);
  letter-spacing: -0.04em; line-height: 1;
}
.pick-gain .pct { font-size: 12px; color: var(--text-3); font-weight: 400; margin-left: 2px; }
.pick-gain-label {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--text-3); letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right; white-space: nowrap;
}
.pick-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pick-meta .k {
  font-family: var(--mono); font-size: 9.5px;
  color: var(--text-3); letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.pick-meta .v {
  font-family: var(--mono); font-weight: 600;
  font-size: 12.5px; color: var(--text);
  white-space: nowrap;
}
.pick-meta .v small { font-size: 10.5px; color: var(--text-3); margin-left: 2px; font-weight: 400; }
.pick-price-row {
  margin-top: 6px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.pick-price {
  font-family: var(--mono);
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.02em; color: var(--text);
}
.pick-cpp {
  text-align: right;
  font-family: var(--mono); font-size: 10.5px;
  color: var(--text-3); letter-spacing: 0.02em;
}
.pick-cpp strong {
  display: block;
  font-size: 12.5px; color: var(--lime);
  font-weight: 600; margin-bottom: 1px;
}
.pick:not(.featured) .pick-cpp strong { color: var(--text); }
.pick-buy {
  margin-top: 6px;
  height: 26px; border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-weight: 500; font-size: 11.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .15s;
  text-decoration: none;
}
.pick-buy:hover { background: var(--bg-2); border-color: var(--border-3); }
.pick.featured .pick-buy {
  background: var(--lime); color: #0a0a0c; border-color: var(--lime); font-weight: 600;
}
html[data-theme="light"] .pick.featured .pick-buy { color: #fff; }
.pick.featured .pick-buy:hover { background: var(--lime-2); box-shadow: 0 6px 20px var(--lime-glow); }

/* Chart */
.chart-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.chart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.chart-head h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.015em; }
.chart-legend {
  display: flex; gap: 18px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-2); letter-spacing: 0.02em;
}
.chart-legend .lg {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; vertical-align: middle; margin-right: 6px;
}
.chart-legend .lg.you  { background: var(--text); box-shadow: 0 0 0 3px rgba(232,232,240,0.12); }
.chart-legend .lg.up   { background: var(--lime); box-shadow: 0 0 8px var(--lime-glow); }
.chart-legend .lg.best { background: transparent; border: 2px solid var(--lime); }
.chart-body { padding: 20px 24px; overflow-x: auto; }
.chart-body svg { width: 100%; min-width: 800px; height: auto; display: block; }

/* Full table */
.table-wrap {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: clip; /* clips border-radius without blocking child overflow-x:auto scrollbars */
}
/* ── Value score badge ───────────────────────────────────────────── */
.perf-score { font-family: var(--mono); font-size: 12px; font-weight: 600; white-space: nowrap; }
.perf-score-best { color: var(--lime); }
.perf-score-good { color: var(--lime); opacity: 0.75; }
.perf-score-ok   { color: var(--amber); }
.perf-score-bad  { color: var(--text-3); }
.val-label {
  display: inline-block; padding: 1px 5px; border-radius: 3px; border: 1px solid transparent;
  font-size: 10px; font-weight: 500; letter-spacing: 0.03em;
  vertical-align: middle; margin-left: 3px;
}
.perf-score-best .val-label { background: rgba(196,242,58,0.10); border-color: rgba(196,242,58,0.35); color: var(--lime); }
.perf-score-good .val-label { background: rgba(196,242,58,0.07); border-color: rgba(196,242,58,0.25); color: var(--lime); }
.perf-score-ok   .val-label { background: rgba(255,181,71,0.08); border-color: rgba(255,181,71,0.30); color: var(--amber); }
.perf-score-bad  .val-label { background: var(--bg-3); border-color: var(--border); color: var(--text-3); }

/* ── Best-value showcase table (landing page) ───────────────────── */
.showcase-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.showcase-table-box {
  border: 1px solid var(--border); border-radius: 12px;
  overflow-x: auto;
}
.sc-hidden { display: none; }
.showcase-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 0; gap: 12px; }
.showcase-show-all,
.showcase-more-link {
  font-family: var(--mono); font-size: 12px;
  color: #00e5ff; background: transparent;
  border: 1px solid rgba(0,229,255,0.4); border-radius: 6px;
  padding: 5px 12px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center;
  transition: border-color .15s, background .15s;
}
.showcase-show-all:hover,
.showcase-more-link:hover {
  border-color: #00e5ff;
  background: rgba(0,229,255,0.06);
}
html[data-theme="light"] .showcase-show-all,
html[data-theme="light"] .showcase-more-link {
  color: #4a3ec8; border-color: rgba(74,62,200,0.35);
}
html[data-theme="light"] .showcase-show-all:hover,
html[data-theme="light"] .showcase-more-link:hover {
  border-color: #4a3ec8; background: rgba(74,62,200,0.05);
}
.table-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.table-head h3 { font-size: 15px; font-weight: 600; letter-spacing: -0.015em; }
.table-head h3 .count {
  font-family: var(--mono); font-size: 13px;
  color: var(--text-3); font-weight: 500; margin-left: 8px;
}
.table-controls { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.sort-row { display: flex; gap: 6px; flex-wrap: wrap; }
.sortbtn, a.sortbtn {
  height: 28px; padding: 0 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-2);
  transition: all .12s;
  display: inline-flex; align-items: center; gap: 5px;
  text-decoration: none; cursor: pointer;
}
.sortbtn:hover, a.sortbtn:hover { color: var(--text); border-color: var(--border-2); }
.sortbtn.is-active, a.sortbtn.is-active {
  background: var(--lime); color: #0a0a0c;
  border-color: var(--lime); font-weight: 600;
}
html[data-theme="light"] .sortbtn.is-active,
html[data-theme="light"] a.sortbtn.is-active { color: #fff; }

.table-search-wrap {
  display: flex; align-items: center; gap: 7px;
  height: 28px; padding: 0 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px; color: var(--text-3);
}
.table-search-wrap input {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text); width: 130px;
}
.table-search-wrap input::placeholder { color: var(--text-3); }

.data-table {
  width: 100%; border-collapse: collapse;
}
.data-table thead th {
  text-align: left;
  padding: 7px 8px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text-3); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.data-table thead th.r { text-align: right; }
.data-table tbody td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px; vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr { transition: background .12s; cursor: pointer; }
.data-table tbody tr:hover td { background: var(--bg-2); }
.data-table tbody tr.featured-row { background: rgba(0,229,255,0.03); }
html[data-theme="light"] .data-table tbody tr.featured-row {
  background: rgba(74,62,200,0.04);
}
.data-table tbody tr.featured-row td:first-child { position: relative; }
.data-table tbody tr.featured-row td:first-child::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--lime);
}
.data-table td.r {
  text-align: right; font-family: var(--mono);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.data-table td.gain { font-weight: 600; font-family: var(--mono); }
.data-table td.gain.gain-neg  { color: var(--red); }
.data-table td.gain.gain-gray { color: var(--text-3); }
.data-table td.gain.gain-low  { color: var(--amber); }
.data-table td.gain.gain-mid  { color: #69f0ae; }
.data-table td.gain.gain-high { color: #00e676; }
html[data-theme="light"] .data-table td.gain.gain-mid  { color: #388e3c; }
html[data-theme="light"] .data-table td.gain.gain-high { color: #2e7d32; }
.data-table td.gain .muted { color: var(--text-3); font-weight: 400; }
.data-table td.price { font-weight: 600; font-family: var(--mono); }
.data-table td.model {
  font-weight: 500;
  max-width: 12ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.data-table .col-cats { white-space: nowrap; }

/* ── Badge system (matches best-gpu) ───────────────────────────────── */
.badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-nvidia  { background: rgba(118,185,0,0.12);  border-color: rgba(118,185,0,0.35);  color: #76b900; }
.badge-amd     { background: rgba(237,28,36,0.10);  border-color: rgba(237,28,36,0.35);  color: #ed1c24; }
.badge-intel   { background: rgba(0,229,255,0.10);  border-color: rgba(0,229,255,0.35);  color: #00e5ff; }
.badge-ai      { background: rgba(0,200,150,0.10);  border-color: rgba(0,200,150,0.35);  color: #00c896; }
.badge-dc      { background: rgba(124,77,255,0.10); border-color: rgba(124,77,255,0.30); color: #9b77ff; }
.badge-ws      { background: rgba(255,214,0,0.08);  border-color: rgba(255,214,0,0.30);  color: #ffd600; }
.badge-cs      { background: var(--bg-3);            border-color: var(--border);          color: var(--text-2); }
.badge-used    { background: rgba(255,107,53,0.08); border-color: rgba(255,107,53,0.30); color: #ff7a44; }
.badge-new     { background: rgba(0,191,165,0.10);  border-color: rgba(0,191,165,0.35);  color: #00bfa5; }

html[data-theme="light"] .badge-nvidia { color: #3d6200; background: rgba(61,98,0,0.08);  border-color: rgba(61,98,0,0.25); }
html[data-theme="light"] .badge-amd    { color: #b81e22; background: rgba(184,30,34,0.08); border-color: rgba(184,30,34,0.25); }
html[data-theme="light"] .badge-intel  { color: #4a3ec8; background: rgba(74,62,200,0.08); border-color: rgba(74,62,200,0.25); }
html[data-theme="light"] .badge-ai     { color: #007a5c; background: rgba(0,122,92,0.07);  border-color: rgba(0,122,92,0.25); }
html[data-theme="light"] .badge-dc     { color: #5522cc; background: rgba(85,34,204,0.07); border-color: rgba(85,34,204,0.25); }
html[data-theme="light"] .badge-ws     { color: #886600; background: rgba(136,102,0,0.07); border-color: rgba(136,102,0,0.25); }
html[data-theme="light"] .badge-new    { color: #00796b; background: rgba(0,121,107,0.08); border-color: rgba(0,121,107,0.30); }
html[data-theme="light"] .badge-used   { color: #b84400; background: rgba(184,68,0,0.07);  border-color: rgba(184,68,0,0.25); }
.data-table .col-amazon {
  max-width: 0;    /* CSS trick: forces this column to absorb all leftover width */
  width: 99%;
}
.data-table .col-amazon a, .data-table .col-amazon span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #00e5ff;
  text-decoration: none;
}
.data-table .col-amazon a:hover { color: #00e5ff; text-decoration: underline; }
html[data-theme="light"] .data-table .col-amazon a,
html[data-theme="light"] .data-table .col-amazon span {
  color: #4a3ec8;
  font-weight: 600;
}
html[data-theme="light"] .data-table .col-amazon a:hover { color: #4a3ec8; }

.cat-badge {
  display: inline-flex; align-items: center;
  height: 18px; padding: 0 5px;
  border-radius: 4px;
  font-family: var(--mono); font-size: 9px;
  font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 2px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-3);
}
.cat-badge.cat-gaming  { background: rgba(196,242,58,0.08);  border-color: rgba(196,242,58,0.22);  color: var(--lime); }
.cat-badge.cat-ai      { background: rgba(100,160,255,0.08); border-color: rgba(100,160,255,0.22); color: #6aa0ff; }
.cat-badge.cat-render  { background: rgba(255,160,90,0.08);  border-color: rgba(255,160,90,0.22);  color: #ffa05a; }
.cat-badge.cat-dc      { background: rgba(190,100,255,0.08); border-color: rgba(190,100,255,0.22); color: #be64ff; }

/* Filter panel */
.upgrade-filters {
  display: flex; flex-wrap: wrap; gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.uf-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
}
.uf-label {
  font-family: var(--mono); font-size: 9.5px;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
  padding-right: 4px; border-right: 1px solid var(--border-2);
  margin-right: 2px;
}
.uf-group label {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 11.5px;
  color: var(--text-2); cursor: pointer;
  white-space: nowrap;
}
.uf-group label:hover { color: var(--text); }
.uf-group input[type="checkbox"] { accent-color: var(--lime); cursor: pointer; }
.uf-reset {
  margin-left: auto; align-self: center;
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); background: none; border: none;
  cursor: pointer; padding: 0;
  text-decoration: underline;
}
.uf-reset:hover { color: var(--text); }

.buy-link {
  color: var(--text-2);
  font-family: var(--mono); font-size: 12px;
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none;
}
.buy-link:hover { color: var(--lime); }

/* Methodology */
.method {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
}
.method-side {
  font-family: var(--mono); font-size: 11px;
  color: var(--text-3); letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
}
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.method-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.method-item h4 .lime { color: var(--lime); }
.method-item p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.method-item code {
  font-family: var(--mono); font-size: 12px;
  background: var(--bg-3); padding: 1px 5px;
  border-radius: 3px; color: var(--lime);
}

/* Empty state */
.empty {
  text-align: center; padding: 80px 32px;
  color: var(--text-3); font-family: var(--mono); font-size: 14px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .verdict-grid { grid-template-columns: 1fr; }
  .subject { border-right: 0; border-bottom: 1px solid var(--border); }
  .picks { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; gap: 16px; }
  .method-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 920px) {
  .hero { padding: 60px 0 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .showcase-wrap { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .search { height: 60px; padding: 4px 4px 4px 16px; }
  .search input { font-size: 16px; }
  .search-btn { padding: 0 14px; height: 52px; font-size: 13px; }
  .search-btn .label-long { display: none; }
  .subject { padding: 20px; }
  .verdict { padding: 20px; }
  .verdict-word { font-size: 48px; }
  .sec { padding: 12px 16px; }
  .verdict-block { padding: 0 16px; }
  .crumb { padding: 12px 16px 0; }
  .data-table thead th, .data-table tbody td { padding: 5px 6px; }
}

/* ── Widget ──────────────────────────────────────────────────────────── */
.widget-body { margin: 0; min-height: 0; }

.widget-search { padding: 28px 24px 12px; text-align: center; }

.widget-headline {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 18px; text-wrap: balance;
  text-align: center;
}
.widget-headline .accent {
  color: var(--lime); font-weight: 700;
  font-style: italic; letter-spacing: -0.05em;
}

.widget-back { padding: 14px 24px 0; }
.widget-back a {
  font-size: 12px; color: var(--text-3); text-decoration: none;
  letter-spacing: 0.02em; transition: color .15s;
}
.widget-back a:hover { color: var(--lime); }

/* Compact pick cards */
.picks--compact { gap: 6px; }
.picks--compact .pick { padding: 5px 8px; border-radius: 9px; }
.picks--compact .pick-rank { font-size: 9px; height: 17px; padding: 0 6px; }
.picks--compact .pick-header { margin-top: 3px; margin-bottom: 2px; }
.picks--compact .pick-name { font-size: 11px; }
.picks--compact .pick-gain-block { margin: 2px 0; }
.picks--compact .pick-gain { font-size: 22px; line-height: 1; }
.picks--compact .pick-gain-label { font-size: 9px; }
.picks--compact .pick-price-row { margin-top: 4px; }
.picks--compact .pick-price { font-size: 13px; }
.picks--compact .pick-cpp { font-size: 9px; }
.picks--compact .pick-buy { padding: 4px 8px; font-size: 10px; margin-top: 4px; border-radius: 5px; }



/* Credit bar */
.widget-credit {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 10px;
  padding: 10px 16px; margin-top: 8px;
  font-size: 11px; color: var(--text-3);
  border-top: 1px solid var(--border);
}
.widget-credit a { color: var(--text-3); text-decoration: none; transition: color .15s; }
.widget-credit a:hover { color: var(--lime); }
.widget-credit .credit-sep { color: var(--border-2); user-select: none; }
.widget-credit .credit-stat { color: var(--text-2); font-weight: 600; }
