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

:root {
    --deep-bg: #050505;
    --surface-glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #E2E2E2;
    --text-muted: #8A8A9B;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-bg);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* 1. The Immersive Hero Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image:
        linear-gradient(rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.9)),
        /* Dark overlay */
        url('../assets/images/hero-bg-titanium.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Gives a premium parallax feel when scrolling */
}

/* 2. Apple-Style Floating Glass Pill Nav */
.glass-pill-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.02);
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* New logo image in nav */
.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 24px;
    /* similar visual height to old text logo */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #A0A0B0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta-btn {
    background: rgba(242, 200, 0, 0.1);
    color: var(--electric-yellow);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(242, 200, 0, 0.3);
    transition: all 0.3s;
}

.nav-cta-btn:hover {
    background: var(--electric-yellow);
    color: var(--deep-navy);
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Open State Animations */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fullscreen Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    /* Just below the nav bar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--electric-yellow);
}

/* 3. Hero Section - Massive Typography & No Bounds */
.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #A0A0B0;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-main);
    box-shadow: 0 0 10px rgba(226, 226, 226, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.gradient-text {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #8A8A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.2rem;
    font-weight: 300;
    color: #8A8A9B;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Premium Primary Button */
.glass-btn-primary {
    background: linear-gradient(135deg, #E2E2E2 0%, #8A8A9B 100%);
    color: #050505;
    border: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1), inset 0 2px 0 rgba(255, 255, 255, 1);
}

/* Floating UI Cards for Depth Simulation */
.floating-ui {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    pointer-events: none;
}

.card-1 {
    top: 25%;
    left: 10%;
    transform: rotate(-5deg);
}

.card-2 {
    bottom: 25%;
    right: 10%;
    transform: rotate(3deg);
}

.ui-header {
    font-size: 0.75rem;
    color: #8A8A9B;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ui-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.ui-dots {
    display: flex;
    gap: 4px;
}

.ui-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A0A0B0;
}

.ui-dots span:first-child {
    background: var(--text-main);
}

/* --- Process Section --- */
.process-section {
    padding: 150px 5%;
    background-color: transparent;
    /* Lets the mesh background show through slightly */
    position: relative;
    z-index: 10;
}

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

/* Allow the main Integration Framework cards to breathe more on desktop */
.process-section .container {
    max-width: 1200px;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 80px;
    font-weight: 300;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 50px;
    /* Space for the line */
}

.timeline-track {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    /* Dim un-scrolled track */
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    /* JS will animate this to 100% on scroll */
    background: linear-gradient(180deg, transparent, var(--text-main), transparent);
    box-shadow: 0 0 15px rgba(226, 226, 226, 0.4);
}

.process-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    /* JS fade in */
    transform: translateY(40px);
    /* JS slide up */
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-dot {
    position: absolute;
    left: -54px;
    /* Perfectly centers dot over the track */
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--deep-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Activated state controlled by JS */
.process-step.active .step-dot {
    border-color: var(--text-main);
    background: var(--text-main);
    box-shadow: 0 0 15px rgba(226, 226, 226, 0.8);
}

.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    border-left: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
}

.glass-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* --- 3D Monolith Grid --- */
.services-section {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

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

.monolith-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* The wrapper creates the 3D space */
.monolith-wrapper {
    perspective: 1200px;
    /* Crucial for the 3D effect */
    opacity: 0;
    transform: translateY(40px);
}

.span-2 {
    grid-column: span 2;
}

/* The actual moving card */
.monolith-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    transform-style: preserve-3d;
    /* Allows inner elements to pop out */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Background Cyber-Grid Pattern */
.monolith-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: translateZ(-20px);
    /* Pushed into the background */
    opacity: 0.5;
}

/* Sweeping Edge Light Effect */
.monolith-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    /* Thickness of the glowing border */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%, rgba(226, 226, 226, 0.8));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.monolith-card:hover .monolith-border-glow {
    opacity: 1;
    /* Optional: add an animation to rotate the gradient here */
}

/* Content floating above the card */
.monolith-content {
    position: relative;
    padding: 40px;
    transform: translateZ(60px);
    /* Physically floats 60px above the glass */
    display: flex;
    flex-direction: column;
    height: 100%;
    pointer-events: none;
    /* Let mouse interact with the wrapper */
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(226, 226, 226, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--text-main);
}

.monolith-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.monolith-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-link {
    margin-top: auto;
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    pointer-events: auto;
    /* Re-enable clicking for the link */
}

/* Custom Monolith Backgrounds */
.card-agents {
    background-image:
        linear-gradient(rgba(15, 15, 18, 0.85), rgba(15, 15, 18, 0.95)),
        url('../assets/images/service-agents.png');
    background-size: cover;
    background-position: center;
}

.card-data {
    background-image:
        linear-gradient(rgba(15, 15, 18, 0.85), rgba(15, 15, 18, 0.95)),
        url('../assets/images/data-pipeline.png');
    background-size: cover;
    background-position: center;
}

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

    .span-2 {
        grid-column: span 1;
    }

    .monolith-wrapper {
        perspective: none;
    }

    /* Disable 3D on mobile for performance */
    .monolith-card {
        transform: none !important;
    }
}

/* --- ClawdBot Sticky Section --- */
.clawdbot-section {
    position: relative;
    z-index: 10;
    padding: 0 5%;
    margin-top: 100px;
    background: linear-gradient(180deg, transparent, rgba(15, 15, 18, 0.8), transparent);
}

.sticky-container {
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5%;
}

/* Left Panel - The Pinned 3D Visual */
.bot-visual-panel {
    position: sticky;
    top: 15vh;
    /* Locks it 15% from the top of the viewport */
    width: 45%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
}

/* AI Core Orb Design */
.bot-core-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-core-orb {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text-main), #8A8A9B);
    box-shadow: 0 0 50px rgba(226, 226, 226, 0.4), inset 0 0 20px #000;
    z-index: 10;
}

/* Rotating Titanium Rings */
.bot-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(226, 226, 226, 0.2);
    border-top: 1px solid var(--text-main);
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: spin-reverse 8s linear infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation: spin 12s linear infinite;
}

.ring-3 {
    width: 320px;
    height: 320px;
    animation: spin-reverse 16s linear infinite;
    opacity: 0.5;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

.visual-label {
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right Panel - Scrolling Content */
.bot-content-panel {
    width: 50%;
    padding-top: 15vh;
    /* Aligns first item with the pinned visual */
    padding-bottom: 30vh;
    /* Gives room to scroll past the last item */
}

.bot-intro {
    margin-bottom: 80px;
}

.bot-intro h2 {
    font-size: 4rem;
    margin-bottom: 16px;
}

.feature-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* Massive gap to force scrolling */
}

.bot-feature-item {
    opacity: 0.3;
    /* JS will change this to 1 when in view */
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
    display: inline-block;
}

.bot-feature-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.2;
}

.bot-feature-item p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .sticky-container {
        flex-direction: column;
    }

    .bot-visual-panel {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        margin-bottom: 60px;
    }

    .bot-content-panel {
        width: 100%;
        padding: 0;
    }

    .feature-scroll-list {
        gap: 60px;
    }

    .bot-feature-item {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Impact & Metrics Section --- */
.impact-section {
    padding: 120px 5%;
    position: relative;
    z-index: 10;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease;
    border-top: 1px solid rgba(226, 226, 226, 0.1);
}

.metric-card:hover {
    transform: translateY(-10px);
    border-top: 1px solid rgba(226, 226, 226, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.metric-industry {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.metric-number {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-main) 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.metric-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
}

.metric-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    margin-bottom: 24px;
}

.metric-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.metric-details strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Tech Stack Tags */
.tech-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.tech-stack-tags span {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0A0B0;
    letter-spacing: 0.5px;
}

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

/* --- Pre-Footer CTA Section --- */
.cta-section {
    padding: 150px 5% 100px 5%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-container {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 226, 226, 0.2);
}

/* Subtle inner glow for the CTA box */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(226, 226, 226, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.massive-cta-text {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Upscaled Button for the final push */
.massive-btn {
    display: inline-block;
    padding: 24px 48px;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

/* --- Corporate Footer --- */
.site-footer {
    background: #030303;
    /* Slightly darker than the body bg to ground the page */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 5% 40px 5%;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--text-main);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-email {
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 12px;
    border-bottom: 1px solid rgba(226, 226, 226, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.footer-email:hover {
    border-color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-domains a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-domains a:hover {
    color: var(--text-main);
}

.footer-domains .divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.1);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .massive-cta-text {
        font-size: 3rem;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS PATCH
   ========================================= */

@media (max-width: 900px) {

    /* 1. Navigation */
    .glass-pill-nav {
        width: 90%;
        padding: 10px 20px;
        gap: 15px;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    /* Hides center links to save space */
    .logo {
        font-size: 0.9rem;
    }

    .nav-cta-btn {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    /* 2. Hero Section */
    .hero-immersive {
        height: auto;
        padding: 180px 5% 100px 5%;
    }

    .gradient-text {
        font-size: 3rem !important;
        letter-spacing: -1px;
    }

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

    .floating-ui {
        display: none;
    }

    /* Hide floating depth cards to prevent clutter */
    .glass-btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }

    /* 3. Process Section */
    .process-section {
        padding: 80px 5%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .timeline-wrapper {
        padding-left: 30px;
    }

    .step-dot {
        left: -34px;
        width: 8px;
        height: 8px;
    }

    .glass-card {
        padding: 24px;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    /* 4. 3D Monoliths (Services) */
    .monolith-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .span-2 {
        grid-column: span 1;
    }

    .monolith-wrapper {
        perspective: none;
    }

    /* Disables 3D engine on mobile */
    .monolith-card {
        transform: none !important;
        padding: 30px;
    }

    .monolith-content {
        transform: none !important;
        padding: 0;
    }

    .monolith-border-glow {
        opacity: 1;
    }

    /* Keep the premium border always visible */

    /* 5. OpenClaw / ClawdBot Section */
    .clawdbot-section {
        margin-top: 60px;
        padding: 0 5%;
    }

    .sticky-container {
        flex-direction: column;
    }

    /* Un-pin the visual and stack it */
    .bot-visual-panel {
        position: relative;
        width: 100%;
        height: 350px;
        top: 0;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .openclaw-core-img {
        max-width: 250px;
    }

    .bot-content-panel {
        width: 100%;
        padding: 0;
    }

    .bot-intro h2 {
        font-size: 2.8rem;
    }

    .feature-scroll-list {
        gap: 60px;
    }

    /* Disable the scroll-fading on mobile for better reading */
    .bot-feature-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .bot-feature-item h3 {
        font-size: 1.8rem;
    }

    /* 6. Impact / Case Studies */
    .impact-section {
        padding: 80px 5%;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-number {
        font-size: 3.5rem;
    }

    .metric-card {
        padding: 30px;
    }

    /* 7. Footer & Final CTA */
    .cta-section {
        padding: 80px 5%;
    }

    .massive-cta-text {
        font-size: 2.5rem;
    }

    .massive-btn {
        width: 100%;
        padding: 20px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- CRM Page Specifics --- */
.service-page .mesh-bg {
    /* Slightly darker for internal pages */
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95)), url('../assets/images/hero-bg-titanium.png');
}

/* Service Hero */
.service-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 150px 5% 50px 5%;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-hero-text {
    flex: 1;
}

.service-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    /* Prevent the 3D stack from pushing the bounds on mobile */
    max-width: 100%;
    padding: 20px;
}

@media(max-width: 900px) {
    .service-hero-visual {
        overflow: hidden;
    }

    .data-stack {
        transform: scale(0.8) rotateX(60deg) rotateZ(-45deg);
    }
}

/* 3D Data Stack Visual */
.data-stack {
    position: relative;
    width: 300px;
    height: 300px;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
}

.data-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(226, 226, 226, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
}

.layer-1 {
    transform: translateZ(0px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.layer-2 {
    transform: translateZ(60px);
    border-color: rgba(242, 200, 0, 0.3);
}

.layer-3 {
    transform: translateZ(120px);
    border-color: rgba(226, 226, 226, 0.4);
}

/* New Data Link Creative Visual */
.data-link {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 50%;
    transform-style: preserve-3d;
    pointer-events: none;
}

.link-left {
    left: -40px;
    transform: translateZ(60px) rotateX(-60deg) rotateZ(45deg);
    animation: hoverLinkLeft 6s ease-in-out infinite alternate;
}

.link-right {
    right: -40px;
    transform: translateZ(120px) rotateX(-60deg) rotateZ(45deg);
    animation: hoverLinkRight 5s ease-in-out infinite alternate-reverse;
}

.link-dot {
    width: 12px;
    height: 12px;
    background: #00FFA3;
    border-radius: 50%;
    box-shadow: 0 0 15px #00FFA3, 0 0 30px #00FFA3;
    position: relative;
}

.link-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid #00FFA3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.link-label {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E2E2;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Subtle line connecting dot to label */
.link-left .link-label::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 10px;
    height: 1px;
    background: rgba(0, 255, 163, 0.5);
}

.link-right {
    flex-direction: row-reverse;
}

.link-right .link-dot {
    background: var(--electric-yellow);
    box-shadow: 0 0 15px var(--electric-yellow), 0 0 30px var(--electric-yellow);
}

.link-right .link-dot::after {
    border-color: var(--electric-yellow);
}

.link-right .link-label::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 10px;
    height: 1px;
    background: rgba(242, 200, 0, 0.5);
}

@keyframes hoverLinkLeft {
    0% {
        transform: translateZ(60px) rotateX(-60deg) rotateZ(45deg) translateY(0);
    }

    100% {
        transform: translateZ(60px) rotateX(-60deg) rotateZ(45deg) translateY(-20px);
    }
}

@keyframes hoverLinkRight {
    0% {
        transform: translateZ(120px) rotateX(-60deg) rotateZ(45deg) translateY(0);
    }

    100% {
        transform: translateZ(120px) rotateX(-60deg) rotateZ(45deg) translateY(20px);
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 5%;
}

.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.comp-card {
    flex: 1;
    padding: 40px;
}

.comp-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
}

.text-electric {
    color: var(--electric-yellow);
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 24px;
    position: relative;
}

.comp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-main);
}

.good-state .comp-list li::before {
    color: var(--electric-yellow);
}

/* Interactive Pipeline Track */
.pipeline-features {
    padding: 100px 5%;
}

.pipeline-container {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0 auto;
}

.pipeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.pipeline-beam {
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 100px;
    background: var(--electric-yellow);
    box-shadow: 0 0 20px var(--electric-yellow);
    border-radius: 10px;
    opacity: 0;
    /* JS controls this */
}

.pipeline-node {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    padding-right: 50px;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pipeline-node.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}

.node-point {
    position: absolute;
    right: -6px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--deep-bg);
    border: 2px solid var(--text-muted);
    transform: translateY(-50%);
    transition: all 0.4s;
    z-index: 2;
}

.pipeline-node.right .node-point {
    right: auto;
    left: -8px;
}

.pipeline-node.active .node-point {
    border-color: var(--electric-yellow);
    background: var(--electric-yellow);
    box-shadow: 0 0 15px rgba(242, 200, 0, 0.6);
}

.node-content {
    padding: 30px;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s;
}

.pipeline-node.active .node-content {
    transform: scale(1.02);
    border-color: rgba(242, 200, 0, 0.3);
}

/* Mobile Adjustments for CRM page */
@media(max-width: 900px) {

    .hero-container,
    .comparison-grid {
        flex-direction: column;
    }

    .pipeline-track {
        left: 20px;
    }

    .pipeline-node,
    .pipeline-node.right {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .node-point,
    .pipeline-node.right .node-point {
        left: 13px;
        right: auto;
    }
}

/* --- Voice AI Page Specifics --- */
.intercept-dashboard {
    width: 100%;
    max-width: 480px;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid var(--glass-border);
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    box-shadow: -20px 30px 50px rgba(0, 0, 0, 0.6);
}

.dash-header {
    background: rgba(226, 226, 226, 0.03);
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.status-indicator {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator .pulse-dot {
    background: #00FFA3;
    box-shadow: 0 0 10px #00FFA3;
}

.intent-tag {
    background: rgba(242, 200, 0, 0.15);
    color: var(--electric-yellow);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.transcript-window {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 200px;
}

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

.chat-line.human {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    align-self: flex-start;
    border-left: 2px solid var(--text-muted);
}

.chat-line.ai {
    background: rgba(242, 200, 0, 0.05);
    color: var(--text-main);
    align-self: flex-end;
    border-right: 2px solid var(--electric-yellow);
}

.chat-line strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.api-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.api-node.active span {
    color: #00FFA3;
    font-weight: bold;
}

.api-node.waiting span {
    color: var(--electric-yellow);
    font-weight: bold;
}

/* Typewriter animation for the AI response */
.typing-text {
    overflow: hidden;
    white-space: normal;
    display: inline-block;
    opacity: 0;
    /* Handled by GSAP */
}

/* Voice Architecture Grid */
.voice-architecture {
    padding: 80px 5%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

@media(max-width: 900px) {
    .intercept-dashboard {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* --- Premium SVG Icons --- */
.premium-svg-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.premium-svg-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

/* Make them glow Electric Yellow on hover */
.monolith-wrapper:hover .premium-svg-icon {
    border-color: rgba(242, 200, 0, 0.4);
    box-shadow: 0 0 20px rgba(242, 200, 0, 0.15), inset 0 0 10px rgba(242, 200, 0, 0.1);
}

.monolith-wrapper:hover .premium-svg-icon svg {
    color: var(--electric-yellow);
    filter: drop-shadow(0 0 8px rgba(242, 200, 0, 0.6));
}

/* --- Interactive Call Flow Pipeline --- */
.call-flow-section {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

.telecom-pipeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0 auto;
}

/* The central wire */
.telecom-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

/* The animated pulse */
.telecom-pulse {
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--electric-yellow), transparent);
    box-shadow: 0 0 20px var(--electric-yellow);
    border-radius: 10px;
    opacity: 0;
}

.flow-step {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    padding-right: 60px;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.flow-step.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 60px;
    margin-left: 50%;
}

/* The glowing dot on the wire */
.step-node {
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--deep-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    transition: all 0.4s;
    z-index: 2;
}

.flow-step.right .step-node {
    right: auto;
    left: -8px;
}

/* Active state when the pulse hits it */
.flow-step.active .step-node {
    border-color: var(--electric-yellow);
    background: var(--electric-yellow);
    box-shadow: 0 0 20px rgba(242, 200, 0, 0.6);
}

.flow-step .step-content {
    padding: 30px;
    width: 100%;
    max-width: 420px;
    transition: transform 0.4s;
    position: relative;
}

/* The Millisecond Timestamp */
.step-time {
    position: absolute;
    top: -15px;
    right: 20px;
    background: rgba(242, 200, 0, 0.1);
    color: var(--electric-yellow);
    border: 1px solid rgba(242, 200, 0, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 5;
    opacity: 0.5;
    transition: all 0.4s;
}

.flow-step.right .step-time {
    right: auto;
    left: 20px;
}

.flow-step.active .step-time {
    opacity: 1;
    box-shadow: 0 0 15px rgba(242, 200, 0, 0.3);
}

.small-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.small-icon svg {
    width: 20px;
    height: 20px;
}

@media(max-width: 900px) {
    .telecom-line {
        left: 20px;
    }

    .flow-step,
    .flow-step.right {
        width: 100%;
        margin-left: 0;
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .step-node,
    .flow-step.right .step-node {
        left: 12px;
        right: auto;
    }
}

/* --- Fluid Glass Accordion (Voice AI) --- */
.fluid-architecture-section {
    padding: 80px 5%;
}

.accordion-container {
    display: flex;
    height: 500px;
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.fluid-panel {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0A0A0C;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity 0.6s, transform 0.6s;
    z-index: 0;
}

.fluid-panel:hover,
.fluid-panel.active {
    flex: 3;
    border-color: rgba(242, 200, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fluid-panel:hover .panel-bg,
.fluid-panel.active .panel-bg {
    opacity: 1;
    transform: scale(1.05);
}

/* Big number when unhovered to act as a clear trigger */
.unhovered-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.fluid-panel:hover .unhovered-num,
.fluid-panel.active .unhovered-num {
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.8);
}

.panel-header {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.panel-num {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: bold;
}

.fluid-panel h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    white-space: nowrap;
    margin: 0;
    transition: color 0.4s;
}

.fluid-panel:hover h3,
.fluid-panel.active h3 {
    color: var(--electric-yellow);
}

.panel-content {
    position: relative;
    z-index: 2;
    padding: 0 30px 30px 30px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.4s ease;
    transition-delay: 0s;
}

.fluid-panel:hover .panel-content,
.fluid-panel.active .panel-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0.2s;
}

.panel-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
}

.tech-specs {
    display: flex;
    gap: 10px;
}

.tech-specs span {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E2E2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media(max-width: 900px) {
    .accordion-container {
        flex-direction: column;
        height: 800px;
    }

    .fluid-panel h3 {
        white-space: normal;
    }
}

/* --- OpenClaw Swarm Visualizer --- */
.swarm-visualizer-section {
    padding: 40px 5% 100px 5%;
}

.swarm-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.swarm-node {
    background: rgba(15, 15, 18, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 280px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, border-color 0.3s;
}

.core-node {
    margin-bottom: 60px;
    border-color: rgba(242, 200, 0, 0.4);
    box-shadow: 0 0 30px rgba(242, 200, 0, 0.1);
}

.swarm-layer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.agent-node:hover {
    transform: translateY(-10px);
    border-color: var(--text-main);
}

.node-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.swarm-node h4 {
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.swarm-node p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Connecting Data Streams */
.swarm-stream-container {
    position: absolute;
    top: 140px;
    height: 80px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.center-stream {
    left: 50%;
    transform: translateX(-50%);
}

.left-stream {
    left: 50%;
    transform: rotate(45deg);
    transform-origin: top left;
    height: 120px;
}

.right-stream {
    left: 50%;
    transform: rotate(-45deg);
    transform-origin: top right;
    height: 120px;
}

.stream-particle {
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 20px;
    background: var(--electric-yellow);
    box-shadow: 0 0 15px var(--electric-yellow);
    border-radius: 10px;
    opacity: 0;
}

@media(max-width: 900px) {
    .swarm-layer {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .swarm-stream-container {
        display: none;
    }

    .swarm-node {
        width: 100%;
    }
}

/* --- Live Routing Matrix (OpenClaw) --- */
.routing-matrix-section {
    padding: 60px 5% 100px 5%;
}

.matrix-container {
    position: relative;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.matrix-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.route-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2;
}

.matrix-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.input-col {
    width: 30%;
}

.router-col {
    width: 15%;
    align-items: center;
}

.agents-col {
    width: 35%;
}

.terminal-block {
    background: #050505;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.terminal-header,
.agent-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terminal-body {
    padding: 16px;
    color: var(--text-main);
    line-height: 1.5;
}

.engine-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--electric-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--electric-yellow);
    box-shadow: 0 0 30px rgba(242, 200, 0, 0.2);
    position: relative;
}

.core-rings {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(242, 200, 0, 0.3);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.agent-block {
    background: rgba(15, 15, 18, 0.9);
    border-radius: 8px;
    border-left: 3px solid var(--electric-yellow);
}

.agent-status {
    padding: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: monospace;
}

@media(max-width: 900px) {
    .matrix-container {
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    .matrix-lines {
        display: none;
    }

    .matrix-col {
        width: 100%;
    }
}

/* --- Interactive Infrastructure Console --- */
.console-wrapper {
    display: flex;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #0A0A0C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Left Sidebar */
.console-sidebar {
    width: 35%;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.console-tab {
    padding: 24px 30px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.console-tab:hover {
    background: rgba(255, 255, 255, 0.04);
}

.tab-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--electric-yellow);
    opacity: 0;
    transition: opacity 0.3s;
}

.console-tab.active .tab-indicator {
    opacity: 1;
    box-shadow: 0 0 15px var(--electric-yellow);
}

.console-tab.active {
    background: rgba(242, 200, 0, 0.05);
}

.tab-id {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.console-tab h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    transition: color 0.3s;
}

.console-tab.active h3 {
    color: var(--text-main);
}

/* Right Viewport */
.console-viewport {
    width: 65%;
    padding: 50px;
    position: relative;
}

.viewport-module {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.viewport-module.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
}

.module-header h4 {
    font-size: 1.5rem;
    color: var(--electric-yellow);
}

.status-badge {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: monospace;
    color: var(--text-muted);
}

.pulse-dot.green {
    background: #00FFA3;
    box-shadow: 0 0 10px #00FFA3;
}

.pulse-dot.yellow {
    background: var(--electric-yellow);
    box-shadow: 0 0 10px var(--electric-yellow);
}

.module-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Custom Visuals Inside Modules */
.mock-server-rack,
.routing-visual,
.mock-terminal,
.mock-metrics {
    background: #050505;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    font-family: monospace;
    font-size: 0.85rem;
}

.server-blade {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #A0A0B0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-blade:last-child {
    border: none;
}

.server-blade .led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00FFA3;
    box-shadow: 0 0 8px #00FFA3;
}

.server-blade .led.blue {
    background: #00A3FF;
    box-shadow: 0 0 8px #00A3FF;
}

.routing-visual .route-path {
    padding: 12px;
    color: #E2E2E2;
}

.routing-visual .route-path.dimmed {
    color: #555;
}

.routing-visual .route-path .highlight {
    color: var(--electric-yellow);
    font-weight: bold;
}

.mock-terminal .term-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    gap: 6px;
    align-items: center;
}

.mock-terminal .term-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.mock-terminal .term-body code {
    display: block;
    margin-bottom: 4px;
    color: #E2E2E2;
}

.mock-terminal .term-body .keyword {
    color: #FF7B72;
}

.mock-terminal .term-body .string {
    color: #A5D6FF;
}

.mock-terminal .term-body .success {
    color: #00FFA3;
    margin-top: 10px;
}

.mock-metrics .metric-row {
    margin-bottom: 16px;
    color: #A0A0B0;
}

.mock-metrics .metric-row .highlight {
    color: var(--electric-yellow);
}

.mock-metrics .bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.mock-metrics .bar-fill {
    height: 100%;
    background: #555;
    border-radius: 10px;
}

.mock-metrics .highlight-fill {
    background: var(--electric-yellow);
    box-shadow: 0 0 10px var(--electric-yellow);
}

@media(max-width: 900px) {
    .console-wrapper {
        flex-direction: column;
    }

    .console-sidebar,
    .console-viewport {
        width: 100%;
    }

    .console-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .console-tab {
        padding: 16px;
    }

    .tab-indicator {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
    }
}

/* --- System Audit Intake Portal --- */
.audit-portal-section {
    padding: 150px 5% 100px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.portal-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.portal-info {
    flex: 1;
    max-width: 550px;
    animation: slideRight 0.8s ease-out forwards;
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.massive-title {
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
}

.portal-subtext {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 50px;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.agenda-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.agenda-num {
    font-family: monospace;
    font-size: 1.2rem;
    color: var(--electric-yellow);
    font-weight: bold;
    background: rgba(242, 200, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(242, 200, 0, 0.2);
}

.agenda-text h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.agenda-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #A0A0B0;
    font-size: 0.85rem;
}

.security-note svg {
    color: var(--electric-yellow);
    flex-shrink: 0;
}

/* Calendly Embed Styling */
.portal-embed {
    flex: 1;
    width: 100%;
    max-width: 600px;
    padding: 10px;
    background: rgba(10, 10, 12, 0.6);
    animation: slideLeft 0.8s ease-out forwards;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
}

@media(max-width: 1000px) {
    .portal-container {
        flex-direction: column;
        gap: 50px;
    }

    .portal-info,
    .portal-embed {
        max-width: 100%;
    }

    .massive-title {
        font-size: 3rem;
    }
}

/* =========================================
   V2 MOBILE RESPONSIVENESS PATCH (MULTI-PAGE)
   ========================================= */

@media (max-width: 900px) {

    /* 1. Global Service Pages & Heroes */
    .service-hero {
        padding: 120px 5% 50px 5%;
        text-align: center;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .service-hero-text h1 {
        font-size: 2.8rem !important;
    }

    .service-hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* 2. Voice AI: Fluid Accordion Fixes */
    /* Changes it from horizontal to vertical stacking */
    .accordion-container {
        height: auto;
        min-height: 600px;
        display: flex;
        flex-direction: column;
    }

    .fluid-panel {
        min-height: 90px;
        flex: none !important;
        transition: min-height 0.4s ease;
    }

    .fluid-panel.active {
        min-height: 380px;
    }

    .panel-header {
        padding: 20px;
    }

    .panel-content {
        padding: 0 20px 20px 20px;
    }

    /* 3. OpenClaw: Console Fixes */
    /* Stacks the tabs and gives the viewport breathing room */
    .console-sidebar {
        grid-template-columns: 1fr;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .console-tab {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .tab-id {
        margin-bottom: 0;
    }

    .tab-indicator {
        width: 4px;
        height: 100%;
        top: 0;
        left: 0;
        bottom: auto;
    }

    .console-viewport {
        padding: 30px 20px;
    }

    .module-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .module-header h4 {
        font-size: 1.3rem;
    }

    /* 4. OpenClaw: Matrix Fixes */
    .matrix-container {
        height: auto;
        padding-bottom: 40px;
        gap: 30px;
    }

    .agents-col {
        gap: 15px;
    }

    .agent-block {
        margin-left: 20px;
    }

    /* Indents agents to show hierarchy since SVG lines are hidden */

    /* 5. CRM: Pipeline Fixes */
    .pipeline-container {
        margin-top: 40px;
    }

    .pipeline-node .node-content {
        padding: 20px;
    }

    .pipeline-node h3 {
        font-size: 1.2rem;
    }

    /* 6. Contact/Calendly Portal */
    .audit-portal-section {
        padding: 120px 5% 50px 5%;
    }

    .agenda-item {
        flex-direction: column;
        gap: 10px;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        height: 750px !important;
    }

    /* 7. Mobile Navbar Adjustments */
    .glass-pill-nav {
        width: 90%;
        justify-content: space-between;
        padding: 12px 20px;
    }

    .nav-links,
    .nav-cta-btn {
        display: none !important;
        /* Hide desktop links & CTA */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show hamburger */
    }

    /* Fix CRM Hero Visual Overflow on Mobile */
    .data-stack {
        transform: scale(0.65) rotateX(60deg) rotateZ(-45deg);
        /* Scale down the stack to fit screen width */
        margin-left: -50px;
        /* Offset to center the scaled down stack */
    }
}

/* --- Ecosystem Grid (CRM) --- */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.eco-card {
    padding: 40px 30px;
    transition: transform 0.3s;
}

.eco-card:hover {
    transform: translateY(-10px);
}

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

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

/* --- Swarm Blueprints (OpenClaw) --- */
.blueprint-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.blueprint-item {
    padding: 30px;
    border-left: 3px solid var(--electric-yellow);
}

.bp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bp-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 0;
}

.roi-tag {
    background: rgba(242, 200, 0, 0.1);
    color: var(--electric-yellow);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: monospace;
}

@media(max-width: 768px) {
    .bp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* --- Logic Simulator (Voice AI) --- */
.sim-btn {
    width: 100%;
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.sim-btn:hover {
    border-color: var(--electric-yellow);
    background: rgba(242, 200, 0, 0.05);
}

.sim-btn strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.sim-btn span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.proc-step {
    margin-bottom: 6px;
}

@media(max-width: 900px) {
    .simulator-wrapper {
        flex-direction: column;
    }

    .sim-controls,
    .sim-terminal {
        width: 100%;
    }
}

/* --- Voice AI & OpenClaw Interactive Upgrades --- */
.audio-track {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.track-info h4 {
    margin: 0;
    color: #E2E2E2;
    font-size: 1rem;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.audio-player:hover {
    background: rgba(242, 200, 0, 0.1);
}

.play-btn {
    color: var(--electric-yellow);
    font-size: 1.2rem;
}

.wave-visualizer {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: center;
}

.wave-visualizer span {
    width: 3px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    transition: height 0.1s;
}

.audio-player.playing .wave-visualizer span {
    background: var(--electric-yellow);
    animation: equalize 0.8s infinite alternate;
}

@keyframes equalize {
    0% {
        height: 4px;
    }

    100% {
        height: 20px;
    }
}

.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 5px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--electric-yellow);
    cursor: pointer;
}

/* Configurator Toggles */
.toggle-group {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-group:hover {
    border-color: rgba(242, 200, 0, 0.3);
}

.toggle-group.active {
    border-color: var(--electric-yellow);
    background: rgba(242, 200, 0, 0.05);
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.toggle-header h4 {
    margin: 0;
    color: var(--text-main);
    font-size: 1.1rem;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #333;
    border-radius: 20px;
    position: relative;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.3s;
}

.toggle-group.active .toggle-switch {
    background: var(--electric-yellow);
}

.toggle-group.active .toggle-switch::after {
    left: 22px;
    background: #000;
}

.toggle-group p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media(max-width: 900px) {

    .calc-layout,
    .config-wrapper {
        flex-direction: column;
    }
}

/* --- CRM Interactive Section Styles (V2 Liquid Glass) --- */
.glass-divider {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.enrich-step {
    opacity: 0;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Payload Tracer Nodes */
.trigger-node .node-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(10, 15, 13, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.trigger-node .node-circle svg {
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.trigger-node:hover .node-circle {
    border-color: var(--electric-yellow);
    box-shadow: 0 0 30px rgba(242, 200, 0, 0.2), inset 0 0 20px rgba(242, 200, 0, 0.1);
}

.trigger-node:hover .node-circle svg {
    color: var(--electric-yellow);
    filter: drop-shadow(0 0 8px rgba(242, 200, 0, 0.6));
}

/* Radar Rings */
.radar-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: 1;
}

.radar-rings::before,
.radar-rings::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid var(--electric-yellow);
    opacity: 0;
}

.trigger-node:hover .radar-rings::before {
    animation: radar 2s infinite linear;
}

.trigger-node:hover .radar-rings::after {
    animation: radar 2s infinite linear 1s;
}

@keyframes radar {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse-tag {
    color: var(--electric-yellow);
    font-size: 0.7rem;
    font-family: monospace;
    background: rgba(242, 200, 0, 0.05);
    border: 1px solid rgba(242, 200, 0, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Target Nodes */
.target-node {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(10, 15, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    z-index: 2;
    text-align: left;
}

.small-node-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.small-node-icon svg {
    width: 20px;
    height: 20px;
}

.node-text-content h4 {
    color: #fff;
    margin: 0 0 4px 0;
    font-size: 0.95rem;
}

.node-status {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: monospace;
    transition: color 0.3s;
}

/* Success State */
.target-node.success {
    border-color: rgba(242, 200, 0, 0.4);
    background: rgba(242, 200, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(10px);
}

.target-node.success .premium-svg-icon {
    border-color: rgba(242, 200, 0, 0.4);
    box-shadow: 0 0 15px rgba(242, 200, 0, 0.15), inset 0 0 10px rgba(242, 200, 0, 0.1);
}

.target-node.success .premium-svg-icon svg {
    color: var(--electric-yellow);
    filter: drop-shadow(0 0 8px rgba(242, 200, 0, 0.6));
}

.enrich-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width: 900px) {
    .enrich-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .glass-divider {
        display: none;
    }

    .sandbox-layout {
        flex-direction: column;
    }

    .sandbox-input,
    .sandbox-output {
        width: 100%;
        border-right: none;
    }

    .sandbox-input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .tracer-diagram {
        height: auto;
        flex-direction: column;
        gap: 40px;
        padding-top: 50px;
    }

    .trigger-node {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 30px;
    }

    .tracer-diagram svg {
        display: none;
    }

    /* Hide complex SVG paths on mobile */
    .tracer-diagram>div:last-child {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        height: auto;
        gap: 20px;
        width: 100%;
    }
}