:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    --blue-ink: #0A192F;
    --blue-royal: #112240;
    --blue-accent: #233554;
    --teal: #64FFDA;
    --teal-dark: #14B8A6;
    --red-alert: #FF4B4B;
    --orange-alert: #FF8F00;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E2E8F0;
    --gray-dark: #64748B;
    --text-body: #334155;
    
    --font-cover: 'Cinzel', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-medium: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.14);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
    --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.12);
    --shadow-glow-red: 0 0 30px rgba(255, 75, 75, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(212, 175, 55, 0.3); color: var(--blue-ink); }

/* ==========================================
   TYPOGRAPHY SYSTEM
   ========================================== */
h1, h2, h3, h4, h5, .issue-number, .kicker {
    font-family: var(--font-heading);
    color: var(--blue-ink);
}
h5.kicker {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #F7DC6F 40%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.glow-text {
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(212, 175, 55, 0.15);
}
.glow-text-red {
    color: var(--red-alert);
    text-shadow: 0 0 30px rgba(255, 75, 75, 0.3);
}
.text-highlight {
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.35) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--blue-ink);
}
.text-highlight-dark {
    background: linear-gradient(120deg, rgba(100, 255, 218, 0.15) 0%, rgba(100, 255, 218, 0.25) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--teal);
}
.pulse-text { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.elegant-title {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.center { text-align: center; }
.tc-white { color: var(--white); }
.tc-gray { color: var(--gray-light); }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mt-10 { margin-top: 10px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.text-muted { color: var(--gray-dark); }
.small-text { font-size: 0.85rem; }

/* LAYOUT */
.container { max-width: 1440px; margin: 0 auto; padding: 0 5%; }
.container-large { max-width: 1600px; margin: 0 auto; padding: 0 5%; }
.container-medium { max-width: 1024px; margin: 0 auto; padding: 0 5%; }
.section { padding: 120px 0; position: relative; }
.split-screen-section { display: flex; flex-wrap: wrap; padding: 0; min-height: 100vh; }
.half { flex: 1 1 50%; padding: 100px 5%; display: flex; flex-direction: column; justify-content: center; }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled {
    background: rgba(10, 25, 47, 0.94);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    padding: 10px 5%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 34px; width: auto; filter: brightness(0) invert(1); transition: filter 0.3s; }
.nav-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.25); }
.nav-report-label {
    font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
    background: rgba(212,175,55,0.1); padding: 4px 10px; border-radius: 4px;
    border: 1px solid rgba(212,175,55,0.2);
}
.nav-links a {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 0.8rem; font-weight: 500; margin-left: 30px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gold-gradient);
    transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-progress-bar {
    position: absolute; bottom: 0; left: 0; height: 3px;
    background: var(--gold-gradient); width: 0%; transition: width 0.1s;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ==========================================
   HERO
   ========================================== */
.hero.cover-style {
    position: relative; height: 100vh; min-height: 800px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--blue-royal);
}
.video-bg-container { position: absolute; inset: 0; z-index: 0; }
.hero-bg {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%) contrast(1.1); transform: scale(1.05);
    animation: slowZoom 25s infinite alternate; color: transparent;
}
.gradient-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.82) 0%, rgba(10,25,47,0.45) 40%, rgba(10,25,47,0.7) 100%);
}
.particle-canvas {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    max-width: 1100px; padding: 100px 20px 20px;
}
.hero-logo-block { margin-bottom: 30px; }
.hero-logo { height: 70px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.magazine-issue {
    display: flex; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 14px 0; margin-bottom: 40px;
    color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
}
.hero .title {
    font-family: var(--font-cover); font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
}
.accent-text {
    color: var(--gold); display: block;
    font-size: clamp(3rem, 7vw, 6.5rem); margin-top: -5px;
}
.hero .subtitle {
    font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-style: italic; font-weight: 300;
    color: rgba(255,255,255,0.8); margin-bottom: 40px;
}

/* Hero Stats Ticker */
.hero-stats {
    display: flex; justify-content: center; align-items: center;
    gap: 0; margin-bottom: 40px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px; padding: 20px 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-stat { text-align: center; padding: 0 30px; }
.hero-stat-val {
    font-family: var(--font-cover); font-size: 2.4rem;
    color: var(--gold); display: block; line-height: 1.2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 2px 4px rgba(0,0,0,0.3);
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 45px; background: rgba(255,255,255,0.2); }

.author-block {
    display: inline-block; color: var(--white); font-weight: 300;
    letter-spacing: 3px; text-transform: uppercase; font-size: 0.75rem;
}
.line-decor { width: 50px; height: 2px; background: var(--gold-gradient); margin: 12px auto 0; }
.scroll-down-btn {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: var(--white); width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--transition); text-decoration: none;
    backdrop-filter: blur(4px);
}
.scroll-down-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.1); transform: translateX(-50%) scale(1.1); }
.animate-bounce { width: 20px; animation: bounce 2s infinite; }

/* ==========================================
   EDITORIAL INTRO
   ========================================== */
.editorial-intro {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    padding: 100px 5%; border-bottom: 1px solid var(--gray-light);
}
.editor-content { max-width: 800px; margin: 0 auto; }
.dropcap {
    float: left; font-family: var(--font-cover); font-size: 6.5rem;
    line-height: 0.78; padding-top: 6px; padding-right: 18px; color: var(--blue-ink);
}
.intro-text { font-size: 1.2rem; font-family: var(--font-heading); font-weight: 400; line-height: 1.9; color: #444; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.separator-line { width: 1px; height: 50px; background: var(--gold-gradient); margin: 25px auto; }
.heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}

/* ==========================================
   COUNTER BOXES (2024)
   ========================================== */
.stats-counter-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 50px;
}
.counter-box {
    text-align: center; padding: 40px 20px;
    border-right: 1px solid var(--gray-light);
    position: relative; transition: all 0.4s var(--transition);
}
.counter-box:last-child { border-right: none; }
.counter-box:hover { background: rgba(212, 175, 55, 0.03); transform: translateY(-3px); }
.counter-icon { font-size: 2rem; margin-bottom: 12px; }
.counter-val {
    display: inline-block; font-family: var(--font-cover);
    font-size: clamp(2.5rem, 4vw, 3.8rem); color: var(--blue-ink);
    line-height: 1; margin-bottom: 12px;
}
.counter-label {
    display: block; font-size: 0.82rem; text-transform: uppercase;
    font-weight: 600; letter-spacing: 1px; color: var(--gray-dark);
}
.counter-box.emphasis .counter-val { color: var(--red-alert); }
.prefix, .suffix { font-family: var(--font-cover); font-size: 1.8rem; color: var(--red-alert); vertical-align: super; }

/* Mini Progress */
.mini-progress {
    width: 80%; max-width: 120px; height: 4px;
    background: var(--gray-light); border-radius: 4px;
    margin: 12px auto 0; overflow: hidden;
}
.mini-progress-bar {
    height: 100%; width: 0; border-radius: 4px;
    background: var(--gold-gradient); transition: width 1.5s var(--transition);
}

/* ==========================================
   SWOT LAYOUT
   ========================================== */
.swot-magazine-layout {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    align-items: center; gap: 30px;
}
.swot-card {
    padding: 50px 35px; border-radius: var(--radius); position: relative; overflow: hidden;
    transition: transform 0.5s var(--transition), box-shadow 0.5s;
}
.swot-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.swot-card h3 { font-size: 1.3rem; text-align: center; margin-bottom: 28px; letter-spacing: 2px; }
.swot-card h3 span { border-bottom: 2px solid; padding-bottom: 8px; }
.light-theme.pros-card {
    background: linear-gradient(135deg, #FFFDF5 0%, var(--off-white) 100%);
    border-top: 4px solid var(--gold); box-shadow: var(--shadow-soft);
}
.dark-theme.cons-card {
    background: linear-gradient(135deg, var(--blue-ink) 0%, #0D2137 100%);
    color: var(--white); border-top: 4px solid var(--red-alert); box-shadow: var(--shadow-medium);
}
.dark-theme.cons-card h3 { color: var(--white); }

/* Card Ribbon */
.card-ribbon {
    position: absolute; top: 16px; right: -30px;
    padding: 4px 40px; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    transform: rotate(45deg); z-index: 2;
}
.ribbon-gold { background: var(--gold); color: var(--blue-ink); }
.ribbon-red { background: var(--red-alert); color: var(--white); }

.central-image { height: 550px; display: flex; border-radius: var(--radius); position: relative; }
.img-hover-zoom { overflow: hidden; position: relative; border-radius: var(--radius); }
.img-hover-zoom img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--transition); }
.img-hover-zoom:hover img { transform: scale(1.1); }
.image-overlay-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(10, 25, 47, 0.85); backdrop-filter: blur(10px);
    padding: 12px 20px; border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.badge-year { font-family: var(--font-cover); font-size: 1.5rem; color: var(--gold); display: block; }
.badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; }

.elegant-list { list-style: none; }
.elegant-list li { margin-bottom: 18px; font-size: 0.95rem; line-height: 1.6; position: relative; padding-left: 22px; }
.elegant-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.dark-theme .elegant-list li::before { color: var(--teal); }

/* ==========================================
   HIGHLIGHTS SECTION - NEW
   ========================================== */
.highlights-section {
    background: linear-gradient(135deg, var(--blue-ink) 0%, #0D2947 50%, var(--blue-royal) 100%);
    padding: 140px 0; position: relative; overflow: hidden;
}
.highlights-section .heading { color: var(--white); }
.highlights-section .kicker { color: var(--teal); }
.highlights-section .separator-line { background: linear-gradient(180deg, var(--teal), transparent); }
.highlights-section::before {
    content: ''; position: absolute; top: -300px; right: -300px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}
.highlights-section::after {
    content: ''; position: absolute; bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.highlight-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-top: 60px; position: relative; z-index: 1;
}
.highlight-card {
    background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 35px 25px; text-align: center;
    transition: all 0.5s var(--transition); position: relative; overflow: hidden;
}
.highlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; border-radius: var(--radius) var(--radius) 0 0;
    transition: height 0.4s;
}
.card-gold::before { background: var(--gold-gradient); }
.card-blue::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.card-teal::before { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); }
.card-red::before { background: linear-gradient(90deg, #EF4444, #F87171); }
.highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.highlight-card:hover::before { height: 5px; }
.highlight-icon-wrap { margin-bottom: 15px; }
.highlight-icon { font-size: 2.5rem; }
.highlight-number {
    font-family: var(--font-cover); font-size: 3.5rem;
    color: var(--white); line-height: 1;
}
.card-gold .highlight-number { color: var(--gold); text-shadow: var(--shadow-glow-gold); }
.card-blue .highlight-number { color: #60A5FA; text-shadow: var(--shadow-glow-blue); }
.card-teal .highlight-number { color: var(--teal); text-shadow: 0 0 30px rgba(100, 255, 218, 0.3); }
.card-red .highlight-number { color: #F87171; text-shadow: var(--shadow-glow-red); }
.highlight-unit { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.highlight-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 10px; line-height: 1.4; }
.highlight-compare {
    display: inline-block; margin-top: 12px; padding: 4px 12px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    border-radius: 20px; color: var(--teal);
    background: rgba(100, 255, 218, 0.08); border: 1px solid rgba(100, 255, 218, 0.15);
}

/* Gauge Row */
.gauge-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; position: relative; z-index: 1;
}
.gauge-card {
    background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 30px 20px; text-align: center;
    transition: all 0.4s var(--transition);
}
.gauge-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
.gauge-title { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-family: var(--font-body); font-weight: 600; }
.gauge-wrap { display: flex; justify-content: center; margin-bottom: 10px; }
.gauge-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================
   CHARTS & DATA VIZ
   ========================================== */
.has-bg-texture {
    background-color: #FAFBFD;
    background-image: radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.split-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-bottom: 3px solid var(--blue-ink); padding-bottom: 30px;
}
.header-text { flex: 0 0 50%; }
.header-desc { flex: 0 0 45%; }
.header-desc p { font-size: 1.15rem; font-family: var(--font-heading); color: #555; border-left: 4px solid var(--gold); padding-left: 20px; }
.header-desc strong { color: var(--blue-ink); font-size: 1.3rem; }

.multi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.full-width { width: 100%; }
.shadow-box {
    background: var(--white); padding: 35px; border-radius: var(--radius);
    box-shadow: var(--shadow-medium); border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--transition);
}
.shadow-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.shadow-box-dark {
    background: rgba(17, 34, 64, 0.6); backdrop-filter: blur(10px);
    padding: 35px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}
.glow-card { position: relative; }
.glow-card::after {
    content: ''; position: absolute; inset: -1px; border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212,175,55,0.15), transparent, rgba(212,175,55,0.08));
    z-index: -1; opacity: 0; transition: opacity 0.4s;
}
.glow-card:hover::after { opacity: 1; }
.glow-card-red::after {
    background: linear-gradient(135deg, rgba(255,75,75,0.12), transparent, rgba(255,75,75,0.06));
}

.chart-title {
    text-align: center; font-size: 0.9rem; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 25px;
    color: var(--gray-dark); font-family: var(--font-body); font-weight: 700;
}
.canvas-wrapper { position: relative; width: 100%; display: flex; justify-content: center; }

/* Table */
.magazine-table-wrapper {
    background: var(--white); padding: 50px; border-radius: var(--radius);
    box-shadow: var(--shadow-medium); border: 1px solid rgba(0,0,0,0.04);
}
.table-scroll { overflow-x: auto; }
.table-title { font-size: 1.8rem; text-align: center; margin-bottom: 30px; }
.magazine-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.magazine-table th {
    background: linear-gradient(135deg, var(--blue-ink), var(--blue-royal));
    color: var(--white); padding: 18px 20px;
    text-transform: uppercase; font-size: 0.82rem; letter-spacing: 1.5px; font-weight: 600; border: none;
}
.magazine-table th:first-child { border-radius: 10px 0 0 0; }
.magazine-table th:last-child { border-radius: 0 10px 0 0; }
.magazine-table td { padding: 18px 20px; border-bottom: 1px solid var(--gray-light); color: #555; }
.magazine-table tr { transition: all 0.3s; }
.magazine-table tr:hover { background: rgba(212, 175, 55, 0.04); }

.status-badge {
    display: inline-block; padding: 5px 14px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap;
}
.status-excellent { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.2); }
.status-good { background: rgba(59, 130, 246, 0.1); color: #2563EB; border: 1px solid rgba(59, 130, 246, 0.2); }
.status-warning { background: rgba(255, 75, 75, 0.08); color: var(--red-alert); border: 1px solid rgba(255, 75, 75, 0.2); }

/* ==========================================
   PROGRESS BARS
   ========================================== */
.progress-section {
    background: var(--white); padding: 50px; border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
}
.progress-list { display: flex; flex-direction: column; gap: 22px; margin-top: 20px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.progress-name { font-size: 0.9rem; font-weight: 600; color: var(--blue-ink); }
.progress-value { font-family: var(--font-cover); font-size: 1rem; font-weight: 700; }
.progress-track { width: 100%; height: 10px; background: var(--gray-light); border-radius: 10px; overflow: hidden; }
.progress-fill {
    height: 100%; width: 0; border-radius: 10px;
    transition: width 2s var(--transition);
    position: relative;
}
.progress-fill::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.fill-gold { background: var(--gold-gradient); }
.fill-blue { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.fill-teal { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); }
.fill-orange { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.fill-red { background: linear-gradient(90deg, #EF4444, #F87171); }

/* ==========================================
   PHOTO SLIDESHOW
   ========================================== */
.gallery-section {
    background: var(--blue-ink);
    padding: 0; border-top: none; overflow: hidden;
    position: relative;
}
.slideshow-header {
    position: absolute; top: 50px; left: 0; right: 0; z-index: 10;
    text-align: center; pointer-events: none;
}
.slideshow-header .kicker { color: var(--teal); }
.slideshow-header .heading { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }

.slideshow-container {
    position: relative; width: 100%; height: 85vh; min-height: 500px;
    overflow: hidden; background: #050d1a;
}
.slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; z-index: 2; }
.slide img {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenBurns 12s ease-in-out infinite alternate;
    filter: brightness(0.75);
}
.slide:nth-child(odd) img { animation-name: kenBurns; }
.slide:nth-child(even) img { animation-name: kenBurnsAlt; }

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@keyframes kenBurnsAlt {
    0% { transform: scale(1.08) translate(-1%, 0); }
    100% { transform: scale(1) translate(1%, 1%); }
}

/* Slide overlay gradient */
.slide::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(0deg, rgba(10,25,47,0.85) 0%, rgba(10,25,47,0.15) 40%, rgba(10,25,47,0.3) 100%);
}

/* Slide caption */
.slide-caption {
    position: absolute; bottom: 100px; left: 5%; z-index: 3;
    max-width: 600px; opacity: 0; transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}
.slide.active .slide-caption { opacity: 1; transform: translateY(0); }
.slide-caption .caption-text {
    font-family: var(--font-heading); font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--white); font-style: italic; line-height: 1.5;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Navigation arrows */
.slide-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--transition);
}
.slide-nav:hover {
    background: rgba(212,175,55,0.2); border-color: var(--gold);
    color: var(--gold); transform: translateY(-50%) scale(1.1);
}
.slide-prev { left: 24px; }
.slide-next { right: 24px; }

/* Dots */
.slide-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px;
}
.slide-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.25); border: none; cursor: pointer;
    transition: all 0.3s; padding: 0;
}
.slide-dot.active {
    background: var(--gold); width: 32px; border-radius: 5px;
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

/* Counter */
.slide-counter {
    position: absolute; top: 50%; right: 24px; transform: translateY(-50%);
    z-index: 8; writing-mode: vertical-rl; text-orientation: mixed;
    font-family: var(--font-cover); font-size: 0.85rem;
    color: rgba(255,255,255,0.3); letter-spacing: 3px;
    display: none;
}

/* Progress bar */
.slide-progress {
    position: absolute; bottom: 0; left: 0; height: 3px; z-index: 10;
    background: var(--gold-gradient);
    transition: width linear;
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

@media (max-width: 768px) {
    .slideshow-container { height: 60vh; min-height: 400px; }
    .slide-nav { width: 40px; height: 40px; font-size: 1rem; }
    .slide-prev { left: 12px; }
    .slide-next { right: 12px; }
    .slide-caption { bottom: 80px; left: 4%; max-width: 85%; }
    .slideshow-header { top: 30px; }
}
/* ==========================================
   DARK SECTION - Bottlenecks (Redesigned)
   ========================================== */
.dark-magazine-section {
    background: url('images/DA/DA2522/ha tang.jpg') center/cover no-repeat fixed;
    color: var(--gray-light); padding: 140px 0; position: relative; overflow: hidden;
}
.dark-magazine-section > * { position: relative; z-index: 3; }
.dark-magazine-section .bn-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(13,31,60,0.88) 40%, rgba(22,32,66,0.90) 70%, rgba(10,22,40,0.93) 100%);
}
.dark-magazine-section::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 75, 75, 0.07) 0%, transparent 55%);
    border-radius: 50%; animation: floatOrb 8s ease-in-out infinite;
}
.dark-magazine-section::after {
    content: ''; position: absolute; bottom: -250px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 55%);
    border-radius: 50%; animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

/* Grid Layout */
.bottleneck-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    margin-top: 50px; position: relative; z-index: 2;
}
@media (max-width: 768px) { .bottleneck-grid { grid-template-columns: 1fr; } }

/* Card */
.bn-card {
    position: relative; padding: 36px 32px 28px;
    border-radius: 16px; overflow: hidden;
    background: rgba(15, 30, 60, 0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s var(--transition);
}
.bn-card::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    border-radius: 16px 0 0 16px;
}
.bn-orange::before { background: linear-gradient(180deg, #F59E0B, #EF4444); }
.bn-yellow::before { background: linear-gradient(180deg, #FBBF24, #F59E0B); }
.bn-red::before { background: linear-gradient(180deg, #EF4444, #DC2626); box-shadow: 0 0 15px rgba(239,68,68,0.3); }

.bn-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.bn-orange:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(245,158,11,0.08); }
.bn-yellow:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(251,191,36,0.08); }
.bn-red:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.25); }

/* Severity Badge */
.bn-severity {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2);
    color: #FBBF24;
}
.bn-sev-med {
    background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.2); color: #FDE68A;
}
.bn-sev-crit {
    background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); color: #FCA5A5;
    animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(239,68,68,0); }
    50% { box-shadow: 0 0 12px rgba(239,68,68,0.2); }
}

/* Icon */
.bn-icon {
    font-size: 2.8rem; margin-bottom: 8px; line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Number */
.bn-num {
    font-family: var(--font-cover); font-size: 0.9rem; font-weight: 700;
    color: rgba(255,255,255,0.12); letter-spacing: 3px; margin-bottom: 10px;
}

/* Text */
.bn-card h3 {
    color: var(--white); font-size: 1.35rem; margin-bottom: 14px;
    font-family: var(--font-heading);
}
.bn-card p {
    font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}
.bn-card p strong { color: rgba(255,255,255,0.95); }

/* Risk label */
.bn-risk {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
    color: var(--teal); margin-bottom: 16px; text-transform: uppercase;
}
.bn-risk-icon { font-size: 1rem; }
.bn-red .bn-risk { color: #FCA5A5; }

/* Meter bar */
.bn-meter {
    height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px;
    overflow: hidden;
}
.bn-meter-fill {
    height: 100%; border-radius: 4px;
    background: linear-gradient(90deg, #F59E0B, #EF4444);
    position: relative;
}
.bn-meter-fill::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s infinite;
}
.bn-fill-yellow { background: linear-gradient(90deg, #FBBF24, #F59E0B); }
.bn-fill-red {
    background: linear-gradient(90deg, #EF4444, #DC2626);
    box-shadow: 0 0 8px rgba(239,68,68,0.4);
}


/* ==========================================
   VISION & PYRAMID
   ========================================== */
.parallax-bg {
    background-attachment: fixed; background-position: center;
    background-repeat: no-repeat; background-size: cover; position: relative;
}
.quote-overlay {
    background: linear-gradient(135deg, rgba(10,25,47,0.92) 0%, rgba(10,25,47,0.82) 100%);
    position: absolute; inset: 0; display: flex; align-items: center;
    justify-content: center; padding: 10%;
}
.quote-overlay blockquote {
    font-family: var(--font-heading); font-size: clamp(1.4rem, 2.3vw, 2.2rem);
    color: var(--gold); font-style: italic; text-align: center; line-height: 1.5;
}
.quote-emphasis { font-weight: 700; font-size: 1.1em; display: block; margin-top: 10px; text-shadow: 0 0 20px rgba(212,175,55,0.3); }
.content-half { background: linear-gradient(180deg, var(--off-white) 0%, #F0F2F5 100%); }
.kpi-pyramid { display: flex; flex-direction: column; gap: 18px; margin-top: 35px; }
.pyramid-level {
    background: var(--white); padding: 28px; border-radius: var(--radius);
    box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
    border-left: 5px solid; transition: all 0.4s var(--transition);
}
.pyramid-level:hover { transform: translateX(6px); box-shadow: var(--shadow-medium); }
.level-1 { border-color: var(--red-alert); }
.level-2 { border-color: var(--orange-alert); }
.level-3 { border-color: var(--gold); }
.level-badge { font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; margin-bottom: 18px; }
.level-1 .level-badge { color: var(--red-alert); }
.level-stats { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 12px; }
.stat .val { display: block; font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--blue-ink); line-height: 1.2; }
.level-1 .stat .val { color: var(--red-alert); }
.stat .lbl { font-size: 0.78rem; color: var(--gray-dark); text-transform: uppercase; margin-top: 4px; display: block; letter-spacing: 0.5px; }
.strategy-shift p { font-size: 1.02rem; line-height: 1.85; color: #555; }
.strategy-shift strong { color: var(--blue-ink); }

/* ==========================================
   ROADMAP TIMELINE
   ========================================== */
.map-section { background: linear-gradient(180deg, var(--off-white) 0%, #F0F2F5 100%); }
.subtitle { font-size: 1.1rem; color: var(--gray-dark); max-width: 700px; margin-left: auto; margin-right: auto; }

.horizontal-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
.horizontal-timeline::before {
    content: ''; position: absolute; top: 12px; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, #3B82F6, #10B981, var(--orange-alert), var(--red-alert));
    z-index: 0; border-radius: 3px;
}
.timeline-event { position: relative; z-index: 1; flex: 1; padding: 0 18px; }
.timeline-event .dot {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--white); border: 5px solid; margin: 0 auto 18px;
    box-shadow: 0 0 0 6px var(--off-white), 0 3px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s var(--bounce);
}
.timeline-event:hover .dot { transform: scale(1.35); }
.bg-blue { border-color: #3B82F6 !important; }
.bg-green { border-color: #10B981 !important; }
.bg-orange { border-color: var(--orange-alert) !important; }
.bg-red { border-color: var(--red-alert) !important; }
.timeline-event .time { font-family: var(--font-heading); font-weight: 700; color: var(--blue-ink); font-size: 1.15rem; margin-bottom: 10px; }
.timeline-event h4 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline-target {
    display: inline-block; background: rgba(10, 25, 47, 0.06); padding: 4px 12px;
    border-radius: 6px; font-size: 0.9rem; margin-bottom: 10px;
}
.timeline-target strong { color: var(--blue-ink); font-size: 1.1rem; }

/* ==========================================
   FOOTER
   ========================================== */
.dark-footer {
    background: linear-gradient(180deg, #060e1a 0%, #020509 100%);
    color: rgba(255,255,255,0.6); padding: 100px 0 0; position: relative;
}
.footer-logo-wrap { margin-bottom: 35px; }
.footer-logo { height: 55px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.3s; }
.footer-logo:hover { opacity: 0.9; }
.directive-title {
    font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.5;
    color: var(--white); font-weight: 300; font-style: italic; margin-bottom: 35px;
}
.directive-text { max-width: 700px; margin: 0 auto 45px; font-size: 1.05rem; line-height: 1.8; }
.directive-text strong { color: var(--gold); }
.signature-block { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 35px; margin-bottom: 55px; }
.signature-block h4 { color: var(--white); font-size: 1.3rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
.footer-bottom {
    background: rgba(0,0,0,0.4); padding: 18px; text-align: center;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.15); } }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-70px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(70px); } to { opacity: 1; transform: translateX(0); } }

.fade-up { opacity: 0; animation: fadeUp 1s var(--transition) forwards; }
.slide-in-left { opacity: 0; animation: slideInLeft 1s var(--transition) forwards; }
.slide-in-right { opacity: 0; animation: slideInRight 1s var(--transition) forwards; }
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.75s; }
.observe-animate { opacity: 0; }
.in-view { animation: fadeUp 0.8s var(--transition) forwards; opacity: 1; }
.in-view-left { animation: slideInLeft 0.8s var(--transition) forwards; opacity: 1; }
.in-view-right { animation: slideInRight 0.8s var(--transition) forwards; opacity: 1; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .swot-magazine-layout { grid-template-columns: 1fr; gap: 30px; }
    .central-image { height: 300px; order: -1; }
    .split-screen-section { flex-direction: column; }
    .half { padding: 80px 5%; }
    .horizontal-timeline { flex-wrap: wrap; gap: 35px; }
    .horizontal-timeline::before { display: none; }
    .timeline-event { flex: 1 1 45%; }
    .highlight-cards { grid-template-columns: repeat(2, 1fr); }
    .gauge-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .heading { font-size: 1.8rem; }
    .stats-counter-grid, .multi-grid, .split-header {
        grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 20px;
    }
    .counter-box { border-right: none; border-bottom: 1px solid var(--gray-light); padding: 25px 15px; }
    .counter-box:last-child { border-bottom: none; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(10, 25, 47, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px 5%;
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin-left: 0; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .issue-article { flex-direction: column; }
    .issue-number { flex: 0 0 auto; padding: 15px; font-size: 2.5rem; }
    .timeline-event { flex: 1 1 100%; border-left: 3px solid var(--gray-light); padding-left: 22px; }
    .timeline-event .dot { position: absolute; left: -16px; top: 0; margin: 0; }
    .magazine-table-wrapper { padding: 20px; }
    .dropcap { font-size: 4.5rem; }
    .editorial-intro { padding: 60px 5%; }
    .quote-overlay { padding: 8%; }
    .swot-card { padding: 30px 20px; }
    .shadow-box { padding: 20px; }
    .highlight-cards { grid-template-columns: 1fr 1fr; gap: 15px; }
    .highlight-card { padding: 25px 15px; }
    .highlight-number { font-size: 2.5rem; }
    .gauge-row { grid-template-columns: 1fr 1fr; gap: 15px; }
    .hero-stats { flex-wrap: wrap; gap: 10px; padding: 14px 20px; border-radius: 20px; }
    .hero-stat { padding: 5px 15px; }
    .hero-stat-divider { width: 1px; height: 30px; }
    .progress-section { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .accent-text { font-size: 2.2rem; }
    .magazine-issue { flex-direction: column; gap: 6px; text-align: center; font-size: 0.75rem; }
    .highlight-cards { grid-template-columns: 1fr; }
    .gauge-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; border-radius: var(--radius); }
    .hero-stat-divider { width: 60px; height: 1px; }
    .level-stats { flex-direction: column; }
}

@media print {
    .navbar, .scroll-down-btn, .nav-progress-bar, .particle-canvas { display: none; }
    .hero { height: auto; min-height: auto; padding: 60px 20px; }
    .section { padding: 40px 0; page-break-inside: avoid; }
    body { font-size: 11pt; }
}
