/* ── Variables & reset ── */
:root {
  --bg: #fbfbfd;
  --surface: #fff;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --ink-3: #6e6e73;
  --line: #e5e5ea;
  --soft: #f2f2f4;
  --accent: #0071e3;
  --tint: #e8f1fd;
  --good: #29a745;
  --warn: #f5a623;
  --bad: #e74c3c;
  --r: 14px;
  --rl: 22px;
  --w: 880px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.011em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap { width: 100%; max-width: var(--w); margin: 0 auto; padding: 0 20px; flex: 1; min-width: 0; }
section { padding: 50px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }
h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
h1 .soft { color: var(--ink-3); font-weight: 500; }
h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.intro { color: var(--ink-3); margin-bottom: 28px; font-size: 16px; }

/* ── Breadcrumbs ── */
.crumbs {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs span.sep { color: var(--line); }
.crumbs span.here { color: var(--ink); }

/* ── Hero ── */
.hero { padding: 36px 0 24px; }
.eyebrow { display: inline-block; font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 12px; }
.dek { font-size: clamp(17px, 2vw, 19px); color: var(--ink-2); max-width: 600px; margin-bottom: 22px; }

/* ── Blog list (index) ── */
.hero.hero--index { padding: 36px 0 32px; }
.list { padding: 0; border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: background .15s;
}
.row:hover { background: var(--surface); text-decoration: none; }
.row:hover .tt { color: var(--accent); }
.rk { color: var(--ink-3); font-weight: 600; display: inline-block; min-width: 18px; }
.list .rk {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  min-width: 30px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.tt { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; letter-spacing: -.012em; transition: color .15s; }
.row .meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; white-space: nowrap; }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.tag.howto  { background: var(--tint); color: var(--accent); border-color: rgba(0,113,227,.2); }
.tag.review { background: var(--soft); color: var(--ink-2); }
.tag.best   { background: rgba(245,166,35,.12); color: #8a5a00; border-color: rgba(245,166,35,.25); }
.tag.guide  { background: rgba(41,167,69,.10); color: #1f6f3a; border-color: rgba(41,167,69,.2); }
time { font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

/* ── Pagination ── */
.pag { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; padding: 40px 0 0; }
.pag a, .pag span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink);
  text-decoration: none; transition: border-color .15s, background .15s, color .15s;
}
.pag a:hover { border-color: var(--accent); background: var(--tint); color: var(--accent); text-decoration: none; }
.pag .cur { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 600; cursor: default; }
.pag .gap { border: 0; background: transparent; color: var(--ink-3); min-width: 24px; }
.pag .nav { font-weight: 500; }
.pag .nav.off { color: var(--ink-3); border-color: var(--line); background: transparent; pointer-events: none; opacity: .5; }

/* ── Byline ── */
.byline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 6px 0 22px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.byline .av { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--tint); color: var(--accent); display: grid; place-items: center; }
.byline .av svg { width: 20px; height: 20px; }
.byline .by-text { display: flex; flex-direction: column; line-height: 1.3; font-size: 13px; }
.byline .by-text b { color: var(--ink); font-weight: 600; letter-spacing: -.005em; }
.byline .by-text b a { color: var(--ink); text-decoration: none; }
.byline .by-text b a:hover { color: var(--accent); }
.byline .by-meta { color: var(--ink-3); font-size: 12px; }
.byline .by-meta time { font-variant-numeric: tabular-nums; }
.byline .by-meta .sep { margin: 0 6px; color: var(--line); }
.byline .by-meta .upd { color: var(--ink-2); }

/* ── Verdict bar ── */
.verdict-bar {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 20px; margin-bottom: 20px;
}
.vb-score { font-size: 36px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.vb-score small { font-size: 14px; color: var(--ink-3); font-weight: 500; }
.vb-mid { flex: 1; min-width: 140px; }
.vb-mid b { display: block; font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.vb-mid span { font-size: 13px; color: var(--ink-3); }
.vb-rec { display: inline-block; font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--good); color: #fff; letter-spacing: .04em; text-transform: uppercase; }
.vb-rec.bad { background: var(--bad); }

/* ── Quick / Warning boxes ── */
.quick {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: var(--r);
  padding: 18px 22px; margin-bottom: 20px;
}
.quick b { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin-bottom: 8px; font-weight: 600; }
.quick p { font-size: 16px; color: var(--ink-2); line-height: 1.55; }
.quick p strong { color: var(--ink); font-weight: 600; }

.warning {
  border-radius: var(--r); padding: 14px 18px; margin-bottom: 20px;
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff7e6; border: 1px solid #fce6a8; border-left: 3px solid var(--warn);
}
.warning.warning-bad { background: #fdecea; border-color: #f5c6c0; border-left-color: var(--bad); }
.warning-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--warn); color: #fff; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.warning.warning-bad .warning-icon { background: var(--bad); }
.warning p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.warning p strong { color: var(--ink); font-weight: 600; }

/* ── CTA row ── */
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.btn { display: inline-block; background: var(--ink); color: #fff; padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 500; }
.btn:hover { background: #000; text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { background: var(--soft); }

/* ── Featured image ── */
.featured {
  position: relative; aspect-ratio: 16/9; border-radius: var(--rl); overflow: hidden;
  background: radial-gradient(circle at 25% 30%, rgba(0,113,227,.10), transparent 55%),
              radial-gradient(circle at 75% 70%, rgba(184,138,46,.08), transparent 55%),
              linear-gradient(135deg, #f5f5f7, #e8e8ed);
  border: 1px solid var(--line); margin-bottom: 28px;
  display: grid; place-items: center;
}
.featured img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.featured-ph { position: relative; text-align: center; padding: 24px; color: var(--ink-3); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.featured-ph svg { display: block; margin: 0 auto 10px; opacity: .5; }
.fc { position: absolute; top: 14px; left: 14px; z-index: 2; }
.fc .tag {
  display: inline-block; font-size: 10px; font-weight: 600; color: var(--ink-2);
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 5px 11px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.8);
}

/* ── Table ── */
.tbl { width: 100%; max-width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
table { width: 100%; border-collapse: collapse; min-width: 500px; }
th {
  background: var(--soft); text-align: left; font-size: 11px; color: var(--ink-3);
  font-weight: 600; padding: 12px 16px; text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
td { padding: 14px 16px; font-size: 15px; color: var(--ink-2); border-bottom: 1px solid var(--soft); vertical-align: middle; }
tr:last-child td { border-bottom: 0; }
tbody tr { cursor: pointer; transition: background .15s; }
tbody tr:hover td { background: var(--tint); }
tr.top td { background: linear-gradient(90deg, rgba(0,113,227,.08), rgba(0,113,227,.02)); font-weight: 500; }
tr.top td.p { color: var(--accent); }
tr.top:hover td { background: var(--tint); }
td.p { color: var(--ink); font-weight: 500; font-size: 16px; }
.table-rk { color: var(--ink-3); font-weight: 600; display: inline-block; min-width: 18px; }
.pill { display: inline-block; font-size: 11px; font-weight: 600; padding: 1px 7px; border-radius: 5px; margin-left: 5px; vertical-align: 1px; background: var(--accent); color: #fff; letter-spacing: .03em; }
.y { color: var(--good); }
.n { color: var(--ink-3); }
.p2 { color: var(--warn); }
.r { color: var(--bad); }

/* ── Score bar ── */
.sbar { display: inline-flex; align-items: center; gap: 8px; }
.sbar-track { width: 80px; height: 5px; background: var(--soft); border-radius: 3px; overflow: hidden; }
.sbar-fill { height: 100%; border-radius: 3px; background: var(--accent); }
.sbar-fill.high { background: var(--good); }
.sbar-fill.mid { background: var(--warn); }
.sbar-fill.low { background: var(--bad); }
.sval { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; font-size: 14px; min-width: 32px; }

/* ── Head-to-head table ── */
.vs-row td.win { background: rgba(41,167,69,.06); font-weight: 600; color: var(--ink); }
.vs-row td.lose { color: var(--ink-3); }

/* ── Accordion items ── */
.items { display: flex; flex-direction: column; gap: 12px; }
.item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); scroll-margin-top: 20px; position: relative; }
.item[open] { border-color: var(--accent); }
.item.top {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 4px var(--tint), 0 8px 24px rgba(0,113,227,.08);
  margin-top: 22px;
}
.item.top::before {
  content: attr(data-badge);
  position: absolute; top: -11px; left: 18px;
  background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; z-index: 2; white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.item.top summary { padding-top: 22px; }
.item.top .item-num { color: var(--accent); font-weight: 700; }
.item.top .item-name { font-weight: 600; }
.item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.item summary::-webkit-details-marker { display: none; }
.item-num { font-size: 14px; font-weight: 600; color: var(--ink-3); min-width: 24px; }
.item-name { flex: 1; font-size: 18px; font-weight: 500; letter-spacing: -.015em; color: var(--ink); }
.item-name small { display: block; font-size: 13px; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
.score { background: var(--soft); padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.score.low { background: rgba(231,76,60,.1); color: var(--bad); }
.score.mid { background: rgba(245,166,35,.12); color: #b87514; }
.item.top .score { background: var(--tint); color: var(--accent); }
.time-pill { background: var(--soft); padding: 3px 9px; border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--ink-2); }
.item.top .time-pill { background: var(--tint); color: var(--accent); font-weight: 600; }
.plus {
  width: 24px; height: 24px; border-radius: 50%; background: var(--soft);
  display: grid; place-items: center; color: var(--ink-2); font-size: 15px;
  transition: transform .2s, background .2s, color .2s; flex-shrink: 0;
}
.item[open] .plus { transform: rotate(45deg); background: var(--accent); color: #fff; }

/* ── Item body ── */
.body { padding: 0 22px 22px; }
.body > div { border-top: 1px solid var(--soft); padding-top: 18px; }
.body p { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin-bottom: 16px; }
.body p:last-child { margin-bottom: 0; }
.body p strong { color: var(--ink); font-weight: 600; }
.body a { color: var(--accent); }

/* ── How-to: item meta row ── */
.item-meta { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--soft); }
.meta-cell b { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 600; margin-bottom: 3px; }
.meta-cell span { font-size: 14px; color: var(--ink); font-weight: 500; }

/* ── How-to: numbered steps ── */
ol.steps { list-style: none; counter-reset: s; margin-bottom: 14px; }
ol.steps li {
  counter-increment: s;
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 15px; color: var(--ink-2);
  border-bottom: 1px solid var(--soft);
  line-height: 1.55;
}
ol.steps li:last-child { border-bottom: 0; }
ol.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 500;
}
ol.steps li strong { color: var(--ink); font-weight: 600; }
ol.steps li code { background: var(--soft); padding: 1px 6px; border-radius: 4px; font-size: 13px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--ink); }

/* ── Note box ── */
.note { background: var(--soft); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-top: 12px; display: flex; gap: 10px; align-items: flex-start; }
.note-i { width: 18px; height: 18px; border-radius: 50%; background: var(--ink-3); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.note strong { color: var(--ink); font-weight: 600; }

/* ── Pros / Cons ── */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 14px; }
.pc h3 { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 600; margin-bottom: 8px; }
.pc ul { list-style: none; }
.pc li { padding: 5px 0 5px 20px; position: relative; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.pc .pros li::before,
.pc .cons li::before {
  position: absolute; left: 0; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 600; line-height: 1;
}
.pc .pros li::before { content: '+'; background: var(--good); color: #fff; }
.pc .cons li::before { content: '−'; background: var(--bad); color: #fff; }
.items--review .pc .cons li::before { background: var(--line); color: var(--ink-2); }

/* ── Price grid ── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin-bottom: 14px; }
.price-cell { background: var(--soft); border-radius: 10px; padding: 14px; }
.price-cell b { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 600; margin-bottom: 4px; }
.price-cell strong { font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.price-cell span { display: block; font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.price-cell.highlight { background: var(--tint); border: 1px solid rgba(0,113,227,.2); }
.price-cell.highlight strong { color: var(--accent); }
.price-cell.bad { background: #fdecea; border: 1px solid #f5c6c0; }
.price-cell.bad strong { color: var(--bad); }

/* ── Inline link ── */
.link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; }
.link::after { content: '→'; transition: transform .2s; }
.link:hover::after { transform: translateX(3px); }

/* ── Video embed ── */
.video { position: relative; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; background: #000; margin: 18px 0 4px; cursor: pointer; }
.video img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; transition: opacity .25s, transform .35s; }
.video:hover img { opacity: 1; transform: scale(1.02); }
.video .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 48px; border-radius: 14px; background: rgba(0,0,0,.75);
  display: grid; place-items: center;
  transition: background .2s, transform .2s; pointer-events: none;
}
.video:hover .play { background: #ff0000; transform: translate(-50%, -50%) scale(1.06); }
.video .play::before { content: ''; width: 0; height: 0; border-left: 14px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; }
.video .label { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 12px; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Reddit card ── */
.reddit-card {
  display: flex; gap: 14px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 20px; margin: 24px 0;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .15s;
  text-decoration: none; color: var(--ink);
}
.reddit-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #ff4500; }
.reddit-card:hover { border-color: #ff4500; transform: translateY(-2px); text-decoration: none; }
.reddit-card .rc-ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: #ff4500; color: #fff; display: grid; place-items: center; }
.reddit-card .rc-ico svg { width: 22px; height: 22px; fill: #fff; }
.reddit-card .rc-link { flex: 1; font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; letter-spacing: -.005em; }
.reddit-card .rc-arrow { flex-shrink: 0; color: var(--ink-3); font-size: 16px; transition: transform .2s, color .2s; }
.reddit-card:hover .rc-arrow { color: #ff4500; transform: translateX(4px); }

/* ── Related reading (external links) ── */
.rr { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-top: 8px; }
.rr a {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: var(--ink);
  transition: border-color .2s, transform .15s, background .15s;
}
.rr a:hover { border-color: var(--accent); background: var(--tint); transform: translateY(-2px); text-decoration: none; }
.rr .rr-ico { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.rr .rr-ico svg { width: 14px; height: 14px; }
.rr a:hover .rr-ico { background: #fff; }
.rr .rr-txt { flex: 1; min-width: 0; }
.rr .rr-anchor { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.4; letter-spacing: -.01em; display: block; }
.rr .rr-host { display: block; font-size: 11px; color: var(--ink-3); margin-top: 3px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rr a:hover .rr-host { color: var(--accent); }

/* ── FAQ ── */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--ink-3); transition: transform .2s, color .2s; }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq .a { padding: 0 4px 18px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 700px; }

/* ── Related articles grid ── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.related-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; text-decoration: none; color: var(--ink); display: block; transition: border-color .2s, transform .15s; }
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.related-card time { display: block; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin-bottom: 6px; }
.related-card h3 { font-size: 15px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); line-height: 1.35; margin: 0; }

/* ── Float CTA ── */
.float-cta {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.18), 0 4px 10px rgba(0,0,0,.08);
  font-size: 14px; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none;
  opacity: 0; transform: translateY(20px) scale(.95);
  transition: opacity .35s cubic-bezier(.2,.7,.3,1), transform .35s cubic-bezier(.2,.7,.3,1), background .25s;
  pointer-events: none;
}
.float-cta.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta:hover { background: var(--accent); text-decoration: none; color: #fff; transform: translateY(-2px) scale(1.02); }
.float-cta .fc-ico { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; transition: background .25s; }
.float-cta:hover .fc-ico { background: rgba(255,255,255,.22); }
.float-cta .fc-ico svg { width: 16px; height: 16px; fill: #fff; }
.float-cta .fc-body { display: flex; flex-direction: column; line-height: 1.15; }
.float-cta .fc-body small { font-size: 10px; font-weight: 500; opacity: .65; text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }

/* ── Footer ── */
footer { padding: 30px 20px; text-align: center; font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); margin-top: 60px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 40px 0; }
  .hero { padding: 24px 0 16px; }
  .featured { aspect-ratio: 16/9; border-radius: 18px; }
  .verdict-bar { padding: 14px 16px; gap: 14px; }
  .vb-score { font-size: 30px; }

  .row { grid-template-columns: auto 1fr; gap: 12px; padding: 14px 4px; row-gap: 6px; }
  .list .rk { font-size: 12px; min-width: 26px; }
  .tt { grid-column: 2; font-size: 15px; }
  .row .meta { grid-column: 2; justify-content: flex-start; gap: 8px; }

  .item.top { margin-top: 22px; }
  .item.top::before { left: 14px; font-size: 9px; padding: 4px 9px; }
  .item.top summary { padding-top: 22px; }
  .item summary { padding: 16px 18px; gap: 12px; }
  .item-name { font-size: 16px; }
  .body { padding: 0 18px 18px; }
  .pc { grid-template-columns: 1fr; gap: 14px; }

  .related-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .related-card { padding: 14px 16px; }

  .reddit-card { padding: 14px 16px; gap: 12px; }
  .reddit-card .rc-ico { width: 32px; height: 32px; }
  .reddit-card .rc-link { font-size: 14px; }

  .pag a, .pag span { min-width: 36px; height: 36px; padding: 0 12px; font-size: 13px; }

  .float-cta { bottom: 14px; right: 14px; padding: 10px 16px 10px 10px; font-size: 13px; }
  .float-cta .fc-ico { width: 26px; height: 26px; }

  .price-grid { grid-template-columns: 1fr; gap: 8px; }
  .item-meta { gap: 12px; }

  /* verdict bar — score+text row 1, badge row 2 at natural width */
  .verdict-bar { gap: 10px 14px; }
  .vb-score { flex-shrink: 0; font-size: 32px; }
  .vb-mid { flex: 1 1 180px; min-width: 0; }
  .verdict-bar::after { content: ''; flex-basis: 100%; height: 0; order: 2; }
  .vb-rec { order: 3; flex: 0 0 auto; }

  /* top badge — clip long text instead of overflowing viewport */
  .item.top::before { max-width: calc(100vw - 48px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

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