@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Manrope:wght@300;400;600&display=swap');

:root {
    --bg-color: #080808; /* Slightly lighter black for depth */
    --text-main: #ffffff;
    --text-muted: #d0d0d0; /* Significantly brighter for better readability */
    --accent-silver: #f5f5f5; /* Brightened from #e8e8e8 */
    --accent-silver-dim: #a0a0a0; /* Brightened from #909090 */
    --accent-platinum: #E5E4E2;
    --accent-platinum-glow: rgba(229, 228, 226, 0.7);
    --accent-gold: #E5E4E2; /* Deprecated: Mapped to Platinum */
    --glass-bg: rgba(255, 255, 255, 0.05); /* Increased opacity */
    --glass-border: rgba(255, 255, 255, 0.2); /* Increased visibility */
    --font-main: 'Manrope', sans-serif;
    --font-display: 'Cinzel', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: var(--bg-color); 
    color: var(--text-main); 
    font-family: var(--font-main); 
    overflow-x: hidden; 
    line-height: 1.7; /* Increased line-height for readability */
    font-size: 17px; /* Slightly larger base font size */
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; color: var(--text-main); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.text-silver { color: var(--accent-silver); }
.text-platinum { color: var(--accent-platinum); }
.border-platinum { border-color: var(--accent-platinum) !important; }
.text-muted { color: var(--text-muted); }

/* Platinum Button */
.btn-platinum {
    padding: 1rem 2rem;
    border: 1px solid var(--accent-platinum);
    background: transparent;
    color: var(--accent-platinum);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
}
.btn-platinum:hover {
    background: var(--accent-platinum);
    color: #000;
    box-shadow: 0 0 20px rgba(229, 228, 226, 0.4);
}
.w-full { width: 100%; }
.mt-1 { margin-top: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }
.mt-3 { margin-top: 3rem; }
.mt-6 { margin-top: 6rem; }
.overflow-hidden { overflow: hidden; }
.relative-z2 { position: relative; z-index: 2; }
.text-sm { font-size: 0.8rem; }

.pt-0 { padding-top: 0 !important; }
.canvas-background { 
    position: fixed !important; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    z-index: -1; 
    pointer-events: none;
}
.footer-location-text { font-size: 0.8rem; letter-spacing: 0.1em; }
.status-online { color: #00ff00; }
.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 4rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; max-width: 1000px; margin: 0 auto; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Global Network */
.city-name { font-size: 1.5rem; letter-spacing: 0.1em; color: var(--accent-silver); }
.city-divider { width: 1px; height: 30px; background: var(--accent-silver-dim); }
@media (max-width: 600px) { .city-divider { display: none; } .city-name { width: 100%; margin-bottom: 1rem; } }

/* Links */
.link-underline { margin-top: 2rem; display: inline-block; border-bottom: 1px solid var(--accent-silver); }
.hover-arrow { transition: 0.3s; display: inline-block; }
.hover-arrow:hover { transform: translateX(5px); color: #fff; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

/* Ultra Luxury Trillionaire Cursor System */
/* Removed cursor: none to make default arrow visible */
/*
body.custom-cursor-active,
body.custom-cursor-active * {
    cursor: none !important;
}
*/

.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999;
}

/* The "B" Core - The Sovereign Jewel */
.cursor-dot {
    width: auto; height: auto;
    background: transparent;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 24px; /* Increased visibility */
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    mix-blend-mode: normal;
    transition: transform 0.1s;
    z-index: 10000;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(232, 232, 232, 0.6);
}
.cursor-dot::after { 
    content: 'B'; 
    animation: text-pulse 4s ease-in-out infinite;
    background: linear-gradient(135deg, #fff 0%, #ffffff 50%, #d0d0d0 100%); /* Brighter gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Main Capsule Container */
.cursor-outline {
    width: 80px; height: 80px; /* Increased size for presence */
    background: transparent;
    /* transition: all 0.6s ... REMOVED to prevent conflict with GSAP */
    display: flex; align-items: center; justify-content: center;
}

/* 0. Ethereal Halo (Divine Presence) */
.c-halo {
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 70%);
    animation: halo-breathe 6s ease-in-out infinite;
    pointer-events: none;
}

/* 1. Brushed Platinum Ring (The Chassis) */
.c-ring-outer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    border-top: 1px solid var(--accent-silver);
    border-bottom: 1px solid var(--accent-silver);
    box-shadow: 0 0 20px rgba(255,255,255,0.05), inset 0 0 20px rgba(255,255,255,0.02);
    animation: gyro-spin 12s linear infinite; /* Slower, heavier spin */
}

/* 2. Chronometer Ticks (The Mechanism) */
.c-ring-inner {
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    -webkit-mask: conic-gradient(from 0deg, transparent 0%, #000 2%, transparent 4%);
    mask: conic-gradient(from 0deg, transparent 0%, #000 2%, transparent 4%);
    mask-size: 100% 100%;
    border: 1px solid rgba(255,255,255,0.4);
    animation: gyro-spin 20s linear infinite reverse;
}

/* 3. Floating Gems (The Wealth) */
.c-gem-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    animation: gyro-spin 12s linear infinite;
}
.c-gem {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--accent-platinum);
}
.c-gem.n { top: -2px; left: 50%; transform: translateX(-50%); }
.c-gem.s { bottom: -2px; left: 50%; transform: translateX(-50%); }
.c-gem.e { right: -2px; top: 50%; transform: translateY(-50%); }
.c-gem.w { left: -2px; top: 50%; transform: translateY(-50%); }

/* 4. Light Scanner (The Intelligence) */
.c-radar {
    position: absolute;
    top: 50%; left: 50%;
    width: 140%; height: 140%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent 0%, transparent 90%, rgba(255,255,255,0.08) 100%);
    border-radius: 50%;
    animation: radar-sweep 6s linear infinite;
    opacity: 0.3;
}

/* 5. Target Lock Corners (The Power) */
.c-corners {
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: scale(1.1) rotate(45deg); /* Diamond orientation */
}
.c-corner {
    position: absolute;
    width: 15px; height: 15px;
    border: 1px solid var(--accent-platinum);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.6;
}
.c-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.c-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.c-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.c-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Animation Keyframes */
@keyframes gyro-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes radar-sweep { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes text-pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(255,255,255,0.6); }
    50% { opacity: 0.8; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
}
@keyframes halo-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Interactive Hover State - Stealth Compass (Matte & Decent) */
body.hovering .cursor-outline {
    width: 76px; height: 76px; /* Decent size */
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(1px);
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: none;
}

/* Common Compass Style */
body.hovering .c-ring-outer,
body.hovering .c-ring-inner,
body.hovering .c-radar,
body.hovering .c-gem-container {
    opacity: 1;
    background: transparent;
    border-radius: 50%;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    mask: none; -webkit-mask: none;
    box-shadow: none;
}

/* Orbit 1: Heading Ring (Outer) - Matte */
body.hovering .c-ring-outer {
    border: 1px solid rgba(255,255,255,0.15);
    border-top: 1px solid rgba(255,255,255,0.5); /* Subtle heading marker */
    animation: compass-spin-slow 20s linear infinite;
    opacity: 0.8;
}
body.hovering .c-ring-outer::before { display: none; }
body.hovering .c-ring-outer::after {
    content: ''; position: absolute; top: -2px; left: 50%; width: 4px; height: 4px;
    background: #fff; border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: none;
}

/* Orbit 2: Gyroscope - Fine Detail */
body.hovering .c-ring-inner {
    border: 1px solid rgba(255,255,255,0.1);
    transform: scale(0.75);
    animation: compass-gyro 10s ease-in-out infinite;
}
body.hovering .c-ring-inner::after {
    content: ''; position: absolute; inset: 0;
    border-left: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: spin-reverse 15s linear infinite;
}

/* Orbit 3: The Needle (Scanner) - Minimalist */
body.hovering .c-radar {
    border: none;
    animation: compass-needle-jitter 5s ease-in-out infinite;
}
body.hovering .c-radar::before {
    content: ''; position: absolute; top: 18%; left: 50%; width: 1px; height: 32%;
    background: rgba(255,255,255,0.8); /* White needle, not red */
    transform: translateX(-50%);
    box-shadow: none;
}
body.hovering .c-radar::after {
    content: ''; position: absolute; bottom: 18%; left: 50%; width: 1px; height: 32%;
    background: rgba(255,255,255,0.2);
    transform: translateX(-50%);
}

/* Orbit 4: Clean Container (No Text) */
body.hovering .c-gem-container {
    border: 1px dashed rgba(255,255,255,0.15);
    transform: scale(0.5);
    animation: compass-spin-slow 30s linear infinite reverse;
}
body.hovering .c-gem { display: none; } /* Text Removed */

/* Nucleus (Pivot) - Matte Dot */
body.hovering .cursor-dot {
    width: 4px; height: 4px;
    background: #fff;
    border: none;
    z-index: 10020;
    box-shadow: none;
    animation: none;
    opacity: 0.8;
}

/* Halo - Very Subtle */
body.hovering .c-halo {
    border: none;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(1.2);
    animation: halo-pulse-refined 4s ease-in-out infinite;
}

/* Compass Animations */
@keyframes compass-spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes compass-gyro {
    0% { transform: scale(0.75) rotateX(60deg) rotateZ(0deg); }
    50% { transform: scale(0.75) rotateX(45deg) rotateZ(180deg); }
    100% { transform: scale(0.75) rotateX(60deg) rotateZ(360deg); }
}
@keyframes compass-needle-jitter {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(3deg); }
    20% { transform: rotate(-2deg); }
    30% { transform: rotate(1deg); }
    40% { transform: rotate(-3deg); }
    50% { transform: rotate(4deg); }
    60% { transform: rotate(-2deg); }
    70% { transform: rotate(2deg); }
    80% { transform: rotate(-1deg); }
    90% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}
@keyframes halo-rotate {
    0% { transform: translate(-50%, -50%) scale(1.4) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1.4) rotate(360deg); }
}
@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* Retain previous animations just in case */
@keyframes complex-spin-cw { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse-border-refined { 0% { border-color: rgba(255,255,255,0.2); } 100% { border-color: rgba(255,255,255,0.5); } }
@keyframes halo-pulse-refined {
    0%, 100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(2.2); opacity: 0.1; }
}

@media (max-width: 900px) { .cursor-dot, .cursor-outline { display: none; } }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-full { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 8rem 0 16rem 0; position: relative; }
.section-cinematic { padding: 8rem 0; position: relative; }
.section-xl { padding: 12rem 0; position: relative; }
.grid { display: grid; gap: 4rem; }
.grid-2-responsive { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { 
    .grid-2-responsive { grid-template-columns: 1fr; gap: 4rem; } 
    .grid-3 { grid-template-columns: 1fr; }
    .section-full { padding: 6rem 0; }
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.gap-sm { gap: 0.5rem; }
.gap-2 { gap: 2rem; }
.gap-4 { gap: 4rem; }
.gap-6 { gap: 6rem; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 1rem auto; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; transition: 0.3s; }
.navbar.scrolled { padding: 1.5rem 3rem; background: rgba(8,8,8,0.9); backdrop-filter: blur(10px); mix-blend-mode: normal; border-bottom: 1px solid var(--glass-border); }
.logo { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.2em; font-weight: 700; }
.desktop-menu { display: flex; gap: 3rem; }
.nav-item { position: relative; }
.nav-item > a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.nav-item > a:hover { opacity: 1; }
.dropdown { position: absolute; top: 100%; left: -1rem; background: rgba(5,5,5,0.95); padding: 1.5rem; min-width: 200px; display: none; border: 1px solid var(--glass-border); flex-direction: column; gap: 0.5rem; backdrop-filter: blur(10px); }
.nav-item:hover .dropdown { display: flex; }
.dropdown a { font-size: 0.8rem; color: var(--text-muted); display: block; padding: 0.5rem 0; }
.dropdown a:hover { color: var(--text-main); padding-left: 0.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.nav-toggle span { width: 30px; height: 2px; background: var(--text-main); transition: 0.3s; }
@media (max-width: 900px) { 
    .desktop-menu { display: none; } 
    .nav-toggle { display: flex; } 
    .navbar { padding: 1.5rem 2rem; }
}

/* Mobile Menu */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-color); z-index: 90; transform: translateY(-100%); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column; justify-content: center; align-items: center; }
.menu-overlay.active { transform: translateY(0); }
.menu-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.menu-item { font-family: var(--font-display); font-size: 2rem; color: var(--text-main); }
.mobile-sublinks { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.mobile-sublinks a { font-size: 1rem; color: var(--text-muted); }

/* Components */
.btn { padding: 1rem 2rem; border: 1px solid var(--accent-silver); background: transparent; color: var(--accent-silver); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; display: inline-block; transition: 0.3s; }
.btn:hover { background: var(--accent-silver); color: var(--bg-color); }
.btn-link { padding: 1rem 2rem; color: var(--accent-silver); font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; display: inline-block; transition: 0.3s; border-bottom: 1px solid transparent; }
.btn-link:hover { border-bottom: 1px solid var(--accent-silver); }

/* Updated Glass Card (Brighter/Decent) */
.glass-card { 
    background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border); 
    padding: 3rem; 
    backdrop-filter: blur(12px); 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 900px) { .glass-card { padding: 2rem; } }
.glass-card:hover { 
    border-color: rgba(255,255,255,0.4); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.glass-card-large { padding: 4rem; }

/* ULTRA GLASS CARD - The Bestest Design Ever */
.glass-card-ultra {
    position: relative;
    background: linear-gradient(165deg, rgba(255,255,255,0.08) 0%, rgba(10,10,10,0.6) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3.5rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.glass-card-ultra::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-silver), transparent);
    opacity: 0.3;
    transition: opacity 0.3s;
}
.glass-card-ultra::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-silver), transparent);
    opacity: 0.1;
    transition: opacity 0.3s;
}
.glass-card-ultra:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6), 0 0 30px rgba(255,255,255,0.05);
}
.glass-card-ultra:hover::before { opacity: 0.8; }
.glass-card-ultra:hover::after { opacity: 0.5; }

.ultra-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-silver);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    transition: transform 0.5s;
}
.glass-card-ultra:hover .ultra-icon {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}
.bento-span-2 {
    grid-column: span 2;
}
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-span-2 {
        grid-column: span 1;
    }
}

/* Live Data Visuals */
.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}
.text-blink { animation: blink-text 2s infinite; }
@keyframes blink-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}
.data-stream-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-platinum), transparent);
    width: 100%;
    opacity: 0.5;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}
.data-stream-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: scan 2s infinite linear;
}
@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Holographic / Tech Cards */
.holographic-card {
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 2.5rem;
    overflow: hidden;
}
.tech-border-corners {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
}
.tech-border-corners::before {
    content: ''; position: absolute; top: 0; left: 0; width: 20px; height: 20px;
    border-top: 1px solid var(--accent-silver); border-left: 1px solid var(--accent-silver);
}
.tech-border-corners::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 20px; height: 20px;
    border-bottom: 1px solid var(--accent-silver); border-right: 1px solid var(--accent-silver);
}
.corners-bottom::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 20px; height: 20px;
    border-bottom: 1px solid var(--accent-silver); border-left: 1px solid var(--accent-silver);
}
.grid-split-responsive { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
@media (max-width: 900px) { .grid-split-responsive { grid-template-columns: 1fr; gap: 2rem; } }

/* Watermark */
.watermark-number {
    position: absolute; top: -2rem; right: -1rem; font-family: var(--font-display); font-size: 10rem; color: rgba(255,255,255,0.03); font-weight: 700; pointer-events: none; z-index: 0;
}

/* Scroll Indicator - Updated for Spacing & Look */
.scroll-indicator { 
    opacity: 0.8; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    pointer-events: none; /* Prevent interference */
}
.scroll-text {
    font-size: 0.75rem; 
    letter-spacing: 0.5em; 
    color: var(--accent-silver);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.scroll-line { width: 1px; height: 80px; background: linear-gradient(to bottom, var(--accent-silver), transparent); margin: 0 auto; animation: scrollDown 2s infinite; }
@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.absolute-bottom-center { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); width: 100%; display: flex; justify-content: center; }

/* Ultra Luxury Buttons */
.btn-luxury-primary {
    position: relative;
    padding: 1.2rem 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-luxury-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: #fff;
    z-index: -1;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-luxury-primary:hover {
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-luxury-primary:hover::before {
    width: 100%;
}

.btn-luxury-secondary {
    position: relative;
    padding: 1rem 0;
    background: transparent;
    color: var(--accent-silver);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-luxury-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-silver), transparent);
    transition: all 0.4s ease;
    opacity: 0.5;
}

.btn-luxury-secondary:hover {
    color: #fff;
    letter-spacing: 0.25em;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.btn-luxury-secondary:hover::after {
    opacity: 1;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    width: 120%; /* Expands slightly */
    left: -10%;
}

.btn-icon-arrow {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 1.2em;
    opacity: 0;
    transform: translateX(-10px);
}

.btn-luxury-secondary:hover .btn-icon-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Status Badge */
.status-badge { 
    display: inline-block; padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.2); 
    font-family: monospace; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2rem; backdrop-filter: blur(5px);
}
.bg-dim { background: rgba(255,255,255,0.05); }

/* Divider */
.divider-vertical { width: 1px; height: 60px; background: var(--accent-silver); margin: 2rem auto; }
.divider-vertical-gradient { width: 1px; height: 100px; background: linear-gradient(to bottom, var(--accent-silver), transparent); margin: 2rem auto; }
.divider-silver { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-silver), transparent); opacity: 0.3; margin: 4rem 0; }

/* Footer */
.footer-cinematic { padding: 6rem 0; background: linear-gradient(to top, #000, transparent); position: relative; z-index: 10; }
.footer-cta { text-align: center; margin-bottom: 4rem; }
.footer-heading { font-size: 3rem; margin-bottom: 2rem; color: var(--accent-platinum); }
.footer-grid-luxury { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; }
@media (max-width: 900px) { .footer-grid-luxury { grid-template-columns: 1fr; gap: 3rem; text-align: center; } }
.footer-col h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 2rem; color: var(--accent-silver); }
.footer-nav li { margin-bottom: 1rem; }
.footer-nav a { color: var(--text-muted); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--text-main); padding-left: 5px; }
.footer-logo-lg { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: block; margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); opacity: 0.6; margin-top: 2rem; }
@media (max-width: 900px) { .footer-bottom { flex-direction: column; gap: 1rem; } }
.separator { margin: 0 0.5rem; }

/* Reveal Text Animation */
.reveal-text { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); animation: revealUp 1s cubic-bezier(0.77, 0, 0.175, 1) forwards; }
@keyframes revealUp { from { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); transform: translateY(50px); opacity: 0; } to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); transform: translateY(0); opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Utility */
.max-w-700 { max-width: 700px; margin: 0 auto; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.text-lg-relaxed { font-size: 1.25rem; line-height: 1.8; }
.quote-silver { font-family: var(--font-display); font-style: italic; }
.glow-text { text-shadow: 0 0 20px rgba(255,255,255,0.4); }

/* Ticker */
.ticker-wrap { position: fixed; bottom: 0; width: 100%; overflow: hidden; height: 3rem; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); border-top: 1px solid var(--glass-border); z-index: 80; display: flex; align-items: center; }
.ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item { padding: 0 2rem; color: var(--text-muted); font-family: monospace; font-size: 0.8rem; }
.ticker-item span { color: var(--accent-silver); font-weight: bold; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Live HUD */
.hud-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.hud-top-left, .hud-top-right, .hud-bottom-left, .hud-bottom-right { position: absolute; font-family: monospace; font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.hud-top-left { top: 2rem; left: 2rem; }
.hud-top-right { top: 2rem; right: 2rem; text-align: right; }
.hud-bottom-left { bottom: 5rem; left: 2rem; }
.hud-bottom-right { bottom: 5rem; right: 2rem; text-align: right; }
.hud-row { margin-bottom: 0.5rem; }
.hud-label { color: var(--accent-silver-dim); }
.hud-value { color: var(--accent-silver); }

/* Custom Utilities for Ultra Layouts */
.glass-panel-inner {
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
}
.border-l-platinum-opacity {
    border-left: 1px solid rgba(229, 228, 226, 0.3);
}
.card-title-large {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-display);
    line-height: 1.1;
}
.feature-list-styled li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.h-px { height: 1px; }
.w-20 { width: 5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.leading-relaxed { line-height: 1.625; }
.bg-platinum { background-color: var(--accent-platinum); }
.bg-silver { background-color: var(--accent-silver); }
.tracking-widest { letter-spacing: 0.2em; }

/* Unique Case Study Dossier Style - Added for case-studies.html uniqueness */
.case-study-dossier {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--accent-platinum);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-dossier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.case-study-dossier::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--accent-platinum);
    box-shadow: 0 0 10px var(--accent-platinum);
}
.dossier-header {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.dossier-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}
@media (max-width: 900px) { .dossier-body { grid-template-columns: 1fr; } }

.dossier-main {
    padding: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
@media (max-width: 900px) { .dossier-main { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } }

.dossier-stats {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dossier-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.dossier-sector {
    font-family: monospace;
    color: var(--accent-platinum);
    font-size: 0.8rem;
    margin-bottom: 2rem;
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.dossier-brief {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 95%;
    font-size: 0.95rem;
}
.dossier-brief .label {
    color: var(--accent-silver);
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}
.stat-row:last-child { border-bottom: none; margin-bottom: 0; }
.stat-label {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.stat-value {
    font-family: var(--font-display);
    color: var(--accent-platinum);
    font-size: 1.1rem;
    text-align: right;
}

.dossier-footer {
    padding: 0.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    text-align: right;
}
.approved-stamp {
    display: inline-block;
    color: var(--accent-platinum);
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

/* Specific styling for the large number watermark if needed */
.dossier-watermark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    pointer-events: none;
}

/* =========================================
   Ultra Luxury Audio Control System
   ========================================= */
.audio-control {
    position: fixed;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    mix-blend-mode: difference; /* High contrast against any bg */
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audio-control:hover {
    transform: scale(1.05);
}

.audio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.audio-bar {
    width: 3px;
    background-color: #fff;
    height: 100%;
    animation: audio-wave 1s ease-in-out infinite;
    animation-play-state: paused;
}

.audio-bar:nth-child(1) { height: 40%; animation-duration: 0.8s; }
.audio-bar:nth-child(2) { height: 100%; animation-duration: 1.1s; }
.audio-bar:nth-child(3) { height: 60%; animation-duration: 0.9s; }
.audio-bar:nth-child(4) { height: 80%; animation-duration: 1.2s; }

.audio-text {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.audio-control:hover .audio-text {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@keyframes audio-wave {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .audio-control {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .audio-text {
        display: none; /* Icon only on mobile */
    }
}
