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

/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --blue-deep: #1A2B4A;
  --blue-mid: #2C4270;
  --blue-light: #EEF2F9;
  --mint: #10B981;
  --mint-light: #D1FAF0;
  --mint-dark: #059669;
  --gray-dark: #374151;
  --gray-mid: #6B7280;
  --gray-light: #E5E7EB;
  --gray-bg: #F8F9FA;
  --white: #FFFFFF;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(26,43,74,0.10);
  --shadow-lg: 0 8px 32px rgba(26,43,74,0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mint); }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: var(--font-sans); }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--blue-deep);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { line-height: 1.75; color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.75rem;
  display: block;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

/* ===========================
   NAVIGATION
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--blue-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark span {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--blue-deep);
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all .2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-deep);
  background: var(--blue-light);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-bg);
  border-radius: var(--radius);
  color: var(--gray-mid);
  transition: all .2s;
}
.btn-search:hover { background: var(--blue-light); color: var(--blue-deep); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: all .3s;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
}
.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
}

.btn-mint {
  background: var(--mint);
  color: var(--white);
  border-color: var(--mint);
}
.btn-mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--white);
}

.btn-outline-mint {
  background: transparent;
  color: var(--mint);
  border-color: var(--mint);
}
.btn-outline-mint:hover {
  background: var(--mint);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
  padding: 11px 16px;
}
.btn-ghost:hover { background: var(--gray-bg); color: var(--blue-deep); }

.btn-sm { padding: 7px 16px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,0.96) 0%, rgba(44,66,112,0.88) 60%, rgba(16,185,129,0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title em {
  font-style: italic;
  color: rgba(16,185,129,0.9);
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
}
.hero-stat span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  margin-bottom: 48px;
}

.section-header.centered { text-align: center; }

.section-header h2 { margin-bottom: 0.75rem; }

.section-header .lead { max-width: 640px; }

.section-header.centered .lead {
  margin-left: auto;
  margin-right: auto;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
  background: var(--mint-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-title a { color: inherit; }
.card-title a:hover { color: var(--mint); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-meta span { display: flex; align-items: center; gap: 5px; }

/* Podcast Card */
.podcast-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all .3s;
}

.podcast-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.podcast-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-card-body { flex: 1; min-width: 0; }

.podcast-card-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
  line-height: 1.4;
}

.podcast-card-title a { color: inherit; }
.podcast-card-title a:hover { color: var(--mint); }

.podcast-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Play Button */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  transition: all .2s;
}

.play-btn:hover { background: var(--mint); color: var(--white); }

.play-btn .play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent currentColor;
}

/* ===========================
   ANALYST CARD
=========================== */
.analyst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.analyst-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.analyst-photo {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.analyst-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.analyst-card:hover .analyst-photo img { transform: scale(1.04); }

.analyst-card-body { padding: 20px; flex: 1; }

.analyst-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.analyst-role {
  font-size: 0.8125rem;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 12px;
}

.analyst-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ===========================
   FEATURED STRIP
=========================== */
.featured-strip {
  background: var(--blue-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.featured-strip img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===========================
   CATEGORY CHIP
=========================== */
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all .2s;
}

.category-chip:hover {
  background: var(--blue-light);
  border-color: var(--blue-deep);
  color: var(--blue-deep);
}

.categories-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--blue-deep);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ===========================
   AUDIO PLAYER UI
=========================== */
.audio-player {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-player-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.audio-player-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-player-info { flex: 1; min-width: 0; }

.audio-player-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-player-show {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.audio-waveform {
  flex: 1;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.waveform-bar {
  width: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: background .2s;
}

.waveform-bar.active { background: var(--mint); }

.audio-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* ===========================
   TAGS
=========================== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all .2s;
}

.tag:hover { background: var(--mint-light); border-color: var(--mint); color: var(--mint-dark); }

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
  padding: 16px 0;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb span { color: var(--text-light); }

.breadcrumb-sep { color: var(--gray-light); }

/* ===========================
   SIDEBAR
=========================== */
.sidebar { display: flex; flex-direction: column; gap: 32px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mint);
}

/* ===========================
   NEWSLETTER BLOCK
=========================== */
.newsletter-block {
  background: var(--blue-deep);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--mint);
  opacity: 0.06;
  border-radius: 50%;
}

.newsletter-block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.newsletter-block h2 { color: var(--white); position: relative; z-index: 1; }
.newsletter-block p { color: rgba(255,255,255,0.65); position: relative; z-index: 1; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--mint); }

/* ===========================
   FORMS
=========================== */
.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  outline: none;
  transition: all .2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(26,43,74,0.08);
}

textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note { font-size: 0.8125rem; color: var(--text-light); margin-top: 6px; }

.form-success {
  display: none;
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--mint-dark);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.form-success.visible { display: block; }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: var(--blue-deep);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.05));
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255,255,255,0.65); }

.page-hero .breadcrumb {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--mint); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ===========================
   ARTICLE CONTENT
=========================== */
.article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p { margin-bottom: 1.25rem; }

.article-content ul, .article-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content ul li, .article-content ol li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.article-content blockquote {
  border-left: 4px solid var(--mint);
  padding: 16px 24px;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.article-content strong { color: var(--text-primary); font-weight: 600; }

.article-figure {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-figure figcaption {
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ===========================
   QUOTE BLOCK
=========================== */
.quote-block {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--blue-deep);
  opacity: 0.12;
  position: absolute;
  top: 0;
  left: 24px;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--blue-deep);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.quote-author { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }
.quote-author span { color: var(--mint); }

/* ===========================
   MARKET DATA TABLE
=========================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table th {
  background: var(--gray-bg);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-bg); }

.td-up { color: #059669; font-weight: 600; }
.td-down { color: #DC2626; font-weight: 600; }
.td-neutral { color: var(--gray-mid); }

/* ===========================
   ACCORDION / FAQ
=========================== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}

.accordion-item.open { box-shadow: var(--shadow-md); }

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background .2s;
}

.accordion-header:hover { background: var(--gray-bg); }

.accordion-question {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-deep);
  line-height: 1.4;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  color: var(--blue-deep);
  font-size: 1.1rem;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  background: var(--mint);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}

.accordion-item.open .accordion-body { display: block; }

/* ===========================
   PAGINATION
=========================== */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all .2s;
}

.page-link:hover, .page-link.active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

.page-link.dots {
  border: none;
  background: none;
  cursor: default;
  color: var(--text-light);
}

/* ===========================
   FILTER BAR
=========================== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.filter-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 4px;
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all .2s;
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-mark { background: rgba(255,255,255,0.1); }
.footer-logo .logo-text { color: var(--white); }

.footer-contact { margin-top: 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color .2s;
}

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

/* ===========================
   HIGHLIGHT BOX
=========================== */
.highlight-box {
  border-left: 4px solid var(--mint);
  background: var(--mint-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.highlight-box p { color: var(--text-secondary); margin: 0; font-size: 0.9375rem; }

.info-box {
  border-left: 4px solid var(--blue-deep);
  background: var(--blue-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.info-box p { color: var(--blue-deep); margin: 0; font-size: 0.9375rem; }

/* ===========================
   TOPICS GRID (Categories)
=========================== */
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mint);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.topic-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-2px);
}

.topic-card:hover::before { transform: scaleX(1); }

.topic-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic-icon svg { width: 24px; height: 24px; color: var(--blue-deep); }

.topic-card h3 {
  font-size: 1.05rem;
  color: var(--blue-deep);
  margin: 0;
}

.topic-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.topic-count {
  font-size: 0.8125rem;
  color: var(--mint);
  font-weight: 600;
}

/* ===========================
   SEARCH
=========================== */
.search-box {
  position: relative;
}

.search-box input {
  padding-left: 44px;
}

.search-box-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-mid);
  pointer-events: none;
}

/* ===========================
   NOTICE / ALERT
=========================== */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.notice-info {
  background: var(--blue-light);
  color: var(--blue-mid);
  border: 1px solid rgba(26,43,74,0.12);
}

.notice-success {
  background: var(--mint-light);
  color: var(--mint-dark);
  border: 1px solid rgba(16,185,129,0.3);
}

.notice-warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid rgba(234,179,8,0.3);
}

/* ===========================
   MISC UTILITIES
=========================== */
.text-mint { color: var(--mint); }
.text-blue { color: var(--blue-deep); }
.text-muted { color: var(--text-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-serif { font-family: var(--font-serif); }
.font-600 { font-weight: 600; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.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; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.bg-gray { background: var(--gray-bg); }
.bg-blue-light { background: var(--blue-light); }
.bg-blue-deep { background: var(--blue-deep); }

.rounded-lg { border-radius: var(--radius-lg); }

.img-rounded img { border-radius: var(--radius-lg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner p a { color: var(--mint); }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--blue-deep);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 50;
  transition: all .2s;
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--mint); transform: translateY(-2px); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item:last-child::before { display: none; }

.timeline-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mint);
  padding-top: 4px;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--mint);
}

.timeline-content h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-content p { font-size: 0.875rem; margin: 0; }

/* ===========================
   MOBILE MENU OVERLAY
=========================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,43,74,0.96);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: all .2s;
}

.mobile-nav-links a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--mint);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-footer p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
