/*
Theme Name: Catapult Review
Description: Mono-brand review theme for Catapult.trade affiliates
Version: 1.0
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --bg-main:       #0d0d0d;
  --bg-sidebar:    #111111;
  --bg-card:       #161616;
  --bg-card2:      #1a1a1a;
  --bg-input:      #1e1e1e;
  --accent:        #00e5b5;
  --accent-dark:   #00c49a;
  --accent-rgb:    0, 229, 181;
  --purple:        #7c3aed;
  --purple-rgb:    124, 58, 237;
  --positive:      #00c853;
  --negative:      #ff4444;
  --text:          #ffffff;
  --text-secondary:#aaaaaa;
  --text-muted:    #555555;
  --border:        #222222;
  --border-light:  #2a2a2a;
  --radius:        10px;
  --radius-sm:     6px;
  --radius-lg:     16px;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --shadow-accent: 0 0 20px rgba(var(--accent-rgb), 0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; color: var(--text-secondary); }

strong, b { color: var(--text); font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-area {
  flex: 1;
  padding: 40px 0 60px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--accent); }
.logo-badge {
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.site-nav a:hover { color: var(--text); background: var(--bg-card); }

.btn-cta-nav {
  background: var(--accent);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-accent);
  transition: all .2s !important;
}
.btn-cta-nav:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.5) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: .2s;
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
  font-size: .8rem;
}
.ticker-track {
  display: flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 8px; }
.ticker-item .t-name { color: var(--text-secondary); font-weight: 600; }
.ticker-item .t-up { color: var(--positive); font-weight: 700; }
.ticker-item .t-down { color: var(--negative); font-weight: 700; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION (front-page)
   ============================================================ */
.hero-section {
  padding: 70px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 50%, rgba(var(--purple-rgb), 0.06) 0%, transparent 50%),
              var(--bg-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300e5b5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}

.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-section h1 { margin-bottom: 16px; }
.hero-section h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-score {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stars { font-size: 1.4rem; }
.hero-reviews { color: var(--text-muted); font-size: .85rem; }

.hero-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-accent);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #000;
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all .2s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
}

.hero-trust {
  margin-top: 20px;
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust span::before { content: '✓ '; color: var(--positive); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s;
}
.card:hover { border-color: rgba(var(--accent-rgb), 0.3); }

.card-accent {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--accent-rgb), 0.04) 100%);
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
}
.feature-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; margin: 0; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  counter-increment: steps;
}
.step-num {
  width: 36px;
  height: 36px;
  background: rgba(var(--accent-rgb), 0.15);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--accent);
  font-weight: 800;
  font-size: .9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: .9rem; margin: 0; }

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.pros { border: 1px solid rgba(0, 200, 83, 0.2); }
.cons { border: 1px solid rgba(255, 68, 68, 0.2); }

.pros h4 { color: var(--positive); margin-bottom: 12px; font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; }
.cons h4 { color: var(--negative); margin-bottom: 12px; font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; }

.pros ul, .cons ul { padding-left: 0; list-style: none; margin: 0; }
.pros li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-secondary); }
.cons li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: .9rem; color: var(--text-secondary); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }
.pros li::before { content: '✓ '; color: var(--positive); font-weight: 700; }
.cons li::before { content: '✗ '; color: var(--negative); font-weight: 700; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
  background: rgba(var(--accent-rgb), 0.06);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: .95rem;
  color: var(--text-secondary);
}
.warning-box {
  background: rgba(255, 68, 68, 0.06);
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-left: 3px solid var(--negative);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: .95rem;
  color: var(--text-secondary);
}

/* ============================================================
   CTA SECTION (full-width)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(var(--purple-rgb), 0.06) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { margin-bottom: 24px; }
.cta-prize {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
  align-self: start;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--accent-rgb), 0.05) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.sidebar-cta .cta-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.sidebar-cta .cta-rating { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.sidebar-cta .cta-stars { font-size: 1.1rem; margin-bottom: 12px; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-cta .cta-note { font-size: .75rem; color: var(--text-muted); }
.sidebar-cta .cta-features { list-style: none; padding: 0; margin: 16px 0 0; text-align: left; }
.sidebar-cta .cta-features li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-cta .cta-features li:last-child { border-bottom: none; }
.sidebar-cta .cta-features li::before { content: '✓'; color: var(--positive); font-weight: 700; flex-shrink: 0; }

/* Quick facts */
.quick-facts {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.quick-facts h4 {
  padding: 14px 18px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card2);
}
.facts-list { list-style: none; padding: 0; margin: 0; }
.facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.facts-list li:last-child { border-bottom: none; }
.facts-list .f-label { color: var(--text-muted); }
.facts-list .f-value { color: var(--text); font-weight: 600; }
.facts-list .f-value.accent { color: var(--accent); }

/* Latest posts in sidebar */
.sidebar-posts { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-posts h4 { padding: 14px 18px; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); border-bottom: 1px solid var(--border); background: var(--bg-card2); }
.sidebar-post { display: block; padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: .85rem; line-height: 1.4; transition: all .2s; }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post:hover { background: var(--bg-card2); color: var(--text); }

/* ============================================================
   ARTICLE CONTENT
   ============================================================ */
.entry-header { margin-bottom: 32px; }
.entry-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.entry-meta .cat-tag {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: .75rem;
}
.entry-title { margin-bottom: 0; }

.entry-content h2 {
  margin: 36px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.entry-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.entry-content h3 { margin: 24px 0 12px; }
.entry-content p { color: var(--text-secondary); }
.entry-content ul, .entry-content ol { color: var(--text-secondary); }
.entry-content li { color: var(--text-secondary); }
.entry-content a { color: var(--accent); }
.entry-content a:hover { color: var(--accent-dark); text-decoration: underline; }

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .9rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.entry-content th {
  background: var(--bg-card2);
  color: var(--text);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.entry-content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
}
.entry-content tr:last-child td { border-bottom: none; }
.entry-content tr:hover td { background: var(--bg-card2); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 10px 0;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--border-light); }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title h2 { margin-bottom: 10px; }
.section-title p { font-size: 1rem; max-width: 560px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Separator */
.section-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ============================================================
   POST GRID (archive/blog)
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.post-card-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-card-cat { font-size: .7rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.post-card-title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.post-card-excerpt { font-size: .85rem; color: var(--text-muted); flex: 1; margin-bottom: 14px; }
.post-card-meta { font-size: .75rem; color: var(--text-muted); }
.read-more { color: var(--accent); font-weight: 600; font-size: .85rem; margin-top: auto; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination .current, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all .2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); color: #000; border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-logo { margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.footer-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-disclaimer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found { text-align: center; padding: 80px 20px; }
.not-found h1 { font-size: 6rem; color: var(--accent); line-height: 1; }
.not-found h2 { margin: 16px 0 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-sidebar); border-bottom: 1px solid var(--border); padding: 12px; }
  .site-nav.open { display: flex; }
  .site-header { position: relative; }
  .nav-toggle { display: block; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .posts-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 32px 20px; }
  h1 { font-size: 1.6rem; }
}
