/* ============================================
   Expose in India - Public Accountability Platform
   Main Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Color Palette - Dark Theme */
    --color-bg-deep: #0A0A0C;
    --color-bg-surface: #141418;
    --color-bg-elevated: #1E1E24;
    --color-bg-card: #1A1A20;
    --color-border-subtle: #2A2A32;
    --color-border-medium: #3A3A44;
    
    /* Text Colors */
    --color-text-primary: #E8E8EC;
    --color-text-secondary: #9898A4;
    --color-text-muted: #6A6A76;
    
    /* Accent Colors */
    --color-accent-red: #C4362C;
    --color-accent-red-light: #E84C41;
    --color-accent-amber: #D4A72C;
    --color-accent-amber-light: #F0C040;
    --color-accent-green: #2C8C5E;
    --color-accent-green-light: #3CAF75;
    --color-accent-blue: #4A6FA5;
    --color-accent-blue-light: #5E8AC4;
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --space-unit: 8px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    
    /* Layout */
    --max-width: 1140px;
    --nav-height: 72px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
    --transition-slower: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-red: 0 0 20px rgba(196, 54, 44, 0.3);
    --shadow-glow-amber: 0 0 20px rgba(212, 167, 44, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--color-accent-blue);
    color: var(--color-text-primary);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-accent-blue-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-text-primary);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-accent-amber);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--color-border-subtle);
    margin: 0 var(--space-sm);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-amber);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--color-border-subtle);
    color: var(--color-text-secondary);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-toggle:hover {
    border-color: var(--color-accent-amber);
    color: var(--color-text-primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section - Clean Redesign
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Alert Banner */
.alert-banner {
    width: 100%;
    background: linear-gradient(90deg, #0d0000 0%, #1a0505 50%, #0d0000 100%);
    border: 2px solid #ff0000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), inset 0 0 50px rgba(255, 0, 0, 0.1);
}

.alert-track {
    overflow: hidden;
}

.alert-content {
    display: flex;
    animation: scrollAlert 15s linear infinite;
    white-space: nowrap;
}

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

.alert-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.alert-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulseDot 1s ease-in-out infinite;
    box-shadow: 0 0 10px #ff0000;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.alert-icon {
    color: #ffaa00;
    font-size: 1rem;
}

/* Hero Main */
.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

/* Warning Icon */
.hero-warning {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(139, 0, 0, 0.25) 100%);
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    animation: warningPulse 2s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.hero-warning svg {
    width: 36px;
    height: 36px;
    color: #ff0000;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 0, 0, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 0 40px rgba(255, 0, 0, 0.6); }
}

/* Hero Headline */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(255, 0, 0, 0.7),
        0 0 40px rgba(255, 0, 0, 0.5),
        0 0 60px rgba(255, 0, 0, 0.3);
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    0% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.7), 0 0 40px rgba(255, 0, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 0, 0, 0.9), 0 0 60px rgba(255, 0, 0, 0.7), 0 0 80px rgba(255, 0, 0, 0.4); }
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-tag:hover {
    transform: translateY(-2px);
}

.tag-jjm {
    background: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
    border: 1px solid rgba(33, 150, 243, 0.4);
}

.tag-amrut {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.tag-gst {
    background: rgba(255, 152, 0, 0.15);
    color: #ffb74d;
    border: 1px solid rgba(255, 152, 0, 0.4);
}

/* Hero Countdown */
.hero-countdown {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.12) 100%);
    border: 2px solid rgba(255, 0, 0, 0.35);
    border-radius: 20px;
    padding: 1.5rem 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.2), 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.25rem;
}

.countdown-icon {
    font-size: 1.3rem;
    animation: bounceIcon 1s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.countdown-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 12px 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.countdown-num {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ff0000;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.countdown-unit {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 6px;
}

.countdown-sep {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    opacity: 0.6;
    animation: blinkSep 1s step-end infinite;
}

@keyframes blinkSep {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.countdown-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Authorities Notification Banner */
.authorities-notification {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(10, 15, 26, 0.95) 0%, rgba(26, 42, 58, 0.9) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 167, 44, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.authorities-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #D4A72C, #f39c12, #D4A72C, #e74c3c, #D4A72C);
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.authorities-notification::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 167, 44, 0.1) 0%, transparent 60%);
    animation: rotateBg 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(212, 167, 44, 0.3);
    position: relative;
    z-index: 1;
}

.notif-icon {
    font-size: 2rem;
    animation: notifBounce 1s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 167, 44, 0.5));
}

@keyframes notifBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.notif-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4A72C, #f4d03f, #D4A72C);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.authorities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.authority-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.authority-badge::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: left 0.5s ease;
}

.authority-badge:hover::before {
    left: 100%;
}

.authority-badge:hover {
    background: linear-gradient(135deg, rgba(212, 167, 44, 0.25) 0%, rgba(212, 167, 44, 0.1) 100%);
    border-color: #D4A72C;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(212, 167, 44, 0.3),
        0 0 20px rgba(212, 167, 44, 0.2);
}

.auth-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.authority-badge:hover .auth-icon {
    transform: scale(1.2) rotate(10deg);
}

.notification-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.notification-footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.notification-footer strong {
    color: #2ecc71;
    font-weight: 600;
}

.patience-msg {
    display: inline-block;
    color: #f39c12 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
    padding: 0.75rem 1.5rem;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 30px;
    animation: patiencePulse 2s ease-in-out infinite;
}

@keyframes patiencePulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
    }
    50% { 
        opacity: 0.85; 
        box-shadow: 0 0 30px rgba(243, 156, 18, 0.4);
    }
}

/* Authorities Notification Responsive */
@media (max-width: 768px) {
    .authorities-notification {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
        border-radius: 16px;
    }
    
    .notif-icon {
        font-size: 1.5rem;
    }
    
    .notif-title {
        font-size: 1rem;
    }
    
    .authorities-list {
        gap: 0.6rem;
    }
    
    .authority-badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .auth-icon {
        font-size: 1rem;
    }
    
    .notification-footer p {
        font-size: 0.85rem;
    }
    
    .patience-msg {
        font-size: 0.95rem !important;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .authorities-notification {
        padding: 1.25rem 0.75rem;
    }
    
    .notification-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .authority-badge {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Hero Info */
.hero-info {
    text-align: center;
    max-width: 700px;
    padding-top: 1rem;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hero-desc strong {
    color: rgba(255, 255, 255, 0.9);
}

.hero-location {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-location span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 90px 15px 30px;
        gap: 1.5rem;
    }
    
    .alert-item {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-warning {
        width: 55px;
        height: 55px;
    }
    
    .hero-warning svg {
        width: 28px;
        height: 28px;
    }
    
    .hero-tags {
        gap: 8px;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .hero-countdown {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 10px 6px;
    }
    
    .countdown-num {
        font-size: 1.75rem;
    }
    
    .countdown-sep {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        padding: 80px 12px 25px;
    }
    
    .alert-item {
        padding: 8px 15px;
        font-size: 0.7rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-warning {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .hero-warning svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-tags {
        gap: 6px;
    }
    
    .hero-tag {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    
    .countdown-boxes {
        gap: 4px;
    }
    
    .countdown-box {
        min-width: 50px;
        padding: 8px 4px;
        border-radius: 8px;
    }
    
    .countdown-num {
        font-size: 1.5rem;
    }
    
    .countdown-unit {
        font-size: 0.55rem;
    }
    
    .countdown-sep {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .hero-location span {
        font-size: 0.75rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(42, 42, 50, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 42, 50, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
    animation: gridFadeIn 3s ease forwards;
}

@keyframes gridFadeIn {
    to { opacity: 1; }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent-amber) 50%, 
        transparent 100%);
    opacity: 0.7;
    animation: scanDown 8s linear infinite;
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { top: 100%; opacity: 0; }
}

/* Hero Content - Legacy Support */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(42, 42, 50, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 42, 50, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0;
    animation: gridFadeIn 3s ease forwards;
}

@keyframes gridFadeIn {
    to { opacity: 1; }
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-accent-amber) 50%, 
        transparent 100%);
    opacity: 0.3;
    animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* Hero Scheme Logos */
.scheme-logos-hero {
    position: absolute;
    top: calc(var(--nav-height) + var(--space-xl));
    left: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: 2;
}

.scheme-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: rgba(20, 20, 24, 0.9);
    border: 1px solid var(--color-border-subtle);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    opacity: 0;
    animation: fadeInLogo 1s ease forwards;
}

.scheme-logo-item:nth-child(1) { animation-delay: 1.5s; }
.scheme-logo-item:nth-child(2) { animation-delay: 1.8s; }

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scheme-logo-item:hover {
    border-color: var(--color-accent-amber);
    background: rgba(30, 30, 36, 0.95);
}

.scheme-logo-img {
    width: 80px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.9);
    transition: filter var(--transition-base);
}

.scheme-logo-item:hover .scheme-logo-img {
    filter: brightness(1) saturate(1);
}

.scheme-logo-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-amber);
    white-space: nowrap;
}

/* Geographic Context Tags */
.geo-context {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.geo-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    padding: var(--space-xs) var(--space-md);
    background: rgba(42, 42, 50, 0.5);
    border: 1px solid var(--color-border-subtle);
}

.geo-icon {
    font-size: 0.9rem;
}

.geo-divider {
    color: var(--color-border-subtle);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(42, 42, 50, 0.5);
    border: 1px solid var(--color-border-subtle);
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: revealLine 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-line.highlight {
    color: var(--color-accent-amber);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.8;
}

/* Countdown Timer */
.countdown-container {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    padding: var(--space-xl) var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.countdown-label {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.countdown-phase {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-amber);
}

.countdown-status {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1;
    letter-spacing: 0.05em;
}

.countdown-unit {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.countdown-separator {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: var(--color-border-medium);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-arrow {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-number {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent-amber);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--color-accent-amber);
    margin: var(--space-lg) auto 0;
}

/* ============================================
   Welcome Section
   ============================================ */
.welcome-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-surface);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.stakeholder-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stakeholder-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-elevated);
    border-left: 2px solid var(--color-border-subtle);
    transition: all var(--transition-base);
}

.stakeholder-item:hover {
    border-left-color: var(--color-accent-amber);
    background: var(--color-bg-card);
}

.stakeholder-icon {
    color: var(--color-accent-amber);
    font-size: 0.75rem;
}

.stakeholder-item span:last-child {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Message Paper */
.message-paper {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    position: relative;
}

.message-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-accent-amber) 0%, 
        var(--color-accent-red) 100%);
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    border-bottom: 1px solid var(--color-border-subtle);
}

.paper-stamp {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-red);
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--color-accent-red);
}

.paper-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.paper-content {
    padding: var(--space-xl);
    line-height: 1.9;
}

.paper-content p {
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

.paper-content em {
    color: var(--color-text-primary);
    font-style: normal;
}

.paper-content strong {
    color: var(--color-text-primary);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--color-accent-amber) !important;
    padding: var(--space-md);
    background: rgba(212, 167, 44, 0.1);
    border-left: 3px solid var(--color-accent-amber);
    font-weight: 500;
}

.message-principles {
    background: var(--color-bg-card);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.principle-title {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.message-principles ul {
    list-style: none;
    margin-left: var(--space-md);
}

.message-principles li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

.message-principles li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent-green);
}

.closing-statement {
    font-size: 1.1rem;
    text-align: center;
    margin-top: var(--space-xl) !important;
}

.signature {
    text-align: right;
    font-family: var(--font-display);
    color: var(--color-text-muted);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-subtle);
}

/* ============================================
   Findings Section
   ============================================ */
.findings-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-deep);
}

/* Investigation Focus Banner */
.investigation-focus-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(212, 167, 44, 0.08) 0%, rgba(196, 54, 44, 0.05) 100%);
    border: 1px solid rgba(212, 167, 44, 0.3);
    margin-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.investigation-focus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-amber), var(--color-accent-red));
}

.focus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-content {
    flex: 1;
}

.focus-content h4 {
    font-size: 0.9rem;
    color: var(--color-accent-amber);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.focus-content p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.focus-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(44, 140, 94, 0.15);
    border: 1px solid rgba(44, 140, 94, 0.3);
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-green);
    animation: pulse 2s ease infinite;
}

.focus-status span:last-child {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-green-light);
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.finding-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.finding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-border-subtle);
    transition: background var(--transition-base);
}

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

.finding-card:hover::before {
    background: var(--color-accent-amber);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    color: var(--color-accent-blue-light);
}

.card-status {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(44, 140, 94, 0.15);
    color: var(--color-accent-green-light);
    border: 1px solid rgba(44, 140, 94, 0.3);
}

.card-status.status-high {
    background: rgba(196, 54, 44, 0.15);
    color: var(--color-accent-red-light);
    border-color: rgba(196, 54, 44, 0.3);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.card-progress {
    margin-bottom: var(--space-lg);
}

.progress-bar {
    height: 4px;
    background: var(--color-bg-elevated);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-amber), var(--color-accent-green));
    transition: width 1s ease;
}

.progress-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

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

.card-phase {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.card-lock {
    opacity: 0.5;
}

.findings-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    border-left: 3px solid var(--color-accent-blue);
}

.notice-icon {
    flex-shrink: 0;
    color: var(--color-accent-blue-light);
}

.findings-notice p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   Methodology Section
   ============================================ */
.methodology-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-surface);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.method-card {
    padding: var(--space-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    transition: all var(--transition-base);
}

.method-card:hover {
    border-color: var(--color-accent-green);
}

.method-check {
    font-size: 1.5rem;
    color: var(--color-accent-green);
    margin-bottom: var(--space-md);
}

.method-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.method-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   Timeline Section
   ============================================ */
.timeline-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-deep);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border-subtle);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + var(--space-2xl));
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + var(--space-2xl));
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--color-border-subtle);
    background: var(--color-bg-deep);
}

.marker-dot.active {
    border-color: var(--color-accent-green);
    background: var(--color-accent-green);
    box-shadow: var(--shadow-glow-amber);
}

.marker-dot.upcoming {
    border-color: var(--color-accent-amber);
    background: transparent;
}

.marker-dot.locked {
    border-color: var(--color-border-subtle);
    background: var(--color-bg-elevated);
}

.timeline-content {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    padding: var(--space-xl);
    width: 100%;
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-sm);
    margin-bottom: var(--space-md);
}

.phase-badge.active {
    background: rgba(44, 140, 94, 0.15);
    color: var(--color-accent-green-light);
    border: 1px solid rgba(44, 140, 94, 0.3);
}

.phase-badge.upcoming {
    background: rgba(212, 167, 44, 0.15);
    color: var(--color-accent-amber-light);
    border: 1px solid rgba(212, 167, 44, 0.3);
}

.phase-badge.locked {
    background: rgba(42, 42, 50, 0.5);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border-subtle);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.timeline-content ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.timeline-content li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.timeline-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-accent-amber);
}

.phase-date {
    display: flex;
    gap: var(--space-sm);
    font-size: 0.8rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-subtle);
}

.date-label {
    color: var(--color-text-muted);
}

.date-value {
    color: var(--color-text-secondary);
}

.date-value.released {
    color: var(--color-accent-green-light);
}

/* ============================================
   Engagement Section
   ============================================ */
.engagement-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-surface);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.engagement-card {
    padding: var(--space-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    transition: all var(--transition-base);
}

.engagement-card:hover {
    border-color: var(--color-accent-blue);
}

.engagement-icon {
    color: var(--color-accent-blue-light);
    margin-bottom: var(--space-lg);
}

.engagement-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.engagement-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.engagement-action {
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-subtle);
}

.action-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent-amber);
}

/* ============================================
   Context Section - Enhanced with Scheme Logos
   ============================================ */
.context-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-deep);
}

.context-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.context-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-amber);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    border: 1px solid var(--color-accent-amber);
    background: rgba(212, 167, 44, 0.1);
}

.context-content h2 {
    margin-bottom: var(--space-lg);
}

.context-content > p {
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

/* Enhanced Scheme Cards with Logos */
.schemes-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.scheme-card-enhanced {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.scheme-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-amber), var(--color-accent-red));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.scheme-card-enhanced:hover {
    border-color: var(--color-border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.scheme-card-enhanced:hover::before {
    opacity: 1;
}

.scheme-card-logo {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--color-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    position: relative;
}

.scheme-card-logo::after {
    content: 'SCHEME UNDER REVIEW';
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--color-accent-amber);
    opacity: 0.7;
    padding: 2px 6px;
    border: 1px solid var(--color-accent-amber);
    background: rgba(212, 167, 44, 0.1);
}

.scheme-card-img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
    transition: filter var(--transition-base);
}

.scheme-card-enhanced:hover .scheme-card-img {
    filter: brightness(1) contrast(1.1);
}

.scheme-card-content {
    padding: var(--space-xl);
    text-align: left;
}

.scheme-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

.scheme-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.scheme-stats {
    display: flex;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.stat-value.status-review {
    color: var(--color-accent-amber);
}

/* Context Details Grid */
.context-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.context-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    text-align: left;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content h5 {
    font-size: 0.85rem;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.detail-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Context Disclaimer */
.context-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(212, 167, 44, 0.05);
    border: 1px solid rgba(212, 167, 44, 0.3);
    border-left: 3px solid var(--color-accent-amber);
    text-align: left;
}

.disclaimer-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.disclaimer-text p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.disclaimer-text em {
    color: var(--color-accent-amber);
    font-style: normal;
    font-weight: 500;
}

/* Legacy scheme grid support */
.schemes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.scheme-card {
    padding: var(--space-xl);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    text-align: left;
}

.scheme-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.scheme-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.scheme-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.context-note {
    padding: var(--space-lg);
    background: var(--color-bg-surface);
    border-left: 3px solid var(--color-accent-amber);
    text-align: left;
}

.context-note p {
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   Legal Section
   ============================================ */
.legal-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-surface);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.legal-card {
    padding: var(--space-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
}

.legal-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-subtle);
    color: var(--color-text-primary);
}

.legal-content p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.commitments-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.commitment-icon {
    color: var(--color-accent-amber);
    flex-shrink: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(to bottom, var(--color-bg-deep), var(--color-bg-surface));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-schemes {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.cta-scheme-logo {
    width: 80px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: all var(--transition-base);
}

.cta-scheme-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content > p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.cta-countdown-mini {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-accent-amber);
    margin-bottom: var(--space-2xl);
}

.cta-countdown-mini span {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--color-accent-amber);
    letter-spacing: 0.1em;
}

.cta-statement {
    padding: var(--space-lg);
    background: var(--color-bg-elevated);
    border-left: 3px solid var(--color-accent-amber);
    margin-bottom: var(--space-lg);
}

.cta-statement p {
    margin: 0;
    font-style: italic;
    color: var(--color-text-secondary);
}

.cta-notice {
    padding: var(--space-md);
    background: rgba(42, 42, 50, 0.5);
    border: 1px solid var(--color-border-subtle);
}

.cta-notice p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-border-subtle);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-4xl);
}

.footer-column h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

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

.footer-column li {
    margin-bottom: var(--space-sm);
}

.footer-column a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    text-align: center;
}

.footer-legal {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--space-md);
    line-height: 1.7;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .findings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .schemes-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .context-details {
        grid-template-columns: 1fr;
    }
    
    .scheme-logos-hero {
        position: relative;
        top: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        margin-bottom: var(--space-xl);
        padding-top: var(--space-xl);
    }
    
    .scheme-logo-item {
        flex-direction: row;
        padding: var(--space-sm) var(--space-md);
    }
    
    .scheme-logo-img {
        width: 60px;
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg-deep);
        border-bottom: 1px solid var(--color-border-subtle);
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-tagline {
        display: none;
    }
    
    .logo-divider {
        display: none;
    }
    
    .hero {
        padding: var(--space-4xl) var(--space-md);
    }
    
    .scheme-logos-hero {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .scheme-logo-item {
        flex-direction: column;
        padding: var(--space-sm);
    }
    
    .scheme-logo-img {
        width: 50px;
        max-height: 35px;
    }
    
    .scheme-logo-label {
        font-size: 0.5rem;
    }
    
    .geo-context {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .geo-divider {
        display: none;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
    }
    
    .schemes-grid {
        grid-template-columns: 1fr;
    }
    
    .schemes-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .scheme-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .context-details {
        grid-template-columns: 1fr;
    }
    
    .context-disclaimer {
        flex-direction: column;
        text-align: center;
    }
    
    .investigation-focus-banner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .investigation-focus-banner::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }
    
    .focus-content p {
        font-size: 0.8rem;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: var(--space-3xl);
        padding-right: 0;
        flex-direction: row;
    }
    
    .timeline-line {
        left: 8px;
    }
    
    .timeline-marker {
        left: 8px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .countdown-container {
        padding: var(--space-lg);
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scan-line {
        display: none;
    }
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--color-accent-amber);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-accent-amber);
    color: var(--color-bg-deep);
    padding: var(--space-sm) var(--space-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-border-subtle: #555;
        --color-text-secondary: #ccc;
        --color-text-muted: #aaa;
    }
}

/* ===================================
   Evidence Archive Section - Enhanced
   =================================== */
.evidence-archive-section {
    padding: 7rem 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(227, 74, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(184, 57, 57, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-bg-deep) 0%, #0a0a0f 50%, var(--color-bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

.evidence-archive-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(227, 74, 74, 0.02) 50px, rgba(227, 74, 74, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(227, 74, 74, 0.02) 50px, rgba(227, 74, 74, 0.02) 51px);
    pointer-events: none;
}

.evidence-archive-section .section-header {
    position: relative;
    z-index: 2;
}

/* Archive Status Banner - Premium */
.archive-status-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, 
        rgba(227, 74, 74, 0.12) 0%, 
        rgba(139, 0, 0, 0.08) 50%,
        rgba(184, 57, 57, 0.1) 100%);
    border: 1px solid rgba(227, 74, 74, 0.25);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 30px rgba(227, 74, 74, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.archive-status-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 74, 74, 0.5), transparent);
}

.archive-status-banner::after {
    content: 'CLASSIFIED';
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(-90deg);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(227, 74, 74, 0.25);
    font-weight: 700;
}

.archive-lock-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 74, 74, 0.3) 0%, rgba(139, 0, 0, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e34a4a;
    flex-shrink: 0;
    position: relative;
    box-shadow: 
        0 0 40px rgba(227, 74, 74, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
    animation: lockPulse 3s ease-in-out infinite;
}

.archive-lock-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(227, 74, 74, 0.3);
    animation: lockRotate 20s linear infinite;
}

@keyframes lockPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(227, 74, 74, 0.3); }
    50% { box-shadow: 0 0 60px rgba(227, 74, 74, 0.5); }
}

@keyframes lockRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.archive-lock-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 10px rgba(227, 74, 74, 0.5));
}

.archive-status-content {
    flex: 1;
}

.archive-status-content h4 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-locked {
    color: #ff4444;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(139, 0, 0, 0.15) 100%);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status-unlocked {
    color: #4CAF50;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(76, 175, 80, 0.15);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.archive-status-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.archive-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(20,0,0,0.4) 100%);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(227, 74, 74, 0.3);
    position: relative;
    min-width: 140px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.archive-countdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 74, 74, 0.6), transparent);
}

.archive-countdown-label {
    color: var(--color-text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.archive-countdown-value {
    color: #ff4444;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    letter-spacing: 0.05em;
}

/* Archive Disclaimer - Enhanced */
.archive-disclaimer {
    background: linear-gradient(135deg, rgba(247, 184, 74, 0.08) 0%, rgba(200, 140, 30, 0.05) 100%);
    border: 1px solid rgba(247, 184, 74, 0.25);
    border-left: 4px solid #f7b84a;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.disclaimer-badge {
    background: linear-gradient(135deg, rgba(247, 184, 74, 0.2) 0%, rgba(200, 140, 30, 0.15) 100%);
    color: #f7b84a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(247, 184, 74, 0.2);
    box-shadow: 0 2px 10px rgba(247, 184, 74, 0.1);
}

.archive-disclaimer p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.archive-disclaimer strong {
    color: #f7b84a;
    font-weight: 600;
}

/* Evidence Categories Grid - Premium */
.evidence-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

/* Evidence Category Card - Sophisticated */
.evidence-category-card {
    background: linear-gradient(165deg, 
        rgba(30, 30, 40, 0.9) 0%, 
        rgba(15, 15, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.evidence-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--card-accent, #e34a4a) 0%, 
        transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.evidence-category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 50%);
    pointer-events: none;
}

.evidence-category-card:hover {
    border-color: rgba(227, 74, 74, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(227, 74, 74, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.evidence-category-card:hover::before {
    opacity: 1;
}

/* Card Inner Content */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.75rem 1.75rem 0;
    position: relative;
    z-index: 2;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--icon-color, #42a5f5), transparent);
    opacity: 0.3;
    z-index: -1;
}

.evidence-category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

.document-icon {
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.2) 0%, rgba(33, 150, 243, 0.1) 100%);
    color: #42a5f5;
    --icon-color: #42a5f5;
    --card-accent: #42a5f5;
}

.tax-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: #4CAF50;
    --icon-color: #4CAF50;
    --card-accent: #4CAF50;
}

.photo-icon {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(123, 31, 162, 0.1) 100%);
    color: #9c27b0;
    --icon-color: #9c27b0;
    --card-accent: #9c27b0;
}

.audio-icon {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2) 0%, rgba(245, 124, 0, 0.1) 100%);
    color: #ff9800;
    --icon-color: #ff9800;
    --card-accent: #ff9800;
}

.video-icon {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(211, 47, 47, 0.1) 100%);
    color: #f44336;
    --icon-color: #f44336;
    --card-accent: #f44336;
}

.correspondence-icon {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(0, 151, 167, 0.1) 100%);
    color: #00bcd4;
    --icon-color: #00bcd4;
    --card-accent: #00bcd4;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-lock {
    font-size: 1.1rem;
    opacity: 0.8;
    background: rgba(227, 74, 74, 0.15);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(227, 74, 74, 0.2);
    transition: all 0.3s ease;
}

.evidence-category-card:hover .category-lock {
    background: rgba(227, 74, 74, 0.25);
    transform: scale(1.1);
}

/* Card Body */
.evidence-category-card h3 {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    margin: 1.25rem 1.75rem 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.category-description {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 1.75rem 1.5rem;
    position: relative;
    z-index: 2;
}

/* Evidence Items Preview - Enhanced */
.evidence-items-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 1.25rem 1.25rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.evidence-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evidence-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, rgba(227, 74, 74, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evidence-item:hover {
    background: linear-gradient(90deg, rgba(227, 74, 74, 0.08) 0%, transparent 100%);
    border-color: rgba(227, 74, 74, 0.15);
}

.evidence-item:hover::before {
    opacity: 1;
}

.evidence-item.locked {
    opacity: 0.85;
}

.item-icon {
    font-size: 1rem;
    flex-shrink: 0;
    filter: grayscale(0.3);
}

.item-name {
    flex: 1;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.item-status {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ff4444;
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(139, 0, 0, 0.15) 100%);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 68, 68, 0.2);
    text-transform: uppercase;
}

/* Category Meta - Enhanced */
.category-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

.meta-item {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item strong {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.meta-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

/* Phase Badge in Meta */
.meta-item.phase-badge {
    background: linear-gradient(135deg, rgba(212, 167, 44, 0.15) 0%, rgba(180, 140, 30, 0.1) 100%);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 167, 44, 0.2);
    color: var(--color-accent-amber);
    font-weight: 500;
}

/* Archive Release Notice - Premium */
.archive-release-notice {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.08) 0%, 
        rgba(56, 142, 60, 0.05) 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.archive-release-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
}

.release-notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.notice-icon {
    font-size: 1.5rem;
    background: rgba(76, 175, 80, 0.15);
    padding: 0.75rem;
    border-radius: 12px;
    line-height: 1;
}

.release-notice-header h4 {
    color: var(--color-text-primary);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
}

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

.release-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.release-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.release-check {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(76, 175, 80, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Evidence Archive Responsive - Enhanced */
@media (max-width: 992px) {
    .evidence-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .release-notice-content {
        grid-template-columns: 1fr;
    }
    
    .archive-status-banner {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    .evidence-archive-section {
        padding: 5rem 0;
    }
    
    .archive-status-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .archive-status-banner::after {
        display: none;
    }
    
    .archive-lock-icon {
        width: 70px;
        height: 70px;
    }
    
    .archive-countdown {
        width: 100%;
        padding: 1.25rem;
    }
    
    .archive-disclaimer {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .evidence-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .evidence-category-card:hover {
        transform: translateY(-4px);
    }
    
    .archive-release-notice {
        padding: 1.5rem;
    }
}

/* ============================================
   Thank You / Acknowledgment Section
   ============================================ */
.thankyou-section {
    padding: var(--space-5xl) var(--space-lg);
    background: linear-gradient(180deg, 
        var(--color-bg-primary) 0%, 
        rgba(39, 174, 96, 0.03) 50%,
        var(--color-bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 174, 96, 0.3), transparent);
}

.thankyou-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.thankyou-intro p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.thankyou-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.thankyou-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(39, 174, 96, 0.5), 
        rgba(46, 204, 113, 0.8), 
        rgba(39, 174, 96, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thankyou-card:hover {
    transform: translateY(-5px);
    border-color: rgba(39, 174, 96, 0.3);
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.15);
}

.thankyou-card:hover::before {
    opacity: 1;
}

.thankyou-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, 
        rgba(39, 174, 96, 0.08) 0%, 
        rgba(46, 204, 113, 0.05) 100%);
    border-color: rgba(39, 174, 96, 0.25);
}

.thankyou-card.featured::before {
    opacity: 1;
    height: 4px;
}

.thankyou-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.thankyou-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.thankyou-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.thankyou-card.featured h3 {
    color: #2ecc71;
    font-size: 1.5rem;
}

.thankyou-card.featured .thankyou-icon {
    font-size: 3.5rem;
}

.thankyou-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.thankyou-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #2ecc71;
    font-style: italic;
    margin-bottom: 1rem;
}

.thankyou-note {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Thank You Section Responsive */
@media (max-width: 768px) {
    .thankyou-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .thankyou-intro p {
        font-size: 1rem;
    }
    
    .thankyou-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .thankyou-card {
        padding: 1.5rem;
    }
    
    .thankyou-card.featured {
        grid-column: auto;
    }
    
    .thankyou-icon {
        font-size: 2.5rem;
    }
    
    .thankyou-card h3 {
        font-size: 1.1rem;
    }
    
    .thankyou-card p {
        font-size: 0.9rem;
    }
    
    .thankyou-quote {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .thankyou-card {
        padding: 1.25rem;
    }
    
    .thankyou-icon {
        font-size: 2rem;
    }
    
    .thankyou-quote {
        font-size: 1.1rem;
    }
    
    .thankyou-note {
        font-size: 0.85rem;
    }
}

/* ==========================================
   GET DOCUMENTS SECTION
========================================== */
.get-documents-section {
    padding: var(--space-4xl) var(--space-xl);
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 50%, #0d2818 100%);
    position: relative;
    overflow: hidden;
}

.get-documents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.get-docs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.get-docs-content {
    max-width: 500px;
}

.get-docs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.1rem;
}

.get-docs-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.get-docs-title .highlight {
    color: #2ecc71;
    position: relative;
}

.get-docs-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2ecc71, transparent);
}

.get-docs-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Live Subscriber Counter */
.live-subscriber-counter {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.counter-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    animation: counterPulse 2s ease-in-out infinite;
}

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

.counter-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.6);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
    }
}

.counter-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.counter-number {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.counter-number.updating {
    transform: scale(1.1);
    color: #f39c12;
}

.recent-signup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    animation: slideInSignup 0.5s ease;
}

@keyframes slideInSignup {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.signup-icon {
    font-size: 1.1rem;
    animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.signup-text {
    font-size: 0.85rem;
    color: #f39c12;
    font-weight: 500;
}

.get-docs-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    width: 100%;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.05);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.15);
}

.input-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    opacity: 0.7;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.lock-icon {
    font-size: 1rem;
}

/* Document Preview Visual */
.get-docs-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.docs-preview {
    position: relative;
    padding: 2rem;
}

.doc-stack {
    position: relative;
    width: 280px;
    height: 320px;
}

.doc-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.doc-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.doc-icon {
    font-size: 1.5rem;
}

.doc-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.doc-1 {
    top: 0;
    left: 0;
    z-index: 4;
    animation: floatDoc1 4s ease-in-out infinite;
}

.doc-2 {
    top: 70px;
    left: 20px;
    z-index: 3;
    animation: floatDoc2 4s ease-in-out infinite 0.5s;
}

.doc-3 {
    top: 140px;
    left: 10px;
    z-index: 2;
    animation: floatDoc3 4s ease-in-out infinite 1s;
}

.doc-4 {
    top: 210px;
    left: 30px;
    z-index: 1;
    animation: floatDoc4 4s ease-in-out infinite 1.5s;
}

@keyframes floatDoc1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
}

@keyframes floatDoc2 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatDoc3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatDoc4 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-6px) rotate(0deg); }
}

.delivery-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.delivery-icon {
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(243, 156, 18, 0.6); }
}

/* Success Message Styles */
.success-message {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(46, 204, 113, 0.05) 100%);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.success-main {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-main strong {
    color: #2ecc71;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #2ecc71;
}

.item-icon {
    font-size: 1.3rem;
}

.success-item span:last-child {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.success-countdown {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
}

.success-countdown span {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.success-countdown strong {
    color: #f39c12;
    font-size: 1.2rem;
    font-family: var(--font-mono);
}

/* Get Documents Responsive */
@media (max-width: 992px) {
    .get-docs-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .get-docs-content {
        max-width: 100%;
    }
    
    .get-docs-badge {
        justify-content: center;
    }
    
    .get-docs-visual {
        order: -1;
    }
    
    .doc-stack {
        width: 250px;
        height: 280px;
    }
    
    .doc-1 { top: 0; left: 0; }
    .doc-2 { top: 60px; left: 15px; }
    .doc-3 { top: 120px; left: 5px; }
    .doc-4 { top: 180px; left: 25px; }
}

@media (max-width: 768px) {
    .get-documents-section {
        padding: var(--space-3xl) var(--space-md);
    }
    
    .get-docs-title {
        font-size: 2rem;
    }
    
    .get-docs-desc {
        font-size: 1rem;
    }
    
    .success-content {
        padding: 2rem 1.5rem;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .success-main {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .get-docs-title {
        font-size: 1.75rem;
    }
    
    .doc-stack {
        width: 220px;
        height: 250px;
        transform: scale(0.9);
    }
    
    .delivery-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}

/* ============================================
   Welcome Popup Modal
   ============================================ */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.welcome-popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-popup {
    background: linear-gradient(145deg, var(--color-bg-elevated), var(--color-bg-surface));
    border: 1px solid var(--color-accent-amber);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 0 60px rgba(212, 167, 44, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: popupSlideIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.welcome-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-red), var(--color-accent-amber), var(--color-accent-red));
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent-amber);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-content {
    color: var(--color-text-primary);
    line-height: 1.7;
}

.popup-main-text {
    margin-bottom: 1rem;
}

.highlight-warning {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196, 54, 44, 0.2), rgba(196, 54, 44, 0.1));
    border: 1px solid var(--color-accent-red);
    color: var(--color-accent-red-light);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.popup-info {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.popup-info strong {
    color: var(--color-accent-amber-light);
}

.popup-request {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.popup-thanks {
    background: linear-gradient(135deg, rgba(44, 140, 94, 0.15), rgba(44, 140, 94, 0.05));
    border: 1px solid var(--color-accent-green);
    color: var(--color-accent-green-light);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.popup-close-btn {
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-amber-light));
    color: var(--color-bg-deep);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 167, 44, 0.4);
}

.popup-close-btn:active {
    transform: translateY(0);
}

/* Popup Mobile Responsive */
@media (max-width: 600px) {
    .welcome-popup {
        padding: 1.75rem 1.25rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
    
    .highlight-warning {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
    
    .popup-info {
        font-size: 0.95rem;
    }
    
    .popup-close-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Document Request Modal
   ============================================ */
.document-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.document-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.document-modal {
    background: linear-gradient(145deg, #1a1a20, #141418);
    border: 1px solid var(--color-accent-amber);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 167, 44, 0.2);
}

.document-modal-overlay.active .document-modal {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: rgba(196, 54, 44, 0.3);
    color: var(--color-accent-red-light);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-title span {
    color: var(--color-accent-amber);
}

.modal-subtitle {
    color: var(--color-text-secondary);
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.doc-request-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent-amber);
    box-shadow: 0 0 0 3px rgba(212, 167, 44, 0.2);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-amber-light));
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: #0a0a0c;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 167, 44, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.modal-disclaimer {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Success View */
.modal-success-view {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent-green-light);
    margin-bottom: 0.5rem;
}

.success-message {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.success-info {
    background: rgba(44, 140, 94, 0.15);
    border: 1px solid rgba(44, 140, 94, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

.success-info p {
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.success-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-info ul li {
    color: var(--color-accent-green-light);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.success-note {
    background: rgba(212, 167, 44, 0.1);
    border: 1px solid rgba(212, 167, 44, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.success-note p {
    color: var(--color-accent-amber-light);
    font-size: 0.9rem;
    margin: 0;
}

.success-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border-medium);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    color: var(--color-text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.success-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text-muted);
}

/* Evidence Card Available State */
.evidence-category-card.available {
    cursor: pointer;
    border-color: var(--color-accent-green);
    transition: all 0.3s ease;
}

.evidence-category-card.available:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 140, 94, 0.3);
    border-color: var(--color-accent-green-light);
}

.category-lock.open {
    color: var(--color-accent-green-light);
}

.evidence-item.available .item-status {
    background: rgba(44, 140, 94, 0.2);
    color: var(--color-accent-green-light);
    border-color: var(--color-accent-green);
}

.evidence-item.available .item-status.available {
    background: rgba(44, 140, 94, 0.2);
    color: var(--color-accent-green-light);
}

.phase-badge.available {
    background: linear-gradient(135deg, var(--color-accent-green), var(--color-accent-green-light)) !important;
    color: #fff !important;
}

/* Archive Status Open */
.archive-status-banner .archive-lock-icon.unlocked {
    background: rgba(44, 140, 94, 0.2);
    color: var(--color-accent-green-light);
}

.archive-status-banner .status-open {
    color: var(--color-accent-green-light);
}

.archive-countdown.open {
    background: rgba(44, 140, 94, 0.2);
    border-color: var(--color-accent-green);
}

.archive-countdown.open .archive-countdown-value {
    color: var(--color-accent-green-light);
}

.archive-release-notice.available {
    border-color: var(--color-accent-green);
    background: rgba(44, 140, 94, 0.05);
}

/* Modal Responsive */
@media (max-width: 600px) {
    .document-modal {
        padding: 1.75rem 1.25rem;
        margin: 1rem;
        border-radius: 12px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.25rem;
    }
}

/* ============================================
   Hero Section - JSK Construction Fraud
   ============================================ */
.hero-subheadline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--color-accent-red-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Stage Complete Banner */
.stage-complete-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(44, 140, 94, 0.2), rgba(44, 140, 94, 0.1));
    border: 2px solid var(--color-accent-green);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 1.5rem auto 1rem;
    max-width: 600px;
    animation: pulseGreen 2s ease infinite;
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 20px rgba(44, 140, 94, 0.3); }
    50% { box-shadow: 0 0 40px rgba(44, 140, 94, 0.5); }
}

.stage-icon {
    font-size: 3rem;
    animation: bounceIn 0.6s ease;
}

.stage-content {
    text-align: left;
}

.stage-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-accent-green-light);
    margin: 0 0 0.25rem 0;
    letter-spacing: 1px;
}

.stage-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Stage 2 Upcoming Banner */
.stage-upcoming-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(212, 167, 44, 0.15), rgba(212, 167, 44, 0.05));
    border: 2px dashed var(--color-accent-amber);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    margin: 0.75rem auto 1.5rem;
    max-width: 600px;
    position: relative;
    animation: pulseAmber 2.5s ease infinite;
}

@keyframes pulseAmber {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 167, 44, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 167, 44, 0.4); }
}

.stage-upcoming-banner .stage-content h3 {
    color: var(--color-accent-amber-light);
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent-amber), var(--color-accent-amber-light));
    color: #0a0a0c;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Thank You Banner */
.thank-you-banner {
    background: linear-gradient(135deg, rgba(212, 167, 44, 0.15), rgba(212, 167, 44, 0.05));
    border: 1px solid rgba(212, 167, 44, 0.4);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin: 1rem auto;
    max-width: 550px;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.thank-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.thank-you-banner p {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.1rem;
}

.thank-you-banner p strong {
    color: var(--color-accent-amber-light);
}

.thank-you-banner .thank-sub {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* Authorities Notification Sent State */
.authorities-notification.sent {
    border-color: var(--color-accent-green);
    background: rgba(44, 140, 94, 0.05);
}

.authorities-notification.sent .notification-header {
    background: rgba(44, 140, 94, 0.2);
}

.authorities-notification.sent .notif-title {
    color: var(--color-accent-green-light);
}

/* Responsive for new hero elements */
@media (max-width: 600px) {
    .hero-subheadline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .stage-complete-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }
    
    .stage-upcoming-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        padding-top: 1.5rem;
    }
    
    .stage-content {
        text-align: center;
    }
    
    .stage-content h3 {
        font-size: 1.1rem;
    }
    
    .coming-soon-badge {
        top: -8px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.65rem;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateX(50%) translateY(0); }
        50% { transform: translateX(50%) translateY(-5px); }
    }
    
    .thank-you-banner {
        padding: 1rem 1.25rem;
    }
    
    .thank-you-banner p {
        font-size: 1rem;
    }
}