/* Fonts loaded via HTML \u003clink\u003e with display=swap for non-blocking render */

:root {
    --bg-dark: #05050a;
    --bg-card: rgba(13, 13, 25, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shine: rgba(255, 255, 255, 0.03);
    
    --primary-glow: #00f2fe;
    --secondary-glow: #7f00ff;
    --accent-glow: #ff007f;
    --text-primary: #f8f9fa;
    --text-muted: #94a3b8;
    
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-glow);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Skip to main content — accessibility */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--primary-glow);
    color: #000;
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Override Bootstrap's .text-muted for dark theme — WCAG AA contrast */
.text-muted {
    color: #a8b8c8 !important;
}

a.text-muted:hover {
    color: #d0dce8 !important;
}

.lead {
    color: #b8c8d4;
    font-size: 1.15rem;
    line-height: 1.7;
}

p {
    color: #a8b8c8;
    line-height: 1.7;
}

/* Animated Liquid Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    contain: strict;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.28;
    mix-blend-mode: screen;
    animation: liquidBlob 20s infinite alternate ease-in-out;
    will-change: transform;
    contain: layout style;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0, 242, 254, 0) 70%);
    animation-duration: 25s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(127, 0, 255, 0) 70%);
    animation-duration: 30s;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(255, 0, 127, 0) 70%);
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes liquidBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 30% 70% / 50% 60% 30% 60%;
    }
    33% {
        transform: translate(5%, 10%) scale(1.1) rotate(120deg);
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    66% {
        transform: translate(-10%, -5%) scale(0.9) rotate(240deg);
        border-radius: 50% 60% 70% 30% / 45% 45% 55% 55%;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        border-radius: 50% 50% 30% 70% / 50% 60% 30% 60%;
    }
}

/* Grid overlay for futuristic tech feel */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Floating Bot Background Animation */
.floating-bots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    contain: strict;
}

.floating-bot {
    position: absolute;
    color: var(--primary-glow);
    animation: floatBot 20s infinite ease-in-out;
    will-change: transform, opacity;
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.1));
    contain: layout style;
}

/* Add variety — alternate bots get different color */
.floating-bot:nth-child(even) {
    color: var(--secondary-glow);
    filter: drop-shadow(0 0 8px rgba(127, 0, 255, 0.15));
}

.floating-bot:nth-child(3n) {
    color: var(--accent-glow);
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.1));
}

@keyframes floatBot {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: var(--bot-base-opacity, 0.05);
    }
    15% {
        transform: translate(15px, -25px) rotate(10deg) scale(1.05);
        opacity: calc(var(--bot-base-opacity, 0.05) + 0.02);
    }
    30% {
        transform: translate(-10px, -45px) rotate(-5deg) scale(0.95);
        opacity: var(--bot-base-opacity, 0.05);
    }
    50% {
        transform: translate(25px, -20px) rotate(15deg) scale(1.08);
        opacity: calc(var(--bot-base-opacity, 0.05) + 0.03);
    }
    70% {
        transform: translate(-20px, 10px) rotate(-10deg) scale(0.98);
        opacity: var(--bot-base-opacity, 0.05);
    }
    85% {
        transform: translate(10px, 20px) rotate(5deg) scale(1.02);
        opacity: calc(var(--bot-base-opacity, 0.05) + 0.01);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: var(--bot-base-opacity, 0.05);
    }
}

/* Custom Interactive Cursor — Disabled, using default */
.custom-cursor {
    display: none;
}

.custom-cursor-dot {
    display: none;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Hover state for custom cursor */
.custom-cursor.hovered {
    width: 40px;
    height: 40px;
    border-color: var(--accent-glow);
    background-color: rgba(255, 0, 127, 0.1);
}

/* Liquid Glass Navbar */
.navbar-glass {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 24px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 var(--glass-shine);
}

.navbar-glass.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 12px 40px;
    background: rgba(5, 5, 10, 0.85);
}

.navbar-brand {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 30%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.nav-link {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

/* Liquid Navbar hover pill */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Glassmorphic generic containers */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 var(--glass-shine);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 254, 0.1), inset 0 1px 0 var(--glass-shine);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* Dark gradient overlay on top of video */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(5,5,10,0.70) 0%, rgba(5,5,10,0.40) 40%, rgba(5,5,10,0.60) 80%, rgba(5,5,10,0.95) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(0, 242, 254, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(127, 0, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Ensure hero content sits above the video + overlay */
.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-glow-title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 70%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .hero-glow-title {
        font-size: 2.6rem;
    }
    .hero-section {
        padding-top: 140px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-glow-title {
        font-size: 2rem;
    }
}

/* ===== Premium CEO Portrait Design ===== */
.ceo-hero-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: 480px;
    height: 640px;
}

@media (max-width: 991px) {
    .ceo-hero-wrapper {
        width: 340px;
        height: 460px;
    }
}

/* Animated gradient glow aura behind the frame */
.ceo-glow-ring {
    position: absolute;
    width: 500px;
    height: 660px;
    border-radius: 28px;
    background: conic-gradient(
        from 0deg,
        rgba(0, 242, 254, 0.15),
        rgba(127, 0, 255, 0.12),
        rgba(255, 0, 127, 0.10),
        rgba(0, 242, 254, 0.15)
    );
    filter: blur(40px);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .ceo-glow-ring {
        width: 360px;
        height: 480px;
        filter: blur(30px);
    }
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glass frame with animated gradient border */
.ceo-glass-frame {
    width: 440px;
    height: 600px;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        rgba(0, 242, 254, 0.4),
        rgba(127, 0, 255, 0.3),
        rgba(255, 0, 127, 0.2),
        rgba(0, 242, 254, 0.4)
    );
    background-size: 300% 300%;
    animation: borderShimmer 6s ease-in-out infinite;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 242, 254, 0.08),
        0 0 80px rgba(127, 0, 255, 0.05);
}

.ceo-glass-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 242, 254, 0.15),
        0 0 120px rgba(127, 0, 255, 0.08);
}

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

@media (max-width: 991px) {
    .ceo-glass-frame {
        width: 320px;
        height: 440px;
    }
}

/* Inner wrapper for image + effects */
.ceo-glass-frame::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 22px;
    background: var(--bg-dark);
    z-index: 0;
}

/* Holographic light sweep across the image */
.ceo-glass-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 60%
    );
    z-index: 10;
    pointer-events: none;
    border-radius: 24px;
    animation: holoSweep 5s ease-in-out infinite;
}

@keyframes holoSweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 22px;
    position: relative;
    z-index: 1;
    /* Bottom fade for editorial look */
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}

/* CEO Name Badge — upgraded with gradient accent */
.ceo-name-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 25, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 28px;
    border-radius: 50px;
    text-align: center;
    z-index: 20;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.06);
    white-space: nowrap;
    /* Top gradient line accent */
    border-top: 2px solid transparent;
    background-clip: padding-box;
    position: absolute;
}

.ceo-name-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow), var(--accent-glow));
    border-radius: 2px;
}

/* Premium floating tech tags */
.ceo-float-tag {
    position: absolute;
    background: rgba(13, 13, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 10px 18px;
    border-radius: 14px;
    color: #fff;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 254, 0.05);
    animation: floatTag 4s ease-in-out infinite alternate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-float-tag:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 242, 254, 0.15);
}

.ceo-tag-top {
    top: 30px;
    right: -30px;
}

.ceo-tag-bottom {
    bottom: 100px;
    left: -40px;
    animation-delay: -2s;
    border-color: rgba(127, 0, 255, 0.15);
}

@keyframes floatTag {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1deg); }
}

/* Orbit rings — subtle rotating paths */
.ceo-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 242, 254, 0.12);
    border-radius: 30px;
    pointer-events: none;
}

.orbit-1 {
    width: 500px;
    height: 660px;
    animation: rotateClockwise 40s linear infinite;
}

.orbit-2 {
    width: 530px;
    height: 690px;
    border: 1px solid rgba(127, 0, 255, 0.08);
    animation: rotateCounterClockwise 55s linear infinite;
}

@media (max-width: 991px) {
    .orbit-1 { width: 360px; height: 480px; }
    .orbit-2 { width: 380px; height: 500px; }
    .ceo-tag-top { right: -15px; top: 15px; }
    .ceo-tag-bottom { left: -15px; bottom: 80px; }
}

.orbit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-glow);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(0, 242, 254, 0.3);
}

.orbit-node-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-node-2 {
    bottom: 50%;
    right: 0;
    transform: translate(50%, 50%);
    background: var(--accent-glow);
    box-shadow: 0 0 15px var(--accent-glow), 0 0 30px rgba(255, 0, 127, 0.3);
}

@keyframes rotateClockwise {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Glowing buttons */
.btn-glow {
    position: relative;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-glow-primary {
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    border: none;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-glow-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.5), 0 0 15px var(--primary-glow);
    color: #fff;
}

.btn-glow-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-glow);
    color: var(--primary-glow);
}

/* Services Grid & Icons */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card {
    height: 100%;
}

.service-card:hover .service-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Glass Interactive Metrics Dashboard (Simulation Widget) */
.dashboard-widget {
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-family: monospace;
    font-size: 0.85rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.dashboard-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.02);
}

.dot-red, .dot-yellow, .dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.dashboard-body {
    padding: 16px;
    color: #4ade80;
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.metric-bar-container {
    width: 60%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    align-self: center;
}

.metric-bar-fill {
    height: 100%;
    background: var(--primary-glow);
    width: 0%;
    transition: width 1s ease-in-out;
}

/* AI Accounting Engine: Grid Layout */
.ai-engine-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    min-height: 260px;
    place-items: center;
}

.ai-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(13, 13, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 2;
    width: 100%;
}

.ai-module i {
    font-size: 1.4rem;
}

.ai-module:hover {
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 242, 254, 0.1);
}

.ai-module-tl { grid-column: 1; grid-row: 1; }
.ai-module-tr { grid-column: 3; grid-row: 1; }
.ai-module-bl { grid-column: 1; grid-row: 2; }
.ai-module-br { grid-column: 3; grid-row: 2; }

/* Center orb spanning both rows */
.ai-center-orb {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.ai-orb-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(127, 0, 255, 0.5) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 35px var(--accent-glow);
    z-index: 2;
    position: relative;
}

.ai-orb-pulse {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 127, 0.2);
    animation: orbPulse 2.5s ease-out infinite;
}

@keyframes orbPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Decorative SVG connection lines */
.ai-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Form Controls Glass Styling */
.form-glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    transition: all 0.3s;
}

.form-glass-input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-glow);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    outline: none;
}

.form-glass-input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* Footer Glass effect */
footer.glass-footer {
    background: rgba(10, 10, 20, 0.9);
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    padding-bottom: 40px;
}

/* ===== Performance: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    .blob,
    .floating-bot,
    .ceo-orbit-ring,
    .ceo-glow-ring,
    .ai-orb-pulse,
    .ceo-float-tag {
        animation: none !important;
        transition: none !important;
    }

    .hero-bg-video {
        display: none;
    }

    .glass-card {
        transition: none !important;
    }
}
