/* ============================================
   FARU INSTITUTE - Main Stylesheet
   Forum for Analysis, Research & Understanding
   Foresight and Analysis for Regional Understanding
   Strategic Thinking for a Changing World
   ============================================ */

/* === CSS Custom Properties (Design Tokens) === */
:root {
    /* Primary Colors - increased contrast & saturation */
    --navy: #0f1f1a;
    --charcoal: #1a2a24;
    --greenish-grey: #4a7a60;
    --sage: #7aad8e;
    --light-sage: #a8d0b8;
    --gold: #d4af37;
    --gold-light: #dfc060;
    
    /* Glow Effects - more vibrant */
    --gold-glow: rgba(212, 175, 55, 0.3);
    --green-glow: rgba(74, 122, 96, 0.4);
    
    /* Text Colors - higher contrast */
    --white: #f5f8f5;
    --silver: #d0ddd4;
    --text-primary: #f0f6f0;
    --text-muted: #9bb0a4;
    
    /* Accent */
    --accent: #d4af37;
    
    /* Glass Effect */
    --glass-bg: rgba(26, 42, 36, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Borders & Shadows */
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.25);
    --section-padding: 5rem 0;
}

/* Prevent blinking text cursor on non-input elements */
*, *::before, *::after { caret-color: transparent; }
input, textarea, select, [contenteditable] { caret-color: auto; }

/* === Light Mode Overrides === */
body.light-mode {
    --navy: #dce5df;
    --charcoal: #e8ede9;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.08);
    --white: #0f1f1a;
    --silver: #4a5d53;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* === Reading Progress Bar === */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--greenish-grey), var(--gold));
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--greenish-grey), #4a6b58);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 4px 15px var(--green-glow);
    border: none;
    cursor: pointer;
    position: relative;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: upBtnPulse 2s ease-in-out 3;
}

@keyframes upBtnPulse {
    0%, 100% { box-shadow: 0 4px 15px var(--green-glow); transform: translateY(0); }
    50% { box-shadow: 0 4px 30px rgba(74,122,96,0.6), 0 0 50px rgba(74,122,96,0.15); transform: translateY(-3px); }
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px var(--green-glow);
}

.back-to-top-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.back-to-top-ring-fill {
    transition: stroke-dashoffset 0.1s ease;
}
.back-to-top-arrow {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

/* === Floating Controls === */
.floating-controls {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    color: var(--white);
}

.floating-btn svg {
    width: 20px;
    height: 20px;
}

.floating-btn:hover {
    transform: scale(1.1);
    border-color: var(--gold);
}

/* === Language Dropdown === */
.language-dropdown {
    position: fixed;
    top: 80px;
    right: 30px;
    background: rgba(26, 47, 42, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1002;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: var(--transition);
}

.language-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.language-option {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--silver);
    white-space: nowrap;
    transition: var(--transition);
}

.language-option:hover {
    background: rgba(200, 169, 81, 0.15);
    color: var(--gold);
}

.language-option.active {
    color: var(--gold);
    font-weight: 600;
}

/* === Background Effects === */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(90, 125, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 125, 106, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--greenish-grey);
}

.bg-glow-2 {
    bottom: -200px;
    left: -200px;
    background: var(--gold);
}

/* === Navigation Bar === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 2rem;
    background: rgba(26, 47, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(26, 47, 42, 0.95);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--gold-glow));
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: var(--white);
}

.nav-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--silver);
    position: relative;
    padding: 0.3rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--greenish-grey), #4a6b58);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: white !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px var(--green-glow);
}

.nav-cta:hover {
    box-shadow: 0 4px 20px var(--green-glow);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--silver);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Dropdown Navigation === */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.nav-dropdown-trigger::after {
    content: '▾';
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    color: var(--sage);
}
.nav-dropdown.active > .nav-dropdown-trigger::after {
    transform: rotate(180deg);
    color: var(--gold);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 190px;
    background: rgba(26, 47, 42, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--silver) !important;
    transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover {
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold) !important;
}
.nav-dropdown-menu a::after {
    display: none !important;
}

/* === Founder's Foreword === */
.founders-foreword {
    background: linear-gradient(180deg, #1a2a24 0%, #0f1f1a 100%);
    padding: 5rem 2rem;
}
.foreword-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.foreword-image {
    text-align: center;
}
.foreword-photo {
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    border: 2px solid rgba(200, 169, 81, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.foreword-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--silver);
}
.foreword-text p {
    margin-bottom: 1.2rem;
}
.foreword-author {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.foreword-author strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
}
.foreword-author span {
    font-size: 0.85rem;
    color: var(--sage);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.8s ease, transform 1.8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 47, 42, 0.78) 0%,
        rgba(45, 58, 53, 0.4) 40%,
        rgba(26, 47, 42, 0.78) 100%
    );
    z-index: 1;
}

.hero-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(90, 125, 106, 0.015) 2px, rgba(90, 125, 106, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(90, 125, 106, 0.015) 2px, rgba(90, 125, 106, 0.015) 4px);
    z-index: 1;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 100px, 100px 0; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--greenish-grey);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

.particle.gold {
    background: var(--gold);
    width: 3px;
    height: 3px;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slide-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 8px var(--gold-glow); }
    50% { box-shadow: 0 0 18px var(--gold-glow); }
}

.hero-badge .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { opacity: 0.4; box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.02;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #d4dfd8 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    animation: title-shimmer 5s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes title-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-fullform {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-theme {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.hero-newsletter span {
    font-size: 0.85rem;
    color: var(--silver);
}
.hero-newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.hero-newsletter-form input {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.85rem;
    width: 220px;
    outline: none;
}
.hero-newsletter-form input:focus {
    border-color: var(--gold);
}
.hero-newsletter-form button {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    border: none;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.hero-newsletter-form button:hover {
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--silver);
    margin-top: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--greenish-grey), #4a6b58);
    color: white;
    box-shadow: 0 4px 15px var(--green-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px var(--green-glow);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
    transform: translateY(-2px) scale(1.02);
}

/* === Section Common Styles === */
section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--silver);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* === About / Mission Section === */
.about-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 81, 0.3);
    box-shadow: var(--shadow);
}

.about-icon {
    margin-bottom: 1.5rem;
}

.about-icon svg {
    width: 56px;
    height: 56px;
}

.about-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-card p {
    font-size: 1rem;
    color: var(--silver);
    line-height: 1.7;
}

/* === Analytics Section === */
.analytics-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.analytics-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
}

.analytics-card:hover {
    border-color: rgba(200, 169, 81, 0.3);
    transform: translateY(-4px);
}

.analytics-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sage), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analytics-label {
    font-size: 0.8rem;
    color: var(--silver);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.analytics-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-top: 0.8rem;
    overflow: hidden;
}

.analytics-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--greenish-grey), var(--gold));
    border-radius: 3px;
    transition: width 2s ease;
}

/* === Globe Section — Global Intelligence Network Wall === */
.globe-section {
    text-align: center;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Full-width background layer */
.globe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        /* Layer 7: Vignette */
        radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(15,31,26,0.75) 100%),
        /* Layer 6: Continent glows (world map watermark via positioned radial gradients) */
        radial-gradient(ellipse 120px 160px at 18% 28%, rgba(200,169,91,0.025) 0%, transparent 100%),
        radial-gradient(ellipse 60px 160px at 26% 60%, rgba(200,169,91,0.025) 0%, transparent 100%),
        radial-gradient(ellipse 100px 80px at 50% 20%, rgba(200,169,91,0.025) 0%, transparent 100%),
        radial-gradient(ellipse 140px 200px at 50% 48%, rgba(212,175,55,0.035) 0%, transparent 100%),
        radial-gradient(ellipse 200px 180px at 70% 28%, rgba(200,169,91,0.025) 0%, transparent 100%),
        radial-gradient(ellipse 60px 50px at 84% 72%, rgba(200,169,91,0.025) 0%, transparent 100%),
        /* Layer 5: Africa-centered gold glow */
        radial-gradient(ellipse 500px 350px at 50% 48%, rgba(212,175,55,0.06) 0%, transparent 70%),
        /* Layer 4: Lat/Long grid lines */
        repeating-linear-gradient(0deg, rgba(200,169,91,0.025) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(200,169,91,0.025) 0px, transparent 1px, transparent 60px),
        /* Layer 3: Subtle diagonal grid for network feel */
        repeating-linear-gradient(45deg, rgba(200,169,91,0.01) 0px, transparent 1px, transparent 80px),
        /* Layer 1 + 2: Base gradient */
        linear-gradient(180deg, #0a1a14 0%, var(--navy) 50%, #0a1a14 100%);
}

/* Globe container wrapper */
.globe-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    z-index: 2;
}

/* Full-width decorative network arcs (extends beyond wrapper) */
.globe-network-arcs {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    max-width: 90vw;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Regional labels on sides */
.globe-region-label {
    position: absolute;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200,169,91,0.12);
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
}

.globe-region-label--east-africa {
    left: 42%;
    bottom: 12%;
    color: rgba(212,175,55,0.15);
}

.globe-region-label--europe {
    right: 22%;
    top: 18%;
}

.globe-region-label--asia {
    right: 6%;
    top: 28%;
}

.globe-region-label--americas {
    left: 6%;
    top: 35%;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.globe-region-label--middle-east {
    right: 28%;
    bottom: 22%;
}

.globe-region-label--oceania {
    right: 10%;
    bottom: 12%;
}

/* Decorative data particles (CSS dots) */
.globe-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
    background: var(--gold);
    animation: globe-particle-pulse 3s ease-in-out infinite;
}

.globe-particle:nth-child(1) { width: 2px; height: 2px; top: 15%; left: 8%;  animation-delay: 0s; opacity: 0.2; }
.globe-particle:nth-child(2) { width: 1px; height: 1px; top: 25%; left: 12%; animation-delay: 0.8s; opacity: 0.15; }
.globe-particle:nth-child(3) { width: 2px; height: 2px; top: 40%; left: 5%;  animation-delay: 1.6s; opacity: 0.2; }
.globe-particle:nth-child(4) { width: 1px; height: 1px; top: 55%; left: 10%; animation-delay: 0.4s; opacity: 0.15; }
.globe-particle:nth-child(5) { width: 2px; height: 2px; top: 70%; left: 7%;  animation-delay: 2.2s; opacity: 0.2; }
.globe-particle:nth-child(6) { width: 1px; height: 1px; top: 20%; right: 8%; animation-delay: 1.2s; opacity: 0.15; }
.globe-particle:nth-child(7) { width: 2px; height: 2px; top: 35%; right: 6%; animation-delay: 0.3s; opacity: 0.2; }
.globe-particle:nth-child(8) { width: 1px; height: 1px; top: 50%; right: 12%;animation-delay: 1.8s; opacity: 0.15; }
.globe-particle:nth-child(9) { width: 2px; height: 2px; top: 65%; right: 5%; animation-delay: 0.9s; opacity: 0.2; }
.globe-particle:nth-child(10){ width: 1px; height: 1px; top: 80%; right: 9%; animation-delay: 2.5s; opacity: 0.15; }

@keyframes globe-particle-pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

/* Main globe container — full sphere visible within framed container */
#globe-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 1rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200,169,91,0.12);
    /* Permanent CSS sphere — always visible even if JS fails */
    background:
        radial-gradient(circle at 45% 35%, rgba(42,180,140,0.12) 0%, transparent 50%),
        radial-gradient(circle at 65% 60%, rgba(212,175,55,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, #1d4f41 0%, #0f2a22 40%, #0a1a14 100%);
}

/* Subtle inner depth overlay */
#globe-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 80px rgba(15,31,26,0.3);
}

/* Premium fallback image styling */
.globe-fallback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback message (shown when WebGL unavailable) */
.globe-fallback-msg {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.6rem;
    color: rgba(200,169,91,0.25);
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 5;
}

/* Globe loading state */
#globe-container.globe-loading {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(200,169,91,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, #0f1f1a 0%, #0a1a14 100%);
}

#globe-container .globe-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(200,169,91,0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: globe-spin 1s linear infinite;
    z-index: 2;
}

@keyframes globe-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === Research Pillars === */
@keyframes pillars-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pillars {
    background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
    padding-top: 3rem;
    overflow: hidden;
}

.pillars-grid {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.pillars-track {
    display: inline-flex;
    gap: 1.5rem;
    animation: pillars-scroll 40s linear infinite;
    will-change: transform;
    -webkit-animation: pillars-scroll 40s linear infinite;
}

.pillars-grid:hover .pillars-track,
.pillars-grid:active .pillars-track {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.pillar-card {
    flex: 0 0 auto;
    width: 265px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-slow);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), var(--shadow);
}

.pillar-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.pillar-card:hover .pillar-card-image {
    transform: scale(1.08);
}

.pillar-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(transparent, rgba(45, 58, 53, 0.95));
}

.pillar-card-content {
    padding: 1.5rem;
    position: relative;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(90, 125, 106, 0.15);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(90, 125, 106, 0.25);
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sage);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.6;
}

/* === Flagship Initiatives === */
.initiatives-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--navy) 100%);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.initiative-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition);
}

.initiative-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 81, 0.3);
    box-shadow: var(--shadow);
}

.initiative-icon {
    margin-bottom: 1.5rem;
}

.initiative-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.initiative-card:hover .initiative-icon svg {
    transform: scale(1.2) rotate(8deg);
}

.initiative-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.initiative-card p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.6;
}

/* === Insights Section === */
.insights {
    background: var(--charcoal);
}

.insights-grid,
.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.insight-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(90, 125, 106, 0.35);
}

.insight-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.insight-card:hover .insight-image {
    transform: scale(1.05);
}

.insight-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(45, 58, 53, 0.85));
}

.insight-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(26, 47, 42, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.insight-content {
    padding: 1.5rem;
}

.insight-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--white);
}

.insight-content p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(197, 208, 201, 0.5);
}

.insight-read-more {
    color: var(--sage);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.insight-card:hover .insight-read-more {
    color: var(--gold);
}

/* Topic cycling cards */
.cycling-card .insight-image {
    transition: background-image 0.6s ease, transform var(--transition-slow);
}
.cycling-card .insight-tag,
.cycling-card .cycling-title,
.cycling-card .cycling-desc,
.cycling-card .cycling-time {
    transition: opacity 0.4s ease;
}
.cycling-card.expanded {
    position: relative;
    z-index: 2;
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    border-color: rgba(200, 169, 81, 0.3);
}
.cycling-card.expanded .insight-content {
    max-height: none;
}
.cycling-card.expanded .insight-content p {
    display: block;
    -webkit-line-clamp: unset;
}
.insight-content p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cycling-card.expanded .insight-image {
    height: 260px;
}

/* === Publication Cards (Firestore) === */
.pub-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pub-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(200, 169, 81, 0.25);
}
.pub-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}
.pub-card:hover .pub-card-image {
    transform: scale(1.05);
}
.pub-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(11, 31, 51, 0.85));
}
.pub-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(11, 31, 51, 0.85);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d4af37;
    backdrop-filter: blur(10px);
    z-index: 1;
}
.pub-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pub-card-type {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.pub-card-title {
    font-size: 1.1rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}
.pub-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pub-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.pub-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.pub-card-author {
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}
.pub-card-date,
.pub-card-time {
    margin-left: 0.3rem;
}
.pub-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4af37;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}
.pub-card-cta:hover {
    color: #d4b96a;
    gap: 0.6rem;
}
.pub-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255,255,255,0.5);
}
.pub-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(212,175,55,0.2);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: pubSpin 0.8s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes pubSpin {
    to { transform: rotate(360deg); }
}
.pub-empty,
.pub-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255,255,255,0.5);
}
.pub-fallback .btn {
    margin-top: 1rem;
}

/* === Team Section === */
.team {
    background: var(--charcoal);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-grid-wrapper {
    position: relative;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: teamFadeIn 0.5s ease forwards;
}

@keyframes teamFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.team-grid .team-card:nth-child(1) { animation-delay: 0s; }
.team-grid .team-card:nth-child(2) { animation-delay: 0.08s; }
.team-grid .team-card:nth-child(3) { animation-delay: 0.16s; }
.team-grid .team-card:nth-child(4) { animation-delay: 0.24s; }
.team-grid .team-card:nth-child(5) { animation-delay: 0.32s; }
.team-grid .team-card:nth-child(6) { animation-delay: 0.4s; }
.team-grid .team-card:nth-child(7) { animation-delay: 0.48s; }

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 81, 0.35);
    box-shadow: var(--shadow);
}
.team-image {
    position: relative;
}
.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}
.team-card:hover .team-image::after {
    background: rgba(0, 0, 0, 0.35);
}
.team-content .bio {
    transform: translateY(0);
    transition: transform 0.3s ease, color 0.3s ease;
}
.team-card:hover .team-content .bio {
    transform: translateY(-2px);
}

/* Team showcase rotating groups */
.team-showcase {
    position: relative;
    min-height: 520px;
}
.team-group {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
    display: none;
}
.team-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
    display: block;
}
.team-group.active .team-card {
    animation: teamFadeIn 0.5s ease forwards;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    opacity: 0;
}
.team-showcase:hover .carousel-arrow {
    opacity: 1;
}
.carousel-prev {
    left: -10px;
}
.carousel-next {
    right: -10px;
}
.carousel-arrow:hover {
    background: var(--accent);
    color: var(--navy);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(200, 169, 81, 0.3);
}
.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dots .dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 20px;
    border-radius: 4px;
}

.team-image {
    height: 280px;
    background-size: cover;
    background-position: center top;
    transition: var(--transition-slow);
    overflow: hidden;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-content {
    padding: 0.6rem 0.8rem 0.75rem;
}

.team-content h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.team-content .role {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1.3;
}

.team-content .bio {
    font-size: 0.75rem;
    color: #a0b8ab;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 0.3rem;
}
.team-content .bio:hover {
    color: var(--white);
}
.team-content .bio.expanded {
    -webkit-line-clamp: unset;
}
.bio-toggle {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.7rem;
    white-space: nowrap;
    margin-left: 0.25rem;
    transition: opacity 0.3s;
}
.bio.expanded .bio-toggle {
    display: none;
}

/* === Work With Us === */
.work-with-us {
    background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.work-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    text-align: center;
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 81, 0.35);
    box-shadow: var(--shadow);
}

.work-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(200, 169, 81, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 81, 0.2);
}

.work-icon svg {
    width: 28px;
    height: 28px;
}

.work-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.work-card p {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.6;
}

/* === Summit Section === */
.summit {
    position: relative;
    background: #071712;
    overflow: hidden;
    padding: var(--section-padding);
}
.summit-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.summit-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1.05);
}
.summit-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}
.summit-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,23,18,0.85) 0%, rgba(7,23,18,0.6) 30%, rgba(7,23,18,0.7) 60%, rgba(7,23,18,0.95) 100%),
        linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 50%);
    z-index: 1;
}
.summit-content-wrap {
    position: relative;
    z-index: 2;
}
.summit-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.summit-date {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0.25rem 0 2rem;
    opacity: 0.9;
}
.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.countdown-item {
    text-align: center;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.3rem;
    min-width: 78px;
    backdrop-filter: blur(4px);
}
.countdown-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.countdown-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}
.summit-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.summit-form-card {
    background: rgba(15,31,26,0.7);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}
.summit-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.summit-gallery-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.summit-gallery-thumb {
    aspect-ratio: 16/10;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.5;
    filter: saturate(0.6);
}
.summit-gallery-thumb:hover {
    opacity: 0.8;
    filter: saturate(0.8);
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-2px);
}
.summit-gallery-thumb.active {
    opacity: 1;
    filter: saturate(1);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}
.summit-gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.summit-gallery-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.summit-gallery-btn:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--accent);
}
.summit-gallery-counter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 900px) {
    .summit-lower { grid-template-columns: 1fr; }
    .summit-gallery-track { grid-template-columns: repeat(5, 1fr); }
}

.summit-qr {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(212,175,55,0.1);
}
.summit-qr-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.15);
    flex-shrink: 0;
}
.summit-qr-label {
    font-size: 0.75rem;
    color: rgba(240,246,240,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === ChimaVet Section === */
.chimaVet {
    background: var(--navy);
}

.chimaVet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chimaVet-visual {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dashboard-mockup {
    background: rgba(26, 47, 42, 0.8);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(45, 58, 53, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.dashboard-dots {
    display: flex;
    gap: 0.4rem;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #EF4444; }
.dashboard-dots span:nth-child(2) { background: #F59E0B; }
.dashboard-dots span:nth-child(3) { background: #22C55E; }

.dashboard-title {
    font-size: 0.75rem;
    color: var(--silver);
}

.dashboard-body {
    padding: 1.5rem;
}

.dashboard-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-stat {
    flex: 1;
    background: rgba(90, 125, 106, 0.06);
    border: 1px solid rgba(90, 125, 106, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    text-align: center;
}

.dashboard-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sage);
}

.dashboard-stat-label {
    font-size: 0.6rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-chart {
    height: 80px;
    background: rgba(90, 125, 106, 0.06);
    border: 1px solid rgba(90, 125, 106, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--greenish-grey), rgba(90, 125, 106, 0.3));
    border-radius: 2px;
    transition: var(--transition);
}

.chimaVet-tagline {
    color: var(--sage);
    font-weight: 600;
}

.chimaVet-desc {
    color: var(--silver);
    margin: 1rem 0;
    line-height: 1.7;
}

.chimaVet-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chimaVet-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition);
}

.chimaVet-feature:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateX(4px);
}

.chimaVet-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chimaVet-feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: #22C55E;
    fill: none;
    stroke-width: 2;
}

.chimaVet-feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Featured Research Paper === */
.featured-research {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}
.featured-research:hover {
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 8px 30px rgba(212,175,55,0.08);
}
.featured-research-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(212,175,55,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-research-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}
.featured-research-info {
    flex: 1;
    min-width: 0;
}
.featured-research-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(212,175,55,0.12);
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 0.3rem;
}
.featured-research-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    color: var(--text-primary);
}
.featured-research-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.featured-research .btn-gold {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
    gap: 0.4rem;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .featured-research { flex-direction: column; text-align: center; padding: 1.5rem; }
    .featured-research .btn-gold { width: 100%; }
    .featured-research .btn-gold:first-child { margin-bottom: 0.5rem; }
}

/* === Nav Donate Button === */
.nav-donate {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--accent), #b8963e);
    color: var(--navy) !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}
.nav-donate:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

/* === Donate Section === */
.donate-section {
    position: relative;
    background: linear-gradient(180deg, #0b1a15 0%, #0f1f1a 50%, #0b1a15 100%);
    padding: var(--section-padding);
    overflow: hidden;
}
.donate-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.donate-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.donate-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0.5rem;
}
.donate-body {
    max-width: 480px;
    margin: 0 auto;
}
.donate-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
}
.donate-field-group {
    margin-bottom: 1.5rem;
}
.donate-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.donate-input-wrap {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}
.donate-currency {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    pointer-events: none;
}
.donate-amount-input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.8rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(212,175,55,0.25);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    outline: none;
    text-align: center;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.donate-amount-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.donate-amount-input::placeholder {
    color: rgba(255,255,255,0.2);
    font-weight: 400;
}
input[type=number].donate-amount-input::-webkit-inner-spin-button,
input[type=number].donate-amount-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number].donate-amount-input {
    -moz-appearance: textfield;
}
.donate-breakdown {
    font-size: 0.72rem;
    color: var(--sage);
    margin-top: 0.5rem;
    min-height: 1.2em;
    transition: opacity 0.3s ease;
    opacity: 0;
}
.donate-breakdown.visible {
    opacity: 1;
}
.summit-form-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent);
}
.donate-input, .register-input, .register-select, .register-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.donate-input:focus, .register-input:focus, .register-select:focus, .register-textarea:focus {
    border-color: var(--accent);
}
.register-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.register-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.register-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.register-select option { background: #0f1f1a; color: #e2e8f0; }
.register-textarea { resize: vertical; min-height: 80px; }
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent), #b8963e);
    color: var(--navy);
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
}
.btn-gold:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}
.btn-block { width: 100%; }
.donate-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    justify-content: center;
}
@media (max-width: 768px) {
    .register-row { grid-template-columns: 1fr; }
    .nav-donate { display: none; }
}

/* === Publications Section === */
.publications {
    position: relative;
    background: #071712;
    overflow: hidden;
    padding: var(--section-padding);
}
.publications-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.pub-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1.05);
}
.pub-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}
.pub-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,23,18,0.88) 0%, rgba(7,23,18,0.55) 30%, rgba(7,23,18,0.65) 60%, rgba(7,23,18,0.95) 100%),
        linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 50%);
    z-index: 1;
}
.publications-content {
    position: relative;
    z-index: 2;
}
.book-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(15,31,26,0.35);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: var(--radius);
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.book-3d {
    perspective: 1000px;
    width: 220px;
}

.book-3d-inner {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition-slow);
    cursor: pointer;
}

.book-3d:hover .book-3d-inner {
    transform: rotateY(-25deg) rotateX(5deg) scale(1.05);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a3d 50%, var(--charcoal) 100%);
    border-radius: 4px 12px 12px 4px;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3), 0 0 30px var(--gold-glow);
}

.book-spine {
    position: absolute;
    left: -15px;
    top: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, #0a1a14, var(--navy));
    border-radius: 4px 0 0 4px;
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-right: none;
    transform: rotateY(90deg);
    transform-origin: right;
}

.book-cover-label {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.book-cover-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.book-cover-author {
    font-size: 0.75rem;
    color: var(--silver);
}

.book-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.book-subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.book-desc {
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* === Newsletter Popup === */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-content {
    background: linear-gradient(135deg, var(--navy), var(--charcoal));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.newsletter-popup.active .newsletter-popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.popup-close svg {
    width: 20px;
    height: 20px;
}

.newsletter-popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-popup-content p {
    color: var(--silver);
    margin-bottom: 1.5rem;
}

/* === Forms === */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--greenish-grey);
}

.newsletter-form input::placeholder {
    color: rgba(197, 208, 201, 0.35);
}

.newsletter-form button {
    padding: 0.7rem 1.3rem;
    background: var(--greenish-grey);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #4a6b58;
}

/* === Footer === */
.footer {
    background: #0c1a15;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--silver);
    line-height: 1.7;
    max-width: 300px;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-theme {
    font-size: 0.7rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--silver);
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}
.footer-col a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}
.footer-col a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 81, 0.1);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--silver);
    transition: var(--transition);
}

.social-icon:hover svg {
    fill: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(197, 208, 201, 0.4);
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CONTACT MODAL ===== */
.contact-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.contact-modal.active {
    opacity: 1;
    visibility: visible;
}
.contact-modal-content {
    background: linear-gradient(135deg, var(--navy), var(--charcoal));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}
.contact-modal.active .contact-modal-content {
    transform: scale(1);
}
.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.contact-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}
.contact-modal-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--white);
}
.contact-modal-content > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.contact-field label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sage);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(15, 31, 26, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--gold);
}
.contact-field textarea {
    resize: vertical;
    min-height: 80px;
}
.contact-form .btn-block {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
    .contact-modal-content {
        padding: 1.5rem;
    }
}

/* === Reduced Motion === */
/* === Page Transitions === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.page-enter {
    animation: fadeInUp 0.4s ease-out;
}
.route-page {
    animation: fadeInUp 0.35s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .pillar-card {
        width: 220px;
    }
    .team-grid,
    .analytics-grid,
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-grid,
    .insights-grid,
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .book-3d {
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .foreword-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 1.5rem;
    }
    .founders-foreword {
        padding: 3.5rem 1.5rem;
    }
    .hero {
        padding: 4rem 1.5rem 2rem;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 47, 42, 0.98);
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }
    .nav-dropdown-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding-left: 1rem;
        box-shadow: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: all 0.25s ease;
        transform: none !important;
    }
    .nav-dropdown.active .nav-dropdown-menu {
        opacity: 1;
        max-height: 200px;
        pointer-events: auto;
    }
    .pillar-card {
        width: 200px;
    }
    .team-grid,
    .work-grid,
    .insights-grid,
    .publications-grid,
    .analytics-grid,
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    .chimaVet-grid {
        grid-template-columns: 1fr;
    }
    .hero-newsletter {
        flex-direction: column;
        text-align: center;
    }
    .hero-newsletter-form input {
        width: 160px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .countdown {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .book-showcase {
        padding: 1.5rem;
    }
    #globe-container {
        height: 350px;
        margin: 0.75rem auto;
    }
    .globe-section {
        padding-bottom: 2rem;
    }
    .pillars {
        padding-top: 2rem;
    }
    .foreword-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .foreword-photo {
        max-width: 260px;
    }
    .foreword-text {
        text-align: left;
    }
    .globe-region-label { display: none; }
    .globe-network-arcs { opacity: 0.15; }
    .globe-particle { display: none; }
    .globe-particle:nth-child(-n+3) { display: block; }
}

@media (max-width: 480px) {
    .pillar-card {
        width: 160px;
    }
}

/* ===== STRATEGIC ANALYSIS CAROUSEL ===== */
.strategic-analysis {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f1f1a 0%, #1a2a24 100%);
}
.sa-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.sa-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(15, 31, 26, 0.8);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.sa-arrow:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: scale(1.1);
}
.sa-track {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-height: 380px;
    outline: none;
}
.sa-track .pub-card {
    margin: 0;
}
.sa-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.sa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.sa-dot.active {
    background: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}
@media (max-width: 768px) {
    .sa-track {
        grid-template-columns: 1fr;
    }
    .sa-arrow {
        display: none;
    }
}

/* ===== GEOPOLITICS ANALYSIS & OPINIONS ===== */
.geopolitics-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f1f1a 0%, #071712 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}
.geopolitics-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-top: 2rem;
}
.geopolitics-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(15, 31, 26, 0.8);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}
.geopolitics-arrow:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: scale(1.1);
}
.geopolitics-track {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-height: 380px;
    outline: none;
}
.geopolitics-track .pub-card {
    margin: 0;
}
.geopolitics-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.geopolitics-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}
.geopolitics-dot.active {
    background: #d4af37;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}
@media (max-width: 768px) {
    .geopolitics-track {
        grid-template-columns: 1fr;
    }
    .geopolitics-arrow {
        display: none;
    }
}

/* ===== SUMMIT BANNER ===== */
.summit-banner {
    position: relative;
    background: linear-gradient(135deg, #003F46 0%, #061A2D 100%);
    padding: 2.5rem 0;
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    isolation: isolate;
}
.summit-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.02) 40px,
            rgba(212, 175, 55, 0.02) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.02) 40px,
            rgba(212, 175, 55, 0.02) 41px
        );
    pointer-events: none;
    z-index: 0;
}
.summit-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 160%; }
}
.summit-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.summit-banner-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.summit-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 0.02em;
}
.summit-banner-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    animation: badgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.summit-banner-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-style: italic;
    color: rgba(244, 238, 220, 0.55);
}
.summit-banner-countdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}
.summit-cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}
.summit-cd-number {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #f0f6f0;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.summit-cd-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(244, 238, 220, 0.4);
    font-weight: 500;
}
.summit-cd-sep {
    color: rgba(212, 175, 55, 0.4);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: -0.5rem;
}
.summit-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4af37;
    color: #061A2D;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.summit-banner-cta:hover {
    background: #e0b84c;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.summit-banner-cta:active {
    transform: translateY(0);
}
.summit-banner-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.summit-banner-cta:hover::after {
    transform: translateX(100%);
}
@media (max-width: 768px) {
    .summit-banner {
        padding: 1.8rem 0;
    }
    .summit-banner-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .summit-banner-countdown {
        gap: 0.5rem;
    }
    .summit-cd-item {
        min-width: 40px;
    }
    .summit-banner-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}
