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

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

:root {
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f2f5;
  --mid-gray: #e2e6ea;
  --text-gray: #6b7280;
  --text-dark: #1a1d23;
  --text-medium: #374151;
  --green-muted: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --green-bg: #f0faf4;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-pale: #fdf4d0;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-width: 1240px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.28; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-medium); }

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

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--green-muted); }

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--green-muted); background: var(--green-bg); }

.nav-link .arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-item:hover .arrow { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  z-index: 100;
}

.nav-item:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.87rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.dropdown a:hover { background: var(--green-bg); color: var(--green-muted); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--green-muted);
  color: #fff;
}

.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--green-muted);
  border: 1.5px solid var(--green-muted);
}

.btn-outline:hover { background: var(--green-bg); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-lg { padding: 14px 30px; font-size: 0.95rem; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========== HERO ========== */
.hero {
  background: var(--white);
  padding: 80px 0 70px;
  overflow: hidden;
  position: relative;
}

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

.hero-content { max-width: 560px; }

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  margin-bottom: 22px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-title em { font-style: normal; color: var(--green-muted); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-stat-item {}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== TICKER ========== */
.ticker-bar {
  background: var(--text-dark);
  padding: 11px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.15);
}

.ticker-item:last-child { border-right: none; }

.ticker-name { color: rgba(255,255,255,0.55); }
.ticker-value { color: #fff; font-weight: 600; }
.ticker-change.up { color: #4ade80; }
.ticker-change.down { color: #f87171; }

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

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--text-dark); }

.section-header {
  margin-bottom: 48px;
}

.section-header.centered { text-align: center; max-width: 640px; margin: 0 auto 48px; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-title.light { color: #fff; }

.section-desc {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 600px;
}

.section-desc.light { color: rgba(255,255,255,0.7); }

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body { padding: 22px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-muted);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 20px;
}

.card-date {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-dark);
  transition: color var(--transition);
}

.card:hover .card-title { color: var(--green-muted); }

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-author {
  font-size: 0.82rem;
  color: var(--text-gray);
  font-weight: 500;
}

.read-time {
  font-size: 0.78rem;
  color: var(--text-gray);
}

/* ========== 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: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ========== MARKET DATA WIDGETS ========== */
.market-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow var(--transition);
}

.market-widget:hover { box-shadow: var(--shadow-md); }

.widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.widget-name { font-size: 0.85rem; color: var(--text-gray); font-weight: 500; }
.widget-symbol { font-size: 0.75rem; color: var(--text-gray); margin-top: 2px; }
.widget-price { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); }

.widget-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.widget-change.up { color: #16a34a; background: #dcfce7; }
.widget-change.down { color: #dc2626; background: #fee2e2; }

.sparkline {
  height: 50px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.sparkline svg { width: 100%; height: 100%; }

/* ========== MINI CHART (CSS) ========== */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
}

.chart-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  transition: opacity var(--transition);
}

.chart-bar.up { background: var(--green-light); }
.chart-bar.down { background: #ef4444; }
.chart-bar:hover { opacity: 0.75; }

/* ========== ANALYSIS STRIP ========== */
.analysis-strip {
  background: var(--green-muted);
  padding: 32px 0;
}

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

.strip-text h3 { color: #fff; font-size: 1.3rem; }
.strip-text p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 5px; }

/* ========== FEATURED ARTICLE ========== */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.featured-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.featured-title { font-size: 1.7rem; margin-bottom: 16px; line-height: 1.35; }

/* ========== CATEGORY PILLS ========== */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pill {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
}

.pill:hover, .pill.active { background: var(--green-muted); border-color: var(--green-muted); color: #fff; }

/* ========== INSIGHT BOX ========== */
.insight-box {
  background: var(--gold-pale);
  border: 1px solid rgba(184,134,11,0.25);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
}

.insight-box p {
  color: var(--text-dark);
  font-size: 0.93rem;
  line-height: 1.7;
}

.insight-box strong { color: var(--gold); }

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

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

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

.data-table tbody tr:hover { background: var(--off-white); }

.data-table .num { font-weight: 600; color: var(--text-dark); font-family: 'Inter', monospace; }
.data-table .up-val { color: #16a34a; font-weight: 600; }
.data-table .down-val { color: #dc2626; font-weight: 600; }

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

.sidebar { position: sticky; top: 84px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-widget-header {
  padding: 14px 18px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.sidebar-widget-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.sidebar-widget-body { padding: 16px 18px; }

.sidebar-list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-list-item:last-child { border-bottom: none; }

.sidebar-item-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mid-gray);
  font-family: var(--font-heading);
  flex-shrink: 0;
  width: 24px;
}

.sidebar-item-title { font-size: 0.85rem; color: var(--text-dark); font-weight: 500; line-height: 1.45; }
.sidebar-item-title:hover { color: var(--green-muted); }

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: var(--green-muted);
  padding: 70px 0;
}

.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner h2 { color: #fff; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
}

.newsletter-form input:focus { box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-muted);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.08);
}

.form-textarea { resize: vertical; min-height: 130px; }

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

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

.breadcrumb a { color: var(--text-gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-muted); }
.breadcrumb-sep { color: var(--mid-gray); }
.breadcrumb-current { color: var(--text-medium); font-weight: 500; }

/* ========== PAGE HERO ========== */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.page-hero-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.page-hero-desc { font-size: 1rem; color: var(--text-gray); max-width: 620px; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text-dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 14px;
  margin-bottom: 22px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}

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

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

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

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

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ========== DISCLAIMER BAR ========== */
.disclaimer-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(184,134,11,0.2);
  padding: 14px 0;
}

.disclaimer-text {
  font-size: 0.78rem;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.6;
}

.disclaimer-text strong { color: var(--text-dark); }

/* ========== UTILITIES ========== */
.text-green { color: var(--green-muted); }
.text-gold { color: var(--gold); }
.text-gray { color: var(--text-gray); }
.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; }
.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; }
.pt-0 { padding-top: 0; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ========== STAT BOX ========== */
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}

.stat-box-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-muted);
  line-height: 1;
  margin-bottom: 8px;
}

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

/* ========== ICON FEATURE ========== */
.icon-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg { width: 22px; height: 22px; stroke: var(--green-muted); }
.icon-box.gold-box { background: var(--gold-pale); }
.icon-box.gold-box svg { stroke: var(--gold); }

.icon-feature-body {}
.icon-feature-title { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.icon-feature-desc { font-size: 0.875rem; color: var(--text-gray); line-height: 1.6; }

/* ========== TABS ========== */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  gap: 0;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn.active, .tab-btn:hover { color: var(--green-muted); border-bottom-color: var(--green-muted); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ========== ARTICLE CONTENT ========== */
.article-body h2 { font-size: 1.6rem; margin: 36px 0 16px; }
.article-body h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; line-height: 1.8; color: var(--text-medium); }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body li { margin-bottom: 8px; color: var(--text-medium); line-height: 1.7; }
.article-body blockquote {
  border-left: 3px solid var(--green-muted);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--green-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p { color: var(--text-dark); font-style: italic; margin: 0; }

/* ========== PODCAST CARD ========== */
.podcast-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}

.podcast-card:hover { box-shadow: var(--shadow-md); }

.podcast-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light-gray);
  flex-shrink: 0;
  line-height: 1;
  width: 36px;
}

.podcast-meta { font-size: 0.8rem; color: var(--text-gray); margin-bottom: 8px; }
.podcast-title { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.podcast-desc { font-size: 0.85rem; color: var(--text-gray); line-height: 1.6; }
.podcast-duration { font-size: 0.78rem; color: var(--text-gray); margin-top: 10px; }

/* ========== TOOL CARD ========== */
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all var(--transition);
}

.tool-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--green-muted); }

.tool-icon {
  width: 60px;
  height: 60px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.tool-icon svg { width: 28px; height: 28px; stroke: var(--green-muted); }

.tool-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.tool-desc { font-size: 0.875rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.6; }

/* ========== AUTHOR ========== */
.author-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.author-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.author-role { font-size: 0.82rem; color: var(--text-gray); }

/* ========== POLICY PAGES ========== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type { border-top: none; margin-top: 0; }

.policy-content p { margin-bottom: 18px; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { margin: 12px 0 18px 24px; }
.policy-content li { margin-bottom: 8px; color: var(--text-medium); font-size: 0.95rem; line-height: 1.7; }

.policy-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}

.policy-meta-item { font-size: 0.85rem; color: var(--text-gray); }
.policy-meta-item strong { color: var(--text-dark); }

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-img { height: 240px; }
  .strip-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .header-cta .btn-outline { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 0.95rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ========== SCROLL-UP ========== */
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--green-muted);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
}

.scroll-up.visible { opacity: 1; pointer-events: auto; }
.scroll-up:hover { transform: translateY(-3px); }
.scroll-up svg { width: 18px; height: 18px; stroke: #fff; }

/* ========== ACTIVE PAGE ========== */
.nav-link.current { color: var(--green-muted); }

/* ========== THANK YOU PAGE ========== */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg { width: 38px; height: 38px; stroke: var(--green-muted); }
.thankyou-wrap h1 { margin-bottom: 16px; }
.thankyou-wrap p { font-size: 1.05rem; color: var(--text-gray); max-width: 500px; margin: 0 auto 36px; }

/* ========== GLOSSARY ========== */
.glossary-letter { font-size: 1.5rem; font-weight: 700; color: var(--green-muted); margin: 32px 0 14px; font-family: var(--font-heading); }
.glossary-term { border-bottom: 1px solid var(--border); padding: 16px 0; }
.glossary-term-title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.glossary-term-def { font-size: 0.9rem; color: var(--text-gray); line-height: 1.65; }

.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}

.alpha-nav a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  transition: all var(--transition);
}

.alpha-nav a:hover { background: var(--green-muted); color: #fff; border-color: var(--green-muted); }
