:root {
  --bg: #07080c;
  --bg2: #0a0c12;
  --panel: #11131b;
  --panel2: #171a24;
  --panel3: #1c1f2b;
  --text: #f2f3f8;
  --muted: #b0b5c7;
  --soft: #7d8399;
  --line: rgba(255,255,255,.09);
  --line2: rgba(255,255,255,.14);
  --hot: #ff2d5e;
  --hot2: #ff6b4a;
  --gold: #ffc44d;
  --cyan: #2dd4ff;
  --green: #34d399;
  --purple: #a78bfa;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,.4);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.2);
  --max-w: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block; height: auto }
ul, ol { list-style: none }
.wrap { width: min(var(--max-w), calc(100% - 32px)); margin: 0 auto }

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,8,12,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px; border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.05rem; white-space: nowrap;
}
.brand-icon {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--hot), var(--gold));
  color: #08080c; font-weight: 950; font-size: .85rem;
}

/* Primary nav — top row */
.primary-nav {
  display: flex; align-items: center; gap: 2px;
}
.primary-nav > a {
  display: inline-flex; align-items: center;
  padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 700; font-size: .88rem;
  transition: all .2s;
}
.primary-nav > a:hover, .primary-nav > a.active {
  color: var(--text); background: rgba(255,255,255,.07);
}

/* Category sub-navigation — second row */
.cat-nav {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.cat-nav::-webkit-scrollbar { display: none }
.cat-nav a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px; white-space: nowrap;
  color: var(--soft); font-weight: 700; font-size: .82rem;
  transition: all .18s; border-bottom: 2px solid transparent;
  flex-shrink: 0;
}
.cat-nav a:hover {
  color: var(--text); background: rgba(255,255,255,.04);
  border-bottom-color: var(--cyan);
}
.cat-nav .nav-sep {
  width: 1px; height: 20px; background: var(--line); flex-shrink: 0;
  margin: 0 4px;
}

/* Mobile menu */
.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 0;
  background: rgba(255,255,255,.06); border-radius: var(--radius-sm);
  color: var(--text); cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px }
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; inset: 60px 0 0; z-index: 99;
  background: var(--bg); overflow-y: auto; padding: 16px;
}
.mobile-menu.open { display: flex }
.mobile-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 700; font-size: .95rem;
  transition: all .15s;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.05) }
.mobile-menu .mob-section {
  color: var(--green); font-weight: 800; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 16px 14px 6px; border-top: 1px solid var(--line);
  margin-top: 8px;
}
.mobile-menu .mob-section:first-child { border-top: 0; margin-top: 0 }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 60px 0 50px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(255,45,94,.12), transparent),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(45,212,255,.08), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 40px; align-items: center; position: relative;
}
.eyebrow {
  display: inline-block;
  color: var(--green); font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .78rem; margin-bottom: 12px;
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08; font-weight: 900;
  margin-bottom: 16px;
}
h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--muted); font-size: 1.12rem;
  max-width: 560px; margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap }

/* Hero quick picks */
.hero-picks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.hero-pick {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 18px 14px;
  border: 1px solid var(--line2); border-radius: var(--radius);
  background: rgba(17,19,27,.8);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.hero-pick:hover {
  border-color: rgba(255,199,77,.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.hero-pick img { max-height: 34px; object-fit: contain }
.hero-pick span {
  color: var(--muted); font-size: .82rem; font-weight: 700;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  border-radius: var(--radius); border: 0;
  font-weight: 800; font-size: .92rem; font-family: inherit;
  cursor: pointer; transition: all .25s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #050609;
  box-shadow: 0 8px 24px rgba(52,211,153,.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(52,211,153,.3);
}
.btn-hot {
  background: linear-gradient(135deg, var(--gold), var(--hot2));
  color: #050609;
  box-shadow: 0 8px 24px rgba(255,107,74,.2);
}
.btn-hot:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,107,74,.3);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line2); color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.1) }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: .84rem }
.btn-lg {
  min-height: 54px; padding: 0 28px; font-size: 1rem;
  border-radius: var(--radius-lg);
}
.btn-block { width: 100% }

/* ─── SECTIONS ───────────────────────────────────── */
.section { padding: 50px 0 }
.section-alt {
  background: rgba(255,255,255,.02);
  border-block: 1px solid var(--line);
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.12; margin-bottom: 10px;
}
.section-head p { color: var(--muted); max-width: 600px }

/* ─── SITE CARDS ─────────────────────────────────── */
.site-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.site-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line2); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  background-color: var(--panel);
  padding: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.site-card:hover {
  border-color: rgba(255,199,77,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transform: translateY(-2px);
}
.site-card::before {
  content: ''; position: absolute; inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--hot), var(--gold), var(--cyan));
}

.card-rank {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: grid; place-items: center;
  min-width: 40px; height: 34px; padding: 0 10px;
  border-radius: 999px; font-weight: 950; font-size: .85rem;
  background: var(--gold); color: #07080c;
}
.card-rank.rank-1 { background: linear-gradient(135deg, #ffd700, #ffaa00) }
.card-rank.rank-2 { background: linear-gradient(135deg, #c0c0c0, #e8e8e8); }
.card-rank.rank-3 { background: linear-gradient(135deg, #cd7f32, #daa06d); }

.card-logo {
  height: 110px; display: grid; place-items: center;
  border-radius: var(--radius); padding: 20px;
  background: #0b0d14; border: 1px solid var(--line);
  margin-bottom: 16px;
}
.card-logo img { max-height: 56px; object-fit: contain }
.card-logo.logo-light { background: #fff }
.card-logo.logo-dark { background: #050609 }

.card-header {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.card-header h3 { font-size: 1.35rem; font-weight: 800 }
.card-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.2);
  color: var(--green); font-size: .74rem; font-weight: 800;
  text-transform: uppercase;
}

.card-body { flex: 1 }
.card-body > p { font-size: .92rem; color: var(--muted); margin-bottom: 12px }

.card-features {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px; margin-top: auto; padding-top: 4px;
}
.card-features span {
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--muted); font-size: .78rem; font-weight: 700;
}

.card-rating {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px }
.rating-num { color: var(--gold); font-weight: 800; font-size: .9rem }

.card-actions {
  display: grid; gap: 8px; margin-top: 16px;
}
.card-actions .btn { width: 100% }
.card-link {
  display: block; text-align: center; padding: 8px;
  color: var(--muted); font-weight: 700; font-size: .88rem;
  transition: color .2s;
}
.card-link:hover { color: var(--text) }

/* ─── COMPARISON TABLE ───────────────────────────── */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
table {
  width: 100%; border-collapse: collapse;
  min-width: 800px; background: var(--panel);
}
th, td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
th {
  background: var(--panel2); color: var(--text);
  font-weight: 800; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
}
td { color: var(--muted) }
td:first-child { color: var(--text); font-weight: 700 }
td:first-child a { color: var(--cyan) }
td:first-child a:hover { text-decoration: underline }
tr:last-child td { border-bottom: 0 }
tbody tr:nth-child(even) td { background: rgba(255,255,255,.015) }
tr:hover td { background: rgba(255,255,255,.035) }
.check { color: var(--green); font-weight: 800 }
.cross { color: var(--hot); opacity: .6 }

/* ─── CATEGORY GRID ──────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.cat-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--panel);
  font-weight: 700; font-size: .9rem;
  transition: all .2s;
}
.cat-card:hover {
  border-color: rgba(45,212,255,.3);
  background: var(--panel2);
  transform: translateY(-1px);
}
.cat-card .cat-icon { font-size: 1.2rem }

/* ─── EDITORIAL / CONTENT ────────────────────────── */
.content-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 30px;
}
.content-main h2 { margin-top: 32px; margin-bottom: 12px }
.content-main h2:first-child { margin-top: 0 }
.content-main p { color: var(--muted); margin-bottom: 14px }
.content-main ul, .content-main ol {
  color: var(--muted); padding-left: 20px;
  margin-bottom: 14px;
}
.content-main li { margin-bottom: 6px; list-style: disc }
.content-main ol li { list-style: decimal }

.sidebar { display: flex; flex-direction: column; gap: 16px }
.sidebar-box {
  border: 1px solid var(--line2); border-radius: var(--radius);
  background: var(--panel); padding: 20px;
}
.sidebar-box h3 {
  font-size: 1rem; margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.sidebar-links { display: grid; gap: 6px }
.sidebar-links a {
  display: block; padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 600; font-size: .88rem;
  transition: all .15s;
}
.sidebar-links a:hover { color: var(--text); background: rgba(255,255,255,.05) }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 20px; gap: 16px;
  background: 0; border: 0; color: var(--text);
  font-weight: 700; font-size: .95rem; font-family: inherit;
  cursor: pointer; text-align: left;
}
.faq-q svg {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--muted); transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg) }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 20px 16px;
  color: var(--muted); font-size: .92rem; line-height: 1.65;
}

/* ─── REVIEW PAGE ────────────────────────────────── */
.review-hero {
  padding: 40px 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.review-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 30% 0%, rgba(255,45,94,.08), transparent);
  pointer-events: none;
}
.review-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 30px;
  align-items: start; position: relative;
}
.review-logo-box {
  display: grid; place-items: center; min-height: 200px;
  border: 1px solid var(--line2); border-radius: var(--radius-lg);
  background: #0b0d14; padding: 30px;
  box-shadow: var(--shadow-sm);
}
.review-logo-box.logo-light { background: #fff }
.review-logo-box.logo-dark { background: #050609 }
.review-logo-box img { max-height: 80px; object-fit: contain }

.review-meta { display: flex; flex-direction: column; gap: 10px }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: .84rem; color: var(--soft); margin-bottom: 4px;
}
.breadcrumb a { color: var(--muted) }
.breadcrumb a:hover { color: var(--text) }
.breadcrumb span { color: var(--soft) }
.review-meta h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px }
.review-meta p { color: var(--muted); font-size: 1.05rem; max-width: 600px }

.review-stats {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px;
}
.stat-item {
  display: flex; flex-direction: column;
  padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--panel);
  min-width: 120px;
}
.stat-label { color: var(--soft); font-size: .76rem; font-weight: 700; text-transform: uppercase }
.stat-value { color: var(--text); font-weight: 800; font-size: 1.1rem; margin-top: 4px }

.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 20px 0;
}
.pros, .cons {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 18px;
}
.pros h4 { color: var(--green); margin-bottom: 10px }
.cons h4 { color: var(--hot); margin-bottom: 10px }
.pros li, .cons li {
  color: var(--muted); font-size: .9rem;
  margin-bottom: 6px; padding-left: 18px; position: relative;
  list-style: none;
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green) }
.cons li::before { content: '✕'; position: absolute; left: 0; color: var(--hot) }

/* ─── BLOG CARDS ─────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--panel); padding: 22px;
  transition: all .25s;
}
.blog-card:hover {
  border-color: rgba(45,212,255,.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.blog-card .eyebrow { margin-bottom: 8px }
.blog-card h3 {
  font-size: 1.15rem; margin-bottom: 8px; line-height: 1.3;
}
.blog-card p { color: var(--muted); font-size: .88rem; margin-bottom: 14px }
.blog-card .read-more {
  color: var(--cyan); font-weight: 700; font-size: .88rem;
}

/* ─── BREADCRUMBS ────────────────────────────────── */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs ol {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--soft);
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px }
.breadcrumbs a { color: var(--muted); font-weight: 600 }
.breadcrumbs a:hover { color: var(--text) }
.breadcrumbs .sep { color: var(--soft) }

/* ─── INTERNAL LINKING ───────────────────────────── */
.related-cats {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.related-cat {
  display: block; padding: 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); transition: all .2s;
}
.related-cat:hover {
  border-color: rgba(52,211,153,.3); background: var(--panel2);
}
.related-cat strong { display: block; font-size: .95rem; margin-bottom: 4px }
.related-cat span { color: var(--muted); font-size: .82rem }

/* ─── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center; gap: 32px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .85rem; font-weight: 600;
}
.trust-icon { color: var(--green); font-size: 1.1rem }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: #040508; padding: 40px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 26px; margin-bottom: 30px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px }
.footer-brand p { color: var(--soft); font-size: .88rem; max-width: 280px }
.footer-col h4 {
  color: var(--text); font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--soft); font-size: .88rem;
  padding: 4px 0; transition: color .15s;
}
.footer-col a:hover { color: var(--text) }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  color: var(--soft); font-size: .82rem; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap }
.footer-legal a { color: var(--soft) }
.footer-legal a:hover { color: var(--muted) }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  text-align: center; padding: 50px 20px;
  background: linear-gradient(180deg, rgba(255,45,94,.06), rgba(45,212,255,.04));
  border-block: 1px solid var(--line);
}
.cta-banner h2 { margin-bottom: 12px }
.cta-banner p { color: var(--muted); max-width: 500px; margin: 0 auto 24px }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px }
  .hero-picks { grid-template-columns: repeat(4, 1fr) }
  .footer-grid { grid-template-columns: repeat(3, 1fr) }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex }
  .primary-nav { display: none }
  .cat-nav { display: none }
  .hero { padding: 36px 0 32px }
  .hero-picks { grid-template-columns: 1fr 1fr }
  .site-grid { grid-template-columns: 1fr }
  .content-grid { grid-template-columns: 1fr }
  .sidebar { order: -1 }
  .review-top { grid-template-columns: 1fr }
  .review-logo-box { min-height: 140px }
  .pros-cons { grid-template-columns: 1fr }
  .blog-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr 1fr }
  .trust-grid { grid-template-columns: 1fr }
  .score-row { grid-template-columns: 110px 1fr 38px; gap: 10px }
  .score-label { font-size: .8rem }
  .table-wrap { margin-inline: -16px; border-radius: 0; border-inline: 0 }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 20px, var(--max-w)) }
  h1 { font-size: clamp(2rem, 10vw, 2.8rem) }
  .hero-actions { flex-direction: column }
  .hero-picks { grid-template-columns: 1fr 1fr }
  .hero-pick { padding: 12px 10px }
  .section { padding: 36px 0 }
  .cat-grid { grid-template-columns: 1fr 1fr }
  .related-cats { grid-template-columns: 1fr }
  .review-stats { flex-direction: column }
  .stat-item { min-width: 0 }
  .footer-grid { grid-template-columns: 1fr }
  .back-top { right: 14px; bottom: 14px; width: 42px; height: 42px }
}

/* ─── UPDATED CHIP ───────────────────────────────── */
.updated-chip {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; padding: 7px 14px;
  border: 1px solid rgba(52,211,153,.25); border-radius: 999px;
  background: rgba(52,211,153,.08);
  color: var(--green); font-size: .82rem; font-weight: 700;
}
.updated-chip svg { width: 14px; height: 14px }

/* ─── SCORE BOARD (review pages) ─────────────────── */
.score-board {
  border: 1px solid var(--line2); border-radius: var(--radius-lg);
  background: var(--panel); padding: 22px;
  margin: 24px 0;
}
.score-title {
  font-size: 1.05rem; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.score-row {
  display: grid; grid-template-columns: 150px 1fr 44px;
  align-items: center; gap: 14px; margin-bottom: 12px;
}
.score-row:last-child { margin-bottom: 0 }
.score-label { color: var(--muted); font-size: .86rem; font-weight: 700 }
.score-bar {
  height: 9px; border-radius: 999px;
  background: rgba(255,255,255,.07); overflow: hidden;
}
.score-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}
.score-fill-gold { background: linear-gradient(90deg, var(--gold), var(--hot2)) }
.score-val {
  color: var(--text); font-weight: 800; font-size: .9rem; text-align: right;
}
.score-total {
  margin-top: 6px; padding-top: 14px;
  border-top: 1px solid var(--line);
}
.score-total .score-label, .score-total .score-val { color: var(--gold) }

/* ─── TRUST GRID (why trust us) ──────────────────── */
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.trust-card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--panel); padding: 24px;
  transition: border-color .25s;
}
.trust-card:hover { border-color: rgba(45,212,255,.25) }
.trust-num {
  display: block;
  font-size: .8rem; font-weight: 900; letter-spacing: .12em;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.trust-card h3 { font-size: 1.1rem; margin-bottom: 8px }
.trust-card p { color: var(--muted); font-size: .9rem; margin: 0 }
.trust-card a { color: var(--cyan) }
.trust-card a:hover { text-decoration: underline }

/* ─── BACK TO TOP ────────────────────────────────── */
.back-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: grid; place-items: center;
  width: 46px; height: 46px; border: 1px solid var(--line2);
  border-radius: 50%; cursor: pointer;
  background: var(--panel2); color: var(--text);
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s;
}
.back-top.show { opacity: 1; visibility: visible; transform: none }
.back-top:hover { background: var(--panel3); border-color: rgba(45,212,255,.4) }
.back-top svg { width: 20px; height: 20px }

/* ─── UTILITIES ──────────────────────────────────── */
.text-center { text-align: center }
.mt-0 { margin-top: 0 }
.mb-0 { margin-bottom: 0 }
.mb-8 { margin-bottom: 8px }
.mb-16 { margin-bottom: 16px }
.mb-24 { margin-bottom: 24px }
.mb-32 { margin-bottom: 32px }
