/* Elite Protocol Stylesheet */

:root {
    --void-black: #000000;
    --gunmetal: #0F172A;
    --cool-white: #F8FAFC;
    --muted-grey: #94A3B8;
    --electric-blue: #3B82F6;
    --signal-white: #FFFFFF;
    --gold-accent: #D4AF37;
    --dark-surface: #1E293B;
    --optimal-green: #10B981;
    --warning-amber: #F59E0B;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--gunmetal);
    color: var(--muted-grey);
    line-height: 1.7;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3 {
    font-family: 'Space Mono', monospace;
    color: var(--cool-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.section-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.emphasis {
    color: var(--cool-white);
    font-weight: 600;
}

.highlight {
    color: var(--electric-blue);
    font-weight: 600;
}

.protocol-text {
    font-family: 'Space Mono', monospace;
    color: var(--electric-blue);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    
    /* The Magic: A dark gradient sits ON TOP of your image */
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%),
        url('assets/neural.png');
    
    /* Technical settings for the "Premium" feel */
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 8s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: -300%;
    left: -50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
    opacity: 0.2;
    animation: scan 8s linear infinite;
    pointer-events: none;
    filter: none;
    border-radius: 0;
}

@keyframes scan {
    0% { top: -300%; }
    100% { top: 300%; }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-headline {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--muted-grey);
}

.hero-hook {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cool-white);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
}

.philosophy-section .section-content {
    position: relative;
    z-index: 2;
}

.philosophy-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

/* Protocol Section */
.protocol-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
    /* To add background image, uncomment below and add your image:
    background: 
        linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)),
        url('assets/protocol-bg.png');
    background-size: cover;
    background-position: center;
    */
}

.protocol-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.protocol-phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.phase {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.phase:hover {
    border-color: var(--electric-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.phase-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    color: var(--electric-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.phase h3 {
    color: var(--cool-white);
    margin-bottom: 0.75rem;
}

.phase p {
    color: var(--muted-grey);
    font-size: 1.05rem;
}

.protocol-conclusion {
    font-size: 1.25rem;
    text-align: center;
    color: var(--cool-white);
    font-weight: 300;
}

/* Service Section - HUD Interface */
.service-section {
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
}

.service-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.hud-interface {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(59, 130, 246, 0.15),
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
}

.hud-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    padding-bottom: 0.5rem;
}

.hud-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    color: var(--cool-white);
    letter-spacing: 0.15em;
    font-weight: 700;
}

.hud-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--optimal-green);
    letter-spacing: 0.1em;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hud-section-label {
    font-size: 0.75rem;
    color: var(--muted-grey);
    letter-spacing: 1px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.3);
    padding-bottom: 2px;
}

.hud-content {
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
}

.hud-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.hud-metric-box {
    background: rgba(30, 41, 59, 0.5);
    padding: 10px;
    border-left: 2px solid var(--electric-blue);
}

.metric-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--muted-grey);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--cool-white);
}

.sub-value {
    font-size: 0.8rem;
    color: var(--muted-grey);
    font-weight: normal;
}

.highlight {
    color: var(--optimal-green);
}

.data-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.data-line:last-child {
    border-bottom: none;
}

.timestamp {
    color: var(--muted-grey);
    margin-right: 10px;
    min-width: 60px;
}

.metric {
    color: var(--muted-grey);
    margin-right: 10px;
}

.value {
    text-align: right;
    flex-grow: 1;
    color: var(--cool-white);
}

.value.directive {
    font-family: monospace;
    line-height: 1.4;
    text-align: left;
}

.status {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.status.optimal {
    color: var(--optimal-green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status.warning {
    color: var(--warning-amber);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-conclusion {
    margin-top: 2rem;
}

.final-line {
    font-size: 1.25rem;
    color: var(--cool-white);
    font-weight: 300;
    margin-top: 2rem;
    font-style: italic;
}

/* Outcome Section */
.outcome-section {
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
}

.outcome-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    text-align: center;
}

.outcome-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.metric-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--electric-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(200%);
}

.metric-card h3 {
    color: var(--cool-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.metric-card p {
    color: var(--muted-grey);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Origin Section */
.origin-section {
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
}

.origin-section .section-content {
    max-width: 800px;
}

.origin-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

.origin-name {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.origin-statement {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin: 2rem 0 3rem;
    color: var(--cool-white);
    font-weight: 300;
}

.origin-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.origin-conclusion {
    margin-top: 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cool-white);
}

/* CTA Section */
.cta-section {
    background: radial-gradient(ellipse at center, #1e293b 0%, #0f172a 40%, #000000 80%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-headline {
    font-size: 1.5rem;
    color: var(--cool-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.elite-cta {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.elite-cta:hover {
    background: var(--gold-accent);
    color: #000000;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.elite-cta:active {
    transform: translateY(0);
}

.cta-subtext {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--muted-grey);
    font-style: italic;
}

/* Footer */
.elite-footer {
    padding: 2rem;
    text-align: center;
    background: var(--void-black);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.elite-footer p {
    font-size: 0.875rem;
    color: var(--muted-grey);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-hook {
        font-size: 1.125rem;
    }

    .protocol-phases {
        gap: 1.5rem;
    }

    .phase {
        padding: 1.5rem;
    }

    .phase-number {
        font-size: 2rem;
    }

    .data-line {
        flex-wrap: wrap;
        font-size: 0.8rem;
    }

    .timestamp {
        min-width: 50px;
    }

    .metric {
        min-width: 100px;
    }

    .status {
        margin-top: 0.5rem;
        width: 100%;
    }

    .elite-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .protocol-phases {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .section-content {
        max-width: 1100px;
    }
}
