/* SHANE BARRON - Clean CSS
   Rebuilt from bloated 9600+ line original
   ========================================== */

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
    /* Colors - Original palette */
    --black: #000;
    --white: #fff;
    --neon: #BFFF00;
    --pink: #FF10F0;
    --yellow: #FFE500;
    --red: #FF0040;
    --cyan: #00FFFF;
    --purple: #8B00FF;

    /* JARVIS theme colors */
    --jarvis-cyan: #00d4ff;
    --jarvis-cyan-dim: rgba(0, 212, 255, 0.5);
    --jarvis-cyan-glow: rgba(0, 212, 255, 0.3);
    --jarvis-dark: rgba(0, 20, 40, 0.9);
    --jarvis-panel: rgba(0, 30, 50, 0.85);
    --jarvis-border: rgba(0, 212, 255, 0.4);
    --jarvis-text: rgba(220, 240, 255, 0.95);
    --jarvis-text-dim: rgba(180, 220, 240, 0.7);

    /* Neutral colors */
    --ash: rgba(100, 100, 100, 0.3);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

html {
    scroll-behavior: auto;
    background: #000;
    overflow-x: hidden;
}

body {
    background: transparent;
    color: var(--white);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   SCROLLBAR STYLING
   ========================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 20, 30, 0.8);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), rgba(0, 255, 255, 0.4));
    border-radius: 5px;
    border: 2px solid rgba(0, 20, 30, 0.8);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyan), rgba(0, 255, 255, 0.7));
    box-shadow: 0 0 10px var(--cyan);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 20, 30, 0.8);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(0, 20, 30, 0.8);
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
.sr-only, .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   VIDEO BACKGROUND
   ========================================== */
.vision-video-bg {
    position: fixed;
    inset: 0;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
    animation: video-drift-pause 60s ease-in-out infinite;
}

@keyframes video-drift-pause {
    0% { object-position: 50% 50%; }
    5% { object-position: 50% 50%; }
    15% { object-position: 45% 45%; }
    25% { object-position: 45% 45%; }
    35% { object-position: 55% 48%; }
    40% { object-position: 50% 50%; }
    50% { object-position: 50% 50%; }
    60% { object-position: 48% 55%; }
    70% { object-position: 50% 50%; }
    80% { object-position: 52% 45%; }
    90% { object-position: 50% 50%; }
    100% { object-position: 50% 50%; }
}

/* Viewport glass overlay - disabled */
.viewport-glass {
    display: none;
}

/* ==========================================
   HUD ELEMENTS
   ========================================== */
.viewport-hud-tl,
.viewport-hud-tr,
.viewport-hud-bl,
.viewport-hud-br {
    position: fixed;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(0, 212, 255, 0.4);
    z-index: 100;
    pointer-events: none;
}

.viewport-hud-tl { top: 20px; left: 20px; }
.viewport-hud-tr { top: 20px; right: 20px; }
.viewport-hud-bl { bottom: 20px; left: 20px; }
.viewport-hud-br { bottom: 20px; right: 20px; }

/* ==========================================
   NAVIGATION
   ========================================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--jarvis-border);
}

.nav-logo {
    font-family: 'Orbitron', 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 20px var(--jarvis-cyan-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-text-dim);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

.nav-cta {
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
}

.nav-cta:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--jarvis-cyan);
}

/* ==========================================
   MAIN CONTENT CONTAINER
   ========================================== */
.the-whole-damn-thing {
    position: relative;
    z-index: 2;
}

.main {
    opacity: 0;
    transition: opacity 0.5s;
}

.main.visible {
    opacity: 1;
}

/* ==========================================
   SCROLL INDICATOR
   ========================================== */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--jarvis-text-dim);
}

.scroll-indicator-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--jarvis-cyan);
    border-bottom: 2px solid var(--jarvis-cyan);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* ==========================================
   HERO SECTION - VISION
   ========================================== */
.vision-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
    position: relative;
}

.hero-vision {
    position: relative;
}

/* Two-column hero layout */
.hero-columns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Vision intro text */
.intro-greeting {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-text-dim);
    margin-bottom: 20px;
}

.intro-greeting-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.i-am-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--jarvis-text);
    white-space: nowrap;
}

.vision-logo {
    height: 50px;
    width: auto;
}

.vision-human {
    font-size: 1rem;
    color: var(--jarvis-text-dim);
    margin-bottom: 15px;
}

.vision-human .highlight {
    color: var(--jarvis-cyan);
}

.vision-tagline {
    font-size: 1.1rem;
    color: var(--jarvis-text);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Vision eye */
.vision-eye {
    width: 350px;
    height: 350px;
    position: relative;
    animation: vision-fly-in 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes vision-fly-in {
    0% {
        opacity: 0;
        transform: translateX(-100vw) rotate(-180deg) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateX(20px) rotate(10deg) scale(1.1);
    }
    80% {
        transform: translateX(-10px) rotate(-5deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

.eye-outer {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a2040 0%, #0a0a20 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 80px rgba(0, 255, 255, 0.4),
        0 0 150px rgba(0, 255, 255, 0.2),
        inset 0 0 80px rgba(0, 255, 255, 0.1);
    animation: eye-pulse 3s ease infinite, eye-scan 10s ease infinite;
    position: relative;
}

.eye-outer::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: eye-ring-rotate 10s linear infinite;
}

.eye-outer::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid var(--pink);
    border-radius: 50%;
    opacity: 0.2;
    animation: eye-ring-rotate 15s linear infinite reverse;
}

@keyframes eye-ring-rotate {
    0% { transform: rotate(0deg); border-style: dashed; }
    100% { transform: rotate(360deg); }
}

@keyframes eye-pulse {
    0%, 100% {
        box-shadow:
            0 0 80px rgba(0, 255, 255, 0.4),
            0 0 150px rgba(0, 255, 255, 0.2),
            inset 0 0 80px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 0 120px rgba(0, 255, 255, 0.6),
            0 0 200px rgba(0, 255, 255, 0.3),
            inset 0 0 100px rgba(0, 255, 255, 0.2);
    }
}

@keyframes eye-scan {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.eye-inner {
    width: 60%;
    height: 60%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at center, var(--cyan) 0%, #006666 40%, #003333 70%, #001515 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        inset 0 0 30px rgba(0,0,0,0.5),
        0 0 20px var(--cyan);
    transition: transform 0.15s ease-out;
}

.eye-inner::before {
    content: '';
    position: absolute;
    inset: 5%;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: iris-pulse 2s ease infinite;
}

@keyframes iris-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(0.95); opacity: 0.5; }
}

.eye-pupil {
    width: 45%;
    height: 45%;
    background: radial-gradient(ellipse at 30% 30%, #222 0%, #000 100%);
    border-radius: 50%;
    transition: transform 0.1s ease-out;
    position: relative;
}

.eye-pupil::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
}

.eye-pupil::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 15%;
    height: 15%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

/* Ripple effect on click */
.eye-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: eye-ripple-expand 1s ease-out forwards;
    pointer-events: none;
}

@keyframes eye-ripple-expand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
        border-width: 1px;
    }
}

/* Pupil animation - looking around with pauses */
#vision-eye .eye-pupil {
    background: radial-gradient(circle, #000000 0%, #000000 60%, #001111 100%) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8) !important;
    animation: pupil-look-pause 15s ease-in-out infinite !important;
}

@keyframes pupil-look-pause {
    0% { transform: translate(0, 0); }
    10% { transform: translate(0, 0); }
    18% { transform: translate(-22px, -12px); }
    25% { transform: translate(-22px, -12px); }
    30% { transform: translate(0, 0); }
    40% { transform: translate(0, 0); }
    48% { transform: translate(20px, -8px); }
    55% { transform: translate(8px, 18px); }
    60% { transform: translate(0, 0); }
    70% { transform: translate(0, 0); }
    78% { transform: translate(-18px, 10px); }
    85% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}

/* Hero headline */
.hero-headline {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--jarvis-text);
    margin: 30px 0 20px;
    max-width: 500px;
}

.hero-subline {
    font-size: 1rem;
    color: var(--jarvis-text-dim);
    max-width: 450px;
}

.hero-subline .highlight {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

/* ==========================================
   CHAT INTERFACE
   ========================================== */
.hero-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 500px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--ash);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 30, 50, 0.8);
    border-bottom: 1px solid var(--jarvis-border);
}

.chat-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--jarvis-cyan);
    box-shadow: 0 0 10px var(--jarvis-cyan);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-cyan);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.chat-message {
    max-width: 85%;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.vision-msg {
    align-self: flex-start;
    background: rgba(0, 50, 80, 0.6);
    border: 1px solid var(--jarvis-border);
    color: var(--jarvis-text);
}

.user-msg {
    align-self: flex-end;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--jarvis-cyan);
    color: var(--white);
}

.msg-text {
    display: block;
}

/* Chat input form */
.chat-input-form {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 10px;
    align-items: end;
    padding: 15px 20px;
    background: rgba(30, 30, 30, 0.8);
    border-top: 1px solid var(--ash);
}

.chat-input {
    width: 100%;
    background: rgba(0, 20, 35, 0.8);
    border: 1px solid var(--jarvis-border);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--jarvis-text);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    resize: none;
    transition: border-color 0.3s;
}

.chat-input:focus {
    outline: none;
    border-color: var(--jarvis-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.chat-input::placeholder {
    color: var(--jarvis-text-dim);
}

.chat-voice-btn,
.chat-send {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--jarvis-border);
    border-radius: 8px;
    color: var(--jarvis-cyan);
    cursor: pointer;
    transition: all 0.3s;
}

.chat-voice-btn:hover,
.chat-send:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--jarvis-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.chat-voice-btn.recording {
    background: rgba(255, 0, 64, 0.2);
    border-color: var(--red);
    color: var(--red);
    animation: recordingPulse 1s ease-in-out infinite;
}

@keyframes recordingPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 64, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 64, 0.5); }
}

.chat-contact-btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 180, 220, 0.1) 100%);
    border: 1px solid var(--jarvis-cyan);
    border-radius: 6px;
    color: var(--jarvis-cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-contact-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(0, 180, 220, 0.2) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Typing indicator */
.typing-dots span {
    animation: typingDot 1.4s infinite;
    display: inline-block;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* ==========================================
   SECTION CONTAINERS
   ========================================== */
.human-section,
.capabilities-section,
.arrangement-section,
.contact-section,
.faq-section {
    padding: 100px 40px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 20, 35, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 60px;
}

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

.section-num {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--jarvis-cyan);
    padding: 8px 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
}

.section-header h2 {
    font-family: 'Orbitron', 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--jarvis-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--jarvis-text-dim);
    margin-bottom: 40px;
}

/* ==========================================
   LEAD TEXT & CONTENT
   ========================================== */
.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--jarvis-text);
    margin-bottom: 25px;
}

.lead-text .highlight,
.human-content .highlight {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

.human-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--jarvis-text-dim);
    margin-bottom: 20px;
}

/* ==========================================
   STATS GRID
   ========================================== */
.human-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.stat-block {
    background: rgba(0, 20, 35, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-block:hover {
    background: rgba(0, 30, 50, 0.85);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 20px var(--jarvis-cyan-glow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-text-dim);
}

/* ==========================================
   SECTION CTA BUTTONS
   ========================================== */
.section-cta {
    margin-top: 40px;
    text-align: center;
}

.chat-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 180, 220, 0.1) 100%);
    border: 2px solid var(--jarvis-cyan);
    border-radius: 6px;
    color: var(--jarvis-cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-cta-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(0, 180, 220, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   CAPABILITIES GRID
   ========================================== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.capability-card {
    background: rgba(0, 20, 35, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 35px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    background: rgba(0, 30, 50, 0.85);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
}

.capability-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: var(--jarvis-cyan);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.capability-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--jarvis-text-dim);
}

/* ==========================================
   OFFER BOX (WHO WE HELP)
   ========================================== */
.arrangement-content {
    max-width: 800px;
}

.offer-box {
    background: rgba(0, 25, 40, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.offer-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
}

.offer-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-cyan);
    padding: 6px 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    margin-bottom: 20px;
}

.offer-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    color: var(--jarvis-text);
    margin-bottom: 25px;
}

.offer-includes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-item {
    display: flex;
    gap: 15px;
}

.offer-details strong {
    display: block;
    color: var(--jarvis-text);
    margin-bottom: 5px;
}

.offer-details span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--jarvis-text-dim);
}

.comparison-intro {
    margin-top: 30px;
}

.comparison-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--jarvis-text-dim);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-section h2 {
    font-family: 'Orbitron', 'Space Mono', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--jarvis-text);
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: rgba(0, 20, 35, 0.6);
    border: 1px solid var(--jarvis-border);
    border-radius: var(--radius-md);
    padding: 30px;
}

.faq-question {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--jarvis-cyan);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--jarvis-text-dim);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-wrapper label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-cyan);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    background: rgba(0, 20, 35, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--jarvis-text);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(0, 212, 255, 0.4);
    font-style: italic;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--jarvis-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper button[type="submit"] {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 180, 220, 0.1) 100%);
    border: 2px solid var(--jarvis-cyan);
    border-radius: 4px;
    padding: 16px 40px;
    color: var(--jarvis-cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper button[type="submit"]:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(0, 180, 220, 0.2) 100%);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--jarvis-text-dim);
    font-style: italic;
    margin: 30px 0;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.contact-links a {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-text-dim);
    transition: all 0.3s;
}

.contact-links a:hover {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgba(0, 15, 25, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--jarvis-border);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-text-dim);
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-center {
    text-align: center;
    color: var(--jarvis-cyan);
}

.footer-right {
    text-align: right;
}

/* ==========================================
   PEEKING EYE
   ========================================== */
.peeking-eye {
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.peeking-eye.visible {
    opacity: 1;
}

.peek-eye-outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #003050, #001420);
    border: 1px solid var(--jarvis-cyan);
    box-shadow: 0 0 15px var(--jarvis-cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peek-eye-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #00d4ff, #0088aa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peek-eye-pupil {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
}

/* ==========================================
   HUMAN SURVEILLANCE FEED WIDGET
   ========================================== */
.human-feed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    background: rgba(0, 15, 25, 0.95);
    border: 1px solid var(--jarvis-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    z-index: 900;
    transform: translate(0, 0);
    transition: width 0.4s ease, bottom 0.4s ease, right 0.4s ease, transform 0.4s ease;
}

.human-feed.expanded {
    width: 90vw;
    max-width: 800px;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(0, 30, 50, 0.8);
    border-bottom: 1px solid var(--jarvis-border);
}

.feed-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jarvis-cyan);
    box-shadow: 0 0 8px var(--jarvis-cyan);
}

.feed-label {
    flex: 1;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-text-dim);
}

.feed-close {
    background: none;
    border: none;
    color: var(--jarvis-text-dim);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.human-feed.expanded .feed-close {
    opacity: 1;
}

/* Collapsed view */
.feed-collapsed {
    display: block;
}

.human-feed.expanded .feed-collapsed {
    display: none;
}

.feed-screen {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.feed-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
}

.feed-cta {
    display: block;
    padding: 10px;
    font-size: 0.65rem;
    text-align: center;
    color: var(--jarvis-text-dim);
}

/* Expanded view */
.feed-expanded-content {
    display: none;
}

.human-feed.expanded .feed-expanded-content {
    display: flex;
    min-height: 400px;
}

.feed-video-bg {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.feed-video-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feed-form-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.feed-form-header {
    margin-bottom: 25px;
}

.feed-form-header h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: var(--jarvis-cyan);
    margin-bottom: 10px;
}

.feed-form-header p {
    font-size: 0.85rem;
    color: var(--jarvis-text-dim);
}

.feed-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.feed-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.feed-contact-form label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-cyan);
    margin-bottom: 8px;
}

.feed-contact-form input {
    background: rgba(0, 20, 35, 0.8);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    padding: 12px 15px;
    color: var(--jarvis-text);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.feed-contact-form input:focus {
    outline: none;
    border-color: var(--jarvis-cyan);
}

.continue-btn,
.submit-btn {
    padding: 14px 25px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-btn {
    background: transparent;
    border: 1px solid var(--jarvis-border);
    color: var(--jarvis-text-dim);
}

.continue-btn:hover {
    border-color: var(--jarvis-cyan);
    color: var(--jarvis-cyan);
}

.submit-btn {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 180, 220, 0.1) 100%);
    border: 1px solid var(--jarvis-cyan);
    color: var(--jarvis-cyan);
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(0, 180, 220, 0.2) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feed-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--jarvis-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--jarvis-cyan);
}

.feed-success h4 {
    color: var(--jarvis-cyan);
    margin-bottom: 15px;
}

.success-main {
    color: var(--jarvis-text);
    margin-bottom: 10px;
}

.success-time,
.success-snark {
    font-size: 0.85rem;
    color: var(--jarvis-text-dim);
}

/* ==========================================
   BLOG STYLES
   ========================================== */
.filter-btn {
    padding: 10px 20px;
    background: var(--jarvis-panel);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    color: var(--jarvis-text-dim);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--jarvis-cyan);
    color: var(--jarvis-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.filter-btn.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--jarvis-cyan);
    color: var(--jarvis-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--jarvis-panel);
    border: 1px solid var(--jarvis-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--jarvis-cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.blog-card-link {
    display: block;
    padding: 24px;
    text-decoration: none;
    height: 100%;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-category {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--jarvis-cyan);
    padding: 4px 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
}

.blog-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--jarvis-text-dim);
}

.blog-card-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--jarvis-text);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--jarvis-cyan);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--jarvis-text-dim);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.blog-read-time {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--jarvis-text-dim);
}

.blog-read-more {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--jarvis-cyan);
}

/* Blog post page */
.blog-prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--jarvis-text-dim);
}

.blog-prose h2 {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jarvis-text);
    margin-top: 48px;
    margin-bottom: 24px;
}

.blog-prose h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--jarvis-text);
    margin-top: 32px;
    margin-bottom: 16px;
}

.blog-prose p {
    margin-bottom: 24px;
}

.blog-prose a {
    color: var(--jarvis-cyan);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-prose a:hover {
    border-bottom-color: var(--jarvis-cyan);
}

.blog-prose code {
    background: var(--jarvis-dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9em;
    color: var(--jarvis-cyan);
}

.blog-prose pre {
    background: var(--jarvis-dark);
    border: 1px solid var(--jarvis-border);
    border-radius: 8px;
    padding: 24px;
    overflow-x: auto;
    margin: 32px 0;
}

.blog-prose pre code {
    background: transparent;
    padding: 0;
    color: var(--jarvis-text);
}

.blog-prose blockquote {
    border-left: 3px solid var(--jarvis-cyan);
    background: var(--jarvis-dark);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-prose ul, .blog-prose ol {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-prose li {
    margin-bottom: 12px;
}

.blog-prose ul li::marker {
    color: var(--jarvis-cyan);
}

.blog-prose strong {
    color: var(--jarvis-text);
    font-weight: 600;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.highlight {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

/* Focus states */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1200px) {
    .human-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    /* Hero layout */
    .hero-columns {
        flex-direction: column;
        gap: 2rem;
        padding: 0 20px;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-chat {
        min-height: 400px;
    }

    /* Hide video in expanded feed on mobile */
    .human-feed.expanded .feed-video-bg {
        display: none;
    }

    .human-feed.expanded .feed-expanded-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .site-nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    /* Sections */
    .human-section,
    .capabilities-section,
    .arrangement-section,
    .contact-section,
    .faq-section {
        padding: 60px 20px;
    }

    .section-container {
        padding: 40px 25px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    /* Stats */
    .human-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    /* Capabilities */
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Contact form */
    .contact-form-wrapper .grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Human feed widget - smaller on mobile */
    .human-feed {
        width: 130px;
        bottom: 10px;
        right: 10px;
    }

    .human-feed .feed-header {
        padding: 8px 10px;
    }

    .human-feed .feed-cta {
        font-size: 0.55rem;
        padding: 6px;
    }

    .human-feed.expanded {
        width: 95vw;
        bottom: 50%;
        right: 50%;
    }

    /* HUD elements - hide on mobile */
    .viewport-hud-tl,
    .viewport-hud-tr,
    .viewport-hud-bl,
    .viewport-hud-br {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 1.2rem;
    }

    .vision-eye {
        width: 120px;
        height: 120px;
    }

    .stat-block {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .human-stats {
        grid-template-columns: 1fr;
    }
}
