/* ==========================================================================
   HTX KỲ NHƯ - EMAGAZINE BÁO KINH TẾ CAO CẤP
   Chủ đề: Từ cá thát lát miền Tây đến OCOP 5 sao & Đường ra thế giới
   Thiết kế: Scrollytelling, Tối giản, Sang trọng, Giàu tính dữ liệu
   Font: Encode Sans (Modern, Elegant, High Legibility)
   ========================================================================== */

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

:root {
  /* Palette - Mekong Waters & Golden OCOP */
  --bg-abyss: #040e14;
  --bg-deep: #071720;
  --bg-surface: #0b2230;
  --bg-card: rgba(14, 38, 52, 0.75);
  --bg-card-hover: rgba(18, 48, 66, 0.9);
  --bg-light: #f6f9fb;
  --bg-light-surface: #ffffff;
  
  --primary-water: #0ea5e9;
  --primary-teal: #0d9488;
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  
  --gold-5star: #d4af37;
  --gold-light: #fce183;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #d4af37 40%, #aa7c11 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(254, 240, 138, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  
  --text-main: #e2e8f0;
  --text-pure: #ffffff;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-emerald: rgba(16, 185, 129, 0.3);
  
  /* Typography - ENCODE SANS */
  --font-display: 'Encode Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-condensed: 'Encode Sans Condensed', 'Encode Sans', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Encode Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-title-accent: 'Cinzel', serif;
  
  /* Spacing */
  --container-max: 1280px;
  --container-narrow: 860px;
  --section-gap: clamp(80px, 10vw, 150px);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-abyss);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-main);
  background-color: var(--bg-abyss);
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
}

/* Reading Progress Indicator */
#reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #0ea5e9, #10b981, #d4af37, #fce183);
  z-index: 9999;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  transition: width 0.1s ease-out;
}

/* Water Ambient Canvas Background */
#water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Global Content Wrapper */
.magazine-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Container Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.container-editorial {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* Editorial Typography Rules */
p {
  margin-bottom: 2rem;
  font-size: clamp(18px, 1.25vw, 20.5px);
  color: #cbd5e1;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p.lead-paragraph {
  font-size: clamp(21px, 1.6vw, 26px);
  line-height: 1.75;
  color: #f1f5f9;
  font-weight: 500;
  border-left: 3px solid var(--gold-5star);
  padding-left: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-radius: 0 14px 14px 0;
}

.drop-cap::first-letter {
  font-family: var(--font-serif);
  float: left;
  font-size: 4.8rem;
  line-height: 0.8;
  padding-top: 6px;
  padding-right: 14px;
  padding-bottom: 0px;
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 110px 20px 80px;
  background: radial-gradient(circle at 50% 25%, rgba(13, 148, 136, 0.22) 0%, rgba(7, 23, 32, 0.95) 75%, var(--bg-abyss) 100%);
  overflow: hidden;
}

.hero-backdrop-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.hero-badge-star {
  color: #ffd700;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fce183;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin-bottom: 1.75rem;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-title .gold-accent {
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 35%, #d4af37 70%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  color: #cbd5e1;
  max-width: 860px;
  margin-bottom: 3.5rem;
  line-height: 1.5;
}

/* Hero Visual Art Display */
.hero-art-showcase {
  width: 100%;
  max-width: 1100px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 3.5rem;
  background: linear-gradient(180deg, #09212d 0%, #05131b 100%);
}

.hero-visual-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Big 4 Highlights Bar */
.hero-stats-strip {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.stat-item-box {
  background: linear-gradient(180deg, rgba(14, 38, 52, 0.85) 0%, rgba(7, 23, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--gold-5star);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-item-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.stat-item-box:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: #fce183;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.stat-number .unit {
  font-size: 0.6em;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.4;
}

/* Scroll Cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 3.5rem;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-5star);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   2. SECTION STYLING & HEADERS
   ========================================================================== */
.magazine-section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  position: relative;
}

.magazine-section.section-dark {
  background: linear-gradient(180deg, var(--bg-abyss) 0%, rgba(11, 34, 48, 0.35) 50%, var(--bg-abyss) 100%);
}

.section-header-wrap {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--gold-5star);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-5star);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-divider-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #d4af37);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ==========================================================================
   4. INFOGRAPHIC 01: "TỪ AO NUÔI ĐẾN OCOP 5 SAO"
   ========================================================================== */
.infographic-wrapper {
  margin: 4.5rem auto 5rem;
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(160deg, #091f2c 0%, #05141e 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 28px;
  padding: clamp(25px, 4vw, 45px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(14, 165, 233, 0.15);
  position: relative;
  overflow: hidden;
}

.infographic-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.infographic-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 750px;
  margin-bottom: 2.25rem;
}

/* Value Chain 3-Column Equal Grid */
.value-chain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 20px;
  margin-top: 1.5rem;
  align-items: stretch;
}

.vc-column {
  background: rgba(14, 38, 52, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.vc-column.highlight-5star {
  background: linear-gradient(180deg, rgba(28, 55, 45, 0.85) 0%, rgba(14, 38, 52, 0.95) 100%);
  border: 1.5px solid var(--gold-5star);
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
}

.vc-column:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.vc-stage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-stage-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.highlight-5star .vc-stage-number {
  background: var(--gold-5star);
  color: #000;
}

.vc-stage-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vc-metric-group {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.vc-metric-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vc-metric-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.vc-metric-content h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: #fce183;
  line-height: 1.15;
  margin-bottom: 2px;
}

.vc-metric-content p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.35;
  font-weight: 400;
}

/* OCOP 5-Star Crest Showcase inside Infographic */
.ocop-star-crest {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

.star-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.star-row svg {
  width: 22px;
  height: 22px;
  fill: #ffd700;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

.ocop-crest-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ocop-crest-sub {
  font-size: 18px;
  color: #fce183;
  font-weight: 600;
}

/* ==========================================================================
   5. VISUAL ACCENTS & ARTICLE EDITORIAL CARDS
   ========================================================================== */
.editorial-quote-box {
  margin: 3.5rem 0;
  padding: 2.5rem 2.2rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(7, 23, 32, 0.8) 100%);
  border-left: 4px solid #10b981;
  border-radius: 0 20px 20px 0;
  position: relative;
}

.editorial-quote-box::before {
  content: '“';
  font-family: var(--font-serif);
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 90px;
  line-height: 1;
  color: rgba(16, 185, 129, 0.25);
  pointer-events: none;
}

.editorial-quote-box p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   6. PHẦN 2 — HƠN MƯỜI TỶ ĐỒNG VÀ ĐƯỜNG RA THẾ GIỚI
   ========================================================================== */
.big-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 3.5rem 0 4.5rem;
}

.big-stat-card {
  background: linear-gradient(145deg, rgba(14, 38, 52, 0.9) 0%, rgba(7, 23, 32, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.big-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-5star);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.2);
}

.big-stat-card.heroic {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(20, 55, 75, 0.95) 0%, rgba(10, 30, 42, 0.98) 100%);
  border: 1.5px solid var(--gold-5star);
}

.big-stat-val {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: #fce183;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.big-stat-title {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================================================
   7. INFOGRAPHIC 02: “TỪ CÁ THÁT LÁT MIỀN TÂY RA THỊ TRƯỜNG QUỐC TẾ”
   (TỐI THIỂU 18PX, TINH GỌN, CHUẨN RESPONSIVE MOBILE)
   ========================================================================== */
.global-infographic-container {
  margin: 4.5rem auto 5rem;
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(165deg, #091d29 0%, #041018 100%);
  border: 1.5px solid rgba(14, 165, 233, 0.35);
  border-radius: 28px;
  padding: clamp(25px, 4vw, 45px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

/* Capacity Highlight Bar */
.capacity-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: rgba(14, 38, 52, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  margin-bottom: 3rem;
  text-align: center;
}

.capacity-item h5 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.capacity-item p {
  font-size: 18.5px;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Supply Chain 7-Step Pipeline */
.supply-pipeline {
  margin-bottom: 3.5rem;
}

.pipeline-title {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-5star);
  font-weight: 800;
  margin-bottom: 1.75rem;
  text-align: center;
}

.pipeline-steps-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 6px;
}

.pipeline-node {
  flex: 1;
  background: rgba(11, 34, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.1rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 0;
}

.pipeline-node:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: #38bdf8;
  transform: translateY(-3px);
}

.pipeline-node-icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.pipeline-node-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  word-break: keep-all;
}

.pipeline-arrow {
  color: var(--gold-5star);
  font-weight: 800;
  font-size: 20px;
  opacity: 0.8;
  flex-shrink: 0;
}

/* Two Market Wings: Domestic & Export */
.dual-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.market-wing-box {
  background: rgba(14, 38, 52, 0.65);
  border-radius: 22px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-wing-box.domestic {
  border-top: 3.5px solid #10b981;
}

.market-wing-box.export-global {
  border-top: 3.5px solid var(--gold-5star);
  background: linear-gradient(180deg, rgba(20, 50, 68, 0.8) 0%, rgba(10, 26, 36, 0.9) 100%);
}

.market-wing-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.75rem;
}

.market-wing-header svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.market-wing-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.market-data-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.market-data-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 19px;
  color: #cbd5e1;
  line-height: 1.45;
}

.market-data-item .bullet {
  color: #fce183;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.retail-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.6rem;
}

.retail-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.export-flag-card {
  background: rgba(7, 23, 32, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flag-nation {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flag-icon {
  font-size: 32px;
  line-height: 1;
}

.flag-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: #ffffff;
}

.flag-desc {
  font-size: 18px;
  color: #94a3b8;
  margin-top: 2px;
}

.flag-timeline {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: #fce183;
  background: rgba(212, 175, 55, 0.15);
  padding: 6px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

/* ==========================================================================
   8. ĐOẠN KẾT — “CHUẨN HÓA TỪ AO NUÔI TRỞ ĐI”
   ========================================================================== */
.conclusion-section {
  padding: 120px 20px 140px;
  background: radial-gradient(circle at 50% 40%, rgba(14, 38, 52, 0.9) 0%, #030a0e 100%);
  position: relative;
  text-align: center;
}

.conclusion-quote-heroic {
  max-width: 950px;
  margin: 0 auto 4rem;
  position: relative;
}

.conclusion-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  color: #fce183;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  margin-bottom: 2rem;
}

.conclusion-quote-author {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  font-weight: 600;
}

/* SVG Strategic Journey Roadmap */
.journey-roadmap-wrap {
  max-width: 1050px;
  margin: 4rem auto 4.5rem;
  background: rgba(11, 34, 48, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
}

.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}

.journey-node {
  background: rgba(7, 23, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  position: relative;
}

.journey-node.highlight-gold {
  border-color: var(--gold-5star);
  background: linear-gradient(180deg, rgba(30, 60, 48, 0.8) 0%, rgba(14, 38, 52, 0.95) 100%);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.journey-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-5star);
  font-weight: 700;
  margin-bottom: 6px;
}

.journey-step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Final Symbolic Badge */
.final-emblem-showcase {
  max-width: 600px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-emblem-svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.45));
}

.final-credits {
  font-family: var(--font-display);
  font-size: 15px;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ==========================================================================
   9. RESPONSIVE BREAKPOINTS (TỐI ƯU TOÀN DIỆN CHO MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-chain-grid {
    grid-template-columns: 1fr;
  }
  .big-stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .big-stat-card.heroic {
    grid-column: span 2;
  }
  .dual-market-grid {
    grid-template-columns: 1fr;
  }
  .journey-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pipeline-steps-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .pipeline-arrow {
    display: none;
  }
  .pipeline-node {
    padding: 1.25rem 0.75rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 20px; /* Mobile font priority */
    line-height: 1.85;
  }
  p {
    font-size: 20px;
  }
  p.lead-paragraph {
    font-size: 22px;
    padding-left: 1.25rem;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-stats-strip {
    grid-template-columns: 1fr;
  }
  .capacity-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 1.5rem 1rem;
  }
  .big-stats-banner {
    grid-template-columns: 1fr;
  }
  .big-stat-card.heroic {
    grid-column: span 1;
  }
  
  /* Pipeline Mobile Layout: 2 Cột hoặc Danh Sách Trực Quan */
  .pipeline-steps-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pipeline-node {
    padding: 1.2rem 0.8rem;
  }
  .pipeline-node:last-child {
    grid-column: span 2;
  }
  .pipeline-node-name {
    font-size: 18px;
  }
  .pipeline-arrow {
    display: none;
  }

  .journey-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infographic-wrapper, .global-infographic-container {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .vc-column {
    padding: 1.5rem 1.1rem;
  }
  .market-wing-box {
    padding: 1.75rem 1.25rem;
  }
  .export-flag-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .flag-timeline {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .pipeline-steps-flex {
    grid-template-columns: 1fr;
  }
  .pipeline-node:last-child {
    grid-column: span 1;
  }
  .journey-steps-grid {
    grid-template-columns: 1fr;
  }
}
