/* ═══════════════════════════════════════════════
   SandboxFusion — Design System v2
   Dark. Bold. Story-driven.
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

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

:root {
  --dark:       #07070f;
  --dark-2:     #0d0d1a;
  --dark-3:     #12121f;
  --dark-4:     #1a1a2e;
  --purple:     #7c3aed;
  --purple-2:   #6d28d9;
  --purple-light: #a78bfa;
  --cyan:       #06b6d4;
  --cyan-light: #67e8f9;
  --gold:       #f59e0b;
  --green:      #10b981;
  --red:        #ef4444;
  --white:      #ffffff;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --text-dark:  #111827;

  --glow-purple: 0 0 40px rgba(124,58,237,.35);
  --glow-cyan:   0 0 40px rgba(6,182,212,.35);
  --glow-sm:     0 0 20px rgba(124,58,237,.2);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   DISCLOSURE BAR
═══════════════════════════════════════════════ */
.disclosure-bar {
  background: rgba(124,58,237,.12);
  border-bottom: 1px solid rgba(124,58,237,.2);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  color: var(--purple-light);
  letter-spacing: .2px;
}
.disclosure-bar a { color: var(--cyan-light); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7,7,15,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo span {
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
nav a.active { color: var(--white); background: rgba(124,58,237,.2); }
nav a.nav-cta {
  background: var(--purple);
  color: var(--white);
  font-weight: 600;
}
nav a.nav-cta:hover {
  background: var(--purple-2);
  transform: translateY(-1px);
  box-shadow: var(--glow-purple);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orb1 12s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orb2 15s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(80px,60px) scale(1.15); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-60px,-40px) scale(1.2); }
}
/* Grid lines background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: .3px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--white); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--gray-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
/* Floating card decoration */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  pointer-events: none;
}
.floating-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.floating-card-2 {
  margin-top: -20px;
  margin-left: 40px;
  animation-delay: -3s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}
.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #0891b2);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(6,182,212,.3);
}
.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6,182,212,.5);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), #059669);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16,185,129,.25);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: var(--dark);
  font-weight: 800;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,.4); }
.btn-lg { padding: 17px 36px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
section { padding: 96px 0; position: relative; }
.section-dark { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-dark-3 { background: var(--dark-3); }
.section-light {
  background: var(--white);
  color: var(--text-dark);
}

/* Section separator glow */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.4), rgba(6,182,212,.4), transparent);
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title .gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.section-light .section-sub { color: var(--gray-500); }
.section-light .section-title { color: var(--text-dark); }
.section-light .section-eyebrow { color: var(--purple-2); }

/* ═══════════════════════════════════════════════
   CARDS — GLASS
═══════════════════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(124,58,237,.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--glow-sm);
}
.glass-card:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════
   TOP PICKS / HOSTING CARDS
═══════════════════════════════════════════════ */
.pick-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 180px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pick-card.featured {
  border-color: rgba(124,58,237,.4);
  background: rgba(124,58,237,.06);
}
.pick-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.05), transparent);
  pointer-events: none;
}
.pick-card:hover {
  border-color: rgba(124,58,237,.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.pick-rank {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,.2);
  text-align: center;
}
.pick-rank.gold {
  background: linear-gradient(135deg, var(--gold), #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pick-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.pick-brand-price { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.pick-stars { color: var(--gold); font-size: 14px; margin-top: 4px; }
.pick-tag {
  display: inline-block;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.3);
  color: var(--purple-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.pick-tag.cyan {
  background: rgba(6,182,212,.15);
  border-color: rgba(6,182,212,.3);
  color: var(--cyan-light);
}
.pick-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-400);
}
.pick-features span::before { content: "✓ "; color: var(--green); font-weight: 700; }
.pick-score {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  text-align: right;
  background: linear-gradient(135deg, var(--white), var(--gray-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pick-score-label { font-size: 12px; color: var(--gray-500); text-align: right; }

/* ═══════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════ */
.tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.07);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  background: rgba(124,58,237,.15);
  color: var(--white);
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--gray-400);
  vertical-align: middle;
}
.compare-table tr:hover td { background: rgba(255,255,255,.02); color: var(--white); }
.compare-table .winner td { background: rgba(124,58,237,.08); color: var(--white); font-weight: 600; }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }
.tbl-light .compare-table th { background: var(--dark-4); color: var(--white); }
.tbl-light .compare-table td { color: var(--text-dark); border-bottom: 1px solid var(--gray-200); }
.tbl-light .compare-table tr:hover td { background: #f9f5ff; }

/* ═══════════════════════════════════════════════
   PROS / CONS
═══════════════════════════════════════════════ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pros, .cons {
  border-radius: var(--radius);
  padding: 20px;
}
.pros {
  background: rgba(16,185,129,.07);
  border: 1px solid rgba(16,185,129,.2);
}
.cons {
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
}
.pros h4 { color: var(--green); margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.cons h4 { color: var(--red); margin-bottom: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.pros li, .cons li { padding: 6px 0; font-size: 14px; color: var(--gray-400); border-bottom: 1px solid rgba(255,255,255,.04); }
.pros li:last-child, .cons li:last-child { border: none; }
.pros li::before { content: "✓  "; color: var(--green); font-weight: 700; }
.cons li::before { content: "✗  "; color: var(--red); font-weight: 700; }

/* ═══════════════════════════════════════════════
   STARS / RATINGS
═══════════════════════════════════════════════ */
.stars { color: var(--gold); letter-spacing: 2px; }
.rating-breakdown { margin: 28px 0; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 14px;
}
.rating-label-col { width: 140px; flex-shrink: 0; color: var(--gray-400); font-weight: 500; }
.rating-bar-wrap { flex: 1; background: rgba(255,255,255,.06); border-radius: 100px; height: 6px; }
.rating-bar { height: 6px; border-radius: 100px; background: linear-gradient(90deg, var(--purple), var(--cyan)); }
.rating-score-col { width: 36px; font-weight: 700; text-align: right; color: var(--white); }

/* ═══════════════════════════════════════════════
   PROMO / DEAL COMPONENTS
═══════════════════════════════════════════════ */
.promo-box {
  background: linear-gradient(135deg, var(--dark-4) 0%, rgba(124,58,237,.15) 100%);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}
.promo-box h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 10px;
}
.promo-box p { color: var(--gray-400); margin-bottom: 28px; }
.promo-code-display {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px dashed rgba(124,58,237,.5);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin-bottom: 24px;
}
.promo-code-text { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: 4px; }
.copy-btn {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
  transition: all var(--transition);
}
.copy-btn:hover { background: var(--purple-2); }

.deal-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.deal-card:hover {
  border-color: rgba(124,58,237,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.deal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.deal-card.featured-deal::before { background: linear-gradient(90deg, var(--gold), var(--red)); }
.deal-ribbon {
  position: absolute;
  top: 18px;
  right: -8px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px 0 0 4px;
  letter-spacing: .5px;
}
.deal-plan { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.deal-price { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; }
.deal-price span { font-size: 15px; color: var(--gray-500); font-weight: 400; font-family: var(--font-body); }
.deal-original { font-size: 13px; color: var(--gray-600); text-decoration: line-through; margin-bottom: 20px; }
.deal-features { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.deal-features li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.deal-features li:last-child { border: none; }
.deal-features li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ═══════════════════════════════════════════════
   REVIEW HEADER
═══════════════════════════════════════════════ */
.review-header {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 52px 0;
}
.review-meta {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.review-logo-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
  min-width: 140px;
}
.review-logo-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-score-big {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.review-score-out { font-size: 18px; color: var(--gray-500); }
.review-summary h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.review-summary p { color: var(--gray-400); max-width: 600px; }
.review-quick-stats { display: flex; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.quick-stat strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--white); }
.quick-stat span { font-size: 12px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════
   VERDICT / HIGHLIGHT BOXES
═══════════════════════════════════════════════ */
.verdict-box {
  background: rgba(16,185,129,.07);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.verdict-box h3 { color: var(--green); margin-bottom: 8px; font-size: 16px; font-weight: 700; }
.verdict-box p { color: var(--gray-400); font-size: 15px; }
.highlight-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  border-left: 3px solid;
}
.highlight-box { background: rgba(124,58,237,.1); border-color: var(--purple); color: var(--purple-light); }
.highlight-box.warning { background: rgba(245,158,11,.08); border-color: var(--gold); color: #fde68a; }
.highlight-box.success { background: rgba(16,185,129,.07); border-color: var(--green); color: #6ee7b7; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-item {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: rgba(255,255,255,.02);
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(124,58,237,.1); }
.faq-q.open { background: rgba(124,58,237,.12); color: var(--purple-light); }
.faq-q .chevron { transition: transform .3s; font-size: 12px; color: var(--gray-500); }
.faq-q.open .chevron { transform: rotate(180deg); color: var(--purple-light); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  padding: 0 22px;
  background: rgba(255,255,255,.01);
}
.faq-a.open { padding: 18px 22px; max-height: 400px; }

/* ═══════════════════════════════════════════════
   PAGE LAYOUT (sidebar)
═══════════════════════════════════════════════ */
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar-sticky { position: sticky; top: 90px; }
.sidebar-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.sidebar-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 6px; }
.sidebar-card .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.sidebar-features { text-align: left; margin-top: 20px; }
.sidebar-feature-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 13px;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════
   CONTENT BODY (article pages)
═══════════════════════════════════════════════ */
.content-body { color: var(--gray-400); }
.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 800;
  color: var(--white);
  margin: 48px 0 14px;
  letter-spacing: -0.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.content-body h3 { font-size: 19px; font-weight: 700; color: var(--white); margin: 28px 0 10px; }
.content-body p { margin-bottom: 16px; line-height: 1.85; }
.content-body ul, .content-body ol { padding-left: 20px; margin-bottom: 16px; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li { padding: 5px 0; }
.content-body strong { color: var(--white); }
.content-body a { color: var(--purple-light); }
.content-body a:hover { color: var(--cyan-light); }

/* ═══════════════════════════════════════════════
   TOC
═══════════════════════════════════════════════ */
.toc {
  background: rgba(124,58,237,.07);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.toc h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--purple-light); margin-bottom: 14px; }
.toc ol { padding-left: 18px; }
.toc li { padding: 5px 0; font-size: 14px; color: var(--gray-400); }
.toc li a { color: var(--gray-400); transition: color var(--transition); }
.toc li a:hover { color: var(--purple-light); }

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breadcrumb {
  font-size: 13px;
  color: var(--gray-600);
  padding: 14px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--gray-500); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--purple-light); }

/* ═══════════════════════════════════════════════
   TRUST / FEATURE GRID
═══════════════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(124,58,237,.3);
  background: rgba(124,58,237,.06);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(124,58,237,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--white); }
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   SHOWCASE COMPONENTS
═══════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--purple);
  border-radius: 50%;
  border: 2px solid var(--dark);
  box-shadow: 0 0 12px rgba(124,58,237,.6);
}
.timeline-day {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.timeline-body { font-size: 14px; color: var(--gray-400); line-height: 1.7; }

.stat-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--gray-500); }

/* ═══════════════════════════════════════════════
   CTA SECTIONS
═══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(124,58,237,.15) 0%, rgba(6,182,212,.08) 100%);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-section p { color: var(--gray-400); font-size: 18px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--gray-500); font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  font-size: 12px;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.8;
}
.footer-bottom a { color: var(--gray-600); text-decoration: underline; }
.footer-bottom a:hover { color: var(--purple-light); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 65px; left: 0; right: 0;
    background: rgba(7,7,15,.97);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 20px 24px;
    gap: 6px;
    backdrop-filter: blur(20px);
    z-index: 300;
  }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .pick-card { grid-template-columns: 40px 1fr; }
  .pick-card .pick-action { grid-column: 1/-1; display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .pick-card .pick-features-col { grid-column: 1/-1; }
  .pros-cons { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-section { padding: 40px 28px; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .promo-box { padding: 32px 20px; }
  .promo-code-text { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════
   LIGHT PAGE OVERRIDES (for light bg sections)
═══════════════════════════════════════════════ */
.light-page { background: #f8f7ff; color: var(--text-dark); }
.light-page .pick-card { background: white; border-color: var(--gray-200); }
.light-page .pick-card:hover { border-color: var(--purple); }
.light-page .pick-brand-name { color: var(--text-dark); }
.light-page .pick-features { color: var(--gray-500); }
.light-page .pick-stars { color: var(--gold); }
.light-page .glass-card { background: white; border-color: var(--gray-200); }
.light-page .glass-card:hover { border-color: var(--purple); }
.light-page .feature-title { color: var(--text-dark); }
