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

:root {
  --color-navy: #0d1b2a;
  --color-navy-mid: #1a2e45;
  --color-navy-light: #1e3a5f;
  --color-gold: #c9a84c;
  --color-gold-light: #e2c47e;
  --color-gray-dark: #2d3748;
  --color-gray-mid: #4a5568;
  --color-gray-soft: #718096;
  --color-gray-light: #a0aec0;
  --color-gray-border: #e2e8f0;
  --color-bg: #f7f9fc;
  --color-white: #ffffff;
  --color-text: #1a202c;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.10);
  --shadow-lg: 0 8px 32px rgba(13,27,42,0.14);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--color-gray-dark); }
a { color: var(--color-navy-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; color: var(--color-gray-dark); }
strong { color: var(--color-navy); font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== NAV ===== */
.site-header {
  background: var(--color-navy);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px; max-width: 1240px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--color-white); letter-spacing: -0.03em;
}
.logo span { color: var(--color-gold); }
.logo-icon {
  width: 36px; height: 36px; background: var(--color-gold);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: var(--color-navy); width: 22px; height: 22px; }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500;
  padding: 6px 13px; border-radius: 6px; transition: all var(--transition);
  white-space: nowrap;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--color-gold); background: rgba(201,168,76,0.10);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--color-navy-mid); border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius); min-width: 220px;
  box-shadow: var(--shadow-lg); padding: 8px 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 8px 16px; font-size: 0.85rem;
  color: rgba(255,255,255,0.8); border-radius: 0;
}
.dropdown-menu a:hover { color: var(--color-gold); background: rgba(201,168,76,0.08); }

.nav-cta {
  background: var(--color-gold); color: var(--color-navy) !important;
  font-weight: 700 !important; padding: 8px 20px !important;
  border-radius: 24px !important;
}
.nav-cta:hover { background: var(--color-gold-light) !important; color: var(--color-navy) !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--color-white); transition: var(--transition); border-radius: 2px; }

.mobile-nav {
  display: none; background: var(--color-navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav a {
  display: block; padding: 13px 24px; color: rgba(255,255,255,0.85);
  font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav.open { display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 60%, #0a2240 100%);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero::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='%23c9a84c' fill-opacity='0.04'%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: 0.5;
}
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 620px; }
.hero h1 { color: var(--color-white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--color-gold); }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 32px; }
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
}
.hero-meta-item .dot { width: 8px; height: 8px; background: var(--color-gold); border-radius: 50%; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 28px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
  font-family: var(--font-body); letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--color-gold); color: var(--color-navy);
}
.btn-primary:hover { background: var(--color-gold-light); color: var(--color-navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-navy {
  background: var(--color-navy); color: var(--color-white);
}
.btn-navy:hover { background: var(--color-navy-light); color: var(--color-white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--color-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-gray-border);
  overflow: hidden; transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-category {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 10px;
}
.card-title { font-family: var(--font-heading); font-size: 1.12rem; color: var(--color-navy); margin-bottom: 10px; line-height: 1.35; }
.card-desc { font-size: 0.875rem; color: var(--color-gray-soft); margin-bottom: 16px; line-height: 1.6; }
.card-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.card-meta-item { font-size: 0.78rem; color: var(--color-gray-light); }

/* ===== PODCAST CARD ===== */
.podcast-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-border); overflow: hidden;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.podcast-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.podcast-thumb { position: relative; overflow: hidden; }
.podcast-thumb img { width: 100%; height: 220px; object-fit: cover; }
.duration-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(13,27,42,0.82); color: var(--color-gold);
  font-size: 0.75rem; font-weight: 600; padding: 3px 9px;
  border-radius: 20px;
}
.podcast-info { padding: 20px; }
.podcast-topic {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 8px;
}
.podcast-title { font-family: var(--font-heading); font-size: 1rem; color: var(--color-navy); margin-bottom: 8px; line-height: 1.4; }
.podcast-desc { font-size: 0.82rem; color: var(--color-gray-soft); margin-bottom: 14px; line-height: 1.55; }
.podcast-footer { display: flex; align-items: center; justify-content: space-between; }
.podcast-analyst { display: flex; align-items: center; gap: 8px; }
.analyst-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-navy); display: flex; align-items: center;
  justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--color-gold);
}
.analyst-name { font-size: 0.78rem; color: var(--color-gray-mid); }

/* ===== PLAYER ===== */
.audio-player {
  background: var(--color-navy-mid); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); flex-shrink: 0;
}
.play-btn:hover { background: var(--color-gold-light); transform: scale(1.05); }
.play-btn svg { fill: var(--color-navy); width: 18px; height: 18px; }
.player-info { flex: 1; min-width: 120px; }
.player-title { font-size: 0.82rem; font-weight: 600; color: var(--color-white); margin-bottom: 4px; }
.player-episode { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.player-bar { flex: 2; min-width: 140px; }
.progress-track {
  width: 100%; height: 4px; background: rgba(255,255,255,0.15);
  border-radius: 2px; position: relative; cursor: pointer;
}
.progress-fill { height: 100%; background: var(--color-gold); border-radius: 2px; width: 38%; }
.player-time { display: flex; justify-content: space-between; margin-top: 4px; }
.player-time span { font-size: 0.68rem; color: rgba(255,255,255,0.45); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 12px;
  padding-left: 28px; position: relative;
}
.section-label::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); width: 20px; height: 2px;
  background: var(--color-gold);
}
.section-title { margin-bottom: 14px; }
.section-desc { font-size: 1.05rem; color: var(--color-gray-mid); max-width: 580px; }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--color-navy);
  padding: 40px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-gold); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ===== ANALYST CARD ===== */
.analyst-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; border: 1px solid var(--color-gray-border);
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.analyst-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.analyst-photo {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px;
  object-fit: cover; border: 3px solid var(--color-gold);
}
.analyst-photo-placeholder {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--color-navy); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--color-gold); border: 3px solid var(--color-gold);
}
.analyst-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-navy); margin-bottom: 6px; }
.analyst-role { font-size: 0.8rem; color: var(--color-gold); font-weight: 600; margin-bottom: 10px; }
.analyst-bio { font-size: 0.82rem; color: var(--color-gray-soft); line-height: 1.55; }

/* ===== REVIEW CARD ===== */
.review-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--color-gray-border);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { color: var(--color-gold); font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: var(--color-gray-dark); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-navy); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--color-gold); flex-shrink: 0;
}
.review-author-info .name { font-size: 0.88rem; font-weight: 600; color: var(--color-navy); }
.review-author-info .role { font-size: 0.75rem; color: var(--color-gray-soft); }

/* ===== TOPIC TAG ===== */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; background: rgba(30,58,95,0.08);
  color: var(--color-navy-light); transition: all var(--transition); cursor: pointer;
}
.tag:hover { background: var(--color-navy); color: var(--color-white); }
.tag-gold { background: rgba(201,168,76,0.12); color: var(--color-gold); }
.tag-gold:hover { background: var(--color-gold); color: var(--color-navy); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 16px 0; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.82rem; color: var(--color-gray-soft); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { color: var(--color-gray-light); font-size: 0.75rem; }
.breadcrumb .current { font-size: 0.82rem; color: var(--color-navy); font-weight: 500; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 16px; border: 1.5px solid var(--color-gray-border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--color-text); background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--color-navy-light); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.form-control::placeholder { color: var(--color-gray-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--color-gray-soft); margin-top: 6px; }

.success-msg {
  display: none; background: #d4edda; border: 1px solid #c3e6cb;
  color: #155724; padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.9rem; margin-top: 16px; align-items: center; gap: 10px;
}
.success-msg.show { display: flex; }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--color-white); border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-border); padding: 24px; margin-bottom: 24px;
}
.widget-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--color-navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--color-gold); }
.widget-list { list-style: none; padding: 0; }
.widget-list li { padding: 8px 0; border-bottom: 1px solid var(--color-gray-border); display: flex; align-items: center; justify-content: space-between; }
.widget-list li:last-child { border-bottom: none; }
.widget-list a { font-size: 0.85rem; color: var(--color-gray-dark); }
.widget-list a:hover { color: var(--color-gold); }
.widget-count { font-size: 0.72rem; color: var(--color-gray-light); background: var(--color-bg); padding: 2px 7px; border-radius: 10px; }

/* ===== NEWSLETTER STRIP ===== */
.newsletter-strip {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 56px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: var(--color-white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.68); margin: 0; }
.newsletter-form { display: flex; gap: 0; max-width: 400px; width: 100%; }
.newsletter-form input {
  flex: 1; padding: 12px 18px; border: none; border-radius: 28px 0 0 28px;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.newsletter-form .btn { border-radius: 0 28px 28px 0; padding: 12px 24px; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--color-white); padding: 72px 0;
  border-top: 1px solid var(--color-gray-border);
}
.about-visual { position: relative; }
.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-accent {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--color-gold); color: var(--color-navy);
  border-radius: var(--radius-lg); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-accent .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.about-accent .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 56px 0 48px;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0; }

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(30,58,95,0.06); border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 24px 0;
}
.info-box p { margin: 0; font-size: 0.9rem; color: var(--color-gray-dark); }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--color-gray-border); margin: 40px 0; }
.divider-gold { height: 2px; background: linear-gradient(90deg, var(--color-gold), transparent); margin: 40px 0; }

/* ===== ACCORDION / FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--color-gray-border); padding: 20px 0;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--color-navy);
  padding-right: 16px; gap: 12px;
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--color-navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { fill: var(--color-gold); width: 14px; height: 14px; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--color-gold); }
.faq-item.open .faq-icon svg { fill: var(--color-navy); transform: rotate(45deg); }
.faq-answer {
  display: none; padding-top: 14px;
  font-size: 0.9rem; color: var(--color-gray-dark); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--color-navy); color: var(--color-white);
  padding: 12px 16px; font-size: 0.82rem; text-align: left;
  font-weight: 600; letter-spacing: 0.03em;
}
.data-table td { padding: 12px 16px; font-size: 0.88rem; border-bottom: 1px solid var(--color-gray-border); color: var(--color-gray-dark); }
.data-table tr:hover td { background: rgba(30,58,95,0.03); }
.data-table .up { color: #22863a; font-weight: 600; }
.data-table .down { color: #d73a49; font-weight: 600; }

/* ===== GLOSSARY ===== */
.glossary-letter { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-gold); font-weight: 700; margin: 32px 0 12px; border-bottom: 2px solid var(--color-gold); padding-bottom: 6px; display: inline-block; min-width: 40px; text-align: center; }
.glossary-term { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; }
.glossary-def { font-size: 0.88rem; color: var(--color-gray-dark); margin: 4px 0 18px; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--color-gray-border); margin-bottom: 32px; overflow-x: auto; }
.tab-btn {
  padding: 11px 22px; font-size: 0.88rem; font-weight: 600;
  color: var(--color-gray-mid); background: none; border: none;
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--transition); white-space: nowrap; font-family: var(--font-body);
}
.tab-btn:hover { color: var(--color-navy); }
.tab-btn.active { color: var(--color-navy); border-bottom-color: var(--color-gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500; color: var(--color-gray-mid);
  background: var(--color-white); border: 1px solid var(--color-gray-border);
  transition: all var(--transition); text-decoration: none;
}
.page-link:hover, .page-link.active { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.page-link:hover { color: var(--color-white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-navy);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { fill: var(--color-gold); width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--color-white); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-policy { display: flex; gap: 16px; }
.footer-policy a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-policy a:hover { color: var(--color-gold); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.bg-white { background: var(--color-white); }
.bg-navy { background: var(--color-navy); }
.bg-light { background: var(--color-bg); }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-soft); }
.full-width { width: 100%; }

/* ===== LAYOUT WITH SIDEBAR ===== */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.content-with-sidebar-left { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

/* ===== SEARCH BAR ===== */
.search-bar { display: flex; gap: 0; max-width: 600px; margin: 0 auto; }
.search-bar input {
  flex: 1; padding: 13px 20px; border: 2px solid var(--color-gray-border);
  border-radius: 32px 0 0 32px; font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--color-navy-light); }
.search-bar .btn { border-radius: 0 32px 32px 0; }

/* ===== EPISODE LIST ===== */
.episode-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--color-gray-border);
}
.episode-num {
  width: 40px; height: 40px; border-radius: 8px; background: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--color-gold); flex-shrink: 0;
}
.episode-body { flex: 1; }
.episode-title { font-weight: 600; font-size: 0.92rem; color: var(--color-navy); margin-bottom: 4px; }
.episode-meta { font-size: 0.75rem; color: var(--color-gray-soft); }
.episode-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.episode-duration { font-size: 0.78rem; color: var(--color-gray-light); }

/* ===== MARKET TICKER ===== */
.market-ticker {
  background: var(--color-navy-mid); padding: 10px 0; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-inner {
  display: flex; gap: 32px; animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.ticker-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.ticker-val { font-size: 0.75rem; font-weight: 600; color: var(--color-white); }
.ticker-chg { font-size: 0.7rem; padding: 1px 6px; border-radius: 3px; }
.ticker-chg.up { background: rgba(34,134,58,0.2); color: #5cb85c; }
.ticker-chg.down { background: rgba(215,58,73,0.2); color: #e74c3c; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--color-navy); border-top: 2px solid var(--color-gold);
  padding: 18px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.cookie-text a { color: var(--color-gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-gold); border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all var(--transition);
}
.back-to-top svg { fill: var(--color-navy); width: 20px; height: 20px; }
.back-to-top:hover { background: var(--color-gold-light); transform: translateY(-2px); }
.back-to-top.visible { display: flex; }

/* ===== POLICY PAGES ===== */
.policy-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--color-navy); }
.policy-content h3 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--color-navy); }
.policy-content p { font-size: 0.92rem; margin-bottom: 14px; }
.policy-content ul { margin-bottom: 14px; }
.policy-content ul li { font-size: 0.92rem; }
.policy-toc {
  background: var(--color-white); border: 1px solid var(--color-gray-border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px;
}
.policy-toc h4 { font-size: 0.88rem; color: var(--color-navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { font-size: 0.82rem; margin-bottom: 4px; }
.policy-toc ol a { color: var(--color-navy-light); }
.policy-toc ol a:hover { color: var(--color-gold); }
.policy-updated {
  font-size: 0.78rem; color: var(--color-gray-soft); font-style: italic;
  margin-bottom: 24px; padding: 8px 14px; background: var(--color-bg);
  border-radius: var(--radius); display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .content-with-sidebar-left { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-main { display: none; }
  .burger { display: flex; }
  .hero { padding: 52px 0 48px; }
  .hero-meta { gap: 12px; }
  .section, .section-lg { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 28px; }
  .newsletter-form .btn { border-radius: 28px; }
  .about-accent { position: static; margin-top: 16px; display: inline-block; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .container, .container-sm { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 12px; }
}
