/* ==========================================================================
   EMAGAZINE DESIGN SYSTEM: QTDND B'LAO
   Style: High-End Financial Editorial / Business Magazine
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@400;500;600;700;800;900&family=Cinzel:wght@500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Core Color Palette - Financial Executive */
  --bg-canvas: #FAF9F6;           /* Warm editorial paper / canvas */
  --bg-surface: #FFFFFF;          /* Pure white card surface */
  --bg-subtle: #F1F5F9;           /* Subtle gray-blue for data blocks */
  --bg-navy-dark: #071326;        /* Deep midnight navy for cover & manifesto */
  --bg-navy-card: #0D1F3C;        /* Executive card surface */
  --bg-navy-border: #1E3A5F;      /* Navy border */

  /* Text Colors */
  --text-primary: #182230;        /* Deep charcoal for maximum readability */
  --text-secondary: #475467;      /* Subtle slate for supportive text */
  --text-muted: #667085;          /* Muted meta text */
  --text-inverse: #FFFFFF;        /* White text for dark surfaces */
  --text-inverse-muted: #94A3B8;  /* Light slate on dark surfaces */

  /* Accent & Status Colors */
  --gold-primary: #C59B27;        /* Financial gold */
  --gold-light: #F5E6BE;          /* Soft gold background */
  --gold-dark: #977317;           /* Deep antique gold */
  --emerald: #0D8259;             /* Growth & stability green */
  --emerald-bg: #E8F5EE;          /* Light green badge */
  --crimson: #C92A2A;             /* Prudence / restriction red */
  --crimson-bg: #FDF2F2;          /* Light red badge */
  --azure: #1D63D8;              /* Technology & trust blue */

  /* Typography System */
  --font-encode: 'Encode Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizing & Spacing */
  --font-size-body: 19px;
  --line-height-body: 1.85;
  --container-max: 1180px;
  --editorial-max: 760px;
  --section-spacing: 96px;

  /* Shadows & Elevation */
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 16px -2px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(16, 24, 40, 0.12);
  --shadow-gold: 0 8px 24px -4px rgba(197, 155, 39, 0.25);
  --shadow-navy: 0 20px 40px -8px rgba(7, 19, 38, 0.35);

  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  font-weight: 400;
  overflow-x: hidden;
}

/* Texture Pattern Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  background-image: radial-gradient(#CBD5E1 0.75px, transparent 0.75px);
  background-size: 24px 24px;
  opacity: 0.35;
  z-index: 9999;
}

/* ==========================================================================
   CONTAINERS & LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.editorial-container {
  width: 100%;
  max-width: var(--editorial-max);
  margin-left: auto;
  margin-right: auto;
}

.wide-container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   EDITORIAL MASTHEAD / COVER SECTION
   ========================================================================== */
.masthead {
  position: relative;
  background-color: var(--bg-navy-dark);
  color: var(--text-inverse);
  padding: 80px 0 100px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-primary);
}

.masthead-bg-graphic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.08;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.masthead-top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  text-align: center;
}

.masthead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.masthead-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.article-main-title {
  font-family: var(--font-encode);
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0 auto 32px;
  text-align: center;
  max-width: 980px;
  text-transform: uppercase;
}

.article-main-title span.highlight-gold {
  color: var(--gold-primary);
  display: inline-block;
  position: relative;
}

.article-main-title span.highlight-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

/* Sapo / Lead Intro */
.sapo-box {
  background: transparent;
  border: none;
  border-left: none;
  padding: 8px 0 20px;
  border-radius: 0;
  backdrop-filter: none;
  margin: 0 auto 36px;
  max-width: 920px;
  box-shadow: none;
  text-align: center;
}

.sapo-text {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.8;
  color: #E2E8F0;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.sapo-text strong {
  color: #FFFFFF;
  font-weight: 700;
  font-style: normal;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-inverse-muted);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}

/* ==========================================================================
   EDITORIAL BODY CONTENT & PARAGRAPHS
   ========================================================================== */
.editorial-article {
  padding: var(--section-spacing) 0 60px;
}

.section-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 64px 0;
}

.section-divider-line::before,
.section-divider-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, #CBD5E1, transparent);
}

.section-divider-diamond {
  width: 10px;
  height: 10px;
  background-color: var(--gold-primary);
  transform: rotate(45deg);
}

.editorial-paragraph {
  font-family: var(--font-serif);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-word;
}

/* Dropcap for section intro */
.dropcap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 64px;
  line-height: 52px;
  padding-top: 6px;
  padding-right: 14px;
  padding-bottom: 4px;
  color: var(--bg-navy-dark);
  font-weight: 800;
}

.editorial-lead-block {
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  padding: 36px 40px;
  margin: 40px 0 50px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.editorial-lead-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--bg-navy-dark);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

/* ==========================================================================
   SECTION HEADINGS & STYLING
   ========================================================================== */
.section-header-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-main-heading {
  font-family: var(--font-encode);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--bg-navy-dark);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 20px;
}

.section-main-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background-color: var(--gold-primary);
}

/* ==========================================================================
   EDITORIAL IMAGE MODULES (NO PEOPLE, NO TEXT)
   ========================================================================== */
.editorial-image-wrapper {
  margin: 56px 0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-md);
}

.editorial-image-container {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
  background-color: #0A192F;
}

.editorial-image {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-image-wrapper:hover .editorial-image {
  transform: scale(1.02);
}

.editorial-image-caption {
  padding: 16px 24px;
  background: var(--bg-surface);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.caption-indicator {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   INFOGRAPHIC 1: FINANCIAL DATA DASHBOARD (SVG + METRIC TILES)
   ========================================================================== */
.infographic-block {
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-lg);
  padding: 44px;
  margin: 64px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.infographic-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--bg-navy-dark), var(--azure), var(--gold-primary));
}

.infographic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.infographic-title-group {
  max-width: 680px;
}

.infographic-kicker {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.infographic-title {
  font-family: var(--font-encode);
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-navy-dark);
  line-height: 1.3;
}

.infographic-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid #CBD5E1;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Metric KPI Grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.kpi-card {
  background: #FAFCFE;
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-md);
  padding: 24px 26px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.kpi-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.kpi-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.kpi-label {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.kpi-badge {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.kpi-badge.growth-green {
  background: var(--emerald-bg);
  color: var(--emerald);
}

.kpi-badge.gold-badge {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.kpi-value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.kpi-number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 800;
  color: var(--bg-navy-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.kpi-unit {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-secondary);
}

.kpi-subtext {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Comparison Chart Section */
.data-comparison-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 36px;
  background: #F8FAFC;
  border-radius: var(--border-radius-md);
  padding: 28px;
  border: 1px solid #E2E8F0;
  align-items: stretch;
}

@media (max-width: 900px) {
  .data-comparison-container {
    grid-template-columns: 1fr;
  }
}

.chart-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-box-title {
  font-family: var(--font-encode);
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-navy-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Financial Bars Component (Fix for truncated metrics) */
.financial-bars-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.financial-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 110px;
  align-items: center;
  gap: 14px;
}

@media (max-width: 600px) {
  .financial-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.bar-row-label {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-navy-dark);
  white-space: nowrap;
}

.bar-row-track {
  height: 26px;
  background-color: #E2E8F0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bar-row-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-row-fill.fill-gold {
  background: linear-gradient(90deg, #977317, #C59B27);
}

.bar-row-fill.fill-blue {
  background: linear-gradient(90deg, #0D4B9F, #1D63D8);
}

.bar-row-fill.fill-navy {
  background: linear-gradient(90deg, #07192C, #1E3A8A);
}

.bar-row-value {
  font-family: var(--font-encode);
  font-size: 19px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.bar-row-value.val-gold {
  color: #977317;
}

.bar-row-value.val-blue {
  color: #1D63D8;
}

.bar-row-value.val-navy {
  color: #1E3A8A;
}

/* SVG Chart Elements */
.svg-chart-container {
  width: 100%;
  height: auto;
}

.bar-bg {
  fill: #E2E8F0;
  rx: 4;
}

.bar-fill-gold {
  fill: url(#goldGradient);
  rx: 4;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill-blue {
  fill: url(#blueGradient);
  rx: 4;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill-navy {
  fill: url(#navyGradient);
  rx: 4;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Agriculture Highlight Box */
.agri-highlight-card {
  background: linear-gradient(135deg, #07192C, #0F2C4A);
  color: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.agri-highlight-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.agri-metric-huge {
  font-family: var(--font-mono);
  font-size: 54px;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin: 14px 0 12px;
}

.agri-card-label {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 8px;
}

.agri-card-desc {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-inverse-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CENTRAL VISUAL: "3 ĐIỀU B'LAO KHÔNG LÀM" (THE MANIFESTO)
   ========================================================================== */
.manifesto-section {
  background: var(--bg-navy-dark);
  color: #FFFFFF;
  border-radius: var(--border-radius-lg);
  padding: 64px 54px;
  margin: 72px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-navy);
  border: 2px solid rgba(197, 155, 39, 0.35);
}

.manifesto-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(197, 155, 39, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(29, 99, 216, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.manifesto-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
  position: relative;
}

.manifesto-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197, 155, 39, 0.4);
  margin-bottom: 20px;
}

.manifesto-title {
  font-family: var(--font-encode);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
}

.manifesto-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-md);
  padding: 36px 30px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.manifesto-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.manifesto-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.9;
}

.manifesto-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid rgba(197, 155, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.manifesto-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-primary);
}

.manifesto-card-statement {
  font-family: var(--font-encode);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.45;
  color: #FFFFFF;
}

/* ==========================================================================
   INFOGRAPHIC 2: 3-TIER GOVERNANCE MODEL SVG
   ========================================================================== */
.governance-infographic {
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-lg);
  padding: 44px;
  margin: 64px 0;
  box-shadow: var(--shadow-lg);
}

.governance-tiers-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.governance-tier-card {
  border-radius: var(--border-radius-md);
  padding: 26px 32px;
  border: 1px solid #E2E8F0;
  transition: var(--transition-smooth);
}

.governance-tier-card.tier-1 {
  background: linear-gradient(to right, #F8FAFC, #FFFFFF);
  border-left: 6px solid #1E3A8A;
}

.governance-tier-card.tier-2 {
  background: linear-gradient(to right, #FDF8F0, #FFFFFF);
  border-left: 6px solid var(--gold-primary);
}

.governance-tier-card.tier-3 {
  background: linear-gradient(to right, #F0FDF4, #FFFFFF);
  border-left: 6px solid var(--emerald);
}

.tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.tier-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tier-badge-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 17px;
  color: #FFFFFF;
  background: var(--bg-navy-dark);
}

.tier-main-title {
  font-family: var(--font-encode);
  font-size: 22px;
  font-weight: 800;
  color: var(--bg-navy-dark);
  letter-spacing: 0.5px;
}

.tier-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tier-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.tier-chip svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-dark);
}

.tier-connector-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94A3B8;
  padding: 4px 0;
}

.tier-connector-arrow svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   CLOSING EDITORIAL STATEMENT & FOOTER
   ========================================================================== */
.closing-section {
  background: var(--bg-navy-dark);
  color: #FFFFFF;
  padding: 100px 0 80px;
  margin-top: 100px;
  position: relative;
  border-top: 4px solid var(--gold-primary);
}

.closing-quote-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 32px;
  stroke: var(--gold-primary);
  opacity: 0.8;
}

.closing-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.closing-quote-text strong {
  color: var(--gold-primary);
  font-weight: 700;
  font-style: normal;
}

.closing-source-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
}

.closing-visual-wrapper {
  margin: 64px auto 0;
  max-width: 920px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-navy);
}

.closing-footer-bottom {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-inverse-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --font-size-body: 18px;
    --section-spacing: 56px;
  }

  .masthead {
    padding: 48px 0 64px;
  }

  .masthead-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sapo-box {
    padding: 24px;
  }

  .sapo-text {
    font-size: 19px;
  }

  .editorial-paragraph {
    text-align: left;
  }

  .infographic-block {
    padding: 28px 20px;
  }

  .manifesto-section {
    padding: 40px 24px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .governance-tier-card {
    padding: 20px;
  }

  .closing-section {
    padding: 64px 0 48px;
  }
}
