:root {
    --bg: #0a0908;
    --bg-card: rgba(18, 16, 14, 0.5);
    --bg-elevated: rgba(29, 26, 22, 0.6);
    --border: rgba(247, 161, 46, 0.15);
    --text: #fdf8f0;    
    --text-muted: #b5a89a;
    --text-dim: #7a6f64;
    --orange: #f7a12e;
    --orange-light: #fde08d;
    --orange-dim: rgba(247, 161, 46, 0.1);
    --orange-border: rgba(247, 161, 46, 0.3);
    --orange-glow: rgba(247, 161, 46, 0.25);
    --red: #d14d28;
    --red-dim: rgba(209, 77, 40, 0.1);
    --font-display: 'Segoe UI', 'Trebuchet MS', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%; 
}

button, a { 
    -webkit-tap-highlight-color: transparent; 
    touch-action: manipulation; 
}

body { 
    position: relative; 
    z-index: 0; 
    font-family: var(--font-body);
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* ============ BACKGROUND EFFECTS ============ */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 50%, rgba(247, 161, 46, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(247, 161, 46, 0.05) 0%, transparent 30%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%),
        url("images/bg-1.png") center/cover fixed no-repeat;
    filter: blur(2px);
    pointer-events: none;
    animation: bgFloat 15s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.05);
    }
}

/* Scroll animations */
@keyframes slideUpOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}

@keyframes slideDownOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes slideUpIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDownIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.scroll-up {
    animation: slideUpOut 0.3s ease-out;
}

body.scroll-down {
    animation: slideDownOut 0.3s ease-out;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    opacity: 0.85;
    pointer-events: none;
}

/* ============ SPLASH SCREEN ============ */

.splash { 
    position: fixed; 
    inset: 0; 
    z-index: 99999; 
    background: linear-gradient(135deg, #0a0908 0%, #1a1410 100%);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
    gap: 24px; 
    transition: opacity 0.6s ease, visibility 0.6s ease; 
    backdrop-filter: blur(10px);
}

.splash.hidden { 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none; 
}

.page-overlay { 
    position: fixed; 
    inset: 0; 
    z-index: 99998; 
    background: rgba(0, 0, 0, 0.7); 
    pointer-events: all; 
    opacity: 1; 
    visibility: visible; 
    transition: opacity 0.6s ease, visibility 0.6s ease;
    backdrop-filter: blur(5px);
}

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

/* ============ LIGHTBOX ============ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lightbox-close {
    align-self: flex-end;
    background: rgba(247, 161, 46, 0.15);
    border: 1px solid var(--orange-border);
    color: var(--orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(247, 161, 46, 0.25);
    box-shadow: 0 0 20px rgba(247, 161, 46, 0.3);
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    border: 1px solid var(--orange-border);
    object-fit: contain;
}

.lightbox-info {
    text-align: center;
    max-width: 700px;
}

#lightbox-caption {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.5;
}

#lightbox-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lightbox-container {
        max-width: 95vw;
        gap: 12px;
    }

    #lightbox-image {
        max-height: 60vh;
    }

    .lightbox-close {
        width: 36px;
        height: 36px;
    }
}

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

.splash-logo { 
    font-family: var(--font-display);
    font-size: 36px; 
    font-weight: 700; 
    letter-spacing: 6px; 
    color: var(--text);
    animation: splashLogoFade 0.8s ease-out;
}

.splash-logo span { 
    color: var(--orange);
    text-shadow: 0 0 30px rgba(247, 161, 46, 0.5);
}

@keyframes splashLogoFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.splash-bar { 
    width: 120px; 
    height: 3px; 
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    border-radius: 2px;
    overflow: hidden; 
    position: relative;
    box-shadow: 0 0 20px rgba(247, 161, 46, 0.5);
}

.splash-bar::after { 
    content: ''; 
    position: absolute; 
    left: -40%; 
    top: 0; 
    height: 100%; 
    width: 40%; 
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    border-radius: 2px; 
    animation: splashSlide 1.5s ease-in-out infinite; 
}

@keyframes splashSlide { 
    0% { left: -40%; } 
    100% { left: 100%; } 
}

/* ============ NAVIGATION ============ */

nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 72px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0 48px; 
    z-index: 1000; 
    background: rgba(10, 9, 8, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav:hover {
    background: rgba(10, 9, 8, 0.6);
    border-bottom-color: rgba(247, 161, 46, 0.25);
}

.nav-logo { 
    font-family: var(--font-display);
    font-size: 28px; 
    letter-spacing: 4px; 
    color: var(--text); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--orange-light);
    text-shadow: 0 0 20px rgba(247, 161, 46, 0.3);
}

.nav-logo span { 
    color: var(--orange);
    transition: all 0.3s ease;
}

.nav-logo:hover span {
    text-shadow: 0 0 30px rgba(247, 161, 46, 0.6);
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 40px; 
    list-style: none; 
}

.nav-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 500; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    transition: width 0.3s ease;
}

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

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

.nav-cta { 
    background: linear-gradient(135deg, var(--orange), #ff9500);
    color: var(--bg) !important; 
    padding: 10px 36px; 
    border-radius: 8px; 
    font-weight: 600;
    border: 1px solid rgba(255, 149, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 161, 46, 0.2);
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.nav-cta:hover { 
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(247, 161, 46, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--text); 
    cursor: pointer; 
    padding: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--orange-light);
}

/* ============ BANNER ============ */

.banner { 
    min-height: 100vh; 
    min-height: 100svh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 120px 24px 80px; 
    position: relative; 
    overflow: hidden; 
}

.banner::before { 
    content: ''; 
    position: absolute; 
    top: -200px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 800px; 
    height: 800px; 
    background: radial-gradient(circle, rgba(247, 161, 46, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes glowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.8;
    }
}

.banner h1 { 
    font-family: var(--font-display);
    font-size: clamp(56px, 12vw, 120px); 
    font-weight: 700; 
    line-height: 0.95; 
    letter-spacing: 4px; 
    margin-bottom: 24px; 
    text-transform: uppercase;
    animation: titleReveal 0.8s ease-out;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.banner h1 .hl { 
    color: var(--orange);
    transition: all 0.3s ease;
    text-shadow: 0 0 30px rgba(247, 161, 46, 0.5);
}

.banner h1:hover .hl {
    text-shadow: 0 0 50px rgba(247, 161, 46, 0.8);
}

.banner-text { 
    font-size: 18px; 
    color: var(--text-muted); 
    max-width: 520px; 
    margin-bottom: 48px; 
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

.banner-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.button-main { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: linear-gradient(135deg, var(--orange), #ff9500);
    color: var(--bg); 
    padding: 16px 32px; 
    border-radius: 10px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(247, 161, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.button-main::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;
}

.button-main:hover::before {
    left: 100%;
}

.button-main:hover { 
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 48px rgba(247, 161, 46, 0.4);
}

.button-alt { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: rgba(247, 161, 46, 0.1);
    color: var(--text); 
    padding: 16px 32px; 
    border-radius: 10px; 
    font-size: 14px; 
    font-weight: 600; 
    text-decoration: none; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    border: 1.5px solid var(--orange-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-alt:hover { 
    border-color: var(--orange);
    background: rgba(247, 161, 46, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(247, 161, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: var(--orange-light);
}

/* ============ METRICS / STATS ============ */

.metrics { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border);
    background: rgba(18, 16, 14, 0.3);
    backdrop-filter: blur(10px);
}

.metric { 
    padding: 56px 32px; 
    text-align: center; 
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(247, 161, 46, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric:last-child { 
    border-right: none; 
}

.metric:hover { 
    background: rgba(247, 161, 46, 0.08);
    transform: translateY(-4px);
}

.metric:hover::before {
    opacity: 1;
}

.metric-number { 
    font-family: var(--font-display);
    font-size: 56px; 
    color: var(--text); 
    letter-spacing: 2px; 
    line-height: 1; 
    margin-bottom: 8px;
    font-weight: 700;
}

.metric-number span { 
    color: var(--orange);
    text-shadow: 0 0 20px rgba(247, 161, 46, 0.4);
}

.metric-label { 
    font-size: 12px; 
    color: var(--text-dim); 
    text-transform: uppercase; 
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============ SECTION STYLES ============ */

section { 
    padding: 120px 48px;
    position: relative;
}

.section-label { 
    font-size: 12px; 
    font-weight: 600; 
    color: var(--orange); 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(247, 161, 46, 0.2);
}

.section-title { 
    font-family: var(--font-display);
    font-size: 48px; 
    letter-spacing: 2px; 
    margin-bottom: 16px; 
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
}

.section-desc { 
    font-size: 16px; 
    color: var(--text-muted); 
    max-width: 480px; 
    line-height: 1.7; 
}

/* ============ ABILITIES / FEATURES ============ */

.abilities-intro { 
    text-align: center; 
    margin-bottom: 64px; 
}

.abilities-intro .section-desc { 
    margin: 0 auto; 
}

.abilities-list { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.ability-item { 
    background: rgba(18, 16, 14, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px; 
    padding: 40px 32px; 
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; 
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ability-item::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent); 
    opacity: 0; 
    transition: opacity 0.4s ease; 
}

.ability-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(247, 161, 46, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ability-item:hover { 
    border-color: var(--orange-border);
    transform: translateY(-8px);
    background: rgba(18, 16, 14, 0.6);
    box-shadow: 0 16px 64px rgba(247, 161, 46, 0.15);
}

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

.ability-item:hover::after {
    opacity: 1;
}

.ability-symbol { 
    width: 48px; 
    height: 48px; 
    background: rgba(247, 161, 46, 0.15);
    border: 1.5px solid var(--orange-border);
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 24px; 
    color: var(--orange);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(247, 161, 46, 0.1);
}

.ability-item:hover .ability-symbol {
    background: rgba(247, 161, 46, 0.25);
    box-shadow: 0 8px 32px rgba(247, 161, 46, 0.2);
    transform: scale(1.1);
}

.ability-item h3 { 
    font-family: var(--font-display);
    font-size: 22px; 
    letter-spacing: 1px; 
    margin-bottom: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ability-item:hover h3 {
    color: var(--orange-light);
}

.ability-item p { 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.7; 
}

/* ============ QUERIES / FAQ ============ */

.queries-intro { 
    text-align: center; 
    margin-bottom: 48px; 
}

.queries-intro .section-desc { 
    margin: 0 auto; 
}

.queries-list { 
    max-width: 700px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

.query-element { 
    background: rgba(18, 16, 14, 0.4);
    border: 1px solid var(--border);
    border-radius: 12px; 
    overflow: hidden; 
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.query-element:hover { 
    border-color: var(--orange-border);
    background: rgba(18, 16, 14, 0.6);
    box-shadow: 0 8px 32px rgba(247, 161, 46, 0.1);
}

.query-prompt { 
    width: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 16px; 
    padding: 20px 24px; 
    background: none; 
    border: none; 
    color: var(--text); 
    font-size: 15px; 
    font-weight: 500; 
    text-align: left; 
    cursor: pointer; 
    transition: color 0.3s ease; 
}

.query-prompt:hover { 
    color: var(--orange-light); 
}

.query-marker { 
    width: 28px; 
    height: 28px; 
    background: rgba(247, 161, 46, 0.15);
    border: 1.5px solid var(--orange-border);
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--orange); 
    transition: all 0.3s ease; 
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(247, 161, 46, 0.1);
}

.query-element:hover .query-marker {
    background: rgba(247, 161, 46, 0.25);
    box-shadow: 0 4px 16px rgba(247, 161, 46, 0.15);
}

.query-element.active .query-marker { 
    transform: rotate(45deg);
    background: rgba(247, 161, 46, 0.2);
}

.query-response { 
    max-height: 0; 
    opacity: 0; 
    overflow: hidden; 
    transition: max-height 0.35s ease, opacity 0.35s ease; 
}

.query-element.active .query-response { 
    max-height: 300px; 
    opacity: 1; 
}

.query-response-content { 
    padding: 0 24px 20px; 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.7; 
}

/* ============ SUPPORTERS / PARTNERS ============ */

.supporters-area { 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}

.supporters-group { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
    margin-top: 48px; 
    justify-items: center; 
    justify-content: center;
}

.supporter-tile { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
    background: rgba(18, 16, 14, 0.4);
    border: 1px solid var(--border);
    border-radius: 16px; 
    padding: 40px 32px; 
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    justify-self: center;
}

.supporter-tile:not(:only-child) { 
    justify-self: center; 
}

.supporter-tile:hover { 
    border-color: var(--orange-border);
    background: rgba(18, 16, 14, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 16px 64px rgba(247, 161, 46, 0.15);
}

.supporter-brand { 
    font-family: var(--font-display);
    font-size: 28px; 
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.supporter-tile:hover .supporter-brand {
    color: var(--orange-light);
}

.supporter-brand .hl { 
    color: var(--orange);
    transition: all 0.3s ease;
}

.supporter-tile:hover .supporter-brand .hl {
    text-shadow: 0 0 20px rgba(247, 161, 46, 0.5);
}

.supporter-info { 
    font-size: 14px; 
    color: var(--text-muted); 
    line-height: 1.6; 
    max-width: 280px; 
}

.gallery-area { 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, 380px); 
    gap: 32px; 
    margin-top: 32px; 
    justify-content: center;
    justify-items: center;
}

.gallery-card { 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    border: 12px solid transparent;
    border-radius: 18px; 
    background: rgba(18, 16, 14, 0.45); 
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; 
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 100%;
}

.gallery-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(247, 161, 46, 0.35);
    border-width: 2px;
    box-shadow: 0 20px 60px rgba(247, 161, 46, 0.16);
}

.gallery-card-image { 
    position: relative; 
    width: 100%; 
    padding-top: 65%; 
    overflow: hidden; 
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-image img { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    transition: transform 0.5s ease; 
}

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

.gallery-card-body { 
    padding: 22px 20px 24px; 
    text-align: left; 
}

.gallery-card-caption { 
    font-size: 15px; 
    color: var(--text); 
    line-height: 1.6; 
    margin-bottom: 10px; 
    min-height: 48px; 
}

.gallery-card-author { 
    font-size: 13px; 
    color: var(--text-muted); 
}

.gallery-empty, .gallery-error { 
    grid-column: 1 / -1; 
    border: 1px solid var(--border); 
    border-radius: 18px; 
    background: rgba(18, 16, 14, 0.45); 
    padding: 36px 24px; 
    text-align: center; 
    color: var(--text-muted); 
}

.gallery-empty-text { 
    max-width: 620px; 
    margin: 0 auto; 
}

.gallery-actions { 
    display: flex; 
    justify-content: center; 
    margin-top: 24px; 
}

.gallery-load-more { 
    border: 1px solid var(--orange-border); 
    background: rgba(247, 161, 46, 0.08); 
    color: var(--orange); 
    padding: 14px 26px; 
    border-radius: 999px; 
    font-size: 14px; 
    cursor: pointer; 
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease; 
}

.gallery-load-more:hover { 
    background: rgba(247, 161, 46, 0.16); 
    transform: translateY(-2px); 
    box-shadow: 0 10px 28px rgba(247, 161, 46, 0.12); 
}

@media (max-width: 980px) { 
    .gallery-grid { 
        grid-template-columns: repeat(auto-fit, 350px); 
    }
}

@media (max-width: 640px) { 
    .gallery-grid { 
        grid-template-columns: 1fr; 
        gap: 28px;
    }
    .gallery-card-body { 
        padding: 18px; 
    }
}

.supporter-connections { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.supporter-connection { 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    padding: 10px 20px; 
    background: rgba(29, 26, 22, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px; 
    color: var(--text-muted); 
    font-size: 13px; 
    font-weight: 500; 
    text-decoration: none; 
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.supporter-connection:hover { 
    border-color: var(--orange);
    color: var(--orange-light); 
    background: rgba(247, 161, 46, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(247, 161, 46, 0.2);
}

.supporter-connection svg { 
    width: 16px; 
    height: 16px; 
}

/* ============ ACTION AREA ============ */

.action-area { 
    text-align: center; 
    padding: 140px 48px; 
    position: relative; 
    overflow: hidden;
    background: linear-gradient(135deg, rgba(247, 161, 46, 0.05) 0%, rgba(247, 161, 46, 0.02) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.action-area::before { 
    content: ''; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 600px; 
    height: 600px; 
    background: radial-gradient(circle, rgba(247, 161, 46, 0.1) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

.action-area .section-label { 
    margin-bottom: 20px; 
}

.action-area .section-title { 
    font-size: 64px; 
    margin-bottom: 20px; 
}

.action-area .section-desc { 
    margin: 0 auto 40px; 
}

.action-options { 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.action-launch { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    background: linear-gradient(135deg, var(--orange), #ff9500);
    color: var(--bg); 
    padding: 18px 36px; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 600; 
    text-decoration: none; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(247, 161, 46, 0.3);
    position: relative;
    overflow: hidden;
}

.action-launch::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;
}

.action-launch:hover::before {
    left: 100%;
}

.action-launch:hover { 
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 64px rgba(247, 161, 46, 0.4);
}

.action-community { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2; 
    padding: 18px 36px; 
    border-radius: 10px; 
    font-size: 15px; 
    font-weight: 600; 
    text-decoration: none; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
    border: 1.5px solid rgba(88, 101, 242, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.1);
}

.action-community:hover { 
    background: rgba(88, 101, 242, 0.25);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.6);
}

.action-community svg, .action-launch svg { 
    width: 20px; 
    height: 20px; 
}

.action-note { 
    margin-top: 24px; 
    font-size: 13px; 
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

/* ============ FOOTER ============ */

footer { 
    background: rgba(18, 16, 14, 0.5);
    border-top: 1px solid var(--border);
    padding: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.base-primary { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    padding-bottom: 32px; 
    margin-bottom: 32px; 
    border-bottom: 1px solid var(--border); 
}

.base-columns { 
    display: flex; 
    gap: 64px; 
}

.base-column h4 { 
    font-size: 11px; 
    font-weight: 600; 
    color: var(--text-dim); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    margin-bottom: 16px; 
}

.base-column ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.base-column a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 14px; 
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
}

.base-column a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.3s ease;
}

.base-column a:hover { 
    color: var(--orange-light);
}

.base-column a:hover::before {
    height: 100%;
}

.base-secondary { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.base-rights { 
    font-size: 13px; 
    color: var(--text-dim); 
}

.base-secondary-links { 
    display: flex; 
    gap: 24px; 
}

.base-secondary-links a { 
    color: var(--text-dim); 
    text-decoration: none; 
    font-size: 13px; 
    transition: all 0.3s ease;
    position: relative;
}

.base-secondary-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.base-secondary-links a:hover { 
    color: var(--orange-light); 
}

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

/* ============ REVEAL ANIMATIONS ============ */

.reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}

.reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.reveal-delay-1 { 
    transition-delay: 0.1s; 
}

.reveal-delay-2 { 
    transition-delay: 0.2s; 
}

.reveal-delay-3 { 
    transition-delay: 0.3s; 
}

/* ============ RESPONSIVE - TABLET ============ */

@media (max-width: 1024px) {
    .abilities-list { 
        grid-template-columns: repeat(2, 1fr); 
    }

    section {
        padding: 80px 32px;
    }

    .banner {
        padding: 100px 20px 60px;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */

@media (max-width: 768px) {
    nav { 
        padding: 0 16px; 
        height: 60px; 
    }

    .nav-logo { 
        font-size: 20px; 
        letter-spacing: 2px; 
    }

    .nav-links { 
        position: fixed; 
        inset: 0; 
        background: rgba(10, 9, 8, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 28px; 
        opacity: 0; 
        visibility: hidden; 
        transition: all 0.4s ease; 
        padding: 80px 24px; 
    }

    .nav-links.open { 
        opacity: 1; 
        visibility: visible; 
    }

    .nav-links a { 
        font-size: 18px; 
        letter-spacing: 3px; 
    }

    .nav-cta { 
        width: 220px; 
        justify-content: center; 
        text-align: center; 
    }

    .menu-toggle { 
        display: block; 
    }

    .banner { 
        min-height: 100svh; 
        padding: 100px 20px 60px; 
    }

    .banner::before { 
        width: 300px; 
        height: 300px; 
    }

    .banner h1 { 
        font-size: clamp(40px, 12vw, 56px); 
        letter-spacing: 2px; 
    }

    .banner-text { 
        font-size: 15px; 
        margin-bottom: 32px; 
    }

    .banner-buttons { 
        flex-direction: column; 
        width: 100%; 
        max-width: 100%; 
        gap: 12px; 
    }

    .button-main, .button-alt { 
        width: 100%; 
        justify-content: center; 
        padding: 14px 24px; 
    }

    section { 
        padding: 60px 16px; 
    }

    .section-label { 
        font-size: 11px; 
    }

    .section-title { 
        font-size: clamp(28px, 7vw, 36px); 
    }

    .section-desc { 
        font-size: 15px; 
    }

    .metrics { 
        grid-template-columns: repeat(2, 1fr); 
    }

    .metric { 
        padding: 32px 16px; 
    }

    .metric-number { 
        font-size: clamp(32px, 10vw, 44px); 
    }

    .metric-label { 
        font-size: 10px; 
    }

    .abilities-list { 
        grid-template-columns: 1fr; 
        gap: 12px; 
    }

    .ability-item { 
        padding: 28px 20px; 
    }

    .ability-symbol { 
        width: 40px; 
        height: 40px; 
    }

    .ability-item h3 { 
        font-size: 18px; 
    }

    .query-prompt { 
        padding: 18px 16px; 
        font-size: 14px; 
    }

    .query-response-content { 
        padding: 0 16px 18px; 
        font-size: 14px; 
    }

    .supporters-group { 
        grid-template-columns: 1fr; 
        gap: 12px; 
    }

    .action-area {
        padding: 80px 16px;
    }

    .action-area .section-title {
        font-size: 40px;
    }

    .action-options {
        flex-direction: column;
        gap: 12px;
    }

    .action-launch, .action-community {
        width: 100%;
        justify-content: center;
    }

    footer { 
        padding: 28px 16px; 
    }

    .base-primary {
        flex-direction: column;
        gap: 24px;
    }

    .base-columns {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .base-secondary {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .base-secondary-links {
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .nav-logo { 
        font-size: 18px; 
    }

    .banner h1 {
        font-size: clamp(32px, 10vw, 40px);
    }

    section {
        padding: 40px 12px;
    }
}

/* ============ SCROLLBAR STYLING ============ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(247, 161, 46, 0.3);
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(247, 161, 46, 0.6);
}