/* ========================================
   BLACKSITE OPS - JAVIER PROPOSAL
   Complete Stylesheet
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-red: #FF0033;
    --color-cyan: #00FFFF;
    --color-gray: #666666;
    --color-light-gray: #CCCCCC;
    
    /* Fonts */
    --font-primary: 'Inter Tight', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Border Radius */
    --border-radius: 8px;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

/* === GLOBAL RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* === OVERLAYS === */
.scanline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) 50%
    );
    background-size: 100% 4px;
    animation: scanlines 0.5s linear infinite;
    opacity: 0.1;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
}

/* === CONTAINER === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* === TEXT UTILITIES === */
.text-red {
    color: var(--color-red);
}

.text-cyan {
    color: var(--color-cyan);
}

.text-white {
    color: var(--color-white);
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-light-gray);
    text-align: center;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

/* === TERMINAL === */
.ops-terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 0, 51, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 3rem auto;
    max-width: 800px;
    box-shadow: 
        0 0 40px rgba(255, 0, 51, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 0, 51, 0.1);
    border-bottom: 1px solid rgba(255, 0, 51, 0.3);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-red {
    background: #FF5F56;
}

.control-yellow {
    background: #FFBD2E;
}

.control-green {
    background: #27C93F;
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-white);
}

.terminal-body {
    padding: 2rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    line-height: 2;
}

.terminal-video {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.9);
}

/* === HERO SECTION === */
.javier-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(circle at center, rgba(255, 0, 51, 0.15), transparent 70%);
}

.javier-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 51, 0.2);
    border: 2px solid var(--color-red);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-red);
    font-weight: 700;
}

.javier-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.javier-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin-bottom: 3rem;
    max-width: 800px;
}

/* === BUSINESS GRID === */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.business-item {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 1.5rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.business-item:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.business-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.business-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
}

/* === PROBLEM SECTION === */
.problem-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(255, 0, 51, 0.05));
}

.problem-box {
    background: rgba(255, 0, 51, 0.1);
    border: 2px solid var(--color-red);
    border-radius: 8px;
    padding: 3rem;
    margin: 0 auto 3rem;
    max-width: 900px;
}

.problem-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.problem-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 0, 51, 0.3);
    font-size: 1.1rem;
}

.problem-stat:last-child {
    border-bottom: none;
}

.problem-label {
    color: var(--color-white);
    font-weight: 600;
}

.problem-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-red);
}

/* === SOLUTION SECTION === */
.solution-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 0, 51, 0.05), rgba(0, 255, 255, 0.05));
}

.solution-box {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--color-cyan);
    border-radius: 8px;
    padding: 3rem;
    margin: 0 auto;
    max-width: 900px;
}

.solution-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-cyan);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
}

.solution-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    font-size: 1.1rem;
}

.solution-stat:last-child {
    border-bottom: none;
}

.solution-label {
    color: var(--color-white);
    font-weight: 600;
}

.solution-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-cyan);
}

/* === MATH SECTION === */
.math-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent);
}

.math-container {
    max-width: 1000px;
    margin: 0 auto;
}

.math-box {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--color-cyan);
    border-radius: 8px;
    padding: 4rem;
    text-align: center;
}

.math-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--color-white);
}

/* === WHAT YOU GET SECTION === */
.what-you-get {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.05), rgba(0, 0, 0, 0.5));
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0;
    max-width: 1200px;
}

.get-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.get-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.get-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.get-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.get-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-light-gray);
}

/* === CTA SECTION === */
.cta-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(255, 0, 51, 0.2), transparent);
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--color-red);
    border-radius: 8px;
    padding: 4rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.cta-guarantee {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--color-cyan);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-cyan);
    line-height: 1.8;
}

/* === TIMELINE SECTION === */
.timeline-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.timeline-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 0, 51, 0.3);
    border-radius: 8px;
    padding: 3rem;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.timeline-steps {
    display: grid;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.timeline-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    min-width: 120px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 0, 51, 0.3);
    margin-top: 8rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-disclaimer {
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
    .javier-hero {
        min-height: auto;
        padding: 5rem 1.5rem 3rem;
    }

    .javier-title {
        font-size: 2.5rem;
    }

    .javier-subtitle {
        font-size: 1.1rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .get-grid {
        grid-template-columns: 1fr;
    }

    .problem-box,
    .solution-box {
        padding: 2rem;
    }

    .math-box {
        padding: 2rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .timeline-box {
        padding: 2rem;
    }

    .timeline-number {
        font-size: 1.5rem;
        min-width: 80px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .terminal-body {
        padding: 1.5rem;
        font-size: 0.8rem;
        line-height: 1.8;
    }
    
    .terminal-title {
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .javier-title {
        font-size: 2rem;
    }

    .javier-subtitle {
        font-size: 1rem;
    }

    .problem-stat,
    .solution-stat {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .terminal-body {
        padding: 1rem;
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .terminal-header {
        padding: 0.75rem 1rem;
    }
    
    .footer {
        padding: 3rem 0;
    }
    
    .footer-disclaimer,
    .footer-links {
        font-size: 0.85rem;
    }
}
