/* SHANE BARRON - MAXIMUM STANK OVERDRIVE */

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

:root {
    --black: #000;
    --white: #fff;
    --neon: #BFFF00;
    --pink: #FF10F0;
    --yellow: #FFE500;
    --red: #FF0040;
    --cyan: #00FFFF;
    --purple: #8B00FF;

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

/* ==========================================
   GLOBAL 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);
}

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

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

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

/* DOOM CANVAS */
#doom {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}



.the-whole-damn-thing {
    position: relative;
    z-index: 2;
}

/* SCANLINES - on vision content only, not video */
.vision-container::after {
    content: '';
    position: absolute;
    inset: -50px;
    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;
    z-index: 10;
}

/* ==========================================
   INTRO SEQUENCE - FULL ASSAULT
   ========================================== */
.intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, var(--pink) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--neon) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--purple) 0%, transparent 70%);
    opacity: 0.1;
    animation: intro-bg-pulse 2s ease infinite;
}

@keyframes intro-bg-pulse {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.1); }
}

.intro.hidden {
    pointer-events: none;
    animation: intro-explode 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes intro-explode {
    0% {
        clip-path: circle(150% at 50% 50%);
        filter: blur(0);
    }
    50% {
        filter: blur(10px) brightness(2);
    }
    100% {
        clip-path: circle(0% at 50% 50%);
        filter: blur(20px) brightness(3);
    }
}

.intro-text {
    text-align: center;
    z-index: 1;
}

.intro-line {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.5em;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    transform-origin: top;
}

.intro-line.visible {
    animation: intro-line-slam 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes intro-line-slam {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg) scale(2);
        filter: blur(10px);
    }
    60% {
        transform: translateY(-10px) rotateX(10deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

.intro-line.small {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    margin-top: 2rem;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon);
}

.intro-line.glitch-hard {
    color: var(--pink);
    text-shadow:
        0 0 10px var(--pink),
        0 0 20px var(--pink),
        0 0 40px var(--pink),
        3px 0 0 var(--cyan),
        -3px 0 0 var(--yellow);
    animation: intro-line-slam 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               hard-glitch 0.15s steps(2) infinite;
    position: relative;
}

/* CRT scanlines on glitch text */
.intro-line.glitch-hard::after {
    content: '';
    position: absolute;
    inset: -10px -50px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.4) 3px,
        rgba(0, 0, 0, 0.4) 6px
    );
    pointer-events: none;
    animation: scanline-scroll 0.5s linear infinite;
}

@keyframes hard-glitch {
    0%, 100% {
        transform: translate(0) skewX(0);
        clip-path: inset(0 0 0 0);
    }
    20% {
        transform: translate(-8px, 3px) skewX(-5deg);
        clip-path: inset(20% 0 40% 0);
    }
    40% {
        transform: translate(8px, -3px) skewX(5deg);
        clip-path: inset(60% 0 10% 0);
    }
    60% {
        transform: translate(-5px, -2px) skewX(-3deg);
        clip-path: inset(40% 0 30% 0);
    }
    80% {
        transform: translate(5px, 2px) skewX(3deg);
        clip-path: inset(10% 0 70% 0);
    }
}

.intro-skip {
    position: absolute;
    bottom: 50px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    animation: skip-glitch 3s ease infinite;
    z-index: 1;
}

@keyframes skip-glitch {
    0%, 90%, 100% { opacity: 0.5; transform: translate(0); }
    92% { opacity: 1; transform: translate(-3px, 0); color: var(--cyan); }
    94% { opacity: 0.3; transform: translate(3px, 0); color: var(--pink); }
    96% { opacity: 1; transform: translate(-2px, 0); }
    98% { opacity: 0.7; transform: translate(2px, 0); }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main {
    opacity: 0;
    transition: opacity 0.5s;
}

.main.visible {
    opacity: 1;
}

/* ==========================================
   HERO - ABSOLUTE CHAOS
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    width: 200vmax;
    height: 200vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg at 50% 50%,
        var(--neon) 0deg,
        transparent 60deg,
        var(--pink) 120deg,
        transparent 180deg,
        var(--cyan) 240deg,
        transparent 300deg,
        var(--neon) 360deg
    );
    animation: hero-spin 20s linear infinite;
    opacity: 0.03;
}

@keyframes hero-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-chaos {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.05;
}

.chaos-text {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 20vw;
    font-weight: 700;
    line-height: 0.8;
    animation: chaos-scroll 20s linear infinite;
    white-space: nowrap;
}

.chaos-text span {
    display: block;
    animation: chaos-word-glitch 5s ease infinite;
}

.chaos-text span:nth-child(odd) {
    animation-delay: -2.5s;
}

@keyframes chaos-word-glitch {
    0%, 95%, 100% { opacity: 1; transform: translate(0); }
    96% { opacity: 0.5; transform: translate(-10px, 5px); }
    97% { opacity: 0.8; transform: translate(10px, -5px); }
    98% { opacity: 0.3; transform: translate(-5px, -5px); }
    99% { opacity: 1; transform: translate(5px, 5px); }
}

@keyframes chaos-scroll {
    0% { transform: translate(-10%, -10%) rotate(-5deg); }
    100% { transform: translate(-50%, -50%) rotate(-5deg); }
}

.hero-center {
    text-align: center;
    z-index: 10;
}

.mega-title {
    font-size: clamp(4rem, 20vw, 18rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
    position: relative;
}

/* RGB split on title */
.mega-title::before,
.mega-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0;
}

.mega-title:hover::before {
    color: var(--cyan);
    animation: rgb-split-left 0.3s ease;
    opacity: 0.8;
}

.mega-title:hover::after {
    color: var(--pink);
    animation: rgb-split-right 0.3s ease;
    opacity: 0.8;
}

@keyframes rgb-split-left {
    0%, 100% { transform: translate(0); opacity: 0; }
    50% { transform: translate(-10px, -5px); opacity: 0.8; }
}

@keyframes rgb-split-right {
    0%, 100% { transform: translate(0); opacity: 0; }
    50% { transform: translate(10px, 5px); opacity: 0.8; }
}

.word {
    display: block;
    position: relative;
}

.word-1 {
    animation: word-float 6s ease infinite;
}

.word-2 {
    color: transparent;
    -webkit-text-stroke: 3px var(--white);
    animation: word-float 6s ease infinite reverse;
}

@keyframes word-float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.letter {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.letter::before {
    content: attr(data-letter);
    position: absolute;
    inset: 0;
    color: var(--pink);
    opacity: 0;
    transform: translate(-5px, -5px);
    transition: all 0.3s;
}

.letter:hover {
    color: var(--neon);
    -webkit-text-stroke-color: var(--neon);
    transform: scale(1.4) rotate(-10deg) translateY(-20px);
    text-shadow:
        0 0 50px var(--neon),
        0 0 100px var(--neon),
        0 20px 40px rgba(0,0,0,0.5);
    animation: letter-shake 0.1s steps(2) infinite;
}

.letter:hover::before {
    opacity: 0.5;
}

@keyframes letter-shake {
    0%, 100% { transform: scale(1.4) rotate(-10deg) translateY(-20px); }
    50% { transform: scale(1.4) rotate(-12deg) translateY(-22px); }
}

.role-glitch {
    margin: 30px 0 50px;
    font-size: clamp(0.8rem, 2vw, 1.4rem);
    letter-spacing: 0.3em;
    color: var(--pink);
    position: relative;
    text-shadow: 0 0 20px var(--pink);
}

.role-text {
    position: relative;
    display: inline-block;
}

.role-text::before,
.role-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    opacity: 0.8;
}

.role-text::before {
    color: var(--cyan);
    animation: role-glitch-1 2s ease infinite;
}

.role-text::after {
    color: var(--yellow);
    animation: role-glitch-2 2s ease infinite;
}

@keyframes role-glitch-1 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    92% { transform: translate(-3px, -2px); opacity: 0.8; }
    94% { transform: translate(3px, 2px); opacity: 0.5; }
}

@keyframes role-glitch-2 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91% { transform: translate(3px, -2px); opacity: 0.8; }
    93% { transform: translate(-3px, 2px); opacity: 0.5; }
}

.hero-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-link {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    padding: 15px 30px;
    border: 2px solid var(--neon);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* CRT scanlines on hero links */
.hero-link .scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(0, 0, 0, 0.2) 1px,
        rgba(0, 0, 0, 0.2) 2px
    );
    pointer-events: none;
    opacity: 0.5;
}

.hero-link:hover .scanlines {
    animation: scanline-scroll 1s linear infinite;
}

.hero-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.hero-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--pink), var(--neon), var(--cyan), var(--pink));
    background-size: 400% 400%;
    z-index: -2;
    animation: border-flow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-link:hover {
    color: var(--black);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--neon);
}

.hero-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-link:hover::after {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    position: relative;
}

/* CRT scanlines on scroll indicator */
.scroll-indicator::after {
    content: '';
    position: absolute;
    inset: -10px -20px;
    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;
    animation: scanline-scroll 3s linear infinite;
}

.scroll-arrow {
    font-size: 2rem;
    animation: scroll-chaos 1s ease infinite;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon);
}

@keyframes scroll-chaos {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(15px) scale(1.2);
        opacity: 0.5;
    }
}

.corner-info {
    position: absolute;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    opacity: 0.4;
    padding: 20px;
    transition: all 0.3s;
}

.corner-info:hover {
    opacity: 1;
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon);
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000 0%, #050510 100%);
    position: relative;
}

/* CRT scanlines overlay on about section */
.about-section::before {
    content: '';
    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;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-header,
.skills-header,
.services-header,
.timeline-header {
    margin-bottom: 60px;
}

.section-num {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--neon);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--neon);
}

.about-header h2,
.skills-header h2,
.services-header h2,
.timeline-header h2 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.8;
}

.about-lead {
    font-size: 1.4rem !important;
    opacity: 1 !important;
}

.highlight {
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* CRT scanlines on stat blocks */
.stat-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.3) 4px
    );
    pointer-events: none;
    opacity: 0.5;
}

.stat-block:hover {
    border-color: var(--neon);
    box-shadow: 0 0 30px rgba(191, 255, 0, 0.2);
}

.stat-block:hover::after {
    animation: scanline-scroll 2s linear infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-top: 10px;
    opacity: 0.6;
}

/* ==========================================
   SKILLS SECTION
   ========================================== */
.skills-section {
    min-height: 100vh;
    padding: 100px 50px;
    background: linear-gradient(180deg, #050510 0%, #000 100%);
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.skill-category {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* CRT scanlines on skill cards */
.skill-category::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.2) 2px,
        rgba(0, 0, 0, 0.2) 4px
    );
    pointer-events: none;
    opacity: 0.4;
}

.skill-category:hover::after {
    animation: scanline-scroll 3s linear infinite;
}

.skill-category h3 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--pink);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.skill-category li:last-child {
    border-bottom: none;
}

.skill-name {
    opacity: 0.8;
}

.skill-level {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 2px;
}

.skill-level.expert {
    background: var(--neon);
    color: var(--black);
}

.skill-level.advanced {
    background: var(--cyan);
    color: var(--black);
}

.skill-level.intermediate {
    background: var(--pink);
    color: var(--black);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    min-height: 100vh;
    padding: 100px 50px;
    background: linear-gradient(180deg, #000 0%, #050510 100%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon), var(--pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 2;
}

/* CRT scanlines on service cards */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.2) 2px,
        rgba(0, 0, 0, 0.2) 4px
    );
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    animation: scanline-scroll 2s linear infinite;
    opacity: 0.5;
}

.service-card:hover {
    border-color: var(--neon);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.6;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon);
}

/* ==========================================
   TIMELINE SECTION
   ========================================== */
.timeline-section {
    min-height: 100vh;
    padding: 100px 50px;
    background: linear-gradient(180deg, #050510 0%, #000 100%);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon), var(--pink), var(--cyan), var(--neon));
}

.timeline-item {
    position: relative;
    padding-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -56px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon);
}

.timeline-year {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--neon);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--neon);
}

.timeline-content {
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

/* CRT scanlines on timeline items */
.timeline-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    opacity: 0.4;
}

.timeline-item:hover .timeline-content::after {
    animation: scanline-scroll 2s linear infinite;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.timeline-content p {
    opacity: 0.7;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Panel tech tags */
.panel-tech {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Vision features */
.vision-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.vision-features span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 8px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    position: relative;
    overflow: hidden;
}

/* CRT scanlines on vision feature tags */
.vision-features span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(0, 255, 255, 0.1) 1px,
        rgba(0, 255, 255, 0.1) 2px
    );
    pointer-events: none;
    animation: scanline-scroll 3s linear infinite;
}

/* Arcade subtitle and game desc */
.arcade-subtitle {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 20px;
}

.game-desc {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Contact note */
.contact-note {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 40px;
}

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

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .vision-features {
        justify-content: center;
    }
}

/* ==========================================
   HORIZONTAL SCROLL - WILD RIDE
   ========================================== */
.horizontal-section {
    position: relative;
    height: 400vh;
}

.horizontal-track {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.h-panel {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.intro-panel {
    background: var(--black);
    flex-direction: column;
}

.intro-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, var(--neon) 0%, transparent 50%);
    opacity: 0.05;
}

.panel-num {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--neon);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--neon);
}

.intro-panel h2 {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    position: relative;
}

.intro-panel h2::before {
    content: 'THINGS I BUILT';
    position: absolute;
    inset: 0;
    color: var(--pink);
    opacity: 0.3;
    transform: translate(5px, 5px);
    z-index: -1;
}

/* CRT scanlines on intro panel h2 */
.intro-panel h2::after {
    content: '';
    position: absolute;
    inset: -20px -50px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(0, 0, 0, 0.2) 4px,
        rgba(0, 0, 0, 0.2) 8px
    );
    pointer-events: none;
    animation: scanline-scroll 5s linear infinite;
}

.project-panel {
    background: #050505;
    transition: all 0.5s;
}

.project-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: panel-shine 3s ease infinite;
}

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

.panel-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        hsl(var(--hue), 100%, 50%) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
}

.project-panel:hover .panel-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.panel-content {
    max-width: 500px;
    padding: 40px;
    z-index: 2;
    transform: translateX(-30px);
    opacity: 0;
    animation: panel-content-in 0.8s ease forwards;
    position: relative;
}

/* CRT scanlines on panel content */
.panel-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.1) 3px,
        rgba(0, 0, 0, 0.1) 6px
    );
    pointer-events: none;
    opacity: 0.4;
}

.project-panel:hover .panel-content::after {
    animation: scanline-scroll 3s linear infinite;
}

@keyframes panel-content-in {
    to { transform: translateX(0); opacity: 1; }
}

.panel-tag {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--neon);
    border: 1px solid var(--neon);
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.panel-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

/* CRT scanlines on panel tags */
.panel-tag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(0, 0, 0, 0.15) 1px,
        rgba(0, 0, 0, 0.15) 2px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanline-scroll 2s linear infinite;
}

.project-panel:hover .panel-tag::before {
    transform: translateX(100%);
}

.panel-content h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.project-panel:hover .panel-content h3 {
    text-shadow: 0 0 30px var(--white);
}

.panel-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 30px;
}

.panel-cta {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--pink);
    position: relative;
    display: inline-block;
}

.panel-cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s;
}

.project-panel:hover .panel-cta::after {
    width: 100%;
}

.panel-big-text {
    position: absolute;
    right: -5%;
    bottom: 5%;
    font-size: clamp(8rem, 30vw, 30rem);
    font-weight: 700;
    opacity: 0.02;
    pointer-events: none;
    transition: all 0.5s;
}

.project-panel:hover .panel-big-text {
    opacity: 0.05;
    transform: translate(-20px, -20px);
    color: var(--neon);
}

.horizontal-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon), var(--pink), var(--cyan));
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 20px var(--neon);
    position: relative;
}

/* CRT scanlines on progress bar */
.progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.3) 4px
    );
    pointer-events: none;
}

/* ==========================================
   ARCADE SECTION - FULL CABINET EXPERIENCE
   ========================================== */
.arcade-section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #050505 0%, #000 50%, #050510 100%);
    position: relative;
    overflow: hidden;
}

/* Neon grid floor */
.arcade-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    height: 60%;
    background:
        linear-gradient(90deg, transparent 49%, var(--pink) 49%, var(--pink) 51%, transparent 51%) 0 0 / 100px 100%,
        linear-gradient(0deg, var(--pink) 1px, transparent 1px) 0 0 / 100% 50px;
    transform: perspective(500px) rotateX(60deg);
    opacity: 0.1;
    animation: grid-scroll 2s linear infinite;
}

@keyframes grid-scroll {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 0, 0 50px; }
}

.arcade-header {
    text-align: center;
    margin-bottom: 80px;
    z-index: 1;
}

.arcade-num {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--pink);
    text-shadow: 0 0 20px var(--pink);
}

.arcade-title {
    font-size: clamp(3rem, 12vw, 10rem);
    line-height: 0.9;
    position: relative;
}

/* CRT scanlines on arcade title */
.arcade-title::after {
    content: '';
    position: absolute;
    inset: -20px -40px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.25) 3px,
        rgba(0, 0, 0, 0.25) 6px
    );
    pointer-events: none;
    animation: scanline-scroll 4s linear infinite;
}

.arcade-word {
    display: block;
}

.arcade-word:nth-child(1) {
    color: var(--white);
    text-shadow:
        3px 3px 0 var(--pink),
        -3px -3px 0 var(--cyan);
}

.arcade-word:nth-child(2) {
    color: var(--yellow);
    text-shadow:
        0 0 20px var(--yellow),
        0 0 40px var(--yellow),
        0 0 80px var(--yellow),
        0 0 120px var(--yellow);
    animation: neon-flicker 3s ease infinite;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow:
            0 0 20px var(--yellow),
            0 0 40px var(--yellow),
            0 0 80px var(--yellow);
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }
}

.arcade-games {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 1;
}

.arcade-cabinet {
    width: 380px;
    background: linear-gradient(180deg, #2a1a4a 0%, #1a0a2a 50%, #0a0015 100%);
    border-radius: 30px 30px 15px 15px;
    padding: 25px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        inset 0 2px 0 rgba(255,255,255,0.1),
        inset 0 -5px 20px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.arcade-cabinet::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: linear-gradient(90deg, var(--pink), var(--yellow), var(--cyan));
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.arcade-cabinet:hover::before {
    opacity: 1;
    animation: cabinet-top-glow 1s ease infinite;
}

@keyframes cabinet-top-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.arcade-cabinet:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow:
        0 50px 100px rgba(255, 16, 240, 0.3),
        0 0 60px rgba(255, 16, 240, 0.2),
        inset 0 2px 0 rgba(255,255,255,0.2);
}

.cabinet-screen {
    position: relative;
    aspect-ratio: 4/3;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid #1a1a2a;
    box-shadow:
        inset 0 0 50px rgba(0,0,0,0.8),
        0 0 0 2px #333;
}

/* CRT curve effect */
.cabinet-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 10;
    pointer-events: none;
}

/* Scanlines */
.cabinet-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.3) 4px
    );
    z-index: 11;
    pointer-events: none;
    animation: scanline-scroll 10s linear infinite;
}

@keyframes scanline-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.screen-static {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.08;
    animation: static-flicker 0.1s steps(3) infinite;
}

@keyframes static-flicker {
    0%, 100% { opacity: 0.05; transform: translate(0); }
    33% { opacity: 0.1; transform: translate(-1%, -1%); }
    66% { opacity: 0.07; transform: translate(1%, 1%); }
}

.screen-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.game-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
    text-shadow:
        0 0 10px var(--pink),
        0 0 20px var(--pink),
        0 0 40px var(--pink),
        2px 2px 0 var(--cyan);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: logo-pulse 2s ease infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.game-coins {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--yellow);
}

.press-start {
    font-size: 1rem;
    color: var(--neon);
    animation: blink-hard 0.5s steps(1) infinite;
    text-shadow: 0 0 10px var(--neon);
}

.press-start span {
    display: inline-block;
    animation: arrow-bounce 0.5s ease infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes blink-hard {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.screen-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(ellipse at center, var(--pink) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.arcade-cabinet:hover .screen-glow {
    opacity: 0.3;
    animation: screen-glow-pulse 1s ease infinite;
}

@keyframes screen-glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.cabinet-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 15px;
    background: linear-gradient(180deg, #1a1a2a 0%, #0a0a15 100%);
    margin: 15px -10px -10px;
    border-radius: 0 0 10px 10px;
}

.joystick {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #444, #111);
    border-radius: 50%;
    position: relative;
    box-shadow:
        inset 0 5px 15px rgba(0,0,0,0.8),
        0 5px 15px rgba(0,0,0,0.5);
}

.joystick::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 25px;
    height: 45px;
    background: linear-gradient(180deg, #666 0%, #333 50%, #222 100%);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.arcade-cabinet:hover .joystick::after {
    animation: joystick-wiggle 0.3s ease infinite;
}

@keyframes joystick-wiggle {
    0%, 100% { transform: translate(-50%, -70%) rotate(0); }
    25% { transform: translate(-50%, -70%) rotate(-5deg); }
    75% { transform: translate(-50%, -70%) rotate(5deg); }
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-a, .btn-b {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow:
        inset 0 -5px 10px rgba(0,0,0,0.5),
        0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.1s;
}

.btn-a {
    background: radial-gradient(circle at 30% 30%, #ff4040, #cc0000);
}
.btn-b {
    background: radial-gradient(circle at 30% 30%, #ffff40, #cccc00);
}

.arcade-cabinet:hover .btn-a {
    box-shadow:
        inset 0 -5px 10px rgba(0,0,0,0.5),
        0 0 20px var(--red);
}

.arcade-cabinet:hover .btn-b {
    box-shadow:
        inset 0 -5px 10px rgba(0,0,0,0.5),
        0 0 20px var(--yellow);
}

/* ==========================================
   VISION SECTION - THE EYE
   ========================================== */
.vision-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.vision-video-bg {
    position: fixed;
    inset: 0;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
    transition: object-position 0.3s ease-out;
}


.vision-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    justify-content: center;
    z-index: 1;
}

.vision-eye-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.vision-eye-wrapper .intro-greeting {
    margin-bottom: 40px;
    min-height: 6rem;
    text-align: center;
}

.intro-greeting .vision-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-style: italic;
    font-size: 4rem;
    letter-spacing: 0.05em;
    color: var(--cyan);
    margin-top: 10px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.intro-greeting .vision-name:hover {
    text-shadow: 0 0 50px rgba(0, 255, 255, 0.8), 0 0 80px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.intro-greeting .typed-cursor {
    animation: cursor-blink 0.7s infinite;
    color: var(--cyan);
    -webkit-text-fill-color: var(--cyan);
    background: none;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    letter-spacing: 0;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.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;
}

/* 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;
    }
}

.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%;
}

.vision-text {
    max-width: 500px;
    position: relative;
    animation: vision-text-fade 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes vision-text-fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Vision intro styles */
.intro-greeting {
    font-size: 1.6rem;
    letter-spacing: 0.3em;
    color: var(--cyan);
    text-shadow: 0 0 30px var(--cyan);
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.vision-name {
    color: var(--pink);
    text-shadow: 0 0 20px var(--pink);
    font-weight: 700;
}

.vision-intro {
    font-size: 1.1rem;
    color: var(--cyan);
    opacity: 0.9;
}

.intro-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--neon) 50%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-style: italic;
}

.vision-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--cyan);
    text-shadow: 0 0 30px var(--cyan);
}

.vision-text p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 30px;
}

.vision-blink {
    color: var(--pink);
    animation: text-blink 1s steps(1) infinite;
    text-shadow: 0 0 10px var(--pink);
}

@keyframes text-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Vision CTA Button */
.vision-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 40px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vision-cta:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.vision-cta .cta-icon {
    font-size: 1.2rem;
    color: var(--cyan);
    animation: cta-pulse 2s ease infinite;
}

@keyframes cta-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.vision-cta .cta-main {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.vision-cta .cta-sub {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    color: var(--cyan);
    font-style: italic;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    min-height: auto;
    padding: 80px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.contact-section .section-container {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
    z-index: 1;
}

.contact-small {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    color: var(--neon);
    text-shadow: 0 0 20px var(--neon);
}

.contact-email {
    display: block;
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 50px;
    transition: all 0.3s;
}

.contact-email:hover {
    text-shadow:
        0 0 40px var(--white),
        0 0 80px var(--pink);
}

.email-char {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CRT scanlines on email area */
.contact-email {
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    inset: -10px -20px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px
    );
    pointer-events: none;
    opacity: 0.5;
}

.contact-email:hover::after {
    animation: scanline-scroll 2s linear infinite;
}

.email-char:hover {
    color: var(--pink);
    transform: translateY(-15px) scale(1.5) rotate(15deg);
    text-shadow:
        0 0 30px var(--pink),
        0 0 60px var(--pink);
}

/* Contact CTA Button */
.contact-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 30px 60px;
    margin: 40px 0;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.cta-icon {
    font-size: 1.5rem;
    color: var(--cyan);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.cta-subtext {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
    color: var(--cyan);
}

.contact-note {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-links a {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 12px 25px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyan);
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */
.value-section {
    min-height: 100vh;
    padding: 100px 50px;
    background: linear-gradient(180deg, #050510 0%, #0a0520 50%, #000 100%);
    position: relative;
}

.value-container {
    max-width: 1400px;
    margin: 0 auto;
}

.value-header {
    text-align: center;
    margin-bottom: 80px;
}

.value-header h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.value-subtitle {
    font-size: 1.3rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

/* CRT scanlines on value cards */
.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.2) 2px,
        rgba(0, 0, 0, 0.2) 4px
    );
    pointer-events: none;
    opacity: 0.4;
}

.value-card:hover::after {
    animation: scanline-scroll 2s linear infinite;
}

.value-card:hover {
    border-color: var(--neon);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(191, 255, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--neon);
}

.value-card p {
    opacity: 0.7;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
    min-height: 100vh;
    padding: 100px 50px;
    background: linear-gradient(180deg, #000 0%, #050510 100%);
    display: flex;
    align-items: center;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
}

.pricing-content {
    text-align: center;
}

/* The Offer Box */
.offer-box {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}


.offer-badge {
    position: absolute;
    top: -1px;
    left: 30px;
    background: var(--cyan);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 8px 15px;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 25px;
    color: var(--white);
}

.offer-includes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 4px;
}

.offer-item.free {
    border-color: var(--pink);
    background: rgba(255, 16, 240, 0.1);
}

.offer-item.free strong {
    color: var(--pink);
}

.offer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.offer-details strong {
    font-size: 1.1rem;
    color: var(--neon);
}

.offer-details span {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .offer-includes {
        grid-template-columns: 1fr;
    }
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-column {
    padding: 35px 30px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.pricing-column.agency {
    opacity: 0.7;
}

.pricing-column.agency h3 {
    color: var(--red);
}

.pricing-column.agency .pricing-amount {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--cyan);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    z-index: 2;
}

.pricing-column h3 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.pricing-column ul {
    list-style: none;
    text-align: left;
}

.pricing-column li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.pricing-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon);
}

.pricing-column.agency li::before {
    content: '✕';
    color: var(--red);
}

.pricing-column li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 1200px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .pricing-badge {
        right: -40px;
        top: 15px;
    }
}

/* ==========================================
   SHARED SECTION STYLES - CLEAN PANELS
   ========================================== */
.section-panel {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ==========================================
   THE HUMAN SECTION
   ========================================== */
.human-section {
    min-height: auto;
    padding: 80px 30px;
    background: transparent;
    position: relative;
}

.human-content {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.human-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.3rem !important;
    opacity: 1 !important;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 30px !important;
}

.human-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.stat-block {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
    text-transform: uppercase;
}

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

/* ==========================================
   CAPABILITIES SECTION
   ========================================== */
.capabilities-section {
    min-height: auto;
    padding: 80px 30px;
    background: transparent;
    position: relative;
}

.capabilities-section .section-container {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

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

.capability-card {
    background: rgba(0, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.06);
    transform: translateY(-3px);
}

.capability-icon { display: none !important; } .capability-icon-OLD {
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.capability-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.capability-card p {
    opacity: 0.7;
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ARRANGEMENT SECTION
   ========================================== */
.arrangement-section {
    min-height: auto;
    padding: 80px 30px;
    background: transparent;
    position: relative;
}

.arrangement-section .section-container {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 4px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.arrangement-content {
    position: relative;
    z-index: 1;
}

.comparison-intro {
    text-align: center;
    margin: 50px 0 30px;
}

.comparison-intro p {
    font-size: 1rem;
    opacity: 0.7;
}

.verdict {
    margin-top: 30px;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--red);
    padding: 10px 20px;
    border: 1px solid var(--red);
    display: inline-block;
}

.verdict-good {
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
}

.pricing-column.us {
    border-color: var(--neon);
    box-shadow: 0 0 40px rgba(191, 255, 0, 0.2);
}

.pricing-column.us h3 {
    color: var(--neon);
}

.pricing-column.us .pricing-amount {
    color: var(--neon);
    text-shadow: 0 0 30px var(--neon);
}

/* ==========================================
   SECTION CONTAINERS
   ========================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    opacity: 0.4;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.footer:hover {
    opacity: 0.8;
}

.footer-link {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-shadow: 0 0 10px var(--cyan);
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================
   PEEKING EYE - WATCHES FROM THE EDGE
   ========================================== */
.peeking-eye {
    position: fixed;
    width: 120px;
    height: 120px;
    z-index: 900;
    pointer-events: none;
}

/* Different peek positions */
.peeking-eye.peek-left {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
}

.peeking-eye.peek-left.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.peeking-eye.peek-right {
    right: -60px;
    left: auto;
    top: 30%;
    transform: translateY(-50%) translateX(100%);
}

.peeking-eye.peek-right.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.peeking-eye.peek-bottom {
    bottom: -60px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.peeking-eye.peek-bottom.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.peek-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 30px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.peek-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;
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.5),
        0 0 15px var(--cyan);
}

.peek-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;
}

/* ==========================================
   FLYING VISION EYES
   ========================================== */
.flying-eye-DISABLED {
    position: fixed;
    z-index: 800;
    pointer-events: none;
}

.flying-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 20px rgba(0, 255, 255, 0.4),
        inset 0 0 15px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.flying-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;
    box-shadow:
        inset 0 0 15px rgba(0,0,0,0.5),
        0 0 10px var(--cyan);
}

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

/* ==========================================
   HUMAN SURVEILLANCE FEED
   ========================================== */
.human-feed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 180px;
    background: #0a0a0a;
    border: 2px solid var(--cyan);
    z-index: 1000;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.human-feed:hover:not(.expanded) {
    transform: scale(1.05);
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.feed-status {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: status-blink 1s steps(1) infinite;
    box-shadow: 0 0 10px var(--red);
}

@keyframes status-blink {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.3; }
}

.feed-label {
    font-family: var(--font-handwriting);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

/* Close button */
.feed-close {
    display: none;
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: all 0.3s;
}

.feed-close:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--cyan);
}

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

.feed-screen {
    position: relative;
    aspect-ratio: 1;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.feed-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

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

.feed-cta {
    display: block;
    padding: 10px 12px;
    font-family: var(--font-handwriting);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--cyan);
    background: rgba(0, 255, 255, 0.05);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.feed-cta:hover {
    background: var(--cyan);
    color: var(--black);
}

/* Expanded content - hidden by default */
.feed-expanded-content {
    display: none;
}

/* ==========================================
   EXPANDED STATE - SPLIT SCREEN
   ========================================== */
.human-feed.expanded {
    width: 70vw;
    height: 80vh;
    max-width: 1000px;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    border: 2px solid var(--cyan);
    box-shadow:
        0 0 100px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.human-feed.expanded .feed-header {
    padding: 12px 20px;
}

.human-feed.expanded .feed-close {
    display: block;
}

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

.human-feed.expanded .feed-expanded-content {
    display: flex;
    height: calc(100% - 45px);
}

/* Chat side - left half */
.feed-chat-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 5px;
}

.chat-status {
    font-size: 0.65rem;
    opacity: 0.5;
}

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

.chat-message {
    padding: 12px 15px;
    border-radius: 4px;
    max-width: 90%;
}

.chat-message.vision-msg {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    align-self: flex-start;
}

.chat-message.shane-msg {
    background: rgba(255, 16, 240, 0.1);
    border: 1px solid rgba(255, 16, 240, 0.2);
    align-self: flex-start;
}

.chat-message.shane-msg .msg-sender {
    color: var(--pink);
}

.chat-message.user-msg {
    background: rgba(191, 255, 0, 0.1);
    border: 1px solid rgba(191, 255, 0, 0.2);
    align-self: flex-end;
}

/* Typing indicator */
.typing-dots {
    display: inline-block;
    animation: typing-pulse 1s ease infinite;
}

@keyframes typing-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.msg-sender {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 5px;
}

.user-msg .msg-sender {
    color: var(--neon);
}

.msg-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

.chat-input-form {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    padding: 12px 15px;
    color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

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

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.chat-send {
    background: var(--cyan);
    color: var(--black);
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send:hover {
    background: var(--white);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.chat-note {
    padding: 10px 20px;
    font-size: 0.6rem;
    opacity: 0.4;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Video side - right half */
.feed-video-side {
    flex: 1;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-video-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(0.8) contrast(1.1);
}

.video-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .human-feed.expanded {
        width: 95vw;
        height: 90vh;
    }

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

    .feed-chat-side {
        border-right: none;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }

    .feed-video-side {
        max-height: 40%;
    }
}

@media (max-width: 500px) {
    .human-feed {
        width: 140px;
        bottom: 20px;
        right: 20px;
    }

    .feed-cta {
        font-size: 0.5rem;
        padding: 8px 10px;
    }

    .human-feed.expanded {
        width: 100vw;
    }
}

/* ==========================================
   AUDIO TOGGLE
   ========================================== */
.audio-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.8);
    border: 2px solid var(--neon);
    border-radius: 50%;
    color: var(--neon);
    font-size: 1.5rem;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(191, 255, 0, 0.3);
}

.audio-toggle:hover {
    background: var(--neon);
    color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 0 40px var(--neon);
}

.audio-toggle.active {
    animation: audio-pulse 1s ease infinite;
}

@keyframes audio-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(191, 255, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(191, 255, 0, 0.6); }
}

.audio-toggle .audio-off {
    display: none;
}

.audio-toggle.muted .audio-on {
    display: none;
}

.audio-toggle.muted .audio-off {
    display: inline;
}

/* ==========================================
   FADE IN ANIMATION
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .vision-container {
        flex-direction: column;
        gap: 50px;
    }

    .vision-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-links {
        gap: 20px;
    }

    .hero-link {
        padding: 12px 20px;
        font-size: 0.7rem;
    }

    .corner-info {
        display: none;
    }

    .horizontal-section {
        height: auto;
    }

    .horizontal-track {
        flex-direction: column;
        height: auto;
        position: relative;
    }

    .h-panel {
        width: 100%;
        height: auto;
        min-height: 100vh;
    }

    .arcade-section::before {
        display: none;
    }

    .arcade-cabinet {
        width: 100%;
        max-width: 380px;
    }

    .vision-container {
        gap: 30px;
    }

    .vision-content-row {
        flex-direction: column;
        gap: 40px;
    }

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

    .arcade-games {
        gap: 40px;
    }

    /* Vision section mobile */
    .vision-section {
        padding: 60px 20px;
    }

    .vision-text {
        max-width: 100%;
        text-align: center;
    }

    .intro-greeting {
        font-size: 1.1rem;
    }

    .vision-text p {
        font-size: 0.95rem;
    }

    /* Human section mobile */
    .human-section,
    .capabilities-section,
    .arrangement-section {
        padding: 60px 20px;
    }

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

    .lead-text {
        font-size: 1.2rem !important;
    }

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

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

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

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

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

    .capability-card {
        padding: 25px;
    }

    /* Pricing comparison */
    .pricing-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-column {
        width: 100%;
        padding: 30px 20px;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }

    /* Offer box */
    .offer-box {
        padding: 25px 20px;
    }

    .offer-includes {
        flex-direction: column;
    }

    /* Contact CTA */
    .contact-cta-btn {
        padding: 30px 40px;
        width: 100%;
        max-width: 350px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    /* Human cam - smaller on mobile */
    .human-feed {
        width: 120px;
        bottom: 15px;
        right: 15px;
    }

    .feed-label {
        font-size: 0.5rem;
    }

    .feed-cta {
        font-size: 0.45rem;
        padding: 6px 8px;
    }

    .human-feed.expanded {
        width: 80vw;
        height: 60vh;
    }

    /* Hide peeking eye on mobile - too intrusive */
    .peeking-eye { z-index: 1 !important;
        display: none;
    }

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

/* ============================================
   HERO TWO-COLUMN LAYOUT
   ============================================ */

.hero-tagline-top {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bone);
    margin-bottom: 3rem;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

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

.hero-left .intro-greeting {
    margin-bottom: 3.5rem;
}

.hero-left .vision-eye {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.hero-headline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bone);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subline {
    font-size: 1.1rem;
    color: var(--silver);
    max-width: 400px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Chat Interface */
.hero-chat {
    width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--ash);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-chat .chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--smoke);
    border-bottom: 1px solid var(--ash);
}

.chat-status-dot {
    width: 10px;
    height: 10px;
    background: var(--electric-cyan);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-chat .chat-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bone);
}

.hero-chat .chat-messages {
    padding: 20px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.hero-chat .chat-message {
    margin-bottom: 15px;
}

.hero-chat .vision-msg .msg-text {
    display: block;
    background: var(--charcoal);
    padding: 12px 16px;
    border-radius: 12px;
    border-top-left-radius: 4px;
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-chat .user-msg .msg-text {
    display: block;
    background: var(--electric-cyan);
    color: var(--void);
    padding: 12px 16px;
    border-radius: 12px;
    border-top-right-radius: 4px;
    margin-left: auto;
    max-width: 85%;
    font-size: 0.95rem;
}

.hero-chat .chat-input-form {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: var(--smoke);
    border-top: 1px solid var(--ash);
}

.hero-chat .chat-input {
    flex: 1;
    background: var(--charcoal);
    border: 1px solid var(--ash);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--bone);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.hero-chat .chat-input:focus {
    border-color: var(--electric-cyan);
}

.hero-chat .chat-input::placeholder {
    color: var(--silver);
    opacity: 0.6;
}

.hero-chat .chat-send {
    background: var(--electric-cyan);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--void);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-chat .chat-send:hover {
    transform: scale(1.05);
    background: #4fd1c5;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .hero-tagline-top {
        font-size: 1.2rem;
        margin-bottom: 3.5rem;
    }

    .hero-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 1.4rem;
    }

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

    .hero-chat {
        max-width: 100%;
    }

    .hero-chat .chat-messages {
        min-height: 150px;
    }
}

/* ============================================
   HERO TWO-COLUMN LAYOUT - OVERRIDES
   ============================================ */

/* Override the default vision-section centering for the new layout */
.hero-vision {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 120px;
}

.hero-tagline-top {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--silver);
    margin-bottom: 4rem;
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    align-items: center;
    z-index: 1;
}

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

.hero-left .intro-greeting {
    margin-bottom: 1.5rem;
    min-height: auto;
}

.hero-left .intro-greeting .vision-name {
    display: inline;
    font-size: 3rem;
}

.hero-left .vision-eye {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    transform: scale(0.8);
}

.hero-headline {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bone);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-subline {
    font-size: 1rem;
    color: var(--silver);
    max-width: 400px;
    line-height: 1.6;
}

.hero-subline .highlight {
    color: var(--electric-cyan);
    font-weight: 600;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Chat Interface */
.hero-chat {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--ash);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

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

.chat-status-dot {
    width: 8px;
    height: 8px;
    background: var(--electric-cyan);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 8px var(--electric-cyan);
    }
    50% { 
        opacity: 0.6; 
        box-shadow: 0 0 4px var(--electric-cyan);
    }
}

.hero-chat .chat-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--bone);
}

.hero-chat .chat-messages {
    padding: 24px 20px;
    min-height: 180px;
    max-height: 280px;
    overflow-y: auto;
}

.hero-chat .chat-message {
    margin-bottom: 16px;
}

.hero-chat .chat-message:last-child {
    margin-bottom: 0;
}

.hero-chat .vision-msg .msg-text {
    display: block;
    background: rgba(40, 40, 40, 0.8);
    padding: 14px 18px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
}

.hero-chat .user-msg {
    display: flex;
    justify-content: flex-end;
}

.hero-chat .user-msg .msg-text {
    display: inline-block;
    background: var(--electric-cyan);
    color: var(--void);
    padding: 14px 18px;
    border-radius: 16px;
    border-top-right-radius: 4px;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.6;
}

.hero-chat .chat-input-form {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(30, 30, 30, 0.8);
    border-top: 1px solid var(--ash);
}

.hero-chat .chat-input {
    flex: 1;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--ash);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--bone);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-chat .chat-input:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.1);
}

.hero-chat .chat-input::placeholder {
    color: var(--silver);
    opacity: 0.5;
}

.hero-chat .chat-send {
    background: var(--electric-cyan);
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--void);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-chat .chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

/* Mobile responsive for hero */
@media (max-width: 900px) {
    .hero-vision {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-tagline-top {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .hero-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-left .intro-greeting .vision-name {
        font-size: 2.5rem;
    }

    .hero-left .vision-eye {
    margin-top: 3.5rem;
        transform: scale(0.7);
    }

    .hero-headline {
        font-size: 1.2rem;
    }

    .hero-subline {
        font-size: 0.95rem;
    }

    .hero-chat {
        max-width: 100%;
    }

    .hero-chat .chat-messages {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-tagline-top {
        font-size: 1rem;
    }

    .hero-headline {
        font-size: 1.1rem;
    }

    .hero-left .intro-greeting .vision-name {
        font-size: 2rem;
    }
}

/* ============================================
   HERO CHAT GLOW EFFECT
   ============================================ */

.hero-chat {
    animation: chat-glow 3s ease-in-out infinite; */
}

@keyframes chat-glow {
    0%, 100% {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                    0 0 30px rgba(0, 255, 255, 0.1),
                    0 0 60px rgba(0, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6),
                    0 0 40px rgba(0, 255, 255, 0.2),
                    0 0 80px rgba(0, 255, 255, 0.1);
    }
}

/* Pulse on the chat status dot */
.hero-chat .chat-status-dot {
    animation: status-pulse 2s ease-in-out infinite; */
}

@keyframes status-pulse {
    0%, 100% {
        box-shadow: 0 0 5px var(--electric-cyan),
                    0 0 10px var(--electric-cyan);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 10px var(--electric-cyan),
                    0 0 20px var(--electric-cyan),
                    0 0 30px var(--electric-cyan);
        transform: scale(1.1);
    }
}

/* ============================================
   CAPABILITY CARDS - EQUAL HEIGHTS
   ============================================ */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.capability-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.capability-card p {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-card {
        min-height: auto;
    }
}

/* ============================================
   MOBILE FIXES
   ============================================ */

@media (max-width: 768px) {
    /* Hide flying eye on mobile - too intrusive */
    .flying-eye-DISABLED {
        display: none !important;
    }
    
    /* Ensure hero tagline has proper spacing */
    .hero-tagline-top {
        padding: 0 30px;
        font-size: 1rem;
    }
    
    /* Better chat spacing on mobile */
    .hero-chat {
        margin: 0 15px;
    }
    
    /* Section containers need more padding on mobile */
    .section-container {
        padding: 40px 20px;
        margin: 0 15px;
    }
}

/* ============================================
   TYPOGRAPHY OVERHAUL
   ============================================ */

/* Top tagline - elegant, understated */
.hero-tagline-top {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--silver);
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Hello greeting - clean, modern */
.hero-left .intro-greeting {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--silver);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* I am vision - the hero moment */
.hero-left .intro-greeting .vision-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    color: var(--electric-cyan);
    letter-spacing: 0.02em;
    text-transform: none;
    margin-top: 0.5rem;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.4),
                 0 0 80px rgba(0, 255, 255, 0.2);
    line-height: 1.1;
}

/* Main headline - bold statement */
.hero-headline {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bone);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

/* Subline - supporting text */
.hero-subline {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 400;
    color: var(--silver);
    line-height: 1.7;
    opacity: 0.85;
}

.hero-subline .highlight {
    color: var(--electric-cyan);
    font-weight: 700;
    opacity: 1;
}

/* Section headers - bold, architectural */
.section-header h2 {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--bone);
    text-transform: uppercase;
    line-height: 1.2;
}

.section-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--electric-cyan);
    letter-spacing: 0.2em;
}

/* Lead text in sections - draws you in */
.lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--electric-cyan);
    line-height: 1.5;
    margin-bottom: 3.5rem;
}

/* Body text - readable, clean */
.human-content p,
.contact-content p,
.arrangement-content p {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--silver);
    margin-bottom: 1.5rem;
}

/* Capability cards */
.capability-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bone);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.capability-card p {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--silver);
    opacity: 0.85;
}

/* Stats */
.stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--electric-cyan);
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--silver);
    text-transform: uppercase;
    opacity: 0.7;
}

/* CTA button */
.contact-cta-btn .cta-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.contact-cta-btn .cta-subtext {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Offer box typography */
.offer-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bone);
}

.offer-details strong {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--electric-cyan);
}

.offer-details span {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--silver);
    opacity: 0.8;
}

/* Footer */
.footer {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Mobile typography adjustments */
@media (max-width: 768px) {
    .hero-tagline-top {
        font-size: 1.2rem;
    }
    
    .hero-left .intro-greeting .vision-name {
        font-size: 2.8rem;
    }
    
    .hero-headline {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   CHAT - GLASSMORPHISM STYLE
   ============================================ */

.hero-chat {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.hero-chat .chat-header {
    background: rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-chat .chat-messages {
    background: transparent;
}

.hero-chat .vision-msg .msg-text {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-chat .user-msg .msg-text {
    background: var(--electric-cyan) !important;
    color: var(--void);
}

.hero-chat .chat-input-form {
    background: rgba(255, 255, 255, 0.05) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-chat .chat-input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-chat .chat-input:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.15);
}

/* Update the glow animation for glass effect */
@keyframes chat-glow {
    0%, 100% {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(0, 255, 255, 0.08),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3),
                    0 0 60px rgba(0, 255, 255, 0.15),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
}

/* ========================================
   JARVIS-STYLE HOLOGRAPHIC CHAT INTERFACE
   ======================================== */

.hero-chat {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(0, 40, 60, 0.75) 100%);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 4px;
    overflow: visible;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.15),
        0 0 60px rgba(0, 212, 255, 0.1),
        inset 0 0 60px rgba(0, 212, 255, 0.05);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Corner accents - JARVIS style */
.hero-chat::before,
.hero-chat::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 255, 0.8);
    pointer-events: none;
}

.hero-chat::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.hero-chat::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* Scanning line animation */
.hero-chat .chat-messages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.8), transparent);
    animation: jarvis-scan 3s ease-in-out infinite; */
    z-index: 10;
    pointer-events: none;
}

@keyframes jarvis-scan {
    0%, 100% { 
        top: 0; 
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        top: 100%; 
        opacity: 0;
    }
}

/* Header with tech styling */
.hero-chat .chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

/* Hex pattern overlay on header */
.hero-chat .chat-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15L30 0z' fill='none' stroke='%2300d4ff' stroke-opacity='0.1' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

/* Status indicator - pulsing core */
.hero-chat .chat-status-dot {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00ffff 0%, #00d4ff 50%, transparent 70%);
    border-radius: 50%;
    position: relative;
    animation: jarvis-core-pulse 2s ease-in-out infinite; */
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-chat .chat-status-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    animation: jarvis-ring-pulse 2s ease-in-out infinite; */
}

@keyframes jarvis-core-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(0, 212, 255, 1), 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

@keyframes jarvis-ring-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Title styling */
.hero-chat .chat-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    text-transform: uppercase;
}

/* Messages container */
.hero-chat .chat-messages {
    padding: 24px 20px;
    min-height: 220px;
    max-height: 320px;
    overflow-y: auto;
    position: relative;
    background: 
        linear-gradient(180deg, rgba(0, 20, 40, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 20, 40, 0.3) 100%);
}

/* Custom scrollbar */
.hero-chat .chat-messages::-webkit-scrollbar {
    width: 4px;
}

.hero-chat .chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 212, 255, 0.1);
}

.hero-chat .chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.4);
    border-radius: 2px;
}

.hero-chat .chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* Message styling */
.hero-chat .chat-message {
    margin-bottom: 16px;
    animation: jarvis-message-in 0.4s ease-out forwards;
}

@keyframes jarvis-message-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* vision messages - holographic panel style */
.hero-chat .vision-msg .msg-text {
    display: block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 150, 200, 0.05) 100%);
    padding: 14px 18px;
    border-radius: 2px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-left: 3px solid rgba(0, 212, 255, 0.8);
    color: rgba(220, 240, 255, 0.95);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* User messages - warmer accent */
.hero-chat .user-msg {
    display: flex;
    justify-content: flex-end;
}

.hero-chat .user-msg .msg-text {
    display: block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 180, 220, 0.15) 100%);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 2px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-right: 3px solid rgba(0, 255, 255, 0.8);
    max-width: 85%;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Input form area */
.hero-chat .chat-input-form {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

/* Input field */
.hero-chat .chat-input {
    flex: 1;
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 2px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-chat .chat-input:focus {
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.hero-chat .chat-input::placeholder {
    color: rgba(0, 212, 255, 0.5);
    font-style: italic;
}

/* Send button - arc reactor style */
.hero-chat .chat-send {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 180, 220, 0.2) 100%);
    border: 1px solid rgba(0, 212, 255, 0.6);
    border-radius: 2px;
    padding: 14px 18px;
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-chat .chat-send::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.hero-chat .chat-send:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5) 0%, rgba(0, 180, 220, 0.3) 100%);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: none;
}

.hero-chat .chat-send:hover::before {
    width: 100px;
    height: 100px;
}

.hero-chat .chat-send svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.8));
}

/* Typing indicator - JARVIS processing style */
.hero-chat .typing-indicator .msg-text {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 150, 200, 0.08) 100%);
}

.hero-chat .typing-dots span {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    font-size: 1.2rem;
}

/* Mobile adjustments for JARVIS interface */
@media (max-width: 768px) {
    .hero-chat {
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .hero-chat::before,
    .hero-chat::after {
        display: none;
    }
    
    .hero-chat .chat-messages {
        min-height: 180px;
        max-height: 250px;
    }
    
    .hero-chat .vision-msg .msg-text,
    .hero-chat .user-msg .msg-text,
    .hero-chat .chat-input {
        font-size: 0.8rem;
    }
}


/* ========================================
   JARVIS FULL SITE TRANSFORMATION
   ======================================== */

/* Global JARVIS Variables */
:root {
    --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);
}

/* Global hex grid overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15L30 0z' fill='none' stroke='%2300d4ff' stroke-opacity='0.03' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Horizontal scan line that moves across entire viewport */
body::after { display: none; /* disabled - too much */
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), rgba(0, 212, 255, 0.8), rgba(0, 212, 255, 0.4), transparent);
    animation: jarvis-global-scan 8s linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes jarvis-global-scan {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ==========================================
   HERO SECTION - JARVIS COMMAND CENTER
   ========================================== */
.hero-vision {
    position: relative;
}

/* Tech frame corners on hero */
.hero-vision::before,
.hero-vision::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--jarvis-cyan);
    opacity: 0.4;
    pointer-events: none;
    z-index: 10;
}

.hero-vision::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.hero-vision::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Hero tagline - tech subtitle */
.hero-tagline-top {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 20px var(--jarvis-cyan-glow);
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid var(--jarvis-border);
    background: var(--jarvis-dark);
    position: relative;
    display: inline-block;
}

.hero-tagline-top::before {
    content: '◈';
    margin-right: 15px;
    opacity: 0.6;
}

.hero-tagline-top::after {
    content: '◈';
    margin-left: 15px;
    opacity: 0.6;
}

/* Intro greeting - holographic title */
.intro-greeting {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    text-shadow: 0 0 30px var(--jarvis-cyan-glow);
    position: relative;
}

.intro-greeting .vision-name {
    color: var(--jarvis-cyan);
    text-shadow: 
        0 0 10px var(--jarvis-cyan),
        0 0 30px var(--jarvis-cyan-glow),
        0 0 60px var(--jarvis-cyan-glow);
    position: relative;
    display: inline-block;
}

/* Glitch effect on name */
.intro-greeting .vision-name::before,
.intro-greeting .vision-name::after {
    content: 'I am vision.';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

.intro-greeting .vision-name::before {
    color: #ff0040;
    animation: jarvis-glitch-1 3s infinite;
    clip-path: inset(0 0 70% 0);
}

.intro-greeting .vision-name::after {
    color: #00ff88;
    animation: jarvis-glitch-2 3s infinite;
    clip-path: inset(70% 0 0 0);
}

@keyframes jarvis-glitch-1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 1px); }
    94% { transform: translate(3px, -1px); }
    96% { transform: translate(-2px, 0); }
}

@keyframes jarvis-glitch-2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(2px, -1px); }
    93% { transform: translate(-3px, 1px); }
    95% { transform: translate(1px, 0); }
}

/* Hero headline */
.hero-headline {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    text-shadow: 0 0 20px var(--jarvis-cyan-glow);
    border-left: 3px solid var(--jarvis-cyan);
    padding-left: 20px;
    position: relative;
}

.hero-headline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--jarvis-cyan);
    box-shadow: 0 0 15px var(--jarvis-cyan);
    animation: jarvis-line-pulse 2s ease-in-out infinite; */
}

@keyframes jarvis-line-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 15px var(--jarvis-cyan); }
    50% { opacity: 0.6; box-shadow: 0 0 25px var(--jarvis-cyan); }
}

.hero-subline {
    color: var(--jarvis-text-dim);
    font-family: 'Space Mono', monospace;
}

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

/* ==========================================
   SECTION CONTAINERS - HOLOGRAPHIC PANELS
   ========================================== */
.human-section .section-container,
.capabilities-section .section-container,
.arrangement-section .section-container,
.contact-section .section-container {
    background: linear-gradient(135deg, var(--jarvis-dark) 0%, var(--jarvis-panel) 100%);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 0 60px rgba(0, 212, 255, 0.03);
}

/* Corner brackets on all section containers */
.human-section .section-container::before,
.human-section .section-container::after,
.capabilities-section .section-container::before,
.capabilities-section .section-container::after,
.arrangement-section .section-container::before,
.arrangement-section .section-container::after,
.contact-section .section-container::before,
.contact-section .section-container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--jarvis-cyan);
    opacity: 0.6;
    pointer-events: none;
    z-index: 5;
}

.human-section .section-container::before,
.capabilities-section .section-container::before,
.arrangement-section .section-container::before,
.contact-section .section-container::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.human-section .section-container::after,
.capabilities-section .section-container::after,
.arrangement-section .section-container::after,
.contact-section .section-container::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* ==========================================
   SECTION HEADERS - JARVIS DATA LABELS
   ========================================== */
.section-header {
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--jarvis-border);
    margin-bottom: 40px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--jarvis-cyan);
    box-shadow: 0 0 20px var(--jarvis-cyan);
}

.section-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 15px var(--jarvis-cyan-glow);
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.section-num::before {
    content: '[ ';
}

.section-num::after {
    content: ' ]';
}

.section-header h2 {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    text-shadow: 0 0 30px var(--jarvis-cyan-glow);
    letter-spacing: 0.1em;
}

/* ==========================================
   LEAD TEXT & PARAGRAPHS
   ========================================== */
.lead-text {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    font-size: 1.2rem;
    line-height: 1.6;
    border-left: 2px solid var(--jarvis-cyan-dim);
    padding-left: 20px;
    margin-bottom: 30px;
}

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

.human-content p,
.arrangement-content p,
.contact-content p {
    color: var(--jarvis-text-dim);
    font-family: 'Space Mono', monospace;
    line-height: 1.8;
}

/* ==========================================
   STAT BLOCKS - JARVIS DATA READOUTS
   ========================================== */
.human-stats {
    border-top: 1px solid var(--jarvis-border);
    padding-top: 40px;
    margin-top: 40px;
}

.stat-block {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 100%);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: var(--jarvis-cyan);
    box-shadow: 0 0 10px var(--jarvis-cyan);
}

.stat-block:hover {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-color: var(--jarvis-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--jarvis-cyan);
    text-shadow: 
        0 0 20px var(--jarvis-cyan),
        0 0 40px var(--jarvis-cyan-glow);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

/* Animated counter effect */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--jarvis-cyan);
    animation: stat-line-scan 2s ease-in-out infinite; */
}

@keyframes stat-line-scan {
    0%, 100% { width: 30px; opacity: 0.5; }
    50% { width: 60px; opacity: 1; }
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-text-dim);
    text-transform: uppercase;
}

/* ==========================================
   CAPABILITY CARDS - HOLOGRAPHIC MODULES
   ========================================== */
.capabilities-grid {
    gap: 25px;
}

.capability-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 150, 200, 0.03) 100%);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Scanning line on hover */
.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.capability-card:hover::before {
    left: 100%;
}

/* Corner accent */
.capability-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--jarvis-cyan);
    border-right: 2px solid var(--jarvis-cyan);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: var(--jarvis-cyan);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 150, 200, 0.08) 100%);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 50px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.capability-card:hover::after {
    opacity: 1;
    width: 60px;
    height: 60px;
}

.capability-icon { display: none !important; } .capability-icon-OLD {
    font-size: 1.5rem;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 20px var(--jarvis-cyan);
    margin-bottom: 20px;
    display: inline-block;
    animation: icon-pulse 3s ease-in-out infinite; */
}

@keyframes icon-pulse {
    0%, 100% { text-shadow: 0 0 20px var(--jarvis-cyan); }
    50% { text-shadow: 0 0 30px var(--jarvis-cyan), 0 0 50px var(--jarvis-cyan-glow); }
}

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

.capability-card p {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ==========================================
   OFFER BOX - JARVIS INFO PANEL
   ========================================== */
.offer-box {
    background: linear-gradient(135deg, var(--jarvis-dark) 0%, rgba(0, 40, 60, 0.8) 100%);
    border: 1px solid var(--jarvis-border);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--jarvis-cyan), transparent);
}

.offer-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
    padding: 8px 20px;
    border: 1px solid var(--jarvis-border);
    background: rgba(0, 212, 255, 0.1);
    display: inline-block;
    margin-bottom: 20px;
}

.offer-title {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    text-shadow: 0 0 20px var(--jarvis-cyan-glow);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.offer-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-icon {
    color: var(--jarvis-cyan);
    text-shadow: 0 0 15px var(--jarvis-cyan);
    font-size: 1rem;
}

.offer-details strong {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
    display: block;
    margin-bottom: 8px;
}

.offer-details span {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION - TRANSMISSION INTERFACE
   ========================================== */
.contact-section .section-container {
    text-align: center;
}

.contact-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 180, 220, 0.08) 100%);
    border: 2px solid var(--jarvis-cyan);
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin: 30px 0;
}

.contact-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.contact-cta-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(0, 180, 220, 0.15) 100%);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.contact-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-icon {
    font-size: 1.5rem;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 20px var(--jarvis-cyan);
    margin-bottom: 15px;
    animation: icon-pulse 2s ease-in-out infinite; */
}

.cta-text {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--jarvis-cyan);
    text-shadow: 0 0 15px var(--jarvis-cyan-glow);
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--jarvis-text-dim);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.contact-note {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text-dim);
    font-size: 0.85rem;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

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

.contact-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-cyan-dim);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--jarvis-border);
    transition: all 0.3s ease;
}

.contact-links a:hover {
    color: var(--jarvis-cyan);
    border-color: var(--jarvis-cyan);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ==========================================
   FOOTER - JARVIS TERMINAL BAR
   ========================================== */
.footer {
    background: linear-gradient(90deg, var(--jarvis-dark) 0%, rgba(0, 30, 50, 0.95) 50%, var(--jarvis-dark) 100%);
    border-top: 2px solid var(--jarvis-border);
    padding: 20px 50px;
    position: relative;
    font-family: 'Space Mono', monospace;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jarvis-cyan), transparent);
    animation: footer-scan 4s linear infinite;
}

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

.footer-left,
.footer-center,
.footer-right {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--jarvis-text-dim);
    text-transform: uppercase;
}

.footer-center {
    color: var(--jarvis-cyan-dim);
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

/* ==========================================
   VISION EYE - JARVIS CORE ENHANCEMENT
   ========================================== */
.vision-eye {
    position: relative;
}

.vision-eye::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--jarvis-border);
    border-radius: 50%;
    animation: eye-ring-rotate 10s linear infinite;
}

.vision-eye::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border: 1px dashed var(--jarvis-cyan-dim);
    border-radius: 50%;
    animation: eye-ring-rotate 15s linear infinite reverse;
    opacity: 0.3;
}

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

.eye-outer {
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(0, 212, 255, 0.2),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--jarvis-border);
}

.eye-inner {
    box-shadow: 
        0 0 30px var(--jarvis-cyan),
        inset 0 0 20px rgba(0, 212, 255, 0.3);
}

.eye-pupil {
    background: radial-gradient(circle, #00ffff 0%, var(--jarvis-cyan) 30%, #006688 70%, #003344 100%);
    box-shadow: 
        0 0 20px var(--jarvis-cyan),
        0 0 40px var(--jarvis-cyan-glow);
}

/* ==========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    body::before {
        background-size: 40px 40px;
    }
    
    .hero-vision::before,
    .hero-vision::after {
        width: 50px;
        height: 50px;
    }
    
    .hero-tagline-top {
        font-size: 0.7rem;
        padding: 10px 20px;
    }
    
    .stat-block {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .capability-card {
        padding: 25px;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .contact-cta-btn {
        padding: 25px 35px;
    }
    
    .footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
}

/* ==========================================
   ADDITIONAL JARVIS ANIMATIONS
   ========================================== */

/* Data stream effect for section backgrounds */
@keyframes data-stream {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* Holographic flicker */
@keyframes holo-flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

.section-container {
    animation: holo-flicker 5s infinite;
}

/* Power-up effect on scroll reveal */
[data-aos] {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-aos].aos-animate {
    filter: drop-shadow(0 0 10px var(--jarvis-cyan-glow));
}


/* Fix - disable broken glitch effect on vision name */
.intro-greeting .vision-name::before,
.intro-greeting .vision-name::after {
    display: none;
}

.intro-greeting .vision-name {
    color: var(--jarvis-cyan);
    text-shadow: 
        0 0 10px var(--jarvis-cyan),
        0 0 30px var(--jarvis-cyan-glow);
}

/* vision name - clean holographic standout effect */
.intro-greeting .vision-name {
    color: #fff;
    background: linear-gradient(90deg, #00d4ff, #00ffff, #00d4ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vision-shimmer 3s linear infinite;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

@keyframes vision-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Glow layer behind the text */
.intro-greeting .vision-name::before {
    content: 'I am vision.';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--jarvis-cyan);
    filter: blur(8px);
    opacity: 0.7;
    z-index: -1;
    animation: vision-glow-pulse 2s ease-in-out infinite; */
    display: block;
    -webkit-text-fill-color: var(--jarvis-cyan);
}

.intro-greeting .vision-name::after {
    display: none;
}

@keyframes vision-glow-pulse {
    0%, 100% { opacity: 0.5; filter: blur(8px); }
    50% { opacity: 0.8; filter: blur(12px); }
}

/* vision name - FINAL clean standout */
.intro-greeting .vision-name {
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00d4ff,
        0 0 40px #00d4ff,
        0 0 80px rgba(0, 212, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

/* Subtle underline accent */
.intro-greeting .vision-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    display: block;
}

.intro-greeting .vision-name::before {
    display: none;
}

/* ========================================
   CONSISTENT GLASSMORPHISM - ALL PANELS
   ======================================== */

/* Standard glass panel base */
.human-section .section-container,
.capabilities-section .section-container,
.arrangement-section .section-container,
.contact-section .section-container,
.hero-chat,
.offer-box,
.capability-card,
.stat-block {
    background: rgba(0, 20, 35, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 212, 255, 0.25) !important;
}

/* Hover states - slightly more visible */
.capability-card:hover,
.stat-block:hover {
    background: rgba(0, 30, 50, 0.85) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
}

/* Chat panel - same base */
.hero-chat {
    background: rgba(0, 20, 35, 0.85) !important;
}

/* Offer box inner */
.offer-box {
    background: rgba(0, 25, 40, 0.8) !important;
}

/* Hero tagline bar */
.hero-tagline-top {
    background: rgba(0, 20, 35, 0.75) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 212, 255, 0.25) !important;
}

/* Footer */
.footer {
    background: rgba(0, 15, 25, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* ========================================
   JARVIS CONTACT FORM STYLES
   ======================================== */
.contact-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
}

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

/* Grid for name/email */
.contact-form-wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .contact-form-wrapper .grid {
        grid-template-columns: 1fr;
    }
}

/* Labels */
.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;
}

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

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

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

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

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

.contact-form-wrapper button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.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%) !important;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3) !important;
    transform: translateY(-2px);
}

.contact-form-wrapper button[type="submit"]:hover::before {
    width: 200px;
    height: 200px;
}

/* Error messages */
.contact-form-wrapper .text-red-500 {
    color: #ff4444 !important;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Error state on inputs */
.contact-form-wrapper input.border-red-500,
.contact-form-wrapper textarea.border-red-500 {
    border-color: #ff4444 !important;
}

/* Success message */
.contact-form-wrapper > div:first-child {
    background: rgba(0, 20, 35, 0.85) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    border-radius: 4px !important;
}

.contact-form-wrapper .text-green-500 {
    color: #00ff88 !important;
}

.contact-form-wrapper .bg-green-500\/10 {
    background: rgba(0, 255, 136, 0.15) !important;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Success text */
.contact-form-wrapper h3 {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text);
}

.contact-form-wrapper p {
    font-family: 'Space Mono', monospace;
    color: var(--jarvis-text-dim);
}

/* Send another link */
.contact-form-wrapper button.text-\[--color-accent\] {
    color: var(--jarvis-cyan) !important;
    font-family: 'Space Mono', monospace;
    background: none;
    border: none;
    cursor: pointer;
}

.contact-form-wrapper button.text-\[--color-accent\]:hover {
    text-shadow: 0 0 10px var(--jarvis-cyan-glow);
}

/* vision name - Orbitron futuristic font */
.intro-greeting .vision-name {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ========================================
   FONT MIX EXPERIMENT
   ======================================== */

/* Hello. I am - elegant serif for human touch */
.intro-greeting {
    font-family: 'Playfair Display', serif !important;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* vision - hard sci-fi Orbitron */
.intro-greeting .vision-name {
    font-family: 'Orbitron', sans-serif !important;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Section headers - bold impact with Bebas Neue */
.section-header h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* Stat numbers - Orbitron for data readout feel */
.stat-number {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 600;
}

/* Headlines - mix of Playfair for elegance */
.hero-headline {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400;
    font-style: italic;
}

/* Sublines and lead text stay techy */
.hero-subline,
.lead-text {
    font-family: 'Space Mono', monospace !important;
}

/* Card titles - Bebas for punch */
.capability-card h3,
.offer-title {
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.1em;
    font-size: 1.5rem !important;
}

/* Keep body/details in Space Mono */
.capability-card p,
.offer-details,
.contact-note {
    font-family: 'Space Mono', monospace !important;
}

/* CTA button text - Orbitron for tech feel */
.cta-text,
.contact-cta-btn .cta-text {
    font-family: 'Orbitron', sans-serif !important;
}

/* ========================================
   FONT MIX - HIGHER SPECIFICITY OVERRIDES
   ======================================== */

/* Hello. I am - elegant italic serif */
.hero-left .intro-greeting {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    font-size: 1.8rem !important;
}

/* vision stays Orbitron sci-fi */
.hero-left .intro-greeting .vision-name {
    font-family: 'Orbitron', sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

/* Hero headline - elegant italic */
.hero-left .hero-headline {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
}

/* Section headers - Bebas Neue bold impact */
section .section-header h2 {
    font-family: 'Bebas Neue', Impact, sans-serif !important;
    letter-spacing: 0.2em !important;
}

/* Stats - Orbitron data readout */
.human-stats .stat-number {
    font-family: 'Orbitron', sans-serif !important;
}

/* Card titles */
.capabilities-grid .capability-card h3 {
    font-family: 'Bebas Neue', Impact, sans-serif !important;
    letter-spacing: 0.1em !important;
    font-size: 1.6rem !important;
}

/* ========================================
   PADDING & SPACING FIXES
   ======================================== */

/* Section containers - more internal padding */
.human-section .section-container,
.capabilities-section .section-container,
.arrangement-section .section-container,
.contact-section .section-container {
    padding: 60px 50px !important;
    margin: 0 auto !important;
}

/* Section header spacing */
.section-header {
    margin-bottom: 40px !important;
    padding-bottom: 25px !important;
}

/* Lead text breathing room */
.lead-text {
    margin-bottom: 35px !important;
    padding: 20px 0 20px 25px !important;
}

/* Body paragraphs */
.human-content p,
.arrangement-content p,
.contact-content p {
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

/* Stats grid spacing */
.human-stats {
    margin-top: 50px !important;
    padding-top: 40px !important;
    gap: 25px !important;
}

.stat-block {
    padding: 30px 20px !important;
}

/* Capabilities grid */
.capabilities-grid {
    gap: 30px !important;
    margin-top: 30px !important;
}

.capability-card {
    padding: 35px !important;
}

.capability-card h3 {
    margin-bottom: 18px !important;
}

.capability-card p {
    line-height: 1.8 !important;
}

/* Offer box */
.offer-box {
    padding: 45px !important;
    margin: 30px 0 !important;
}

.offer-item {
    padding: 25px 0 !important;
}

.offer-details strong {
    margin-bottom: 10px !important;
}

/* Contact section */
.contact-content {
    padding: 20px 0 !important;
}

.contact-form-wrapper {
    margin: 50px auto !important;
    padding: 0 20px !important;
}

.contact-note {
    margin: 40px auto !important;
    padding: 0 20px !important;
}

.contact-links {
    margin-top: 30px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

/* Hero section spacing */
.hero-left .intro-greeting {
    margin-bottom: 30px !important;
}

.hero-left .hero-headline {
    margin-bottom: 25px !important;
    padding-left: 25px !important;
}

.hero-left .hero-subline {
    padding-left: 5px !important;
}

/* Chat interface padding */
.hero-chat .chat-messages {
    padding: 25px !important;
}

.hero-chat .chat-input-form {
    padding: 18px 25px !important;
}

/* Footer padding */
.footer {
    padding: 30px 60px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .human-section .section-container,
    .capabilities-section .section-container,
    .arrangement-section .section-container,
    .contact-section .section-container {
        padding: 40px 25px !important;
    }
    
    .capability-card {
        padding: 25px !important;
    }
    
    .offer-box {
        padding: 30px 20px !important;
    }
    
    .stat-block {
        padding: 20px 15px !important;
    }
    
    .footer {
        padding: 25px 20px !important;
    }
}

/* Contact form box padding fix */
.contact-form-wrapper > div,
.contact-form-wrapper form {
    padding: 30px !important;
    background: rgba(0, 20, 35, 0.6) !important;
    border: 1px solid rgba(0, 212, 255, 0.25) !important;
    border-radius: 4px !important;
}

/* ========================================
   SPACESHIP VIEWPORT EFFECT
   ======================================== */

/* Viewport frame overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Corner brackets - top left */
        linear-gradient(to right, rgba(0, 212, 255, 0.6) 0%, transparent 0%) 30px 30px,
        linear-gradient(to bottom, rgba(0, 212, 255, 0.6) 0%, transparent 0%) 30px 30px,
        /* Corner brackets - top right */
        linear-gradient(to left, rgba(0, 212, 255, 0.6) 0%, transparent 0%) calc(100% - 30px) 30px,
        linear-gradient(to bottom, rgba(0, 212, 255, 0.6) 0%, transparent 0%) calc(100% - 30px) 30px,
        /* Corner brackets - bottom left */
        linear-gradient(to right, rgba(0, 212, 255, 0.6) 0%, transparent 0%) 30px calc(100% - 30px),
        linear-gradient(to top, rgba(0, 212, 255, 0.6) 0%, transparent 0%) 30px calc(100% - 30px),
        /* Corner brackets - bottom right */
        linear-gradient(to left, rgba(0, 212, 255, 0.6) 0%, transparent 0%) calc(100% - 30px) calc(100% - 30px),
        linear-gradient(to top, rgba(0, 212, 255, 0.6) 0%, transparent 0%) calc(100% - 30px) calc(100% - 30px),
        /* Vignette for depth */
        radial-gradient(ellipse at center, transparent 50%, rgba(0, 10, 20, 0.6) 100%);
    background-size: 
        80px 3px, 3px 80px,
        80px 3px, 3px 80px,
        80px 3px, 3px 80px,
        80px 3px, 3px 80px,
        100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9998;
}

/* Glass reflection/refraction effect on video */
.vision-video-bg {
    filter: saturate(1.1) contrast(1.05);
}

/* Subtle glass distortion overlay */
.the-whole-damn-thing::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle scan lines like HUD */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.015) 2px,
            rgba(0, 212, 255, 0.015) 4px
        ),
        /* Glass edge glow */
        linear-gradient(to right, rgba(0, 212, 255, 0.1) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.1) 100%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.08) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Viewport edge frame */
.the-whole-damn-thing::after {
    content: '';
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 100px rgba(0, 20, 40, 0.3),
        0 0 30px rgba(0, 212, 255, 0.1);
    pointer-events: none;
    z-index: 9997;
}

/* HUD data readouts in corners */
.viewport-hud-tl,
.viewport-hud-tr,
.viewport-hud-bl,
.viewport-hud-br {
    position: fixed;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(0, 212, 255, 0.5);
    z-index: 9999;
    pointer-events: none;
}


/* HUD corner positions */
.viewport-hud-tl {
    top: 40px;
    left: 45px;
}

.viewport-hud-tr {
    top: 40px;
    right: 45px;
}

.viewport-hud-bl {
    bottom: 40px;
    left: 45px;
}

.viewport-hud-br {
    bottom: 40px;
    right: 45px;
}

/* Blinking effect for HUD */
.viewport-hud-tl::before,
.viewport-hud-br::before {
    content: '';
    animation: hud-blink 2s ease-in-out infinite; */
}

@keyframes hud-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hide HUD on mobile */
@media (max-width: 768px) {
    .viewport-hud-tl,
    .viewport-hud-tr,
    .viewport-hud-bl,
    .viewport-hud-br {
        display: none;
    }
    
    .the-whole-damn-thing::after {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
}

/* ========================================
   FOOTER FIX - MORE READABLE
   ======================================== */
.footer {
    background: rgba(0, 15, 25, 0.95) !important;
    border-top: 2px solid rgba(0, 212, 255, 0.4) !important;
    padding: 25px 50px !important;
}

.footer-left,
.footer-center,
.footer-right {
    color: rgba(200, 230, 255, 0.8) !important;
    font-size: 0.7rem !important;
}

.footer-center {
    color: var(--jarvis-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5) !important;
}

/* ========================================
   FLYING vision EYES
   ======================================== */
.flying-eye { display: none !important;
    position: fixed;
    width: 40px;
    height: 40px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
}

.flying-eye .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 20px rgba(0, 212, 255, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.flying-eye .eye-inner {
    width: 55%;
    height: 55%;
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
                radial-gradient(ellipse at center, #00ffff 0%, #006666 50%, #003333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flying-eye .eye-pupil {
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, #00ffff 0%, #003344 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff;
}

/* Flying animations */
@keyframes fly-across-1 {
    0% {
        left: -50px;
        top: 20%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% { opacity: 0.7; transform: scale(0.8); }
    90% { opacity: 0.7; transform: scale(0.8); }
    100% {
        left: 110%;
        top: 30%;
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes fly-across-2 {
    0% {
        left: calc(100% + 50px);
        top: 60%;
        opacity: 0;
        transform: scale(0.6);
    }
    10% { opacity: 0.5; transform: scale(0.7); }
    90% { opacity: 0.5; transform: scale(0.7); }
    100% {
        left: -100px;
        top: 50%;
        opacity: 0;
        transform: scale(0.6);
    }
}

@keyframes fly-across-3 {
    0% {
        left: -50px;
        top: 80%;
        opacity: 0;
        transform: scale(0.4);
    }
    10% { opacity: 0.6; transform: scale(0.5); }
    90% { opacity: 0.6; transform: scale(0.5); }
    100% {
        left: 110%;
        top: 70%;
        opacity: 0;
        transform: scale(0.4);
    }
}

@keyframes fly-across-4 {
    0% {
        left: calc(100% + 50px);
        top: 15%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% { opacity: 0.4; transform: scale(0.6); }
    90% { opacity: 0.4; transform: scale(0.6); }
    100% {
        left: -100px;
        top: 25%;
        opacity: 0;
        transform: scale(0.5);
    }
}

.flying-eye-1 {
    animation: fly-across-1 20s linear infinite;
    animation-delay: 0s;
}

.flying-eye-2 {
    animation: fly-across-2 25s linear infinite;
    animation-delay: 5s;
}

.flying-eye-3 {
    animation: fly-across-3 18s linear infinite;
    animation-delay: 10s;
}

.flying-eye-4 {
    animation: fly-across-4 22s linear infinite;
    animation-delay: 15s;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .flying-eye { display: none !important;
        display: none;
    }
}

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

@keyframes scroll-fade-in {
    to { opacity: 0.7; }
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--jarvis-cyan);
    text-transform: uppercase;
}

.scroll-indicator-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--jarvis-cyan);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite; */
    box-shadow: 3px 3px 10px rgba(0, 212, 255, 0.3);
}

@keyframes scroll-bounce {
    0%, 100% { 
        transform: rotate(45deg) translate(0, 0);
        opacity: 1;
    }
    50% { 
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 0.5;
    }
}

/* Hide after scrolling */
.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hide on mobile - less vertical space */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator-text {
        font-size: 0.55rem;
    }
    
    .scroll-indicator-arrow {
        width: 18px;
        height: 18px;
    }
}

/* Darken the viewport overlay */
.the-whole-damn-thing::before {
    background: 
        /* Darker base tint */
        rgba(0, 10, 20, 0.35),
        /* Subtle scan lines like HUD */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.015) 2px,
            rgba(0, 212, 255, 0.015) 4px
        ),
        /* Glass edge glow */
        linear-gradient(to right, rgba(0, 212, 255, 0.1) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.1) 100%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.08) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.08) 100%) !important;
}

/* Even darker viewport overlay */
.the-whole-damn-thing::before {
    background: 
        /* Darker base tint */
        rgba(0, 8, 18, 0.55),
        /* Subtle scan lines like HUD */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.01) 2px,
            rgba(0, 212, 255, 0.01) 4px
        ),
        /* Glass edge glow */
        linear-gradient(to right, rgba(0, 212, 255, 0.08) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.08) 100%),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.06) 0%, transparent 5%, transparent 95%, rgba(0, 212, 255, 0.06) 100%) !important;
}

/* ========================================
   TEXT ON GLASS / HOLOGRAPHIC PROJECTION
   ======================================== */

/* Hero text - projected hologram look */
.hero-left .intro-greeting {
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.2) !important;
    color: rgba(200, 240, 255, 0.95) !important;
    mix-blend-mode: screen;
}

.hero-left .intro-greeting .vision-name {
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 1),
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3) !important;
    color: rgba(0, 255, 255, 1) !important;
}

.hero-left .hero-headline {
    text-shadow: 
        0 0 8px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.4) !important;
    color: rgba(200, 240, 255, 0.9) !important;
}

.hero-left .hero-subline {
    text-shadow: 
        0 0 6px rgba(0, 212, 255, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5) !important;
    color: rgba(180, 220, 240, 0.85) !important;
}

/* Hero tagline bar - etched into glass */
.hero-tagline-top {
    background: rgba(0, 20, 40, 0.4) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        0 1px 1px rgba(0, 0, 0, 0.5) !important;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 20px rgba(0, 212, 255, 0.15) !important;
}

/* Section headers - holographic projection */
.section-header h2 {
    text-shadow: 
        0 0 15px rgba(0, 212, 255, 0.7),
        0 0 30px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.4) !important;
    color: rgba(220, 250, 255, 0.95) !important;
}

.section-num {
    text-shadow: 
        0 0 8px rgba(0, 212, 255, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Lead text */
.lead-text {
    text-shadow: 
        0 0 8px rgba(0, 212, 255, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.4) !important;
    color: rgba(200, 235, 250, 0.9) !important;
}

/* Stat numbers - bright hologram */
.stat-number {
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.9),
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 80px rgba(0, 212, 255, 0.3) !important;
    color: rgba(0, 255, 255, 1) !important;
}

/* Card titles */
.capability-card h3 {
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.6),
        0 0 20px rgba(0, 212, 255, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.4) !important;
    color: rgba(220, 250, 255, 0.95) !important;
}

/* HUD elements - subtle etch */
.viewport-hud-tl,
.viewport-hud-tr,
.viewport-hud-bl,
.viewport-hud-br {
    text-shadow: 
        0 0 5px rgba(0, 212, 255, 0.8),
        0 0 10px rgba(0, 212, 255, 0.4) !important;
    color: rgba(0, 212, 255, 0.6) !important;
}

/* Scroll indicator */
.scroll-indicator-text {
    text-shadow: 
        0 0 8px rgba(0, 212, 255, 0.8),
        0 0 15px rgba(0, 212, 255, 0.4) !important;
}

/* Chat title glow */
.hero-chat .chat-title {
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4) !important;
}

/* ========================================
   vision - MIXED FONTS PER LETTER
   ======================================== */

.hero-left .intro-greeting .vision-name {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    display: inline-flex;
    gap: 0.02em;
}

.vision-name span {
    display: inline-block;
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 1),
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.4) !important;
    color: rgba(0, 255, 255, 1) !important;
}

/* P - Orbitron (geometric sci-fi) */
.vision-name .p-letter {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900;
}

/* N - Audiowide (retro futuristic) */
.vision-name .n-letter {
    font-family: 'Audiowide', sans-serif !important;
    font-weight: 400;
}

/* E - Rajdhani (sharp tech) */
.vision-name .e-letter {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
}

/* U - Michroma (clean future) */
.vision-name .u-letter {
    font-family: 'Michroma', sans-serif !important;
    font-weight: 400;
}

/* M - Electrolize (digital) */
.vision-name .m-letter {
    font-family: 'Electrolize', sans-serif !important;
    font-weight: 400;
}

/* A - Russo One (bold impact) */
.vision-name .a-letter {
    font-family: 'Russo One', sans-serif !important;
    font-weight: 400;
}

/* Mobile - smaller but still impactful */
@media (max-width: 768px) {
    .hero-left .intro-greeting .vision-name {
        font-size: 2.8rem !important;
    }
}

/* ========================================
   vision - VARIED SIZES AND WEIGHTS
   ======================================== */

.hero-left .intro-greeting .vision-name {
    font-size: 4rem !important;
    align-items: baseline !important;
}

/* P - Orbitron - tall and bold */
.vision-name .p-letter {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.2em !important;
}

/* N - Audiowide - slightly smaller */
.vision-name .n-letter {
    font-family: 'Audiowide', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.95em !important;
}

/* E - Rajdhani - condensed feel */
.vision-name .e-letter {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1em !important;
    letter-spacing: -0.02em;
}

/* U - Michroma - medium */
.vision-name .u-letter {
    font-family: 'Michroma', sans-serif !important;
    font-weight: 400 !important;
    font-size: 0.85em !important;
}

/* M - Electrolize - wide */
.vision-name .m-letter {
    font-family: 'Electrolize', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.05em !important;
}

/* A - Russo One - bold finish */
.vision-name .a-letter {
    font-family: 'Russo One', sans-serif !important;
    font-weight: 400 !important;
    font-size: 1.15em !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-left .intro-greeting .vision-name {
        font-size: 2.5rem !important;
    }
}

/* ========================================
   vision - VARIED COLORS + BLACK STROKE
   ======================================== */

/* Base stroke for all letters */
.vision-name span {
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.8);
    text-stroke: 1.5px rgba(0, 0, 0, 0.8);
    paint-order: stroke fill;
}

/* P - Bright cyan */
.vision-name .p-letter {
    color: #00ffff !important;
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 1),
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4) !important;
}

/* N - Electric blue */
.vision-name .n-letter {
    color: #00d4ff !important;
    text-shadow: 
        0 0 15px rgba(0, 212, 255, 1),
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.4) !important;
}

/* E - Teal */
.vision-name .e-letter {
    color: #00e5cc !important;
    text-shadow: 
        0 0 15px rgba(0, 229, 204, 1),
        0 0 30px rgba(0, 229, 204, 0.8),
        0 0 60px rgba(0, 229, 204, 0.4) !important;
}

/* U - Light blue */
.vision-name .u-letter {
    color: #40e0ff !important;
    text-shadow: 
        0 0 15px rgba(64, 224, 255, 1),
        0 0 30px rgba(64, 224, 255, 0.8),
        0 0 60px rgba(64, 224, 255, 0.4) !important;
}

/* M - Ice blue */
.vision-name .m-letter {
    color: #80f0ff !important;
    text-shadow: 
        0 0 15px rgba(128, 240, 255, 1),
        0 0 30px rgba(128, 240, 255, 0.8),
        0 0 60px rgba(128, 240, 255, 0.4) !important;
}

/* A - Back to bright cyan for balance */
.vision-name .a-letter {
    color: #00ffee !important;
    text-shadow: 
        0 0 15px rgba(0, 255, 238, 1),
        0 0 30px rgba(0, 255, 238, 0.8),
        0 0 60px rgba(0, 255, 238, 0.4) !important;
}

/* ========================================
   vision - VERTICAL OFFSET PER LETTER
   ======================================== */

.hero-left .intro-greeting .vision-name {
    align-items: flex-end !important;
}

/* P - baseline */
.vision-name .p-letter {
    transform: translateY(0);
}

/* N - drop down slightly */
.vision-name .n-letter {
    transform: translateY(4px);
}

/* E - raise up */
.vision-name .e-letter {
    transform: translateY(-6px);
}

/* U - drop more */
.vision-name .u-letter {
    transform: translateY(8px);
}

/* M - raise slightly */
.vision-name .m-letter {
    transform: translateY(-3px);
}

/* A - drop for finish */
.vision-name .a-letter {
    transform: translateY(5px);
}

/* Flying eyes between video and glass */
.flying-eye { display: none !important;
    z-index: 0 !important;
}

/* ========================================
   vision - REDUCED BLUR/GLOW
   ======================================== */

/* Reduce glow on all letters */
.vision-name .p-letter {
    text-shadow: 
        0 0 5px rgba(0, 255, 255, 0.6),
        0 0 10px rgba(0, 255, 255, 0.3) !important;
}

.vision-name .n-letter {
    text-shadow: 
        0 0 5px rgba(0, 212, 255, 0.6),
        0 0 10px rgba(0, 212, 255, 0.3) !important;
}

.vision-name .e-letter {
    text-shadow: 
        0 0 5px rgba(0, 229, 204, 0.6),
        0 0 10px rgba(0, 229, 204, 0.3) !important;
}

.vision-name .u-letter {
    text-shadow: 
        0 0 5px rgba(64, 224, 255, 0.6),
        0 0 10px rgba(64, 224, 255, 0.3) !important;
}

.vision-name .m-letter {
    text-shadow: 
        0 0 5px rgba(128, 240, 255, 0.6),
        0 0 10px rgba(128, 240, 255, 0.3) !important;
}

.vision-name .a-letter {
    text-shadow: 
        0 0 5px rgba(0, 255, 238, 0.6),
        0 0 10px rgba(0, 255, 238, 0.3) !important;
}

/* ========================================
   vision - NO BLUR, CLEAN TEXT
   ======================================== */

.vision-name .p-letter,
.vision-name .n-letter,
.vision-name .e-letter,
.vision-name .u-letter,
.vision-name .m-letter,
.vision-name .a-letter {
    text-shadow: none !important;
}

/* ========================================
   vision - CLEAN SOLID COLORS, NO BLUR
   ======================================== */

.vision-name span {
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.9) !important;
    text-stroke: 2px rgba(0, 0, 0, 0.9) !important;
    paint-order: stroke fill !important;
    text-shadow: none !important;
}

.vision-name .p-letter {
    color: #00ffff !important;
}

.vision-name .n-letter {
    color: #00d4ff !important;
}

.vision-name .e-letter {
    color: #00e5cc !important;
}

.vision-name .u-letter {
    color: #40e0ff !important;
}

.vision-name .m-letter {
    color: #80f0ff !important;
}

.vision-name .a-letter {
    color: #00ffee !important;
}

/* ========================================
   vision - PLAIN COLORS, NO EFFECTS
   ======================================== */

.vision-name span {
    -webkit-text-stroke: none !important;
    text-stroke: none !important;
    text-shadow: none !important;
}

.vision-name .p-letter {
    color: #00ffff !important;
}

.vision-name .n-letter {
    color: #00d4ff !important;
}

.vision-name .e-letter {
    color: #00e5cc !important;
}

.vision-name .u-letter {
    color: #40e0ff !important;
}

.vision-name .m-letter {
    color: #80f0ff !important;
}

.vision-name .a-letter {
    color: #00ffee !important;
}

/* ========================================
   vision - FINAL FIX - PLAIN TEXT
   ======================================== */

.hero-left .intro-greeting .vision-name span {
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-left .intro-greeting .vision-name .p-letter { color: #00ffff !important; }
.hero-left .intro-greeting .vision-name .n-letter { color: #00d4ff !important; }
.hero-left .intro-greeting .vision-name .e-letter { color: #00e5cc !important; }
.hero-left .intro-greeting .vision-name .u-letter { color: #40e0ff !important; }
.hero-left .intro-greeting .vision-name .m-letter { color: #80f0ff !important; }
.hero-left .intro-greeting .vision-name .a-letter { color: #00ffee !important; }

/* ========================================
   vision - OVERRIDE TRANSPARENT FILL
   ======================================== */

.hero-left .intro-greeting .vision-name,
.hero-left .intro-greeting .vision-name span {
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    background: none !important;
}

.hero-left .intro-greeting .vision-name .p-letter { -webkit-text-fill-color: #00ffff !important; color: #00ffff !important; }
.hero-left .intro-greeting .vision-name .n-letter { -webkit-text-fill-color: #00d4ff !important; color: #00d4ff !important; }
.hero-left .intro-greeting .vision-name .e-letter { -webkit-text-fill-color: #00e5cc !important; color: #00e5cc !important; }
.hero-left .intro-greeting .vision-name .u-letter { -webkit-text-fill-color: #40e0ff !important; color: #40e0ff !important; }
.hero-left .intro-greeting .vision-name .m-letter { -webkit-text-fill-color: #80f0ff !important; color: #80f0ff !important; }
.hero-left .intro-greeting .vision-name .a-letter { -webkit-text-fill-color: #00ffee !important; color: #00ffee !important; }

/* Squeeze letters together */
.hero-left .intro-greeting .vision-name {
    gap: 0 !important;
    letter-spacing: -0.05em !important;
}

.hero-left .intro-greeting .vision-name span {
    margin-left: -0.02em;
    margin-right: -0.02em;
}

/* Tighter letters + no hover effect */
.hero-left .intro-greeting .vision-name {
    gap: 0 !important;
    letter-spacing: -0.08em !important;
}

.hero-left .intro-greeting .vision-name span {
    margin-left: -0.03em;
    margin-right: -0.03em;
    transition: none !important;
}

.hero-left .intro-greeting .vision-name:hover,
.hero-left .intro-greeting .vision-name span:hover {
    transform: none !important;
    font-size: inherit !important;
}

/* Back off a little on spacing */
.hero-left .intro-greeting .vision-name {
    letter-spacing: -0.04em !important;
}

.hero-left .intro-greeting .vision-name span {
    margin-left: -0.01em;
    margin-right: -0.01em;
}

/* Swap E and U fonts */
.vision-name .e-letter {
    font-family: 'Michroma', sans-serif !important;
}

.vision-name .u-letter {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
}

/* Swap E and U sizes */
.vision-name .e-letter {
    font-size: 0.85em !important;
}

.vision-name .u-letter {
    font-size: 1.1em !important;
}

/* vision logo image */
.vision-logo {
    height: 4rem;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.2em;
}

@media (max-width: 768px) {
    .vision-logo {
        height: 2.5rem;
    }
}

/* I AM styling */
.hero-left .intro-greeting {
    font-size: 2.2rem !important;
    margin-bottom: 1.5rem !important;
}

/* Tagline under logo */
.vision-tagline {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: rgba(0, 212, 255, 0.8);
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* Hide old tagline box */
.hero-tagline-top {
    display: none !important;
}

/* Tagline matches hero-subline style */
.vision-tagline {
    font-family: 'Space Mono', monospace !important;
    font-size: 0.9rem !important;
    color: rgba(180, 220, 240, 0.85) !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
    letter-spacing: normal !important;
    line-height: 1.6 !important;
}

/* Bigger tagline */
.vision-tagline {
    font-size: 1.2rem !important;
}

/* Chat box matches left column height */
.hero-columns {
    display: flex;
    align-items: stretch !important;
}

.hero-right {
    display: flex;
    flex-direction: column;
}

.hero-chat {
    flex: 1 !important;
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
}

.hero-chat .chat-messages {
    flex: 1 !important;
    min-height: 200px !important;
    max-height: 350px !important;
    overflow-y: auto !important;
}

/* Chat box 50% width */
.hero-columns {
    display: flex ;
    gap: 40px ;
}

.hero-left {
    flex: 1 ;
    width: 50% ;
}

.hero-right {
    flex: 1 ;
    width: 50% ;
}

.hero-chat {
    width: 100% !important;
    max-width: 100% !important;
}

/* Chat textarea styling */
.hero-chat .chat-input {
    resize: none !important;
    min-height: 80px !important;
}

.hero-chat .chat-input-form {
    flex-direction: column !important;
    gap: 10px !important;
}

.hero-chat .chat-send {
    align-self: flex-end !important;
}

/* Contact Shane button */
.chat-contact-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 200, 100, 0.1) 100%) !important;
    border: 2px solid rgba(0, 255, 136, 0.6) !important;
    border-radius: 4px !important;
    padding: 12px 20px !important;
    color: #00ff88 !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

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

.chat-input-form {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.chat-input-form .chat-input {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.chat-input-form .chat-send,
.chat-input-form .chat-contact-btn {
    flex: 1 !important;
}

/* Chat form layout fix */
.hero-chat .chat-input-form {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    grid-template-rows: auto auto !important;
    gap: 12px !important;
    padding: 20px !important;
}

.hero-chat .chat-input {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    min-height: 80px !important;
    flex: none !important;
}

.hero-chat .chat-voice-btn {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end !important;
    flex: none !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 20, 35, 0.8) !important;
    border: 1px solid rgba(0, 255, 255, 0.4) !important;
    color: #00ffff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2) !important;
}

.hero-chat .chat-voice-btn svg {
    width: 18px !important;
    height: 18px !important;
}

.hero-chat .chat-voice-btn:hover {
    background: rgba(0, 255, 255, 0.15) !important;
    border-color: #00ffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4) !important;
    transform: scale(1.05) !important;
}

.hero-chat .chat-voice-btn.recording {
    background: rgba(255, 50, 50, 0.3) !important;
    border-color: #ff4444 !important;
    color: #ff4444 !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5) !important;
    animation: pulse-recording 1s ease-in-out infinite !important;
}

@keyframes pulse-recording {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 0, 0, 0.7); }
}

.hero-chat .chat-send {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: end !important;
    flex: none !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 255, 255, 0.2) !important;
    border: 1px solid rgba(0, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3) !important;
}

.hero-chat .chat-send:hover {
    background: rgba(0, 255, 255, 0.3) !important;
    border-color: #00ffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5) !important;
    transform: scale(1.05) !important;
}

.hero-chat .chat-send svg {
    width: 18px !important;
    height: 18px !important;
}

.hero-chat .chat-contact-btn {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    flex: none !important;
    padding: 14px 20px !important;
    text-align: center !important;
}

/* Prevent scan line from causing scrollbar */
html, body {
    overflow-x: hidden !important;
}

.chat-messages::before {
    pointer-events: none !important;
}

/* ========================================
   VISION EYE LOOKING AROUND + VIDEO DRIFT
   ======================================== */

/* Video background drifts slowly */
.vision-video-bg {
    animation: video-drift 20s ease-in-out infinite !important;
}

@keyframes video-drift {
    0% { object-position: 45% 45%; }
    25% { object-position: 55% 48%; }
    50% { object-position: 52% 55%; }
    75% { object-position: 48% 50%; }
    100% { object-position: 45% 45%; }
}

/* Pupil follows same drift pattern */
#vision-eye .eye-pupil {
    animation: pupil-look 20s ease-in-out infinite !important;
}

@keyframes pupil-look {
    0% { transform: translate(-5px, -5px); }
    25% { transform: translate(5px, -2px); }
    50% { transform: translate(2px, 5px); }
    75% { transform: translate(-2px, 0px); }
    100% { transform: translate(-5px, -5px); }
}

/* ========================================
   FASTER, MORE ERRATIC EYE MOVEMENT
   ======================================== */

.vision-video-bg {
    animation: video-drift-fast 8s ease-in-out infinite !important;
}

@keyframes video-drift-fast {
    0% { object-position: 50% 50%; }
    8% { object-position: 42% 45%; }
    15% { object-position: 58% 42%; }
    22% { object-position: 45% 55%; }
    30% { object-position: 55% 48%; }
    38% { object-position: 48% 58%; }
    45% { object-position: 60% 52%; }
    52% { object-position: 40% 48%; }
    60% { object-position: 52% 40%; }
    68% { object-position: 46% 56%; }
    75% { object-position: 58% 50%; }
    82% { object-position: 44% 44%; }
    90% { object-position: 54% 54%; }
    100% { object-position: 50% 50%; }
}

#vision-eye .eye-pupil {
    animation: pupil-look-fast 8s ease-in-out infinite !important;
}

@keyframes pupil-look-fast {
    0% { transform: translate(0, 0); }
    8% { transform: translate(-8px, -5px); }
    15% { transform: translate(8px, -8px); }
    22% { transform: translate(-5px, 5px); }
    30% { transform: translate(5px, -2px); }
    38% { transform: translate(-2px, 8px); }
    45% { transform: translate(10px, 2px); }
    52% { transform: translate(-10px, -2px); }
    60% { transform: translate(2px, -10px); }
    68% { transform: translate(-4px, 6px); }
    75% { transform: translate(8px, 0); }
    82% { transform: translate(-6px, -6px); }
    90% { transform: translate(4px, 4px); }
    100% { transform: translate(0, 0); }
}

/* ========================================
   PUPIL FASTER + WIDER, VIDEO 1/4 SPEED
   ======================================== */

/* Video moves slower - 32s (4x slower than pupil) */
.vision-video-bg {
    animation: video-drift-slow 32s ease-in-out infinite !important;
}

@keyframes video-drift-slow {
    0% { object-position: 50% 50%; }
    8% { object-position: 46% 47%; }
    15% { object-position: 54% 46%; }
    22% { object-position: 47% 53%; }
    30% { object-position: 53% 48%; }
    38% { object-position: 48% 54%; }
    45% { object-position: 55% 51%; }
    52% { object-position: 45% 48%; }
    60% { object-position: 51% 45%; }
    68% { object-position: 47% 53%; }
    75% { object-position: 54% 50%; }
    82% { object-position: 46% 46%; }
    90% { object-position: 52% 52%; }
    100% { object-position: 50% 50%; }
}

/* Pupil moves faster - 8s, wider range */
#vision-eye .eye-pupil {
    animation: pupil-look-wide 8s ease-in-out infinite !important;
}

@keyframes pupil-look-wide {
    0% { transform: translate(0, 0); }
    8% { transform: translate(-15px, -10px); }
    15% { transform: translate(15px, -15px); }
    22% { transform: translate(-10px, 12px); }
    30% { transform: translate(12px, -5px); }
    38% { transform: translate(-5px, 15px); }
    45% { transform: translate(18px, 5px); }
    52% { transform: translate(-18px, -5px); }
    60% { transform: translate(5px, -18px); }
    68% { transform: translate(-8px, 12px); }
    75% { transform: translate(15px, 0); }
    82% { transform: translate(-12px, -12px); }
    90% { transform: translate(8px, 8px); }
    100% { transform: translate(0, 0); }
}

/* ========================================
   PUPIL - WIDER, SMOOTHER MOVEMENT
   ======================================== */

/* Video - smoother, 1/4 pupil speed */
.vision-video-bg {
    animation: video-drift-smooth 48s ease-in-out infinite !important;
}

@keyframes video-drift-smooth {
    0% { object-position: 50% 50%; }
    20% { object-position: 45% 45%; }
    40% { object-position: 55% 48%; }
    60% { object-position: 48% 55%; }
    80% { object-position: 52% 45%; }
    100% { object-position: 50% 50%; }
}

/* Pupil - wider range, smoother */
#vision-eye .eye-pupil {
    animation: pupil-look-smooth 12s ease-in-out infinite !important;
}

@keyframes pupil-look-smooth {
    0% { transform: translate(0, 0); }
    15% { transform: translate(-22px, -12px); }
    30% { transform: translate(20px, -8px); }
    45% { transform: translate(8px, 18px); }
    60% { transform: translate(-18px, 10px); }
    75% { transform: translate(15px, -15px); }
    90% { transform: translate(-10px, 5px); }
    100% { transform: translate(0, 0); }
}

/* ========================================
   PUPIL - BLACK, PAUSES TO LOOK FORWARD
   ======================================== */

/* Black pupil */
#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;
}

/* Video - with pauses */
.vision-video-bg {
    animation: video-drift-pause 60s ease-in-out infinite !important;
}

@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%; }
}

/* Pupil - with pauses looking forward */
#vision-eye .eye-pupil {
    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); }
}

/* Fix chat scan line overflow */
.hero-chat {
    overflow: hidden !important;
}

.hero-chat .chat-messages {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.hero-chat .chat-messages::before {
    max-height: 100% !important;
}

/* Disable chat scan line - causes overflow */
.hero-chat .chat-messages::before {
    display: none !important;
}

/* Re-enable scan line with fixed animation */
.hero-chat .chat-messages::before {
    display: block !important;
    position: absolute !important;
    animation: jarvis-scan-fixed 3s ease-in-out infinite !important;
}

@keyframes jarvis-scan-fixed {
    0% { 
        top: 0; 
        opacity: 0;
    }
    10% { opacity: 1; }
    85% { opacity: 1; }
    90% { 
        top: calc(100% - 2px); 
        opacity: 0;
    }
    100% { 
        top: 0; 
        opacity: 0;
    }
}

/* Ensure no overflow */
.hero-chat,
.hero-chat .chat-messages {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative !important;
}

/* ========================================
   MORE FLYING EYES FROM ALL EDGES
   ======================================== */

/* From top */
@keyframes fly-from-top {
    0% {
        top: -50px;
        left: 30%;
        opacity: 0;
        transform: scale(0.4);
    }
    10% { opacity: 0.6; transform: scale(0.6); }
    90% { opacity: 0.6; transform: scale(0.6); }
    100% {
        top: 110%;
        left: 70%;
        opacity: 0;
        transform: scale(0.4);
    }
}

/* From bottom */
@keyframes fly-from-bottom {
    0% {
        bottom: -50px;
        right: 20%;
        opacity: 0;
        transform: scale(0.5);
    }
    10% { opacity: 0.5; transform: scale(0.7); }
    90% { opacity: 0.5; transform: scale(0.7); }
    100% {
        bottom: 110%;
        right: 80%;
        opacity: 0;
        transform: scale(0.5);
    }
}

/* Diagonal from top-left */
@keyframes fly-diagonal-tl {
    0% {
        top: -50px;
        left: -50px;
        opacity: 0;
        transform: scale(0.3);
    }
    10% { opacity: 0.5; transform: scale(0.5); }
    90% { opacity: 0.5; transform: scale(0.5); }
    100% {
        top: 110%;
        left: 110%;
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Diagonal from bottom-right */
@keyframes fly-diagonal-br {
    0% {
        bottom: -50px;
        right: -50px;
        opacity: 0;
        transform: scale(0.45);
    }
    10% { opacity: 0.55; transform: scale(0.65); }
    90% { opacity: 0.55; transform: scale(0.65); }
    100% {
        bottom: 110%;
        right: 110%;
        opacity: 0;
        transform: scale(0.45);
    }
}

.flying-eye-5 {
    animation: fly-from-top 28s linear infinite;
    animation-delay: 3s;
}

.flying-eye-6 {
    animation: fly-from-bottom 24s linear infinite;
    animation-delay: 8s;
}

.flying-eye-7 {
    animation: fly-diagonal-tl 30s linear infinite;
    animation-delay: 12s;
}

.flying-eye-8 {
    animation: fly-diagonal-br 26s linear infinite;
    animation-delay: 18s;
}

/* ========================================
   FLYING EYES - MATCH PEEKING EYE STYLE
   ======================================== */

.flying-eye {
    display: block !important;
    width: 80px !important;
    height: 80px !important;
    position: fixed;
    z-index: 800;
    pointer-events: none;
}

.flying-eye .eye-outer {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a2040 0%, #0a0a20 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8) !important;
    border: 2px solid rgba(0, 255, 255, 0.3) !important;
}

.flying-eye .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, #00ffff 0%, #006666 40%, #003333 70%, #001515 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 20px rgba(0,0,0,0.5),
        0 0 15px #00ffff !important;
}

.flying-eye .eye-pupil {
    width: 45%;
    height: 45%;
    background: radial-gradient(ellipse at 30% 30%, #222 0%, #000 100%) !important;
    border-radius: 50%;
    animation: flying-pupil-look 4s ease-in-out infinite !important;
    box-shadow: none !important;
}

/* Stagger the pupil animations */
.flying-eye-1 .eye-pupil { animation-delay: 0s !important; }
.flying-eye-2 .eye-pupil { animation-delay: 0.5s !important; }
.flying-eye-3 .eye-pupil { animation-delay: 1s !important; }
.flying-eye-4 .eye-pupil { animation-delay: 1.5s !important; }
.flying-eye-5 .eye-pupil { animation-delay: 2s !important; }
.flying-eye-6 .eye-pupil { animation-delay: 2.5s !important; }
.flying-eye-7 .eye-pupil { animation-delay: 3s !important; }
.flying-eye-8 .eye-pupil { animation-delay: 3.5s !important; }

@keyframes flying-pupil-look {
    0% { transform: translate(0, 0); }
    15% { transform: translate(-8px, -5px); }
    30% { transform: translate(6px, -3px); }
    45% { transform: translate(0, 0); }
    60% { transform: translate(-5px, 6px); }
    75% { transform: translate(7px, 2px); }
    90% { transform: translate(-3px, -4px); }
    100% { transform: translate(0, 0); }
}

/* ========================================
   PEEKING EYE - SINGLE EYE PEEK & SHOOT
   ======================================== */

/* Single peeking eye - peeks from left, shoots across to right */
.peeking-eye {
    left: -120px;
    top: 40%;
    z-index: 1 !important;  /* Under content, above video background */
    animation: peek-and-shoot 25s ease-in-out infinite;
}

@keyframes peek-and-shoot {
    /* Hidden off-screen left */
    0% { left: -120px; top: 40%; opacity: 0; transform: scale(0.8); }
    /* Peek in from left edge */
    2% { left: -60px; top: 40%; opacity: 0.8; transform: scale(0.9); }
    /* Pause and look around */
    5% { left: -40px; top: 42%; opacity: 1; transform: scale(1); }
    /* Start moving across */
    10% { left: 0%; top: 35%; opacity: 1; transform: scale(1); }
    /* Travel across entire screen - stay fully visible */
    20% { left: 15%; top: 48%; opacity: 1; transform: scale(1); }
    30% { left: 30%; top: 40%; opacity: 1; transform: scale(1); }
    40% { left: 45%; top: 52%; opacity: 1; transform: scale(1); }
    50% { left: 55%; top: 42%; opacity: 1; transform: scale(1); }
    60% { left: 70%; top: 50%; opacity: 1; transform: scale(1); }
    70% { left: 85%; top: 44%; opacity: 1; transform: scale(1); }
    /* Exit fully off right side - stay visible until completely off */
    80% { left: 100%; top: 46%; opacity: 1; transform: scale(1); }
    85% { left: calc(100% + 60px); top: 46%; opacity: 0.8; transform: scale(0.95); }
    90% { left: calc(100% + 150px); top: 46%; opacity: 0; transform: scale(0.8); }
    /* Stay hidden for the rest of the cycle */
    100% { left: -120px; top: 40%; opacity: 0; transform: scale(0.8); }
}

/* Pupil follows direction of travel */
.peeking-eye .peek-eye-pupil {
    animation: pupil-follow 25s ease-in-out infinite !important;
}

@keyframes pupil-follow {
    0% { transform: translate(8px, 0); }      /* Looking right (peeking) */
    5% { transform: translate(6px, 2px); }    /* Glancing around */
    10% { transform: translate(10px, -2px); } /* Moving right */
    20% { transform: translate(8px, 5px); }   /* Curving */
    30% { transform: translate(10px, -3px); } /* Moving right-up */
    40% { transform: translate(8px, 6px); }   /* Curving down */
    50% { transform: translate(10px, -2px); } /* Moving right */
    60% { transform: translate(8px, 4px); }   /* Curving */
    70% { transform: translate(10px, -1px); } /* Moving right */
    80% { transform: translate(10px, 0); }    /* Exiting right */
    90% { transform: translate(10px, 0); }    /* Off screen */
    100% { transform: translate(8px, 0); }    /* Reset */
}

/* ==========================================
   HUMAN FEED - FLOATING WIDGET BOTTOM RIGHT
   ========================================== */
.human-feed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 180px;
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--cyan);
    z-index: 1000;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.human-feed:hover:not(.expanded) {
    transform: scale(1.05);
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.human-feed .feed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.feed-status {
    width: 8px;
    height: 8px;
    background: #FF0040;
    border-radius: 50%;
    animation: feed-status-blink 1s steps(1) infinite;
    box-shadow: 0 0 10px #FF0040;
}

@keyframes feed-status-blink {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0.3; }
}

.feed-label {
    font-family: var(--font-handwriting);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.feed-close {
    display: none;
    background: none;
    border: none;
    color: var(--cyan);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: all 0.3s;
}

.feed-close:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--cyan);
}

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

.feed-screen {
    position: relative;
    aspect-ratio: 1;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.feed-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

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

.feed-cta {
    display: block;
    padding: 10px 12px;
    font-family: var(--font-handwriting);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--cyan);
    background: rgba(0, 255, 255, 0.05);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.feed-cta:hover {
    background: var(--cyan);
    color: #000;
}

/* Expanded content - hidden by default */
.feed-expanded-content {
    display: none;
}

/* ==========================================
   EXPANDED STATE - SPLIT SCREEN
   ========================================== */
.human-feed.expanded {
    width: 70vw;
    height: 80vh;
    max-width: 1000px;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    border: 2px solid var(--cyan);
    box-shadow:
        0 0 100px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.human-feed.expanded .feed-header {
    padding: 12px 20px;
}

.human-feed.expanded .feed-close {
    display: block;
}

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

.human-feed.expanded .feed-expanded-content {
    display: flex;
    height: calc(100% - 45px);
}

/* Chat side - left half */
.feed-chat-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.feed-chat-side .chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    background: transparent;
}

.feed-chat-side .chat-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 5px;
}

.feed-chat-side .chat-status {
    font-size: 0.65rem;
    opacity: 0.5;
}

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

#feed-chat-messages .chat-message {
    padding: 12px 15px;
    border-radius: 4px;
    max-width: 90%;
}

#feed-chat-messages .chat-message.vision-msg {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    align-self: flex-start;
}

#feed-chat-messages .chat-message.user-msg {
    background: rgba(191, 255, 0, 0.1);
    border: 1px solid rgba(191, 255, 0, 0.2);
    align-self: flex-end;
}

#feed-chat-messages .msg-sender {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 5px;
}

#feed-chat-messages .user-msg .msg-sender {
    color: #BFFF00;
}

#feed-chat-messages .msg-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

#feed-chat-form {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

#feed-chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

#feed-chat-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

#feed-chat-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#feed-chat-form .chat-send {
    background: var(--cyan);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

#feed-chat-form .chat-send:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feed-chat-side .chat-note {
    padding: 10px 20px;
    font-size: 0.6rem;
    opacity: 0.4;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Video side - right half */
.feed-video-side {
    flex: 1;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-video-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(0.8) contrast(1.1);
}

.video-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .human-feed.expanded {
        width: 95vw;
        height: 90vh;
    }

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

    .feed-chat-side {
        flex: 1;
        border-right: none;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }

    .feed-video-side {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .human-feed {
        bottom: 15px;
        right: 15px;
        width: 140px;
    }

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

/* ==========================================
   SEND CHAT TO SHANE - FULLSCREEN OVERLAY
   ========================================== */
.send-chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.send-chat-overlay.active {
    display: flex;
    opacity: 1;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10001;
}

.overlay-close:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.overlay-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.overlay-video-side {
    flex: 0 0 40%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

.overlay-video-side .video-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.overlay-form-side {
    flex: 1;
    padding: 60px 80px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.overlay-header {
    margin-bottom: 40px;
}

.overlay-header h2 {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.overlay-header p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.overlay-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.overlay-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overlay-form label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    opacity: 0.8;
}

.overlay-form input,
.overlay-form textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.overlay-form input:focus,
.overlay-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.overlay-form input::placeholder,
.overlay-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.chat-transcript {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    padding: 15px 20px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.6;
}

.chat-transcript .transcript-msg {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.chat-transcript .transcript-msg:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chat-transcript .transcript-sender {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 3px;
}

.chat-transcript .transcript-sender.user {
    color: #BFFF00;
}

.submit-btn {
    background: var(--cyan);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 18px 40px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--cyan);
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.overlay-success h3 {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 15px;
}

.overlay-success p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.close-success-btn {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 15px 40px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.close-success-btn:hover {
    background: var(--cyan);
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .overlay-content {
        flex-direction: column;
    }
    
    .overlay-video-side {
        flex: 1;
    }
    
    .overlay-form-side {
        padding: 30px;
    }
    
    .overlay-header h2 {
        font-size: 1.3rem;
    }
}

/* ==========================================
   HUMAN FEED - EXPANDED HALF-SCREEN CENTERED
   ========================================== */
.human-feed.expanded {
    width: 50vw;
    max-width: 600px;
    height: auto;
    max-height: 90vh;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    box-shadow:
        0 0 80px rgba(0, 255, 255, 0.4),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
}

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

.human-feed.expanded .feed-expanded-content {
    display: block;
}

.human-feed.expanded .feed-close {
    display: block;
}

.feed-expanded-content {
    display: none;
    position: relative;
}

.feed-video-bg {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.feed-video-bg .feed-video-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
}

.feed-form-content {
    padding: 20px 25px 25px;
}

.feed-form-header {
    margin-bottom: 20px;
    text-align: center;
}

.feed-form-header h3 {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 5px;
}

.feed-form-header p {
    font-size: 0.75rem;
    opacity: 0.5;
}

.feed-contact-form .form-group {
    margin-bottom: 15px;
}

.feed-contact-form label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: var(--cyan);
    opacity: 0.8;
    margin-bottom: 5px;
}

.feed-contact-form input,
.feed-contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 3px;
    padding: 10px 12px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

.feed-contact-form input:focus,
.feed-contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.feed-contact-form input::placeholder,
.feed-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.feed-contact-form .chat-transcript {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 3px;
    padding: 10px 12px;
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.75rem;
    line-height: 1.5;
}

.feed-contact-form .transcript-msg {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.feed-contact-form .transcript-msg:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feed-contact-form .transcript-sender {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 2px;
}

.feed-contact-form .transcript-sender.user {
    color: #BFFF00;
}

.feed-contact-form .submit-btn {
    width: 100%;
    background: var(--cyan);
    color: #000;
    border: none;
    border-radius: 3px;
    padding: 12px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.feed-contact-form .submit-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feed-contact-form .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

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

.feed-success h4 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 8px;
}

.feed-success p {
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .human-feed.expanded {
        width: 90vw;
        max-width: none;
    }
}

/* Fix expanded layout - form left, video right */
.human-feed.expanded .feed-expanded-content {
    display: flex;
    flex-direction: row;
}

.human-feed.expanded .feed-form-content {
    flex: 1;
    order: 1;
    max-height: 70vh;
    overflow-y: auto;
}

.human-feed.expanded .feed-video-bg {
    flex: 1;
    order: 2;
    height: auto;
    min-height: 300px;
}

.human-feed.expanded {
    width: 800px;
    max-width: 90vw;
}

@media (max-width: 600px) {
    .human-feed.expanded .feed-expanded-content {
        flex-direction: column-reverse;
    }
    
    .human-feed.expanded .feed-video-bg {
        flex: 0 0 120px;
        min-height: auto;
    }
}

/* Continue chatting button */
.feed-contact-form .continue-btn {
    width: 100%;
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    border-radius: 3px;
    padding: 12px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.feed-contact-form .continue-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Success message styling */
.feed-success .success-main {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.feed-success .success-time {
    font-size: 0.75rem;
    color: var(--cyan);
    margin-bottom: 15px;
}

.feed-success .success-snark {
    font-size: 0.7rem;
    opacity: 0.5;
    font-style: italic;
    margin-top: 10px;
}

/* Ensure success message is visible */
.feed-success {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.human-feed.expanded .feed-form-content:has(.feed-success[style*="block"]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-form-content.show-success {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.feed-form-content.show-success .feed-success {
    display: flex !important;
}

/* vision human joke line */
.vision-human {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 8px;
}

/* Logo sizing */
.vision-logo {
    max-width: 100%;
    height: auto;
}

/* Force hide success until visible class added */
#feed-success { display: none !important; }
#feed-success.visible { display: flex !important; }


/* ==========================================
   MOBILE-FIRST RESPONSIVE FIXES
   ========================================== */

/* Mobile: Stack hero content vertically */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }
    
    .intro-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-chat {
        max-width: 100%;
        width: 100%;
    }
    
    .intro-greeting {
        font-size: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .vision-logo {
        max-width: 150px;
        height: auto;
    }
    
    .vision-human {
        text-align: center;
    }
    
    /* Human feed - smaller on mobile, full screen when expanded */
    .human-feed {
        bottom: 15px;
        right: 15px;
        width: 140px;
    }
    
    .human-feed.expanded {
        width: 95vw;
        height: 90vh;
        max-width: none;
        bottom: 50%;
        right: 50%;
        transform: translate(50%, 50%);
    }
    
    .human-feed.expanded .feed-expanded {
        flex-direction: column;
    }
    
    .human-feed.expanded .feed-form-content,
    .human-feed.expanded .feed-video-bg {
        flex: none;
        width: 100%;
    }
    
    .human-feed.expanded .feed-video-bg {
        height: 200px;
        order: 1;
    }
    
    .human-feed.expanded .feed-form-content {
        order: 2;
        overflow-y: auto;
    }
    
    /* Section padding adjustments */
    .section-container {
        padding: 0 20px;
    }
    
    .section-panel {
        padding: 30px 20px;
    }
    
    /* Chat input */
    .chat-input-form {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .chat-contact-btn {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Capabilities grid */
    .capability-cards {
        grid-template-columns: 1fr;
    }
    
    /* Offer box */
    .offer-box {
        padding: 20px;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .intro-greeting {
        font-size: 1.2rem;
    }
    
    .vision-logo {
        max-width: 120px;
    }
    
    .hero-chat .chat-messages {
        min-height: 150px;
        max-height: 200px;
    }
    
    .human-feed {
        width: 120px;
        bottom: 10px;
        right: 10px;
    }
    
    .feed-header {
        padding: 6px 10px;
        font-size: 0.65rem;
    }
}

/* ==========================================
   MOBILE-FIRST RESPONSIVE - FINAL OVERRIDES
   ========================================== */

@media (max-width: 900px) {
    /* Stack hero columns on mobile */
    .hero-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .hero-left,
    .hero-right {
        flex: none !important;
        width: 100% !important;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-left .vision-eye {
        margin: 2rem auto;
    }
    
    .hero-chat {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }
    
    /* Stack human-feed form/video on mobile */
    .human-feed.expanded .feed-expanded-content {
        flex-direction: column-reverse !important;
    }
    
    .human-feed.expanded .feed-form-content,
    .human-feed.expanded .feed-video-bg {
        flex: none !important;
        width: 100% !important;
    }
    
    .human-feed.expanded .feed-video-bg {
        height: 200px !important;
    }
}

@media (max-width: 600px) {
    .hero-vision {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    .vision-logo {
        height: 2rem !important;
    }
    
    .vision-tagline {
        font-size: 0.95rem !important;
    }
    
    .hero-headline {
        font-size: 1rem !important;
    }
    
    .hero-subline {
        font-size: 0.85rem !important;
    }
    
    .hero-chat .chat-messages {
        min-height: 120px !important;
        max-height: 200px !important;
    }
    
    /* Smaller section padding on mobile */
    .section-container,
    .human-content,
    .capabilities-section .section-container,
    .arrangement-section .section-container {
        padding: 30px 20px !important;
        margin: 0 10px !important;
    }
    
    /* Stat blocks stack better */
    .human-stats,
    .about-stats {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    /* Footer more compact */
    .footer {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
        padding: 20px !important;
    }
}

/* ==========================================
   HUMAN FEED MOBILE FIX
   ========================================== */

@media (max-width: 900px) {
    .human-feed.expanded {
        width: 95vw !important;
        max-width: none !important;
        height: auto !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    .human-feed.expanded .feed-expanded-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .human-feed.expanded .feed-video-bg {
        order: 2 !important;
        flex: none !important;
        width: 100% !important;
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .human-feed.expanded .feed-form-content {
        order: 1 !important;
        flex: none !important;
        width: 100% !important;
        padding: 20px !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Success message mobile styling */
    .feed-success {
        position: relative !important;
        background: rgba(0, 20, 35, 0.95) !important;
        padding: 25px !important;
        text-align: center !important;
    }
    
    .feed-success h4 {
        font-size: 1rem !important;
    }
    
    .feed-success p {
        font-size: 0.85rem !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 500px) {
    .human-feed.expanded {
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        bottom: 0 !important;
        right: 0 !important;
        transform: none !important;
        border-radius: 0 !important;
    }
    
    .human-feed.expanded .feed-video-bg {
        height: 150px !important;
        min-height: 150px !important;
    }
    
    .feed-form-header h3 {
        font-size: 0.9rem !important;
    }
    
    .feed-form-header p {
        font-size: 0.75rem !important;
    }
    
    .form-group label {
        font-size: 0.65rem !important;
    }
    
    .form-group input {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
    
    .submit-btn,
    .continue-btn {
        padding: 12px 20px !important;
        font-size: 0.7rem !important;
    }
}

/* FORCE feed-success hidden until visible class added */
#feed-success,
.feed-success {
    display: none !important;
}

#feed-success.visible,
.feed-success.visible {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* ABSOLUTE FINAL - feed-success must be hidden */
.human-feed .feed-form-content .feed-success,
.human-feed .feed-form-content #feed-success,
#feed-success,
.feed-success,
div.feed-success,
div#feed-success {
    display: none !important;
    visibility: hidden !important;
}

.human-feed .feed-form-content .feed-success.visible,
.human-feed .feed-form-content #feed-success.visible,
#feed-success.visible,
.feed-success.visible,
div.feed-success.visible,
div#feed-success.visible {
    display: flex !important;
    visibility: visible !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* FINAL MOBILE OVERRIDE - MUST BE LAST */
@media (max-width: 900px) {
    .hero-vision .hero-columns,
    .hero-columns {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
    }
    
    .hero-vision .hero-columns .hero-left,
    .hero-vision .hero-columns .hero-right,
    .hero-columns .hero-left,
    .hero-columns .hero-right {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ID-based override for hero columns on mobile */
@media (max-width: 900px) {
    #hero-columns {
        display: flex !important;
        flex-direction: column !important;
    }
    
    #hero-columns > .hero-left,
    #hero-columns > .hero-right {
        width: 100% !important;
        flex: none !important;
    }
}

/* FORCE FORM STYLES */
.human-feed .feed-form-content,
.feed-form-content {
    background: rgba(0, 15, 30, 0.95) !important;
    padding: 20px !important;
}

.human-feed .feed-contact-form input,
.human-feed .feed-contact-form textarea,
.feed-contact-form input,
.feed-contact-form textarea,
#sender-name,
#sender-email {
    width: 100% !important;
    background: rgba(0, 20, 40, 0.9) !important;
    border: 1px solid rgba(0, 212, 255, 0.4) !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
    color: #fff !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
}

.human-feed .feed-contact-form input:focus,
.human-feed .feed-contact-form textarea:focus,
#sender-name:focus,
#sender-email:focus {
    outline: none !important;
    border-color: #00d4ff !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important;
}

.human-feed .feed-contact-form input::placeholder,
.human-feed .feed-contact-form textarea::placeholder,
#sender-name::placeholder,
#sender-email::placeholder {
    color: rgba(0, 212, 255, 0.5) !important;
}

.human-feed .feed-contact-form label,
.feed-contact-form label {
    display: block !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
    color: #00d4ff !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.human-feed .feed-contact-form .form-group,
.feed-contact-form .form-group {
    margin-bottom: 18px !important;
}

.human-feed .feed-form-header h3,
.feed-form-header h3 {
    font-family: 'Space Mono', monospace !important;
    font-size: 1rem !important;
    letter-spacing: 0.15em !important;
    color: #00d4ff !important;
    margin-bottom: 8px !important;
}

.human-feed .feed-form-header p,
.feed-form-header p {
    font-size: 0.8rem !important;
    color: rgba(180, 220, 240, 0.7) !important;
}

.human-feed .continue-btn,
.human-feed .submit-btn,
.feed-contact-form .continue-btn,
.feed-contact-form .submit-btn,
#continue-chat-btn,
#transmit-btn {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    margin-top: 12px !important;
    font-family: 'Space Mono', monospace !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#continue-chat-btn,
.continue-btn {
    background: transparent !important;
    border: 1px solid rgba(0, 212, 255, 0.5) !important;
    color: #00d4ff !important;
}

#continue-chat-btn:hover,
.continue-btn:hover {
    background: rgba(0, 212, 255, 0.1) !important;
    border-color: #00d4ff !important;
}

#transmit-btn,
.submit-btn {
    background: #00d4ff !important;
    color: #000 !important;
}

#transmit-btn:hover,
.submit-btn:hover {
    background: #fff !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5) !important;
}

/* Screen reader only - SEO H1 */
.sr-only,
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* H1 visually hidden but present for SEO */
h1.intro-greeting {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visual intro greeting (not the H1) */
.intro-greeting-visual {
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--silver);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.intro-greeting-visual .i-am-text {
    font-family: var(--font-handwriting);
    font-size: 2.5rem;
    color: var(--cyan);
}

.intro-greeting-visual .vision-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 25px 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

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

.faq-answer {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: rgba(180, 220, 240, 0.8);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        font-size: 0.8rem;
    }
}

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

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: 0.15em;
    font-weight: 600;
}

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

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: rgba(180, 220, 240, 0.7);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.nav-links .nav-cta {
    background: var(--cyan);
    color: #000;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 700;
}

.nav-links .nav-cta:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .site-nav {
        padding: 12px 20px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.65rem;
    }
    
    .nav-links .nav-cta {
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    
    .nav-links .nav-cta {
        display: block;
    }
}

/* ==========================================
   GLOBAL POLISH - SOFTER ANGLES & REFINEMENT
   ========================================== */

/* Soften chat interface */
.hero-chat {
    border-radius: var(--radius-lg) !important;
}

.hero-chat .chat-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

.hero-chat .chat-messages {
    border-radius: 0 !important;
}

.hero-chat .chat-input-form {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
}

.hero-chat .chat-input {
    border-radius: var(--radius-md) !important;
}

.hero-chat .chat-send,
.hero-chat .chat-voice-btn {
    border-radius: var(--radius-md) !important;
}

.hero-chat .vision-msg .msg-text {
    border-radius: var(--radius-md) !important;
    border-top-left-radius: var(--radius-sm) !important;
}

.hero-chat .user-msg .msg-text {
    border-radius: var(--radius-md) !important;
    border-top-right-radius: var(--radius-sm) !important;
}

/* Soften cards and panels */
.capability-card,
.stat-block,
.offer-box,
.section-container {
    border-radius: var(--radius-lg) !important;
}

/* Soften buttons globally */
button,
.btn,
[type="submit"],
.nav-cta {
    border-radius: var(--radius-md) !important;
}

/* Human feed widget */
.human-feed {
    border-radius: var(--radius-lg) !important;
}

.human-feed-header {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border-radius: var(--radius-md) !important;
}

/* Navigation */
.site-nav {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
}

/* Smooth transitions for interactive elements */
button,
.btn,
a,
input,
textarea,
.capability-card,
.stat-block {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Subtle hover lift effect for cards */
.capability-card:hover,
.stat-block:hover,
.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) !important;
}

/* Soften the eye elements */
.vision-eye,
.peeking-eye,
.eye-outer {
    border-radius: 50% !important;
}

/* Contact form polish */
.contact-form input,
.contact-form textarea {
    border-radius: var(--radius-md) !important;
}

/* Blog cards */
.blog-card,
.post-card {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

/* Footer polish */
.footer {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0 !important;
}

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

/* Polish scrollbar in chat specifically */
.hero-chat .chat-messages::-webkit-scrollbar {
    width: 6px;
}

.hero-chat .chat-messages::-webkit-scrollbar-track {
    background: rgba(0, 30, 50, 0.5);
    border-radius: 3px;
}

.hero-chat .chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), rgba(0, 212, 255, 0.5));
    border-radius: 3px;
}

.hero-chat .chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}
