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

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

:root {
  --bg-primary: #0e0e1a;
  --bg-secondary: #14141f;
  --bg-card: #1c1c2e;
  --bg-elevated: #22223a;
  --border: #2a2a42;
  --border-light: #33334d;
  --text-primary: #e8eaf0;
  --text-secondary: #9ca3b8;
  --text-muted: #6b7280;
  --sapphire: #2563eb;
  --sapphire-light: #3b82f6;
  --sapphire-dim: #1d4ed8;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-dim: #059669;
  --gold: #f59e0b;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --transition: 0.22s ease;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--sapphire-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--emerald-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,14,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 8px;
  background: linear-gradient(135deg, var(--sapphire), var(--emerald));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--text-primary);
}
.logo-text span { color: var(--emerald); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-secondary);
  font-size: 14px; font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-card); }

.nav-dropdown { position: relative; }
.dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius);
  background: none; border: none;
  cursor: pointer; transition: all var(--transition);
}
.dropdown-trigger:hover { color: var(--text-primary); background: var(--bg-card); }
.dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-trigger svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 14px;
  color: var(--text-secondary); font-size: 13.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.dropdown-menu a:hover { color: var(--text-primary); background: var(--bg-elevated); }

.header-cta {
  background: var(--sapphire); color: #fff !important;
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 13.5px; font-weight: 600;
  transition: background var(--transition) !important;
  text-decoration: none;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--sapphire-dim) !important; color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg-secondary); padding: 24px;
  overflow-y: auto; z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: var(--radius);
  color: var(--text-secondary); font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--text-primary); background: var(--bg-card); }

/* ===== MAIN CONTENT ===== */
.page-wrap { padding-top: 72px; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 24px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(16,185,129,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(42,42,66,0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(42,42,66,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content {}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--sapphire-light); }
.hero-desc {
  font-size: 17px; color: var(--text-secondary);
  max-width: 520px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--sapphire); color: #fff;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: none;
  transition: background var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--sapphire-dim); color: #fff; }
.btn-secondary {
  background: transparent; color: var(--text-secondary);
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { color: var(--text-primary); border-color: var(--sapphire-light); }
.btn-outline {
  background: transparent; color: var(--sapphire-light);
  padding: 11px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--sapphire);
  transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--sapphire); color: #fff; }
.btn-emerald {
  background: var(--emerald); color: #fff;
  padding: 11px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; border: none;
  transition: background var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-emerald:hover { background: var(--emerald-dim); color: #fff; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat-item { text-align: left; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--sapphire-light); }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual {}
.hero-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,14,26,0.9));
  padding: 32px 24px;
}
.hero-img-caption { font-size: 13px; color: var(--text-secondary); }
.hero-img-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-top: 4px; }

/* ===== SECTIONS ===== */
.section { padding: 96px 24px; }
.section-sm { padding: 64px 24px; }
.section-alt { background: var(--bg-secondary); }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 860px; margin: 0 auto; }
.container-sm { max-width: 680px; margin: 0 auto; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; color: var(--text-primary); line-height: 1.2;
}
.section-subtitle {
  font-size: 16px; color: var(--text-secondary);
  max-width: 600px; margin-top: 14px; line-height: 1.75;
}
.section-header.centered .section-subtitle { margin: 14px auto 0; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border-light); box-shadow: 0 8px 32px rgba(0,0,0,0.5); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-img-tall { height: 260px; }
.card-body { padding: 24px; }
.card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 12px;
}
.card-tag {
  background: rgba(37,99,235,0.15); color: var(--sapphire-light);
  padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-tag-green {
  background: rgba(16,185,129,0.15); color: var(--emerald-light);
}
.card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 10px;
  line-height: 1.35;
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--sapphire-light); }
.card-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-link {
  font-size: 13px; font-weight: 600; color: var(--sapphire-light);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--sapphire-light); }
.card-link svg { width: 16px; height: 16px; }

/* Episode card */
.ep-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all var(--transition);
}
.ep-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.ep-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--border-light); flex-shrink: 0; line-height: 1;
  min-width: 50px;
}
.ep-info { flex: 1; }
.ep-title {
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 8px; line-height: 1.4;
}
.ep-title a { color: inherit; text-decoration: none; }
.ep-title a:hover { color: var(--sapphire-light); }
.ep-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.ep-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.ep-duration, .ep-date { display: flex; align-items: center; gap: 5px; }
.ep-duration svg, .ep-date svg { width: 14px; height: 14px; }

/* Rating */
.rating { display: flex; align-items: center; gap: 4px; }
.rating-star { color: var(--gold); font-size: 14px; }
.rating-num { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-left: 4px; }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }

/* ===== FEATURED STRIP ===== */
.featured-strip {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
}
.featured-badge {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--emerald);
  border-left: 2px solid var(--emerald); padding-left: 10px;
}
.featured-body {}
.featured-tag { font-size: 11px; font-weight: 600; color: var(--sapphire-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.featured-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.3; }
.featured-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.featured-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 24px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--sapphire-light); }
.breadcrumb-sep { color: var(--border-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 48px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--emerald); margin-bottom: 12px; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; line-height: 1.2; }
.page-hero-desc { font-size: 16px; color: var(--text-secondary); max-width: 640px; line-height: 1.8; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.widget-title {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-primary);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ===== ANALYST CARD ===== */
.analyst-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: all var(--transition);
}
.analyst-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.analyst-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}
.analyst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.analyst-name { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.analyst-role { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.analyst-bio { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ===== REVIEW CARD ===== */
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition);
}
.review-card:hover { border-color: var(--border-light); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-author-img {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; background: var(--bg-elevated);
  flex-shrink: 0;
}
.review-author-img img { width: 100%; height: 100%; object-fit: cover; }
.review-author-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-score {
  background: var(--bg-elevated); padding: 6px 14px;
  border-radius: var(--radius); font-size: 18px; font-weight: 700;
  color: var(--gold);
}
.review-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== QUOTE BLOCK ===== */
.quote-block {
  border-left: 3px solid var(--sapphire);
  padding: 20px 28px;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.quote-block p { font-size: 16px; color: var(--text-primary); font-style: italic; line-height: 1.7; }
.quote-author { font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius); padding: 20px 24px;
  margin: 24px 0;
}
.info-box-title { font-size: 14px; font-weight: 700; color: var(--sapphire-light); margin-bottom: 8px; }
.info-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ===== METRIC CARD ===== */
.metric-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.metric-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.metric-icon svg { width: 22px; height: 22px; color: var(--sapphire-light); }
.metric-icon.green { background: rgba(16,185,129,0.15); }
.metric-icon.green svg { color: var(--emerald-light); }
.metric-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text-primary); }
.metric-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; padding: 12px 16px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px; font-size: 14px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.data-table tr:hover td { background: var(--bg-elevated); }
.data-table tr:last-child td { border-bottom: none; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 12px;
}
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px;
  background: var(--bg-card); color: var(--text-primary);
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-question svg { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 20px 24px;
  background: var(--bg-secondary);
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.form-control {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 14px; color: var(--text-primary);
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--sapphire); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

.form-success {
  display: none; background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius); padding: 16px 20px;
  color: var(--emerald-light); font-size: 14px; font-weight: 500;
}
.form-success.visible { display: block; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center;
}
.newsletter-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.newsletter-desc { font-size: 16px; color: var(--text-secondary); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; }
.newsletter-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 280px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-contact a:hover { color: var(--sapphire-light); }
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-primary); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--sapphire-light); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--sapphire-light); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none; position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 700px; margin: 0 auto;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow); z-index: 2000;
  align-items: center; gap: 20px;
}
.cookie-banner.visible { display: flex; }
.cookie-text { flex: 1; font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }
.cookie-text a { color: var(--sapphire-light); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sm { padding: 8px 16px; font-size: 13px; font-weight: 600; }

/* ===== MISC ===== */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; } .justify-between { justify-content: space-between; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-blue { background: rgba(37,99,235,0.15); color: var(--sapphire-light); }
.tag-green { background: rgba(16,185,129,0.15); color: var(--emerald-light); }
.tag-gold { background: rgba(245,158,11,0.15); color: var(--gold); }

.prose h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text-primary); margin: 32px 0 16px; }
.prose h3 { font-size: 18px; font-weight: 600; color: var(--text-primary); margin: 24px 0 12px; }
.prose p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; }
.prose li { font-size: 15.5px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; list-style: initial; }
.prose ol li { list-style: decimal; }
.prose strong { color: var(--text-primary); font-weight: 600; }

.policy-page .page-wrap { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.policy-page .page-wrap h1 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.policy-page .page-wrap .last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sapphire); border: none;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: all var(--transition); z-index: 100;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== ARTICLE / BLOG ===== */
.article-list { display: flex; flex-direction: column; gap: 28px; }
.article-row {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr;
  transition: all var(--transition);
}
.article-row:hover { border-color: var(--border-light); box-shadow: var(--shadow); }
.article-row-img { height: 100%; }
.article-row-img img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.article-row-body { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.article-row-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.article-row-title a { color: inherit; text-decoration: none; }
.article-row-title a:hover { color: var(--sapphire-light); }
.article-row-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.article-row-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.author-mini { display: flex; align-items: center; gap: 8px; }
.author-mini-img { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; background: var(--bg-elevated); flex-shrink: 0; }
.author-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.author-mini-name { font-size: 12px; font-weight: 600; color: var(--text-secondary); }

/* ===== TABS ===== */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.tab-btn {
  padding: 10px 20px; background: none; border: none;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all var(--transition);
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--sapphire-light); border-bottom-color: var(--sapphire-light); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--sapphire); border-color: var(--sapphire); color: #fff; }

/* ===== PROGRESS BAR ===== */
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; margin: 8px 0; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--sapphire), var(--emerald)); }

/* ===== SEARCH ===== */
.search-bar { position: relative; }
.search-bar input { padding-right: 44px; }
.search-bar button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted);
  display: flex; align-items: center;
}
.search-bar button svg { width: 18px; height: 18px; }

/* ===== GLOSSARY ===== */
.glossary-letter { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--sapphire-light); margin-bottom: 16px; margin-top: 32px; }
.glossary-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.glossary-term { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.glossary-def { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ===== SITEMAP ===== */
.sitemap-group { margin-bottom: 36px; }
.sitemap-group-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--emerald); margin-bottom: 14px; }
.sitemap-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sitemap-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; padding: 6px 0; display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.sitemap-links a:hover { color: var(--sapphire-light); }
.sitemap-links a::before { content: '→'; font-size: 12px; color: var(--text-muted); }

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start;
}
.article-main { min-width: 0; }
.article-header { margin-bottom: 32px; }
.article-title {
  font-family: var(--font-display); font-size: clamp(24px,3.5vw,40px);
  font-weight: 700; color: var(--text-primary); line-height: 1.2; margin-bottom: 12px;
}
.article-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.article-meta-bar {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.rating-display {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 28px;
}
.rating-big { display: flex; align-items: baseline; gap: 4px; }
.rating-big-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--emerald); line-height: 1; }
.rating-big-max { font-size: 20px; color: var(--text-muted); }
.rating-stars-big { font-size: 22px; color: var(--gold); letter-spacing: 2px; }
.rating-criteria { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 200px; }
.criterion { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-secondary); }
.criterion span:first-child { width: 140px; flex-shrink: 0; }
.crit-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.crit-fill { height: 100%; background: linear-gradient(90deg, var(--sapphire), var(--emerald)); border-radius: 2px; }
.criterion span:last-child { width: 28px; text-align: right; font-weight: 600; color: var(--text-primary); }
.article-img-block { margin-bottom: 36px; }
.article-hero-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 440px; }
.img-caption { font-size: 12px; color: var(--text-muted); margin-top: 10px; font-style: italic; }
.article-body h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text-primary); margin: 36px 0 14px; line-height: 1.3;
}
.article-body p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }
.article-body ul.article-list { padding-left: 0; margin-bottom: 20px; list-style: none; }
.article-body ul.article-list li {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  padding: 8px 0 8px 22px; border-bottom: 1px solid var(--border);
  position: relative;
}
.article-body ul.article-list li::before { content: '—'; position: absolute; left: 0; color: var(--sapphire-light); font-weight: 700; }
.article-quote {
  background: var(--bg-elevated); border-left: 3px solid var(--emerald);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 28px 0; font-size: 15px; color: var(--text-secondary);
  font-style: italic; line-height: 1.8;
}
.content-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 32px;
}
.content-box h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; }
.content-box p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 0; }
.verdict-box {
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(37,99,235,0.08));
  border: 1px solid rgba(16,185,129,0.25); border-radius: var(--radius-lg);
  padding: 28px; margin-top: 36px;
}
.verdict-box h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 0; }
.verdict-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.verdict-value { font-size: 16px; font-weight: 700; color: var(--text-primary); }

/* ===== SIDEBAR ===== */
.article-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
}
.widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
.widget-list { display: flex; flex-direction: column; gap: 0; }
.widget-list li { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.widget-list li:last-child { border-bottom: none; }
.widget-list li span:first-child { color: var(--text-muted); }
.widget-list li span:last-child { color: var(--text-primary); font-weight: 500; text-align: right; max-width: 60%; }
.related-ep {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: var(--bg-secondary); border-radius: var(--radius);
  text-decoration: none; transition: background var(--transition); color: var(--text-secondary);
  font-size: 13px; line-height: 1.4;
}
.related-ep:hover { background: var(--bg-elevated); color: var(--sapphire-light); }
.related-ep-num {
  width: 36px; height: 36px; border-radius: var(--radius); flex-shrink: 0;
  background: var(--bg-elevated); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
}
.analyst-mini { display: flex; align-items: center; gap: 12px; }
.analyst-mini-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.analyst-mini-role { font-size: 12px; color: var(--text-muted); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 40px 24px 48px; }
.page-hero .container { max-width: 1280px; margin: 0 auto; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--text-primary); margin-top: 16px; margin-bottom: 8px; }
.page-hero-sub { font-size: 14px; color: var(--text-muted); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--sapphire-light); }
.breadcrumbs span { color: var(--border-light); }

/* ===== POLICY LAYOUT ===== */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.policy-nav {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  position: sticky; top: 90px;
}
.policy-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.policy-nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; padding: 6px 8px; border-radius: var(--radius); display: block; transition: all var(--transition); }
.policy-nav a:hover { color: var(--sapphire-light); background: var(--bg-elevated); }
.policy-body section { margin-bottom: 44px; }
.policy-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.policy-body h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin: 20px 0 10px; }
.policy-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.policy-body ul.article-list { padding-left: 0; list-style: none; margin-bottom: 16px; }
.policy-body ul.article-list li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; padding: 8px 0 8px 20px; border-bottom: 1px solid var(--border); position: relative; }
.policy-body ul.article-list li::before { content: '—'; position: absolute; left: 0; color: var(--sapphire-light); }
.policy-body address p, .policy-body address a { color: var(--text-secondary); font-size: 14.5px; }
.policy-body strong { color: var(--text-primary); font-weight: 600; }

/* ===== ANALYST PROFILE ===== */
.analyst-profile-hero {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px;
  margin-bottom: 8px;
}
.analyst-profile-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; }
.analyst-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.analyst-stat {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px; text-align: center; min-width: 90px;
}
.analyst-stat-num { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--emerald); }
.analyst-stat-lbl { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); margin-bottom: 28px;
}
.filter-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); flex-shrink: 0; }
.filter-btn {
  padding: 6px 14px; border-radius: 20px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--sapphire); border-color: var(--sapphire); color: #fff; }

/* ===== CARD TAG VARIANTS ===== */
.card-tag-gold { background: rgba(245,158,11,0.12); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-badge { writing-mode: initial; text-orientation: initial; border-left: none; border-bottom: 2px solid var(--emerald); padding-left: 0; padding-bottom: 10px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .analyst-profile-hero { grid-template-columns: 200px 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .analyst-profile-hero { grid-template-columns: 1fr; }
  .analyst-profile-img { max-width: 200px; }
  .rating-display { gap: 16px; }
  .rating-criteria { min-width: 100%; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 16px; }
  .section { padding: 64px 16px; }
  .section-sm { padding: 40px 16px; }
  .grid-3, .grid-2, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .article-row { grid-template-columns: 1fr; }
  .article-row-img img { min-height: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-section { padding: 36px 24px; }
  .sitemap-links { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .ep-card { flex-direction: column; }
}
