/* GlowRecs — editorial skincare aesthetic
   Warm cream + terracotta + sage. No e-commerce vibes. */

:root {
  --cream:        #F5F2EE;
  --cream-deep:   #ECE7DF;
  --paper:        #FFFFFF;
  --ink:          #1C1917;
  --ink-soft:     #3F3A33;
  --muted:        #8C8279;
  --muted-light:  #B5ADA3;
  --hair:         #E5DFD3;
  --hair-soft:    #EFEAE0;

  --terracotta:   #C4624A;
  --terracotta-d: #A85339;
  --terracotta-l: #F1E0D8;

  --sage:         #5A9B76;
  --sage-d:       #467A5C;
  --sage-l:       #DDEBE2;

  --rose:         #C97B7B;
  --rose-l:       #F2E0DF;

  --shadow-warm:  0 1px 2px rgba(60,40,20,.03), 0 6px 20px rgba(60,40,20,.05);
  --shadow-warm-lg: 0 2px 4px rgba(60,40,20,.04), 0 20px 48px rgba(60,40,20,.08);

  --syne: 'Plus Jakarta Sans', system-ui, sans-serif;
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'Plus Jakarta Sans', ui-monospace, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--syne); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #F19C7E 0%, var(--terracotta) 55%, var(--terracotta-d) 100%);
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,.08), 0 1px 2px rgba(212,100,74,.3);
}
.brand-mark::after {
  content: ""; position: absolute; top: 5px; left: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  filter: blur(1.5px);
}
.brand em {
  font-style: normal; color: var(--terracotta);
}

.nav-primary {
  display: flex; align-items: center; gap: 4px;
  justify-self: center;
}
.nav-primary a {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 999px; transition: all .15s;
}
.nav-primary a:hover { background: var(--cream-deep); color: var(--ink); }

.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 8px 16px;
  border-radius: 999px; transition: all .15s;
  border: 1px solid transparent;
}
.btn-pill.ghost { color: var(--ink-soft); border-color: var(--hair); background: var(--paper); }
.btn-pill.ghost:hover { border-color: var(--ink); }
.btn-pill.primary { background: var(--terracotta); color: #fff; }
.btn-pill.primary:hover { background: var(--terracotta-d); }

/* ---------- Hero ---------- */
.hero {
  padding: 128px 0 88px;
  position: relative;
  text-align: center;
}
.hero-grid {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}
.hero-card { display: none !important; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--paper);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--sage) 22%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}

h1.headline {
  font-family: var(--syne);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 28px auto 32px;
  max-width: 12ch;
}
h1.headline .accent {
  color: var(--terracotta);
  font-weight: 800;
  position: relative;
  display: inline;
}
h1.headline .sage-mark {
  display: inline-block;
  font-family: var(--syne);
  color: var(--sage);
  font-weight: 700;
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.lede strong { color: var(--ink); font-weight: 600; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 auto 40px;
  justify-content: center;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--sage-d);
  background: var(--sage-l);
  padding: 6px 12px;
  border-radius: 999px;
}
.trust-chip svg { width: 12px; height: 12px; }

/* Hero search */
.hero-search {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.hero-search input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 20px 64px 20px 56px;
  background: var(--paper);
  border: 1.5px solid var(--hair);
  border-radius: 18px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-warm);
}
.hero-search input::placeholder { color: var(--muted-light); }
.hero-search input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--terracotta) 18%, transparent), var(--shadow-warm);
}
.hero-search .lens {
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.hero-search .kbd {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  border: 1px solid var(--hair); border-radius: 6px;
  padding: 3px 7px;
  background: var(--cream);
}

/* search dropdown */
.search-dropdown {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: var(--shadow-warm-lg);
  overflow: hidden;
  z-index: 60;
}
.search-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair-soft);
  transition: background .12s;
}
.search-row:last-child { border-bottom: none; }
.search-row:hover { background: var(--cream); }
.search-row img {
  width: 40px; height: 40px; object-fit: contain;
  background: var(--cream);
  border-radius: 8px; padding: 4px;
  border: 1px solid var(--hair-soft);
}
.search-row .meta { flex: 1; min-width: 0; }
.search-row .cat {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  color: var(--terracotta); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 2px;
}
.search-row .name {
  font-size: 14px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-row .pct {
  font-family: var(--syne); font-size: 16px; font-weight: 700;
  letter-spacing: -.02em;
}

/* ---------- Hero side card ---------- */
.hero-card {
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-warm-lg);
  border: 1px solid var(--hair);
  transform: rotate(1.4deg);
}
.hero-card::before {
  content: "";
  position: absolute; inset: -28px -32px auto auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--terracotta-l) 0%, transparent 65%);
  z-index: -1;
}
.hero-card .stamp {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-d);
  border: 1px dashed var(--sage);
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 14px;
}
.hero-card-product {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px; align-items: center;
}
.hero-card-product img {
  width: 96px; height: 96px; object-fit: contain;
  background: var(--cream);
  border-radius: 14px; padding: 8px;
  border: 1px solid var(--hair-soft);
}
.hero-card-product .brand-line {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.hero-card-product h3 {
  font-family: var(--syne); font-weight: 700; font-size: 18px;
  letter-spacing: -.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.hero-card-product .pos {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--sage-d);
  background: var(--sage-l);
  padding: 3px 10px; border-radius: 999px;
}

.hero-card-quote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hair-soft);
  font-family: var(--syne); font-style: italic;
  font-size: 16px; line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -.01em;
}
.hero-card-quote::before {
  content: "“"; font-size: 32px; color: var(--terracotta);
  line-height: 0; vertical-align: -8px; margin-right: 4px;
}
.hero-card-attr {
  margin-top: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.hero-card-attr .reddit-tag {
  color: var(--terracotta); font-weight: 600;
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px auto 0;
  max-width: 980px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 36px 0;
}
.hero-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--hair);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--syne);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
  justify-content: center;
}
.hero-stat .num .unit {
  font-size: 18px;
  color: var(--terracotta);
  font-weight: 700;
}
.hero-stat .label {
  margin-top: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sections shared ---------- */
section { padding: 96px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}
.section-head .left { max-width: 620px; }
.section-eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1.5px; background: var(--terracotta);
}
.section-title {
  font-family: var(--syne); font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.section-title em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.section-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.55;
}
.see-all {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 4px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.see-all:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .15s;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
  border-color: color-mix(in oklab, var(--terracotta) 35%, var(--hair));
}
.cat-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.cat-card .cat-num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  color: var(--muted-light); letter-spacing: .08em;
}
.cat-card .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .2s;
}
.cat-card:hover .arrow {
  background: var(--terracotta); border-color: var(--terracotta);
  color: #fff; transform: rotate(-45deg);
}

.cat-img-wrap {
  background: var(--cream);
  border-radius: 14px;
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.cat-img-wrap::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--terracotta) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cat-img-wrap img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 16px rgba(60,40,20,.12));
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06) rotate(-1deg); }

.cat-card .cat-name {
  font-family: var(--syne);
  font-weight: 700; font-size: 22px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.cat-card .cat-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}
.cat-card .cat-meta .count { font-family: var(--mono); }
.cat-card .sentiment-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
}
.sentiment-pill.high { background: var(--sage-l); color: var(--sage-d); }
.sentiment-pill.mid  { background: #FBE9CC; color: #8B6520; }
.sentiment-pill.low  { background: var(--rose-l); color: #8E4F4F; }

/* ---------- Top picks strip ---------- */
.picks-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.pick-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 18px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .15s;
}
.pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
  border-color: color-mix(in oklab, var(--terracotta) 35%, var(--hair));
}
.pick-rank {
  position: absolute; top: 16px; left: 16px;
  width: 30px; height: 30px;
  background: var(--ink); color: var(--cream);
  border-radius: 50%;
  font-family: var(--syne); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -.02em;
  box-shadow: 0 4px 10px rgba(28,25,23,.18);
  z-index: 2;
}
.pick-rank.gold {
  background: var(--terracotta); color: #fff;
}
.pick-img {
  background: var(--cream);
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.pick-img img {
  max-height: 100%; max-width: 80%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(60,40,20,.12));
  transition: transform .3s ease;
}
.pick-card:hover .pick-img img { transform: scale(1.05); }
.pick-cat {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.pick-brand {
  font-size: 12px; color: var(--muted); margin-bottom: 2px;
}
.pick-name {
  font-family: var(--syne); font-weight: 700; font-size: 16px;
  line-height: 1.25; letter-spacing: -.015em;
  margin-bottom: 14px;
  flex: 1;
}
.pick-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--hair-soft);
}
.pick-score {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.025em;
  color: var(--sage);
}
.pick-score .pct-sym {
  font-size: 12px; color: var(--muted);
  font-family: var(--sans); font-weight: 500;
}
.pick-score.below { color: var(--terracotta); }
.pick-mentions {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-align: right;
}
.pick-mentions .num { color: var(--ink); font-weight: 600; }

/* ---------- How it works ---------- */
.how-section {
  background: var(--paper);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 24px;
}
.how-step {
  padding: 36px 32px;
  border-right: 1px solid var(--hair);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step:first-child { padding-left: 0; }
.how-step:last-child { padding-right: 0; }
.how-step .step-num {
  font-family: var(--syne); font-weight: 800;
  font-size: 14px; letter-spacing: .04em;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.how-step .step-num::before {
  content: ""; width: 32px; height: 1.5px; background: var(--terracotta);
}
.how-step .step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--terracotta);
}
.how-step h3 {
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.how-step p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.65;
}
.how-step .step-meta {
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}

/* manifesto */
.manifesto {
  margin-top: 56px;
  padding: 48px;
  background: var(--cream);
  border-radius: 24px;
  border: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.manifesto h3 {
  font-family: var(--syne); font-weight: 800;
  font-size: 32px; letter-spacing: -.025em;
  line-height: 1.1;
}
.manifesto h3 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.manifesto p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.65;
  margin-top: 14px;
}
.manifesto-list {
  display: flex; flex-direction: column; gap: 14px;
}
.manifesto-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
}
.manifesto-item:last-child { border-bottom: 1px solid var(--hair); }
.manifesto-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.manifesto-item .check.cross { background: var(--rose); }
.manifesto-item .ttl {
  font-weight: 600; font-size: 14px; color: var(--ink);
  margin-bottom: 2px;
}
.manifesto-item .desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: var(--cream); font-size: 22px; }
.footer-brand .brand em { color: var(--terracotta); }
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: 8px;
}

/* ---------- Category page ---------- */
.cat-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--hair);
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { color: var(--muted-light); }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

.cat-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.cat-title h1 {
  font-family: var(--syne); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cat-title h1 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.cat-title p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.5;
}
.cat-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
}
.cat-stat .num {
  font-family: var(--syne); font-weight: 700;
  font-size: 28px; letter-spacing: -.03em;
  color: var(--ink); line-height: 1;
}
.cat-stat .label {
  font-size: 11px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

.cat-meta-row {
  display: flex; align-items: center; gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.cat-meta-row .reddit-tag {
  color: var(--terracotta);
  font-weight: 600;
}
.cat-meta-row .dot { width: 3px; height: 3px; background: var(--muted-light); border-radius: 50%; }

/* ---------- Filter bar ---------- */
.filter-bar {
  position: sticky; top: 68px; z-index: 40;
  background: color-mix(in oklab, var(--cream) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
  padding: 14px 0;
}
.filter-bar .wrap {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.filter-group {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.filter-btn {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .15s;
  white-space: nowrap;
}
.filter-btn.active {
  background: var(--ink); color: var(--cream);
}
.filter-btn:not(.active):hover { color: var(--ink); }

.filter-spacer { flex: 1; }

.filter-results {
  font-size: 13px; color: var(--muted);
  font-weight: 500;
}
.filter-results .num { color: var(--ink); font-weight: 600; }

/* ---------- Product list ---------- */
.product-list-section { padding: 56px 0 96px; }
.product-list { display: flex; flex-direction: column; gap: 16px; }

.product-row {
  display: grid;
  grid-template-columns: 56px 120px 1fr 130px;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 24px 28px;
  transition: transform .2s, box-shadow .2s, border-color .15s;
  position: relative;
}
.product-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
  border-color: color-mix(in oklab, var(--terracotta) 35%, var(--hair));
}

.product-rank {
  font-family: var(--syne); font-weight: 800;
  font-size: 36px; letter-spacing: -.04em;
  color: var(--muted-light);
  line-height: 1;
  text-align: center;
}
.product-row.top-3 .product-rank {
  color: var(--terracotta);
}

.product-img {
  background: var(--cream);
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.product-img img {
  max-height: 100%; max-width: 88%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 10px rgba(60,40,20,.12));
}

.product-meta-col { min-width: 0; }
.product-row .brand-line {
  font-size: 12px; color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.product-row h3 {
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.product-quote {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 620px;
}
.product-quote .quote-mark {
  font-family: var(--syne); font-weight: 800;
  font-size: 32px; line-height: .6;
  color: var(--terracotta);
  flex-shrink: 0;
  padding-top: 6px;
}
.product-quote .quote-text { font-style: italic; }
.product-quote .quote-source {
  display: block;
  font-style: normal;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.product-quote .quote-source .reddit { color: var(--terracotta); font-weight: 600; }

.product-score-col {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.product-score-num {
  font-family: var(--syne); font-weight: 700;
  font-size: 40px; letter-spacing: -.035em;
  line-height: 1;
  color: var(--sage);
}
.product-score-num.below { color: var(--terracotta); }
.product-score-num .pct-sym {
  font-family: var(--sans); font-weight: 500;
  font-size: 16px; color: var(--muted);
  margin-left: 2px;
}
.product-mentions {
  font-size: 12px; color: var(--muted);
  font-weight: 500;
}
.product-mentions .num { color: var(--ink); font-weight: 600; }

.show-more-bar {
  margin-top: 28px;
  text-align: center;
}
.show-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 12px 24px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  transition: all .15s;
}
.show-more-btn:hover { border-color: var(--ink); color: var(--ink); }

@media (max-width: 880px) {
  .product-row {
    grid-template-columns: 36px 88px 1fr;
    grid-template-rows: auto auto;
    gap: 16px 18px;
    padding: 18px;
  }
  .product-rank { font-size: 22px; }
  .product-row h3 { font-size: 17px; }
  .product-score-col {
    grid-column: 1 / -1;
    flex-direction: row; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--hair-soft);
    padding-top: 14px;
    margin-top: 4px;
  }
  .product-quote { font-size: 13px; }
  .filter-bar { top: 56px; }
}

/* ---------- Product Detail Page ---------- */
.pdp-hero {
  padding: 48px 0 72px;
  border-bottom: 1px solid var(--hair);
}
.pdp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 80px;
  align-items: center;
}
.pdp-img-frame {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 28px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 56px;
  position: relative;
  box-shadow: var(--shadow-warm-lg);
}
.pdp-img-frame img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 36px rgba(60,40,20,.18));
}
.pdp-img-rank-chip {
  position: absolute; top: 24px; left: 24px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--syne); font-weight: 700;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pdp-img-rank-chip .rank-num { font-size: 14px; }

.pdp-info { padding: 16px 0; }
.pdp-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.pdp-eyebrow .eyebrow-line {
  width: 28px; height: 1px; background: var(--terracotta);
  display: inline-block;
}
.pdp-info h1 {
  font-family: var(--syne); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 8px;
}
.pdp-info h1 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.pdp-tagline {
  font-size: 18px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.45;
}

.pdp-score-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.pdp-score-big {
  font-family: var(--syne); font-weight: 700;
  font-size: 56px; letter-spacing: -.04em;
  line-height: 1;
  color: var(--sage);
}
.pdp-score-big .pct-sym {
  font-family: var(--sans); font-weight: 500;
  font-size: 22px; color: var(--muted);
  margin-left: 2px;
}
.pdp-score-meta { min-width: 0; }
.pdp-score-label {
  font-family: var(--syne); font-weight: 700;
  font-size: 17px; letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pdp-score-sub {
  font-size: 13px; color: var(--muted);
  line-height: 1.45;
}
.pdp-score-sub .reddit { color: var(--terracotta); font-weight: 600; }
.pdp-score-trend {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--sage);
  white-space: nowrap;
}
.pdp-score-trend svg { width: 14px; height: 14px; }

.pdp-cta-row {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pdp-cta-row .btn-pill { font-size: 15px; padding: 14px 22px; }
.pdp-cta-row .btn-buy {
  background: var(--ink); color: var(--cream);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.pdp-cta-row .btn-buy:hover { background: var(--terracotta); }
.pdp-cta-row .btn-buy .price {
  font-family: var(--syne); font-weight: 700;
  font-size: 16px;
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid color-mix(in oklab, var(--cream) 30%, transparent);
}
.pdp-cta-row .btn-save {
  background: var(--paper);
  border: 1px solid var(--hair);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.pdp-cta-row .btn-save:hover { border-color: var(--ink); }
.pdp-affiliate-note {
  font-size: 11px; color: var(--muted);
  letter-spacing: .04em;
  margin-top: -8px;
}

.pdp-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  padding-top: 22px;
}
.pdp-quick-stat { padding-right: 16px; }
.pdp-quick-stat + .pdp-quick-stat { border-left: 1px solid var(--hair); padding-left: 24px; }
.pdp-quick-stat .stat-num {
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.pdp-quick-stat .stat-lbl {
  font-size: 11px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Sentiment breakdown ---------- */
.sentiment-section { padding: 80px 0; border-bottom: 1px solid var(--hair); }
.section-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--syne); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-h2 em { font-style: normal; color: var(--terracotta); font-weight: 800; }
.section-lede {
  font-size: 16px; color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.55;
}

.sentiment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}

.sent-bar {
  height: 18px;
  background: var(--cream-deep);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  margin-bottom: 32px;
}
.sent-bar-seg { height: 100%; transition: filter .2s; }
.sent-bar-seg.pos { background: var(--sage); }
.sent-bar-seg.neu { background: var(--muted-light); }
.sent-bar-seg.neg { background: var(--terracotta); }

.sent-rows { display: flex; flex-direction: column; gap: 22px; list-style: none; margin: 0; padding: 0; }
.sent-row {
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hair-soft);
}
.sent-row:last-child { border-bottom: none; padding-bottom: 0; }
.sent-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.sent-dot.pos { background: var(--sage); }
.sent-dot.neu { background: var(--muted-light); }
.sent-dot.neg { background: var(--terracotta); }

.sent-label {
  font-family: var(--syne); font-weight: 600;
  font-size: 16px; letter-spacing: -.01em;
}
.sent-label .desc {
  display: block;
  font-family: var(--sans); font-weight: 400;
  font-size: 13px; color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}
.sent-pct {
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
}
.sent-pct.pos { color: var(--sage); }
.sent-pct.neu { color: var(--muted); }
.sent-pct.neg { color: var(--terracotta); }
.sent-count {
  font-size: 12px; color: var(--muted);
  font-weight: 500;
  text-align: right;
  min-width: 80px;
}

/* themes panel */
.sent-themes {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 22px;
  padding: 32px;
}
.sent-themes h3 {
  font-family: var(--syne); font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.sent-themes .sub {
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px;
}
.theme-list { display: flex; flex-direction: column; gap: 14px; list-style: none; margin: 0; padding: 0; }
.theme-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.theme-item:last-child { border-bottom: none; }
.theme-name {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
}
.theme-name .icon { margin-right: 8px; }
.theme-name.pos .icon { color: var(--sage); }
.theme-name.neg .icon { color: var(--terracotta); }
.theme-bar {
  width: 110px; height: 4px;
  background: var(--cream-deep);
  border-radius: 999px;
  overflow: hidden;
}
.theme-bar > span {
  display: block; height: 100%;
  border-radius: 999px;
}
.theme-name.pos ~ .theme-bar > span,
.theme-item.pos .theme-bar > span { background: var(--sage); }
.theme-item.neg .theme-bar > span { background: var(--terracotta); }

/* ---------- Quotes section ---------- */
.quotes-section { padding: 80px 0; border-bottom: 1px solid var(--hair); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 22px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm-lg);
}
.quote-card .qc-mark {
  font-family: var(--syne); font-weight: 800;
  font-size: 60px; line-height: .6;
  color: var(--terracotta);
  margin-bottom: 18px;
  height: 36px;
}
.quote-card .qc-text {
  font-family: var(--syne); font-weight: 500;
  font-size: 19px; line-height: 1.4;
  letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.quote-card .qc-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--hair-soft);
}
.quote-card .qc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta-l), var(--rose-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--syne); font-weight: 700;
  font-size: 13px;
  color: var(--terracotta-d);
  flex-shrink: 0;
}
.quote-card .qc-meta-text { min-width: 0; flex: 1; }
.quote-card .qc-user {
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.quote-card .qc-sub {
  font-size: 12px; color: var(--muted);
}
.quote-card .qc-sub .sub { color: var(--terracotta); font-weight: 600; }
.quote-card .qc-upvote {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}
.quote-card .qc-upvote svg { width: 12px; height: 12px; color: var(--terracotta); }

/* ---------- Specs ---------- */
.specs-section { padding: 80px 0; border-bottom: 1px solid var(--hair); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}
.specs-table { display: flex; flex-direction: column; }
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
.spec-row:first-child { padding-top: 0; }
.spec-key {
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.spec-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.spec-val .pill {
  display: inline-block;
  padding: 3px 10px;
  background: var(--terracotta-l);
  color: var(--terracotta-d);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 4px;
  margin-bottom: 4px;
}
.spec-val .pill.sage { background: var(--sage-l); color: var(--sage-d); }

.ingredient-callout {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 22px;
  padding: 32px;
}
.ingredient-callout h4 {
  font-family: var(--syne); font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.ingredient-callout .sub {
  font-size: 13px; color: var(--muted);
  margin-bottom: 22px;
}
.ingredient-list { display: flex; flex-direction: column; gap: 16px; }
.ingredient-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.ingredient-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--terracotta-l);
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta-d);
  font-family: var(--syne); font-weight: 700;
  font-size: 14px;
}
.ingredient-icon.sage { background: var(--sage-l); color: var(--sage-d); }
.ingredient-name {
  font-family: var(--syne); font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.ingredient-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.45;
}

/* ---------- Related ---------- */
.related-section { padding: 80px 0 96px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: center;
  transition: transform .2s, box-shadow .2s, border-color .15s;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--terracotta) 35%, var(--hair));
  box-shadow: var(--shadow-warm);
}
.related-img {
  background: var(--cream);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.related-img img { max-height: 100%; max-width: 90%; object-fit: contain; mix-blend-mode: multiply; }
.related-info { min-width: 0; }
.related-info .brand-line {
  font-size: 11px; color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.related-info h4 {
  font-family: var(--syne); font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.related-info .meta {
  font-size: 11px; color: var(--muted);
}
.related-score {
  font-family: var(--syne); font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
  color: var(--sage);
}
.related-score.below { color: var(--terracotta); }
.related-score .pct-sym { font-family: var(--sans); font-weight: 500; font-size: 12px; color: var(--muted); }

@media (max-width: 980px) {
  .pdp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdp-img-frame { max-width: 480px; margin: 0 auto; }
  .sentiment-grid { grid-template-columns: 1fr; gap: 40px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 140px 1fr; gap: 16px; }
}

/* ---------- Tweaks-ready ---------- */
[data-density="cozy"] section { padding: 64px 0; }
[data-density="airy"] .hero { padding: 152px 0 104px; }
[data-density="airy"] section { padding: 128px 0; }

[data-cat-cols="3"] .cat-grid { grid-template-columns: repeat(3, 1fr); }
[data-cat-cols="5"] .cat-grid { grid-template-columns: repeat(5, 1fr); }

[data-pick-style="dense"] .picks-rail { grid-template-columns: repeat(3, 1fr); }
[data-pick-style="dense"] .pick-card { flex-direction: row; align-items: center; gap: 14px; padding: 14px; }
[data-pick-style="dense"] .pick-img { width: 88px; height: 88px; aspect-ratio: 1; flex-shrink: 0; margin: 0; padding: 8px; }
[data-pick-style="dense"] .pick-rank { top: 8px; left: 8px; width: 22px; height: 22px; font-size: 11px; }
[data-pick-style="dense"] .pick-name { font-size: 14px; margin-bottom: 6px; }
[data-pick-style="dense"] .pick-foot { padding-top: 8px; }
[data-pick-style="dense"] .pick-score { font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { transform: rotate(0); max-width: 480px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .picks-rail { grid-template-columns: repeat(3, 1fr); }
  .manifesto { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav-primary { display: none; }
  .site-header .wrap { grid-template-columns: 1fr auto; gap: 16px; }
  .hero { padding: 56px 0 32px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .hero-stat { padding: 16px 16px; border-bottom: 1px solid var(--hair); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:first-child { padding-left: 16px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card { padding: 16px; }
  .cat-card .cat-name { font-size: 18px; }
  .picks-rail { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--hair); padding: 28px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .header-cta .btn-pill.ghost { display: none; }
}
