/* ===================================
   LookAcross AI - Vision Homepage Styles
   =================================== */

/* CSS Reset & Root Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* =================================== 
       Dark Mode Palette - Enterprise Future 
       =================================== */

    /* Backgrounds */
    --color-bg: #0B0F19;
    /* Deep Navy/Black */
    --color-surface: #111827;
    /* Dark Blue-Grey Card Background */
    --color-surface-hover: #1F2937;

    /* Accents */
    --color-neon-blue: #3B82F6;
    /* Primary Action / Highlight */
    --color-neon-pink: #F43F5E;
    /* Secondary Accent */
    --color-neon-purple: #8B5CF6;
    /* Tertiary / Gradient Support */

    /* Text */
    --color-text-main: #F9FAFB;
    /* Almost White */
    --color-text-muted: #9CA3AF;
    /* Cool Grey */
    --color-text-dark: #1F2937;
    /* For light backgrounds if any */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-neon-blue), var(--color-neon-pink));
    --gradient-dark: linear-gradient(to bottom, var(--color-bg), #0f1623);

    /* Utilities */
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);

    /* ===================================
       Legacy Compatibility (Temporary)
       =================================== */
    --color-navy-primary: var(--color-text-main);
    /* Text becomes white */
    --color-pink-secondary: var(--color-neon-pink);
    --color-black-accent: var(--color-text-main);

    --color-slate-900: var(--color-text-main);
    --color-slate-700: var(--color-text-muted);
    --color-slate-500: var(--color-text-muted);
    --color-slate-50: var(--color-bg);
}

/* ===================================
   Base Styles
   =================================== */

/* ===================================
   Base Styles
   =================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Global Typography & SEO Standardization */
h1 {
    font-size: clamp(40px, 5vw, 64px);
    /* Standard H1 */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    /* Standard H2 */
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

h3 {
    font-size: 24px;
    /* Standard H3 */
    font-weight: 600;
    line-height: 1.3;
    color: white;
    margin-bottom: 16px;
}

/* Section Divider - Blue Accent Bar (Changed from Pink) */
.section-divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-neon-blue) 50%,
            transparent 100%);
    margin: 0;
}

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

/* ===================================
   Refined Header (Floating Glass Island)
   =================================== */

.glass-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(15, 20, 35, 0.6);
    /* Deep elegant dark */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 12px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-header.header-scrolled {
    background: rgba(15, 20, 35, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    top: 16px;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 48px;
    /* Space between Logo and Nav */
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-links {
        gap: 20px;
        font-size: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Logo Refinement */
.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    /* Smaller, more discreet */
    width: auto;
    display: block;
}

.glass-header.header-scrolled .logo-img {
    height: 28px;
}

/* Elegant Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    /* The "Elegance" factor */
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

/* Subtle Glow Dot Indicator instead of Underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-neon-blue);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

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

/* Header CTA - Blue Theme */
.small-cta {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 0;
    background: rgba(59, 130, 246, 0.1);
    /* Subtle Blue BG */
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: none;
    color: white;
}

.small-cta:hover {
    background: var(--color-neon-blue);
    border-color: var(--color-neon-blue);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* ===================================
   Hero Section - Immersive Dark
   =================================== */

.hero {
    padding: 180px 0 120px;
    /* More top padding for fixed header */
    text-align: center;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge - Blue Theme */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 99px;
    margin-bottom: 32px;
    line-height: 1;
    /* Fix vertical drift */
    backdrop-filter: blur(4px);
    animation: fadeSlideUp 0.8s ease-out;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-neon-blue);
    /* Ensure consistent blue */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Typography Overrides (for impact) */
.hero-title {
    /* Use standardized H1 but allow slightly larger for Hero if needed, 
       but standardizing is cleaner for SEO. defaulting to global H1 is safer.
       Let's stick to the constraint "Size across multiple pages" -> Uniformity. */
    /* font-size: clamp(48px, 6vw, 84px); REMOVED to align with global H1 or careful override */
    font-size: clamp(48px, 6vw, 72px);
    /* Slightly larger than generic H1 but consistent */
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s ease-out 0.1s backwards;
}

.gradient-text {
    /* Changed from Pink/Purple mix to Blue/Cyan/Purple mix for "Darker Side" */
    background: linear-gradient(135deg, #60A5FA, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-clip: text;
    position: relative;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.8s ease-out 0.2s backwards;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeSlideUp 0.8s ease-out 0.3s backwards;
}

.cta-button {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Actions - Blue Theme */
.primary-cta {
    background: var(--color-neon-blue);
    /* Deep Blue */
    color: white;
    border: none;
}

.primary-cta:hover {
    background: #2563EB;
    /* Darker Blue */
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
    /* Blue Glow */
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===================================
   Vision Section
   =================================== */

.vision-section {
    padding: 60px 0;
    background: var(--color-surface);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.vision-content p {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--color-slate-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.vision-content strong {
    color: var(--color-slate-900);
    font-weight: 600;
}

/* ===================================
   Section Headers (Reusable)
   =================================== */

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

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(19, 48, 125, 0.08), rgba(15, 37, 99, 0.12));
    color: var(--color-navy-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(19, 48, 125, 0.15);
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--color-slate-500);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Three Pillars Section
   =================================== */

/* ===================================
   Three Pillars Section
   =================================== */

.pillars-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Background gradient blob */
.pillars-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.pillars-section .section-title {
    margin-bottom: 24px;
}

.neon-purple {
    color: var(--color-neon-purple);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.1);
}

.text-white {
    color: white;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: rgba(31, 41, 55, 0.4);
    /* Glassy dark */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.hover-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(31, 41, 55, 0.6);
}

.pillar-icon {
    font-size: 40px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    display: block;
    text-transform: none;
    letter-spacing: 0;
}

.pillar-card p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* ===================================
   Autopilot Section
   =================================== */

/* ... Header Styles ... */

/* Manifesto Title - Standardized to H2 size */
.manifesto-title {
    font-size: clamp(32px, 4vw, 48px);
    /* Matches Global H2 */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.manifesto-lead {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-slate-500);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Platform Hero Alignment */
.platform-hero {
    text-align: center;
    padding: 160px 0 100px;
    position: relative;
    /* Ensure content is centered */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.step-active .step-marker {
    border-color: var(--color-neon-blue);
    color: var(--color-neon-blue);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.step-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    transition: all 0.3s ease;
}

.glass-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
}

.check-list {
    list-style: none;
    text-align: left;
    padding-left: 10px;
}

.check-list li {
    margin-bottom: 8px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.check-list li::before {
    content: '•';
    color: var(--color-neon-blue);
    font-size: 18px;
    line-height: 0;
}

/* Connectors */
.timeline-connector {
    flex: 0 0 60px;
    height: 48px;
    /* Match marker height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.connector-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-neon-blue);
    border-radius: 50%;
    left: 0;
    box-shadow: 0 0 10px var(--color-neon-blue);
    animation: connectorFlow 2s infinite linear;
}

.delay-1 {
    animation-delay: 1s;
}

@keyframes connectorFlow {
    0% {
        left: 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .timeline-flow {
        flex-direction: column;
        align-items: center;
    }

    .timeline-connector {
        height: 60px;
        width: 48px;
        flex-direction: column;
    }

    .connector-line {
        height: 100%;
        width: 2px;
    }

    .connector-pulse {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        animation: connectorFlowVertical 2s infinite linear;
    }

    @keyframes connectorFlowVertical {
        0% {
            top: 0;
            opacity: 0;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }
}


/* ===================================
   Tesla Analogy Section
   =================================== */

.tesla-section {
    padding: 60px 0;
    background: var(--gradient-dark);
}

.tesla-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tesla-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.tesla-content p {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--color-slate-500);
    line-height: 1.8;
    margin-bottom: 48px;
}

.tesla-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 48px;
}

.tesla-box {
    background: var(--color-surface);
    border: 2px solid var(--color-slate-200);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tesla-box.input {
    border-color: var(--color-blue-primary);
    background: linear-gradient(135deg, rgba(41, 76, 255, 0.03), rgba(26, 58, 204, 0.05));
}

.tesla-box.output {
    border-color: var(--color-green);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.03), rgba(5, 150, 105, 0.05));
}

.tesla-box h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--color-slate-600);
}

.tesla-box.input h4 {
    color: var(--color-blue-primary);
}

.tesla-box.output h4 {
    color: var(--color-green);
}

.tesla-box ul {
    list-style: none;
    text-align: left;
}

.tesla-box li {
    padding: 8px 0;
    color: var(--color-slate-700);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tesla-box li::before {
    content: "→";
    color: var(--color-blue-primary);
    font-weight: 700;
}

.tesla-box.output li::before {
    color: var(--color-green);
}

.tesla-arrow {
    font-size: 32px;
    color: var(--color-blue-primary);
    font-weight: 700;
}

/* ===================================
   Dual Value Proposition Section
   =================================== */

.dual-value-section {
    padding: 60px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle Pattern for Dual Value Section */
.dual-value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            rgba(19, 48, 125, 0.02) 20px,
            rgba(19, 48, 125, 0.02) 40px);
    z-index: 0;
}

.dual-value-section .container {
    position: relative;
    z-index: 1;
}

.dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-panel {
    background: #ffffff;
    border: 2px solid var(--color-slate-200);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-navy-primary), #0f2563);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.value-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(19, 48, 125, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.value-panel.partner::before {
    background: linear-gradient(90deg, var(--color-pink-secondary), var(--color-navy-primary));
}

.value-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(19, 48, 125, 0.2);
    border-color: var(--color-navy-primary);
}

.value-panel:hover::before {
    transform: scaleX(1);
}

.value-panel:hover::after {
    opacity: 1;
}

.value-panel h3 {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
    color: var(--color-navy-primary);
    position: relative;
    z-index: 1;
}

.value-panel ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.value-panel li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-slate-100);
    color: var(--color-slate-700);
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-panel li:last-child {
    border-bottom: none;
}

.value-panel li::before {
    content: "✓";
    color: var(--color-green);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   Outcomes Section
   =================================== */

.outcomes-section {
    padding: 60px 0;
    background: var(--color-surface);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.outcome-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-slate-50) 100%);
    border: 1px solid var(--color-slate-200);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.outcome-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(19, 48, 125, 0.1);
    border-color: var(--color-navy-primary);
}

.outcome-metric {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--color-navy-primary), var(--color-pink-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.outcome-card h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--color-navy-primary);
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 14px;
    color: var(--color-slate-500);
    line-height: 1.6;
}

/* ===================================
   CTA Button
   =================================== */

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--color-pink-secondary), #e52a5a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(250, 58, 109, 0.3);
    margin-top: 24px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250, 58, 109, 0.4);
    background: linear-gradient(135deg, #e52a5a, var(--color-pink-secondary));
}

/* ===================================
   Silo Section (The Problem)
   =================================== */

.silo-section {
    padding: 100px 0;
    background: #0f1219;
    /* Slightly lighter than bg */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: white;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #F43F5E, #FB7185);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

.silo-visual {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    position: relative;
    flex-wrap: wrap;
}

.silo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    width: 220px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.silo-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.silo-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.silo-item h3 {
    color: var(--color-text-main);
    font-size: 18px;
    margin-bottom: 0;
}

.silo-wall {
    position: absolute;
    right: -20px;
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            rgba(244, 63, 94, 0.5),
            rgba(244, 63, 94, 0.5) 10px,
            transparent 10px,
            transparent 20px);
}

.silo-item:last-of-type .silo-wall {
    display: none;
}

.silo-breaker {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(244, 63, 94, 0.1);
    color: var(--color-neon-pink);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(244, 63, 94, 0.3);
}

/* ===================================
   Bento Section (The Solution)
   =================================== */

.bento-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

/* Grid Spans */
/* Grid Spans */
.card-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.card-large .card-content {
    flex: 0 0 40%;
    /* Keep text compact */
}

.card-large .card-visual {
    flex: 0 0 55%;
    /* Give animation more room */
    height: 240px;
    min-height: 240px;
    margin-top: 0;
    /* Reset margin */
}

.card-tall {
    grid-row: span 2;
    background: linear-gradient(145deg, var(--color-surface), #1a2236);
    /* Tall card stays vertical flex */
}

.card-wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.card-wide .card-content {
    flex: 0 0 40%;
}

.card-wide .card-visual {
    flex: 0 0 55%;
    height: 240px;
    min-height: 240px;
    margin-top: 0;
}

/* Content */
.card-content {
    position: relative;
    z-index: 2;
}

.bento-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.bento-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile responsive fix for horizontal cards */
@media (max-width: 768px) {

    .card-large,
    .card-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-large .card-content,
    .card-wide .card-content {
        flex: 1 1 auto;
        width: 100%;
        margin-bottom: 24px;
    }

    .card-large .card-visual,
    .card-wide .card-visual {
        flex: 1 1 auto;
        width: 100%;
        min-height: 200px;
    }
}

.metric-huge {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

/* Dual Value Panel Styles (Dark Mode Fix) */
.value-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    flex: 1;
    color: white;
}

.value-panel h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
}

.value-panel.isv h3 {
    color: white;
}

.value-panel.partner h3 {
    color: white;
}

.value-panel ul {
    list-style: none;
    padding: 0;
}

.value-panel li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-size: 16px;
}

.value-panel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-neon-blue);
    font-weight: bold;
}

/* Fix Bento Grid contrast too just in case */
.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-tall {
    background: rgba(255, 255, 255, 0.05);
    /* Slightly lighter for contrast */
}


.flow-arrow {
    font-size: 32px;
    color: var(--color-navy-primary);
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0.6;
}

.flow-annotation {
    text-align: center;
    font-size: 15px;
    color: var(--color-slate-600);
    font-style: normal;
    font-weight: 600;
    margin: 24px auto 16px;
    display: block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1);
    max-width: fit-content;
}

.diagram-caption {
    text-align: center;
    font-size: 17px;
    color: var(--color-slate-700);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===================================
   Difference Section
   =================================== */

.difference-section {
    padding: 50px 0;
    background: var(--color-navy-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Geometric Pattern for Difference Section */
.difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(250, 58, 109, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.difference-section .container {
    position: relative;
    z-index: 1;
}

.difference-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.difference-description {
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Difference Grid - 3-Step Flow */
.difference-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.difference-item {
    text-align: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
}

.difference-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.difference-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--color-pink-secondary);
    line-height: 1;
    margin-bottom: 12px;
}

.difference-item p {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.difference-divider {
    font-size: 32px;
    color: white;
    font-weight: 700;
}

/* ===================================
   Autopilot Section (Vertical Flow)
   =================================== */

.autopilot-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Wavy Lines Background for Autopilot Section */
.autopilot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 18px,
            rgba(59, 130, 246, 0.05) 18px,
            rgba(59, 130, 246, 0.05) 36px);
    z-index: 0;
}

.autopilot-section .container {
    position: relative;
    z-index: 1;
}

.autopilot-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

/* Autopilot Visual Flow */
.autopilot-visual-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.step-card h4 {
    margin: 20px 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* Featured Engine Card */
.featured-card {
    width: 260px;
    height: 260px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--color-blue-primary);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

/* Step 1: Input Visuals */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.definition-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.chip {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-slate-300);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Step 2: AI Core Visuals */
.ai-core-visual {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-center {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-pink-secondary);
    opacity: 0.5;
    animation: corePulse 2s infinite;
}

@keyframes corePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.execution-rings {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    align-items: center;
}

.ring-item {
    font-size: 12px;
    color: var(--color-slate-400);
    padding: 4px 12px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 4px;
    border-left: 2px solid var(--color-blue-primary);
    width: 80%;
    text-align: left;
}

/* Step 3: Output Visuals */
.success-graph {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.graph-bar {
    width: 12px;
    background: var(--color-green);
    border-radius: 2px 2px 0 0;
    opacity: 0.8;
}

.bar-1 {
    height: 40%;
    animation: growBar 2s infinite alternate;
}

.bar-2 {
    height: 70%;
    animation: growBar 2s 0.5s infinite alternate;
}

.bar-3 {
    height: 100%;
    animation: growBar 2s 1s infinite alternate;
}

@keyframes growBar {
    from {
        transform: scaleY(0.8);
        opacity: 0.6;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.revenue-pill {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Connectors */
.flow-connector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.2);
    font-family: monospace;
    font-size: 20px;
}

.connector-track {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.connector-stream {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--color-blue-primary), transparent);
    animation: streamFlow 1.5s infinite linear;
}

.delay-stream {
    animation-delay: 0.75s;
}

@keyframes streamFlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .autopilot-visual-flow {
        flex-direction: column;
        gap: 40px;
    }

    .flow-connector {
        transform: rotate(90deg);
    }

    .step-card,
    .featured-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 220px;
        /* Ensure minimum height */
        padding: 24px;
        /* aspect-ratio removed to prevent overflow */
    }
}

/* Autopilot Trust Signal */
.autopilot-trust {
    margin-top: 60px;
    text-align: center;
}

.trust-tagline {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.trust-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-metric .metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blue-primary);
    font-family: 'Inter', sans-serif;
}

.trust-metric .metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .trust-metrics {
        gap: 30px;
    }

    .trust-metric .metric-value {
        font-size: 24px;
    }
}

/* ===================================
   Value Glance Section
   =================================== */

.value-glance-section {
    padding: 100px 0;
    background: #0f1219;
    position: relative;
    overflow: hidden;
}

/* Subtle Wavy Pattern for Value Glance */
.value-glance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background-image:
        repeating-linear-gradient(135deg,
            transparent,
            transparent 16px,
            rgba(59, 130, 246, 0.05) 16px,
            rgba(59, 130, 246, 0.05) 32px);
    z-index: 0;
}

.value-glance-section .container {
    position: relative;
    z-index: 1;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-navy-primary), var(--color-pink-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(19, 48, 125, 0.15);
    border-color: var(--color-navy-primary);
}

.value-item:hover::before {
    opacity: 1;
}

.value-item h3 {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--color-navy-primary), var(--color-pink-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.value-item p {
    font-size: 15px;
    color: var(--color-slate-600);
    font-weight: 500;
}

/* ===================================
   Final CTA Section
   =================================== */

/* ===================================
   Final CTA Section
   =================================== */

.final-cta-section {
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: var(--color-bg);
}

.cta-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(244, 63, 94, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.final-cta-section .cta-text {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0b0f19;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 24px;
    }
}

/* ===================================
   Platform Page Styles
   =================================== */

.platform-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.tech-grid-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg);
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateY(50px);
    }
}

.platform-hero .container {
    position: relative;
    z-index: 1;
}

.tech-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-section.alt-bg {
    background: rgba(255, 255, 255, 0.02);
}

.tech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-split.reverse {
    direction: rtl;
}

.tech-split.reverse .tech-content {
    direction: ltr;
}

.tech-content {
    flex: 1;
}

.tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-blue-primary);
}

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

.tech-header .section-title {
    margin: 0;
}

.tech-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.tech-content p {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.tech-list li {
    padding: 12px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-list li::before {
    content: "⚡";
    /* Or specific icon based on section */
    font-size: 14px;
}

.tech-visual {
    flex: 1;
    height: 400px;
    /* Placeholder height */
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    /* Placeholder gradient */
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%), var(--color-surface);
}

/* Specific Visual Placeholders - Animations handle content now */
.card-visual {
    flex: 1;
    width: 100%;
    position: relative;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    /* Ensure canvas sits well */
}

.visual-data,
.visual-network,
.visual-activity {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    /* Darker background for contrast */
}

/* Integrations Marquee */
.integrations-section {
    padding: 80px 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.integration-title {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 40px;
    /* Just text for now, would be logos */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {

    .tech-split,
    .tech-split.reverse {
        flex-direction: column;
    }

    .tech-visual {
        width: 100%;
        height: 300px;
    }
}

/* ===================================
   Vision Page Styles
   =================================== */

.manifesto-hero {
    padding: 200px 0 100px;
    background: var(--color-bg);
    text-align: center;
}

.manifesto-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.strike-through {
    color: var(--color-text-muted);
    text-decoration: line-through;
    text-decoration-color: var(--color-neon-pink);
    text-decoration-thickness: 4px;
}

.manifesto-lead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background: #0f1219;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

/* Timeline horizontal line */
.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.era-item {
    position: relative;
    z-index: 1;
    text-align: left;
    flex: 1;
    padding-top: 50px;
}

.era-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

.era-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.era-item p {
    color: var(--color-text-muted);
    font-size: 16px;
}

.dimmed {
    opacity: 0.5;
}

.active .era-date {
    background: var(--color-neon-blue);
    border-color: var(--color-neon-blue);
}

.active h3 {
    color: var(--color-neon-blue);
}

.active {
    opacity: 1;
}

/* Beliefs */
.beliefs-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.belief-card {
    padding: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.belief-card h2 {
    font-size: 14px;
    color: var(--color-neon-pink);
    margin-bottom: 16px;
    font-family: monospace;
}

.belief-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.belief-card p {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Divider */
    text-align: center;
}

@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        padding-left: 24px;
    }

    .timeline-horizontal::before {
        top: 0;
        bottom: 0;
        left: 0;
        width: 1px;
        height: auto;
    }

    .era-item {
        padding-top: 0;
        padding-left: 32px;
    }

    .era-date {
        position: relative;
        left: -48px;
        margin-bottom: 8px;
    }
}

/* Hover Effects Enhancements */

.tech-visual {
    transition: all 0.3s ease;
}

.tech-visual:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.02);
}

.belief-card {
    transition: all 0.3s ease;
}

.belief-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-left-color: var(--color-neon-pink);
    box-shadow: -4px 0 24px rgba(244, 63, 94, 0.1);
}

.era-item {
    transition: all 0.3s ease;
}

.era-item:not(.active):hover {
    opacity: 0.8;
    transform: translateY(-4px);
}

/* Vision Page Specifics */
.manifesto-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.15), transparent 60%);
    position: relative;
}

.timeline-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.beliefs-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button Glow Enhancement */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

/* ===================================
   Enterprise Hardening Styles
   =================================== */

/* Trusted By Section */
.trusted-by-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.trust-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.logo-strip {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.trust-logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    font-family: 'Inter', sans-serif;
    /* Fallback for no logo images */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--color-neon-blue);
}

/* ROI Section */
.roi-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.roi-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.roi-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

.roi-number {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    background: var(--gradient-primary);
    /* Use existing blue gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.roi-label {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Security Section (Platform) */
.security-section {
    padding: 100px 0;
    background: #0B0F19;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.badge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 16px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-card:hover {
    border-color: var(--color-neon-blue);
    background: rgba(59, 130, 246, 0.05);
}

.badge-card .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--color-neon-blue);
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.badge-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* Footer Legal Updates */
.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 13px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ===================================
   Verticals Section (Use Cases)
   =================================== */

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

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

.vertical-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.3s ease;
    display: block;
    /* Ensure it behaves as a block for the anchor tag */
    text-decoration: none;
    /* Remove default link underline */
    height: 100%;
    /* Full height for grid */
    position: relative;
    z-index: 10;
    cursor: pointer;
}

/* ===================================
   The Shift Section (New Styles)
   =================================== */
.shift-comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.shift-card {
    flex: 1;
    padding: 32px;
    border-radius: 16px;
    height: 100%;
}

.manual-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.7;
}

.agentic-card {
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
}

.shift-card h3 {
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.manual-card h3 {
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agentic-card h3 {
    color: white;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.shift-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shift-card li {
    font-size: 14px;
    margin-bottom: 8px;
}

.manual-card li {
    color: var(--color-text-muted);
}

.agentic-card li {
    color: white;
}

.shift-arrow-container {
    flex-shrink: 0;
}

/* Mobile Responsive for Shift Section */
@media (max-width: 768px) {
    .shift-comparison-container {
        flex-direction: column;
        gap: 24px;
    }

    .shift-arrow-container {
        transform: rotate(90deg);
    }

    .shift-card {
        width: 100%;
        max-width: 320px;
        /* Optional: limit width on larger phones */
    }
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 130, 246, 0.1);
    /* Blue glow */
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(31, 41, 55, 0.6);
}



/* ===================================
   Mobile Responsiveness (Global)
   =================================== */

@media (max-width: 992px) {

    /* Tablet & Smaller Laptops */
    .container {
        padding: 0 24px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 56px;
    }

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

@media (max-width: 768px) {
    /* Mobile Devices */

    /* 1. Typography Adjustments */
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    /* 2. Header / Nav Stacking */
    .header-container {
        flex-direction: column;
        gap: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
        padding: 0;
        justify-content: center;
    }

    .header-actions {
        display: none;
        /* Hide CTA on mobile to save space, or move it */
    }

    /* 3. Hero Section */
    .hero {
        padding-top: 140px;
        /* Less top padding */
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* 4. Layout Stacking (Grids to Stack) */
    .bento-grid,
    .roi-grid,
    .tech-split,
    .value-grid,
    .belief-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* Tech Split Reordering */
    .tech-split {
        display: flex;
        /* Switch to flex for easier reordering if needed, or grid is fine */
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .tech-visual {
        height: 300px;
        order: -1;
        /* Visual first on mobile? Or standard flow? Standard is fine. */
    }

    .tech-split.reverse {
        direction: ltr;
        /* Reset text direction */
    }

    /* 5. Spacing Reductions */
    .silo-section,
    .bento-section,
    .pillars-section,
    .autopilot-section,
    .roi-section,
    .tech-section,
    .manifesto-hero,
    .timeline-section,
    .beliefs-section {
        padding: 60px 0;
        /* Reduce from 100px */
    }

    /* 6. Specific Components */
    .logo-strip {
        gap: 24px;
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge-card {
        width: 100%;
        max-width: 100%;
    }

    .timeline-horizontal {
        flex-direction: column;
        padding-left: 24px;
        /* Space for vertical line */
    }

    .timeline-horizontal::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .era-item {
        margin-bottom: 40px;
        text-align: left;
        padding: 0 0 0 24px;
        opacity: 1;
        /* Disable scroll fade on mobile if tricky */
    }

    .era-marker {
        left: -5px;
        /* Adjust for left-aligned line */
        top: 0;
        margin: 0;
        transform: none;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-links,
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}