/* ─────────────────────────────────────────────────────────────
   ONE GOOD THING — "printed verdict" design system
   Paper #FCFBF7 · Ink #1C1B17 · Pine #1E6B4E (the pick)
   Strike #AD3A28 (eliminations) · Tint #E9F1EC · Hairline #E3E0D7
   Type: Bitter (slab verdicts) · Public Sans (body) · Spline Sans Mono (data)
   ───────────────────────────────────────────────────────────── */

:root {
  --paper: #FCFBF7;
  --ink: #1C1B17;
  --ink-soft: #55534B;
  --pine: #1E6B4E;
  --pine-deep: #14543C;
  --tint: #E9F1EC;
  --strike: #AD3A28;
  --hairline: #E3E0D7;
  --card: #FFFFFF;
  --display: 'Bitter', Georgia, serif;
  --body: 'Public Sans', -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Spline Sans Mono', 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
:focus-visible { outline: 2px solid var(--pine); outline-offset: 3px; border-radius: 2px; }

/* ── header ── */
.header {
  display: flex; align-items: center; gap: 28px;
  padding: 18px 5vw;
  border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; background: var(--paper); z-index: 40;
  flex-wrap: wrap;
}
.wordmark { display: inline-flex; gap: 7px; align-items: baseline; text-decoration: none; font-family: var(--display); font-weight: 900; font-size: 19px; letter-spacing: 0.02em; }
.wm-good { color: var(--pine); }
.wm-dot { color: var(--pine); }
.nav { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; }
.nav a { text-decoration: none; color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
.jude-pill {
  margin-left: auto;
  font-family: var(--mono); font-size: 11.5px; text-decoration: none;
  color: var(--pine-deep); background: var(--tint);
  border: 1px solid var(--pine); border-radius: 999px;
  padding: 6px 13px; white-space: nowrap;
}
.jude-pill:hover { background: var(--pine); color: #fff; }

/* ── hero ── */
.hero { padding: 72px 5vw 56px; max-width: 980px; margin: 0 auto; }
.hero-eyebrow { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pine-deep); margin-bottom: 18px; }
.hero-h1 { font-family: var(--display); font-weight: 900; font-size: clamp(34px, 5.6vw, 62px); line-height: 1.04; letter-spacing: -0.012em; }
.hero-pine { color: var(--pine); }
.hero-sub { max-width: 620px; margin-top: 22px; font-size: 17px; color: var(--ink-soft); }

.hero-ledger {
  margin-top: 40px; max-width: 640px;
  background: var(--card); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 18px 20px 14px;
  box-shadow: 0 1px 0 var(--hairline);
}
.hero-ledger-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); border-bottom: 1px solid var(--hairline); padding-bottom: 9px; margin-bottom: 4px; }
.hl-row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px dashed var(--hairline); font-size: 14px; align-items: baseline; }
.hl-row:last-child { border-bottom: none; }
.hl-name { position: relative; font-weight: 600; }
.hl-reason { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); text-align: right; flex-shrink: 0; }
.hl-strike { position: absolute; left: -2px; right: -2px; top: 54%; height: 2px; background: var(--strike); transform: scaleX(0); transform-origin: left; }
.hl-elided .hl-name { font-weight: 400; color: var(--ink-soft); font-style: italic; }
.hl-winner { background: var(--tint); margin: 6px -10px -6px; padding: 10px; border-radius: 7px; border-bottom: none; }
.hl-winner .hl-name { color: var(--pine-deep); font-family: var(--display); font-weight: 700; }
.hl-winner .hl-reason { color: var(--pine-deep); font-weight: 500; }

@media (prefers-reduced-motion: no-preference) {
  .hl-strike { animation: strike 0.45s ease forwards; animation-delay: var(--d); }
  .hl-row:not(.hl-winner):not(.hl-elided) .hl-name,
  .hl-row:not(.hl-winner):not(.hl-elided) .hl-reason { animation: dim 0.45s ease forwards; animation-delay: var(--d); }
  .hl-winner { opacity: 0; transform: translateY(4px); animation: arrive 0.5s ease forwards; animation-delay: var(--d); }
  @keyframes strike { to { transform: scaleX(1); } }
  @keyframes dim { to { color: var(--ink-soft); opacity: 0.62; } }
  @keyframes arrive { to { opacity: 1; transform: translateY(0); } }
}
@media (prefers-reduced-motion: reduce) {
  .hl-strike { transform: scaleX(1); }
  .hl-row:not(.hl-winner):not(.hl-elided) .hl-name { color: var(--ink-soft); opacity: 0.62; }
}

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--hairline);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; color: var(--ink-soft);
}
.trust-strip span::before { content: "\2713\00a0"; color: var(--pine); font-weight: 700; }

/* ── sections ── */
.section { padding: 64px 5vw; max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 640px; margin-bottom: 34px; }
.section-h { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; }
.section-sub { margin-top: 10px; color: var(--ink-soft); }

/* ── pick cards ── */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 18px; }
.card {
  text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--hairline); border-radius: 10px;
  border-top: 4px solid var(--pine);
  padding: 20px 20px 16px;
  font-family: var(--body); color: var(--ink); font-size: 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(28,27,23,0.09); }
.card-cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-soft); }
.card-name { font-family: var(--display); font-weight: 700; font-size: 21px; line-height: 1.18; }
.card-line { font-size: 14px; color: var(--ink-soft); flex-grow: 1; }
.card-meta { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); display: flex; gap: 7px; align-items: baseline; }
.card-price { color: var(--ink); font-weight: 500; }
.card-foot { display: flex; align-items: baseline; gap: 12px; border-top: 1px dashed var(--hairline); padding-top: 11px; margin-top: 4px; }
.card-score { font-family: var(--display); font-weight: 900; font-size: 20px; color: var(--pine-deep); }
.card-score small { font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.card-recheck { font-family: var(--mono); font-size: 10.5px; color: var(--ink-soft); }
.card-go { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--pine-deep); }

/* ── no pick ── */
.nopick-section { padding-top: 24px; }
.nopick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.nopick-card { background: transparent; border: 1.5px dashed var(--strike); border-radius: 10px; padding: 22px; }
.nopick-cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-soft); }
.nopick-verdict { font-family: var(--display); font-weight: 900; font-size: 23px; color: var(--strike); margin: 6px 0 10px; }
.nopick-reason { font-size: 14.5px; color: var(--ink-soft); }
.nopick-watch { margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink); border-top: 1px dashed var(--hairline); padding-top: 10px; }

/* ── methodology ── */
.rubric { border: 1px solid var(--hairline); border-radius: 10px; background: var(--card); overflow: hidden; }
.rubric-row { display: flex; gap: 24px; padding: 18px 22px; border-bottom: 1px solid var(--hairline); align-items: center; }
.rubric-row:last-child { border-bottom: none; }
.rubric-left { flex: 1 1 60%; }
.rubric-label { font-family: var(--display); font-weight: 700; font-size: 17px; }
.rubric-blurb { font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.rubric-right { flex: 1 1 40%; display: flex; align-items: center; gap: 12px; }
.rubric-track { flex: 1; height: 8px; background: var(--tint); border-radius: 99px; overflow: hidden; }
.rubric-fill { height: 100%; background: var(--pine); border-radius: 99px; }
.rubric-weight { font-family: var(--mono); font-size: 13px; font-weight: 500; width: 42px; text-align: right; }
.method-rules { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px 28px; margin-top: 26px; }
.rule { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 12px; align-items: baseline; }
.rule-n { font-family: var(--mono); font-size: 12px; color: var(--pine-deep); font-weight: 500; }

/* ── st. jude ── */
.jude { padding-top: 10px; }
.jude-inner { background: var(--pine-deep); color: #F4F8F5; border-radius: 14px; padding: 44px 5%; display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.jude-h { color: #fff; max-width: 560px; font-size: clamp(22px, 2.8vw, 31px); }
.jude-left { flex: 1 1 420px; }
.jude-p { margin-top: 14px; color: #CFE2D6; font-size: 15px; max-width: 560px; }
.jude-right { flex: 0 0 auto; }
.jude-stat { border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; padding: 22px 26px; min-width: 240px; }
.jude-num { font-family: var(--display); font-weight: 900; font-size: 44px; line-height: 1; }
.jude-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #BFD8C8; margin-top: 10px; max-width: 230px; }

/* ── requests ── */
.req-add { display: flex; gap: 10px; max-width: 560px; flex-wrap: wrap; }
.req-input { flex: 1 1 260px; font-family: var(--body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 8px; background: var(--card); color: var(--ink); }
.req-input::placeholder { color: #9B988E; }
.req-list { list-style: none; margin-top: 22px; max-width: 560px; }
.req-row { display: flex; align-items: center; gap: 14px; padding: 11px 2px; border-bottom: 1px dashed var(--hairline); }
.req-text { font-weight: 600; flex: 1; }
.vote { font-family: var(--mono); font-size: 12px; cursor: pointer; background: var(--card); color: var(--ink); border: 1px solid var(--hairline); border-radius: 999px; padding: 6px 14px; }
.vote:hover { border-color: var(--pine); }
.voted { background: var(--tint); border-color: var(--pine); color: var(--pine-deep); }

/* ── newsletter ── */
.nl { padding-top: 0; }
.nl-box { border: 1px solid var(--hairline); background: var(--card); border-radius: 14px; padding: 34px 5%; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.nl-h { font-family: var(--display); font-weight: 900; font-size: clamp(21px, 2.6vw, 28px); }
.nl-left { flex: 1 1 340px; }
.nl-p { color: var(--ink-soft); margin-top: 6px; font-size: 14.5px; }
.nl-form { display: flex; gap: 10px; flex: 1 1 320px; flex-wrap: wrap; }
.nl-done { font-family: var(--mono); font-size: 13px; color: var(--pine-deep); background: var(--tint); border: 1px solid var(--pine); border-radius: 8px; padding: 13px 18px; }

/* ── buttons ── */
.btn { display: block; text-align: center; text-decoration: none; cursor: pointer; font-family: var(--body); font-weight: 700; font-size: 14.5px; border-radius: 8px; padding: 12px 18px; border: 1.5px solid var(--ink); transition: transform 0.12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-pine { background: var(--pine); border-color: var(--pine); color: #fff; }
.btn-amazon { background: var(--card); color: var(--ink); margin-top: 10px; }
.btn-direct { background: var(--pine); border-color: var(--pine); color: #fff; margin-top: 10px; }
.btn-note { display: block; font-family: var(--mono); font-weight: 400; font-size: 10.5px; margin-top: 3px; opacity: 0.78; letter-spacing: 0.03em; }

/* ── modal ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(28,27,23,0.5); z-index: 100; display: flex; justify-content: center; align-items: flex-start; padding: 4vh 16px; overflow-y: auto; }
.modal-overlay[hidden] { display: none; }
.modal { background: var(--paper); border-radius: 14px; max-width: 980px; width: 100%; padding: 38px clamp(20px, 4vw, 46px) 44px; position: relative; margin-bottom: 6vh; }
.modal-close { position: absolute; top: 14px; right: 16px; font-size: 26px; line-height: 1; background: none; border: none; cursor: pointer; color: var(--ink-soft); padding: 8px; }
.modal-close:hover { color: var(--ink); }
.modal-eyebrow { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--pine-deep); }
.modal-title { font-family: var(--display); font-weight: 900; font-size: clamp(27px, 4vw, 42px); line-height: 1.08; margin-top: 8px; }
.modal-line { color: var(--ink-soft); margin-top: 8px; font-size: 16.5px; }
.modal-cols { display: flex; gap: 42px; margin-top: 30px; flex-wrap: wrap; }
.modal-main { flex: 1 1 460px; min-width: 0; }
.modal-side { flex: 0 1 300px; min-width: 260px; }

.dossier-h { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin: 26px 0 10px; }
.dossier-h:first-child { margin-top: 0; }
.dossier-p { font-size: 15.5px; margin-bottom: 12px; }
.unseat { border-left: 3px solid var(--pine); padding-left: 14px; color: var(--ink-soft); font-style: italic; }

.ledger { border: 1px solid var(--hairline); border-radius: 10px; background: var(--card); padding: 16px 18px 10px; margin-top: 26px; }
.ledger-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); border-bottom: 1px solid var(--hairline); padding-bottom: 8px; }
.ledger-list { list-style: none; }
.ledger-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px dashed var(--hairline); font-size: 13.5px; align-items: baseline; }
.ledger-row:last-child { border-bottom: none; }
.ledger-out .ledger-name s { color: var(--ink-soft); text-decoration-color: var(--strike); text-decoration-thickness: 1.5px; }
.ledger-reason { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); text-align: right; max-width: 52%; }
.ledger-pick { background: var(--tint); margin: 4px -8px 0; padding: 9px 8px; border-radius: 7px; }
.ledger-pick .ledger-name { font-family: var(--display); font-weight: 700; color: var(--pine-deep); }
.ledger-pick .ledger-reason { color: var(--pine-deep); font-weight: 500; }

.evidence { list-style: none; }
.evidence li { padding: 8px 0; border-bottom: 1px dashed var(--hairline); font-size: 14px; }
.evidence li:last-child { border-bottom: none; }
.evidence a { color: var(--pine-deep); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.side-score { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.side-score-big { font-family: var(--display); font-weight: 900; font-size: 46px; color: var(--pine-deep); line-height: 1; }
.side-score-big small { font-size: 17px; color: var(--ink-soft); }
.side-score-sub { font-family: var(--mono); font-size: 10.5px; color: var(--ink-soft); max-width: 120px; line-height: 1.45; }

.scorebar { margin-bottom: 11px; }
.scorebar-top { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 4px; }
.scorebar-label { font-weight: 600; }
.scorebar-num { font-family: var(--mono); font-size: 11.5px; color: var(--ink-soft); }
.scorebar-track { height: 7px; background: var(--tint); border-radius: 99px; overflow: hidden; }
.scorebar-fill { height: 100%; background: var(--pine); border-radius: 99px; }

.certs { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 4px; }
.cert { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; border: 1px solid var(--pine); color: var(--pine-deep); background: var(--tint); border-radius: 999px; padding: 4px 11px; }

.buy { border-top: 1px solid var(--hairline); margin-top: 18px; padding-top: 16px; }
.buy-price { font-family: var(--display); font-weight: 900; font-size: 24px; }
.buy-fine { font-size: 11.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; }

/* ── footer ── */
.footer { border-top: 1px solid var(--hairline); padding: 44px 5vw 56px; max-width: 1180px; margin: 0 auto; }
.foot-disclosure { font-size: 12.5px; color: var(--ink-soft); max-width: 760px; margin-top: 16px; line-height: 1.65; }
.foot-fine { font-family: var(--mono); font-size: 10.5px; color: #9B988E; margin-top: 14px; }

@media (max-width: 640px) {
  .nav { order: 3; width: 100%; gap: 16px; }
  .jude-pill { margin-left: 0; }
  .hero { padding-top: 48px; }
  .modal-cols { gap: 26px; }
}
