/* --- Root & Elite Typography --- */
:root {
    --elite-orange: #FF4500;
    --zinc-metal: #27272a;
}

body {
    background-color: #000;
    font-family: 'Inter', sans-serif;
    background-image: radial-gradient(circle at 50% -20%, #1a1a1a 0%, #000 60%);
}

/* --- THE CHROME HEADER EFFECT --- */
.elite-strategy-header {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    position: relative;
    background: linear-gradient(
        to bottom, 
        #ffffff 0%, 
        #f4f4f5 40%, 
        #a1a1aa 45%, 
        #3f3f46 50%, 
        #71717a 55%, 
        #e4e4e7 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.2));
}

.elite-strategy-header::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 55%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    animation: shine 8s infinite ease-in-out;
}

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

/* --- HUD Components --- */
.elite-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #71717a;
    transition: 0.3s;
}

.nav-link:hover { color: #fff; }

.elite-status-btn {
    border: 1px solid var(--elite-orange);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 900;
    color: var(--elite-orange);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--elite-orange);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* --- Layout Elements --- */
.elite-briefing-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--elite-orange);
    padding: 24px;
    position: relative;
}

.brief-label {
    font-family: 'Orbitron';
    font-size: 9px;
    text-transform: uppercase;
    color: var(--elite-orange);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.stat-box {
    background: #09090b;
    border: 1px solid #18181b;
    padding: 20px;
    border-radius: 4px;
}

.stat-label {
    display: block;
    font-size: 8px;
    color: #52525b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-value {
    font-family: 'Orbitron';
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- Section Modules --- */
.step-module { border-top: 1px solid #18181b; padding-top: 12; }

.step-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.step-num {
    font-family: 'Orbitron';
    font-size: 0.8rem;
    padding: 4px 10px;
    border: 1px solid #27272a;
}

.step-title {
    font-family: 'Orbitron';
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.visual-container {
    margin-top: 24px;
    background: #080808;
    padding: 10px;
    border: 1px solid #1a1a1a;
    clip-path: polygon(0 0, 97% 0, 100% 5%, 100% 100%, 3% 100%, 0 95%);
}

.elite-img {
    width: 100%;
    filter: grayscale(40%);
    transition: 0.5s;
}

.visual-container:hover .elite-img { filter: grayscale(0%); }

.header-sub-line { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 10px; }
.header-sub-line .line { height: 1px; width: 60px; background: #27272a; }

.footer-elite {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #0f0f0f;
}