/* FORCED ELITE GOLD SCROLLBARS - GLOBAL */
* {
    scrollbar-width: auto;
    scrollbar-color: #d4af37 #000000;
}

::-webkit-scrollbar {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
}

::-webkit-scrollbar-track {
    background: #050505 !important;
    border: 1px solid #1a1a1a !important;
}

::-webkit-scrollbar-thumb {
    background: #d4af37 !important; /* THE MOVEABLE THING */
    background-color: #d4af37 !important;
    border-radius: 0px !important;
    border: 3px solid #000000 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #f3e5ab !important;
}

/* Import luxury fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    --bg-dark: #000000;
    --card-bg: #0c0c0c;
    --gold: #d4af37;
    --gold-glow: #f3e5ab;
    --gold-dark: #aa7c11;
    --gold-mute: rgba(212, 175, 55, 0.2);
    --text-light: #f5f5f5;
    --text-muted: #888888;
    --border: #1a1a1a;
}

.tech-mono {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Tactical Scanner Background Logic */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.12), transparent 100%),
        linear-gradient(to right, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;

    -webkit-mask-image: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 30%, transparent 100%);
    mask-image: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 30%, transparent 100%);

    pointer-events: none;
    z-index: -1;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--gold-mute);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

/* Premium Metallic Gradient Class - Fixed for Wrapping */
.metallic-gold {
    background: linear-gradient(to bottom, #bf953f 22%, #fcf6ba 45%, #b38728 50%, #fbf5b7 55%, #aa771c 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.brand-name {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a:hover, nav a.active { color: var(--gold); }
.nav-icon { display: none; width: 20px; height: 20px; }

/* Hero */
.hero {
    padding: 120px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}
.hero p { color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

/* Layout */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

.app-section-container {
    display: flex;
    flex-wrap: nowrap;
    background: var(--card-bg);
    border: 1px solid var(--gold) !important; /* Forced Gold */
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}


.app-info-panel {
    flex: 1.2;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 450px;
}

.showcase-panel {
    flex: 2;
    background: #050505;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
    min-width: 0;
}

/* Slider with Snap */
.preview-slider-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 25px;
    scroll-snap-type: x mandatory;
}

.slider-item {
    flex: 0 0 auto;
    width: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    scroll-snap-align: start;
    border: 1px solid rgba(255,255,255,0.05);
}

.item-wide { width: 450px; }
.item-tall { width: 250px; }
.slider-item img { width: 100%; height: auto; display: block; }

/* Gold Glass Manifesto Box */
.manifesto-box {
    margin-bottom: 60px; /* Increased spacing */
    padding: 30px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.manifesto-box h3 {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1.3;
    margin-bottom: 20px;
}

.manifesto-box p {
    line-height: 1.8; /* Better readability */
    color: var(--text-muted);
}

.manifesto-box:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.06);
}


/* Elite Gold Buttons */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #000 !important;
    padding: 12px 30px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--gold-glow);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Hub Tiles - Glassmorphism */
.hub-tile {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold) !important; /* Forced Gold */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: inherit;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}


/* Tactical Email Link Style */
.email-link {
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
    word-break: break-all; /* Forces wrapping on mobile */
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--gold-glow);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    header { padding: 12px 15px; }
    .nav-text { display: none; }
    .nav-icon { display: block; }
    nav { gap: 15px; }
    .brand-name { font-size: 0.9rem; letter-spacing: 0.5px; }

    /* Email Scale for Mobile */
    .email-link {
        font-size: 1rem !important;
    }


    /* Heading Scale Fix */
    h2 { font-size: 1.8rem !important; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.8rem; letter-spacing: 2px; }

    /* Container & Spacing Fix */
    main.container {
        padding-top: 50px !important; /* Added more space at the top */
        margin-top: 20px !important;
    }

    /* Box Visibility Fix for Mobile */
    .manifesto-box, .faq-item, .support-form-container {
        background: rgba(212, 175, 55, 0.04) !important; /* Reduced "Muddy" look */
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
        padding: 0 !important; /* Reset padding to handle via internal content */
        margin-bottom: 30px !important; /* Better spacing */
    }

    /* Tighten Internal Spacing for Mobile Boxes */
    .manifesto-box { padding: 20px !important; }
    .faq-item summary { padding: 15px 20px !important; }
    .support-form-container { padding: 30px 20px !important; }



    .app-section-container {
        flex-direction: column;
    }

    .app-info-panel { padding: 25px; min-width: unset; }
    .app-info-panel h3 { font-size: 1.6rem !important; }

    .showcase-panel {
        border-left: none;
        border-bottom: 1px solid var(--gold); /* Switched to Gold for Mobile */
        padding: 10px;
        order: -1;
    }


    .slider-item {
        width: 85vw !important;
        max-height: 50vh;
    }
    .slider-item img {
        max-height: 50vh;
        object-fit: contain !important;
    }

    /* Prevent footer blowout */
    footer { padding: 40px 10px; }
    footer span { display: block; margin-top: 10px; }
}


footer {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
