/* ═══════════════════════════════════════════════════════
   SuperFlyFishing – River Slate
   assets/css/theme.css
   Design tokens → Base → Nav → Hero → Components → Pages
═══════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:         #f0f4f8;
  --bg2:        #e8eef4;
  --surface:    #d6eae0;
  --surface2:   #c4ddd5;
  --white:      #ffffff;
  --navy:       #0f2d44;
  --navy2:      #1a3d57;
  --teal:       #1a7a5e;
  --teal2:      #229673;
  --teal-pale:  #e8f5f0;
  --teal-mid:   rgba(26,122,94,0.12);
  --slate:      #3b6b8a;
  --mist:       #8aafc4;
  --border:     rgba(15,45,68,0.08);
  --border2:    rgba(15,45,68,0.15);
  --border3:    rgba(15,45,68,0.22);
  --text:       #0f2d44;
  --text2:      #3b6b8a;
  --text3:      #6a90a8;
  --serif:      'Libre Baskerville', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
  --mono:       'DM Mono', monospace;
  --r:          6px;
  --rl:         12px;
  --shadow-sm:  0 1px 3px rgba(15,45,68,0.08);
  --shadow-md:  0 4px 16px rgba(15,45,68,0.10);
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; white-space: nowrap;
}
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--teal); color: #fff; padding: 8px 16px; border-radius: var(--r); z-index: 9999; }
.skip-link:focus { top: 1rem; }

/* ── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(240,244,248,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border2);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 1.5rem; height: 62px;
  padding: 0 2.5rem;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 500;
  color: var(--navy); text-decoration: none; letter-spacing: -0.01em;
  margin-right: auto; display: flex; align-items: center; gap: 2px;
}
.nav-logo strong { font-weight: 500; color: var(--teal); }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-rule { width: 1px; height: 18px; background: var(--border2); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a, .nav-links li > a {
  font-size: 0.78rem; font-weight: 400; color: var(--text2);
  text-decoration: none; letter-spacing: 0.05em; transition: color 0.18s;
}
.nav-links a:hover, .nav-links li > a:hover { color: var(--teal); text-decoration: none; }
.nav-search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text3); padding: 6px; border-radius: var(--r);
  transition: color 0.18s; display: flex; align-items: center;
}
.nav-search-btn:hover { color: var(--teal); }
.nav-cta {
  font-size: 0.75rem; font-weight: 500; background: var(--teal); color: #fff;
  padding: 8px 18px; border-radius: var(--r); cursor: pointer;
  border: none; letter-spacing: 0.04em; transition: background 0.18s;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal2); color: #fff; text-decoration: none; }
.nav-search-panel {
  border-top: 1px solid var(--border2); padding: 1rem 2.5rem;
  background: var(--white); display: flex; gap: 8px;
}
.nav-search-panel[hidden] { display: none; }
.nav-search-input {
  flex: 1; border: 1px solid var(--border2); border-radius: var(--r);
  padding: 10px 14px; font-family: var(--sans); font-size: 0.9rem;
  color: var(--text); background: var(--bg); outline: none;
  transition: border-color 0.18s;
}
.nav-search-input:focus { border-color: var(--teal); }
.nav-search-submit {
  background: var(--teal); color: #fff; border: none; border-radius: var(--r);
  padding: 10px 20px; font-size: 0.82rem; cursor: pointer; font-weight: 500;
}
.nav-mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.2s; }
.mobile-menu { border-top: 1px solid var(--border2); background: var(--white); padding: 1rem 2.5rem 1.5rem; }
.mobile-menu[hidden] { display: none; }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a { display: block; padding: 0.75rem 0; font-size: 0.9rem; color: var(--navy); text-decoration: none; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--teal); color: #fff;
  padding: 13px 24px; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; border: none; transition: background 0.18s, transform 0.15s;
  text-decoration: none; font-family: var(--sans);
}
.btn-primary:hover { background: var(--teal2); transform: translateY(-1px); color: #fff; text-decoration: none; }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--navy2);
  padding: 13px 24px; border-radius: var(--r);
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em;
  cursor: pointer; border: 1px solid var(--border3);
  transition: border-color 0.18s, color 0.18s;
  text-decoration: none; font-family: var(--sans);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative; padding: 5rem 2.5rem 4rem;
  overflow: hidden; background: var(--white);
  border-bottom: 1px solid var(--border2);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent 100%);
  pointer-events: none;
}
.hero-teal-wash { position: absolute; top: 0; right: 0; width: 45%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(214,234,224,0.6) 100%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; }
.hero-left { animation: fadeUp 0.7s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-pale); border: 1px solid rgba(26,122,94,0.2); border-radius: 20px; padding: 5px 14px 5px 10px; margin-bottom: 1.5rem; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-tag-text { font-family: var(--mono); font-size: 0.65rem; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 1rem; color: var(--text2); font-weight: 300; max-width: 460px; line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-data { animation: fadeUp 0.7s 0.18s ease both; background: var(--bg); border: 1px solid var(--border2); border-radius: var(--rl); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-data-header { background: var(--navy); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.hero-data-title { font-family: var(--mono); font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase; }
.hero-data-live { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-data-body { padding: 1.25rem; }
.data-row { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.data-row:last-child { border-bottom: none; }
.data-label { font-size: 0.78rem; color: var(--text2); font-weight: 400; }
.data-val { font-family: var(--mono); font-size: 0.78rem; color: var(--navy); font-weight: 500; }
.data-bar-wrap { width: 80px; height: 4px; background: var(--border2); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.data-bar { height: 100%; border-radius: 2px; background: var(--teal); }
.data-tag { font-family: var(--mono); font-size: 0.6rem; padding: 2px 8px; border-radius: 10px; font-weight: 500; letter-spacing: 0.06em; white-space: nowrap; }
.tag-win { background: var(--teal-pale); color: var(--teal); border: 1px solid rgba(26,122,94,0.2); }
.tag-mid { background: rgba(59,107,138,0.1); color: var(--slate); border: 1px solid rgba(59,107,138,0.2); }
.tag-low { background: rgba(15,45,68,0.06); color: var(--text3); border: 1px solid var(--border2); }
.hero-data-footer { background: var(--surface); padding: 0.75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.hero-data-footer-text { font-size: 0.72rem; color: var(--text2); }
.hero-data-footer-link { font-family: var(--mono); font-size: 0.65rem; color: var(--teal); letter-spacing: 0.08em; }

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip { background: var(--navy); display: flex; align-items: center; justify-content: center; gap: 0; padding: 1rem 2.5rem; flex-wrap: wrap; }
.stat-item { font-size: 0.8rem; color: rgba(255,255,255,0.55); padding: 0.4rem 2rem; text-align: center; }
.stat-item strong { color: var(--teal2); font-weight: 500; display: block; font-size: 1.1rem; margin-bottom: 1px; }
.stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

/* ── SECTION SHELLS ──────────────────────────────────── */
section { padding: 4.5rem 2.5rem; }
section > * { max-width: 1200px; }
.section-eyebrow { font-family: var(--mono); font-size: 0.65rem; color: var(--teal); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content:''; display:block; width:20px; height:1px; background:var(--teal); flex-shrink:0; }
.section-title { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 0.9rem; }
.section-title em { font-style: italic; color: var(--teal); }
.section-sub { font-size: 0.9rem; color: var(--text2); max-width: 500px; line-height: 1.75; }

/* ── CATEGORY CARDS ──────────────────────────────────── */
.cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border2); border: 1px solid var(--border2); border-radius: var(--rl); overflow: hidden; margin-top: 2.5rem; }
.cat-card { background: var(--white); padding: 2rem 1.75rem; text-decoration: none; color: inherit; position: relative; overflow: hidden; transition: background 0.2s; display: block; }
.cat-card:hover { background: var(--bg); text-decoration: none; }
.cat-card::after { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--teal); transform: scaleX(0); transition: transform 0.25s; transform-origin: left; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-num { font-family: var(--mono); font-size: 0.6rem; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.cat-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.cat-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.65; margin-bottom: 1rem; }
.cat-arrow { font-family: var(--mono); font-size: 0.65rem; color: var(--teal); letter-spacing: 0.08em; }

/* ── REVIEW CARDS ────────────────────────────────────── */
.reviews-hdr { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.see-all { font-family: var(--mono); font-size: 0.65rem; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; border-bottom: 1px solid rgba(26,122,94,0.35); padding-bottom: 1px; transition: opacity 0.2s; }
.see-all:hover { opacity: 0.65; text-decoration: none; }
.reviews-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr; gap: 14px; }
.reviews-grid-archive { grid-template-columns: repeat(3,1fr); }
.rcard { background: var(--white); border: 1px solid var(--border2); border-radius: var(--rl); overflow: hidden; transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s; }
.rcard:hover { border-color: var(--teal2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rcard-link { display: block; }
.rcard-img { background: var(--surface); height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.rcard.big .rcard-img { height: 260px; }
.rcard-img img { width: 100%; height: 100%; object-fit: cover; }
.rcard-img-placeholder { font-family: var(--serif); font-size: 5rem; font-style: italic; color: rgba(15,45,68,0.08); user-select: none; line-height: 1; }
.rcard-badge { position: absolute; top: 12px; left: 12px; font-family: var(--mono); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; }
.badge-review { background: rgba(26,122,94,0.15); color: var(--teal); }
.badge-guide  { background: rgba(59,107,138,0.12); color: var(--slate); }
.badge-tech   { background: rgba(15,45,68,0.08); color: var(--navy2); }
.rcard-body { padding: 1.1rem 1.25rem 1.35rem; }
.rcard-meta { font-family: var(--mono); font-size: 0.62rem; color: var(--text3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.rcard-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.45rem; letter-spacing: -0.01em; }
.rcard-title a { color: inherit; text-decoration: none; }
.rcard-title a:hover { color: var(--teal); }
.rcard.big .rcard-title { font-size: 1.3rem; }
.rcard-excerpt { font-size: 0.78rem; color: var(--text2); line-height: 1.65; margin-bottom: 0.85rem; }
.rcard-footer { display: flex; align-items: center; justify-content: space-between; }
.stars { color: var(--teal); font-size: 0.75rem; letter-spacing: 2px; }
.read-more { font-family: var(--mono); font-size: 0.62rem; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── AI BANNER ───────────────────────────────────────── */
.ai-banner { background: var(--teal-pale); border-top: 1px solid rgba(26,122,94,0.12); border-bottom: 1px solid rgba(26,122,94,0.18); padding: 0.9rem 2.5rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.ai-chip { background: var(--teal); color: #fff; font-family: var(--mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 11px; border-radius: 3px; flex-shrink: 0; }
.ai-banner-text { font-size: 0.82rem; color: var(--teal); line-height: 1.5; flex: 1; }
.ai-banner-text strong { color: var(--navy); font-weight: 500; }
.ai-banner-link { color: var(--teal); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.ai-banner-close { background: none; border: none; cursor: pointer; color: var(--teal); font-size: 1rem; padding: 4px; line-height: 1; margin-left: auto; }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero { background: var(--white); border-bottom: 1px solid var(--border2); padding: 3.5rem 2.5rem 2.5rem; }
.review-breadcrumb { font-size: 0.75rem; color: var(--text3); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-breadcrumb a { color: var(--text3); text-decoration: none; }
.review-breadcrumb a:hover { color: var(--teal); }
.review-breadcrumb span:last-child { color: var(--navy); }
.review-hero-meta { font-size: 0.82rem; color: var(--text2); margin-top: 0.75rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.review-hero-stars { color: var(--teal); font-size: 0.9rem; letter-spacing: 2px; }
.archive-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1.5rem; }
.filter-pill { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border2); background: var(--white); color: var(--text2); text-decoration: none; transition: all 0.18s; }
.filter-pill:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; }
.filter-pill.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── SINGLE REVIEW LAYOUT ────────────────────────────── */
.review-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 2.5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.ai-box { background: var(--teal-pale); border: 1px solid rgba(26,122,94,0.2); border-left: 3px solid var(--teal); border-radius: var(--r); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.ai-box-head { font-family: var(--mono); font-size: 0.62rem; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem; }
.ai-box p { font-size: 0.82rem; color: var(--teal); line-height: 1.6; margin-bottom: 0.4rem; }
.ai-box a { color: var(--teal); font-weight: 500; }
.callout { background: var(--teal-pale); border: 1px solid rgba(26,122,94,0.18); border-left: 3px solid var(--teal); border-radius: var(--r); padding: 1.1rem 1.4rem; margin: 1.5rem 0; font-size: 0.88rem; color: var(--navy); line-height: 1.7; }
.callout strong { color: var(--teal); }
.review-body-content { margin-bottom: 2rem; }
.review-body-content p { font-size: 0.9rem; color: var(--text2); line-height: 1.85; margin-bottom: 1rem; }
.review-body-content h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem; }
.review-body-content h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.review-body-content strong { color: var(--navy); font-weight: 500; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.pros-cons-title { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 500; }
.pros-title { color: var(--teal); }
.cons-title { color: #c0392b; }
.pros-col { background: var(--teal-pale); border: 1px solid rgba(26,122,94,0.18); border-radius: var(--r); padding: 1.25rem; }
.cons-col { background: #fdf2f2; border: 1px solid rgba(192,57,43,0.15); border-radius: var(--r); padding: 1.25rem; }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li { font-size: 0.82rem; line-height: 1.6; padding: 0.35rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; gap: 8px; }
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: '✓'; color: var(--teal); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.cons-list li::before { content: '✗'; color: #c0392b; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.verdict-box { padding: 1.25rem; border-radius: var(--r); font-size: 0.85rem; line-height: 1.6; }
.verdict-box-head { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 500; }
.verdict-buy { background: var(--teal-pale); border: 1px solid rgba(26,122,94,0.2); }
.verdict-buy .verdict-box-head { color: var(--teal); }
.verdict-skip { background: rgba(15,45,68,0.04); border: 1px solid var(--border2); }
.verdict-skip .verdict-box-head { color: var(--text3); }
.affiliate-cta { background: var(--white); border: 2px solid var(--teal); border-radius: var(--rl); padding: 1.5rem; margin: 2rem 0; }
.affiliate-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.affiliate-cta-product { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.affiliate-cta-price { font-size: 1.3rem; font-weight: 500; color: var(--teal); margin-bottom: 4px; }
.affiliate-cta-disclosure { font-size: 0.7rem; color: var(--text3); }
.affiliate-cta-btn { white-space: nowrap; }
.review-sidebar { position: sticky; top: 80px; }
.review-sidebar-img { border-radius: var(--rl); overflow: hidden; margin-bottom: 1rem; border: 1px solid var(--border2); }
.review-sidebar-img img { width: 100%; height: auto; }
.sidebar-card { background: var(--white); border: 1px solid var(--border2); border-radius: var(--rl); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar-card-title { font-family: var(--mono); font-size: 0.62rem; color: var(--text3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.rating-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.rating-label { font-size: 0.78rem; color: var(--text2); }
.rating-right { display: flex; align-items: center; gap: 8px; }
.rating-bar-wrap { width: 70px; height: 3px; background: var(--border2); border-radius: 2px; overflow: hidden; }
.rating-bar { height: 100%; background: var(--teal); border-radius: 2px; }
.rating-num { font-family: var(--mono); font-size: 0.7rem; color: var(--navy); font-weight: 500; min-width: 24px; text-align: right; }
.spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.spec-row:last-child { border-bottom: none; }
.spec-k { color: var(--text3); }
.spec-v { color: var(--navy); font-weight: 400; text-align: right; }

/* ── ARTICLE (blog/page) ──────────────────────────────── */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 3rem 2.5rem; }
.legal-wrap { max-width: 660px; }
.article-featured-img { border-radius: var(--rl); overflow: hidden; margin-bottom: 2rem; border: 1px solid var(--border2); }
.article-body { font-size: 0.9rem; color: var(--text2); line-height: 1.85; }
.article-body h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 0.75rem; letter-spacing: -0.01em; }
.article-body h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 1.75rem 0 0.5rem; }
.article-body p { margin-bottom: 1rem; }
.article-body strong { color: var(--navy); font-weight: 500; }
.article-body a { color: var(--teal); }
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border2); }
.article-tags { font-size: 0.78rem; color: var(--text3); margin-bottom: 1rem; }
.legal-wrap h2 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.6rem; }
.legal-wrap p { font-size: 0.88rem; color: var(--text2); line-height: 1.85; margin-bottom: 0.9rem; }
.legal-wrap strong { color: var(--navy); font-weight: 500; }

/* ── NEWSLETTER ───────────────────────────────────────── */
.nl-section { background: var(--navy); }
.nl-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.nl-inner .section-eyebrow { justify-content: center; color: var(--surface2); }
.nl-inner .section-eyebrow::before { background: var(--surface2); }
.nl-inner .section-title { color: #fff; }
.nl-inner .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto; }
.nl-form { display: flex; gap: 8px; margin-top: 2rem; }
.nl-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r); color: #fff; font-family: var(--sans); font-size: 0.85rem; padding: 12px 16px; outline: none; transition: border-color 0.18s; }
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--teal2); }
.nl-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.3); margin-top: 1rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 0.6rem; }
.footer-logo strong { color: var(--teal2); }
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-col-title { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--teal2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-legal { font-size: 0.7rem; color: rgba(255,255,255,0.25); line-height: 1.7; max-width: 600px; }
.footer-legal strong { color: rgba(255,255,255,0.4); }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: underline; text-underline-offset: 2px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); white-space: nowrap; }

/* ── ARCHIVE / PAGINATION ─────────────────────────────── */
.archive-section { padding: 3rem 2.5rem; }
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.page-numbers { font-family: var(--mono); font-size: 0.78rem; padding: 8px 14px; border-radius: var(--r); border: 1px solid var(--border2); color: var(--text2); text-decoration: none; transition: all 0.18s; }
.page-numbers:hover, .page-numbers.current { background: var(--teal); color: #fff; border-color: var(--teal); }
.no-results { text-align: center; padding: 4rem 2.5rem; }
.no-results p { color: var(--text2); margin-bottom: 1.5rem; }

/* ── WORDPRESS CORE ───────────────────────────────────── */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 1rem auto; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.75rem; color: var(--text3); text-align: center; margin-top: 4px; }
.wp-block-image { margin: 1.5rem 0; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-data { display: none; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-rule { display: none; }
  .nav-mobile-toggle { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid-archive { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .verdict-grid { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-strip { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { width: 50%; }
  section { padding: 3rem 1.25rem; }
  .hero { padding: 3rem 1.25rem; }
  .page-hero { padding: 2.5rem 1.25rem 2rem; }
  .article-wrap { padding: 2rem 1.25rem; }
  .review-layout { padding: 2rem 1.25rem; }
}
