:root {
  --bg-primary: #0a0b0d;
  --bg-secondary: #12141a;
  --bg-card: #181b22;
  --fg-primary: #e8e9eb;
  --fg-secondary: #8a8f9a;
  --fg-muted: #5a5f6a;
  --accent: #d4a026;
  --accent-dim: #9a7518;
  --accent-glow: rgba(212, 160, 38, 0.15);
  --border: #252830;
  --radius: 6px;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--fg-primary);
  flex-shrink: 0;
}

.nav-brand .accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  transition: color 0.15s;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-secondary);
  border-radius: 1px;
  transition: background 0.15s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 160, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 38, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .accent,
.accent {
  color: var(--accent);
}

.lede {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-stats {
  position: relative;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.reviews-section {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.review-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #fff;
  transition: transform 0.3s ease;
}

.review-card:hover .review-card-image img {
  transform: scale(1.04);
}

.review-card-header,
.review-card-title,
.review-card-excerpt,
.review-card-link {
  padding-left: 24px;
  padding-right: 24px;
}

.review-card-link {
  padding-bottom: 24px;
}

.review-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-dim);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 20px;
}

.review-cat-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-secondary);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.review-rating {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid var(--accent-dim);
}

.review-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

.review-card-excerpt {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-link {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: opacity 0.15s;
}

.review-card:hover .review-card-link {
  opacity: 0.8;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.category-card-link {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.15s;
}

.category-card:hover .category-card-link {
  opacity: 0.8;
}

/* ============================================================
   PAGE HERO (category/review pages)
   ============================================================ */
.page-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-icon {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero-desc {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ============================================================
   REVIEW DETAIL
   ============================================================ */
.review-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}

.review-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.review-breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-breadcrumb a {
  color: var(--fg-muted);
  transition: color 0.15s;
}

.review-breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--fg-muted);
  opacity: 0.5;
}

.review-hero-meta {
  margin-bottom: 16px;
}

.review-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.review-hero-excerpt {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}

.review-hero-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rating-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-right: 4px;
}

.rating-value {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rating-max {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--fg-muted);
}

/* Review body layout */
.review-body-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.review-main {
  min-width: 0;
}

/* Affiliate CTA */
.affiliate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.affiliate-cta-bottom {
  margin-top: 40px;
  margin-bottom: 0;
}

.affiliate-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.affiliate-cta-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.affiliate-cta-text span {
  font-size: 0.875rem;
  color: var(--fg-secondary);
}

.affiliate-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent);
}

.btn-buy {
  display: inline-block;
  background: var(--accent);
  color: #0a0b0d;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}

.btn-buy:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-buy-full {
  display: block;
  text-align: center;
  width: 100%;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.pros-box,
.cons-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.pros-cons-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pros-title { color: #4ade80; }
.cons-title { color: #f87171; }

.pros-box ul,
.cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-box li,
.cons-box li {
  font-size: 0.875rem;
  color: var(--fg-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.pro-icon {
  color: #4ade80;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.con-icon {
  color: #f87171;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

/* Specs Table */
.specs-section {
  margin-bottom: 36px;
}

.specs-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.specs-table .row-even {
  background: var(--bg-card);
}

.specs-table .row-odd {
  background: var(--bg-secondary);
}

.spec-key {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 11px 16px;
  width: 40%;
  letter-spacing: 0.5px;
  border-right: 1px solid var(--border);
}

.spec-val {
  padding: 11px 16px;
  color: var(--fg-primary);
  font-size: 0.875rem;
}

/* Review Content */
.review-content {
  color: var(--fg-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.review-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin: 28px 0 12px;
  padding-top: 4px;
}

.review-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-product-image {
  width: 100%;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.sidebar-product-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 12px;
  display: block;
}

.sidebar-rating-big {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.sidebar-rating-big span {
  font-size: 1.4rem;
  color: var(--fg-muted);
}

.sidebar-rating-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.sidebar-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.sidebar-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.sidebar-cat-list a:hover,
.sidebar-cat-list a.active {
  background: var(--bg-secondary);
  color: var(--accent);
}

.sidebar-cat-icon {
  font-size: 1rem;
  color: var(--accent);
}

/* ============================================================
   SUBSCRIBE SECTION
   ============================================================ */
.subscribe-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.subscribe-inner {
  max-width: 520px;
  margin: 0 auto;
}

.subscribe-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.subscribe-inner p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 18px;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--fg-muted);
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--accent-dim);
}

.subscribe-form button {
  background: var(--accent);
  color: #0a0b0d;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}

.subscribe-form button:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.subscribe-msg {
  margin-top: 12px;
  font-size: 0.875rem;
  min-height: 20px;
}

.subscribe-msg.success { color: #4ade80; }
.subscribe-msg.error { color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--fg-primary);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--fg-muted);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.error-code {
  font-family: var(--font-mono);
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-page p {
  font-size: 1rem;
  color: var(--fg-secondary);
  margin-bottom: 32px;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ============================================================
   APPROACH (legacy landing page sections, keep working)
   ============================================================ */
.approach {
  padding: 100px 24px;
  background: var(--bg-secondary);
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.approach h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
}

.approach-points {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.point-marker {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 2px;
}

.point h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.point p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.6;
}

.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-tagline {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 32px;
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .review-body-wrap {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    position: static;
    order: -1;
  }
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--fg-primary);
  margin-bottom: 16px;
}

.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* NEWSLETTER SIGNUP FORM */
.signup-form {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.signup-input {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.signup-input::placeholder {
  color: var(--fg-muted);
}

.signup-input:focus {
  border-color: var(--accent-dim);
}

.signup-btn {
  padding: 12px 24px;
  background: var(--accent);
  color: #0a0b0d;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.signup-btn:hover {
  opacity: 0.85;
}

.signup-disclaimer {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  min-height: 1.2em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-inner {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-buy {
    width: 100%;
    text-align: center;
  }

  .categories,
  .reviews-section {
    padding: 60px 0;
  }

  .categories {
    padding: 60px 20px;
  }

  .point {
    flex-direction: column;
    gap: 12px;
  }

  .approach,
  .closing {
    padding: 60px 20px;
  }
}
