/* Modern CSS for 2025 - Ultra Creative Design */

/* CSS Variables - Future Color Palette */
:root {
    /* Option 1: Teal/Cyan Theme - Modern & Easy on Eyes */
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #0f172a 100%);
    --gradient-mesh: conic-gradient(from 180deg at 50% 50%, #0891b2 0deg, #06b6d4 90deg, #14b8a6 180deg, #22d3ee 270deg, #0891b2 360deg);
    
    /* Teal/Cyan Colors */
    --color-primary: #0891b2;
    --color-secondary: #06b6d4;
    --color-accent: #14b8a6;
    --color-warning: #f59e0b;
    --color-dark: #0a1628;
    --color-light: #f0fdfa;
    --color-gray: #64748b;
    
    /* Softer Glows */
    --glow-primary: 0 0 20px rgba(8, 145, 178, 0.3);
    --glow-secondary: 0 0 20px rgba(6, 182, 212, 0.3);
    --glow-accent: 0 0 20px rgba(20, 184, 166, 0.3);
    
    /* Option 2: Green/Emerald Theme - Growth & Innovation
    --gradient-primary: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-secondary: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    --color-primary: #059669;
    --color-secondary: #10b981;
    --color-accent: #06b6d4;
    */
    
    /* Option 3: Monochrome with Blue Accent - Minimal & Professional
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --color-primary: #3b82f6;
    --color-secondary: #475569;
    --color-accent: #3b82f6;
    */
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.2);
}

/* Global Reset with Modern Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a1628;
    color: #e0f2fe;
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor - Removed for performance */

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    animation: float-sphere 20s ease-in-out infinite;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -300px;
    left: -300px;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float-sphere {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -100px) scale(1.1);
    }
    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: nav-slide-down 0.6s ease-out;
}

@keyframes nav-slide-down {
    from {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
}

.nav-glass {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.icon-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    z-index: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn.primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.nav-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.nav-btn.primary:hover::before {
    left: 0;
}

/* Hero Section - Immersive */
.hero-immersive {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 2rem 2rem; /* Top padding for nav clearance */
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

#neural-network {
    width: 100%;
    height: 100%;
    display: none; /* Hidden for performance */
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding-top: 80px; /* Add space for the floating nav */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badge-glow 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(91, 99, 211, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
    position: relative;
    margin: 0 0.5rem;
}

.title-word::before {
    display: none; /* Removed shadow effect for better readability */
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.cta-primary, .cta-secondary {
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.cta-primary:hover .cta-glow {
    transform: translate(-50%, -50%) scale(2);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.metric-card {
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator - Removed */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
}

/* Capabilities - Bento Grid */
.capabilities-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #1a1f3a 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    grid-auto-rows: minmax(200px, auto);
}

.bento-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 3;
}

.bento-item.small {
    grid-column: span 2;
}

.bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.bento-icon.gradient {
    background: var(--gradient-secondary);
}

.bento-icon.pulse {
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.bento-icon-small {
    width: 45px;
    height: 45px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.bento-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex-grow: 1;
}

.bento-visual {
    margin-top: 2rem;
}

.agent-flow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
}

.flow-node {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.flow-node.active {
    background: var(--gradient-primary);
    box-shadow: var(--glow-primary);
}

.flow-connection {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.flow-connection::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -8px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.code-preview {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.code-preview code {
    color: #10b981;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
}

/* Technology Section */
.tech-section {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card.floating {
    animation: float-card 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

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

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.tech-icon img {
    width: 100%;
    height: 100%;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Interactive Showcase */
.showcase-section {
    background: linear-gradient(180deg, #1a1f3a 0%, var(--color-dark) 100%);
}

.showcase-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.showcase-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.showcase-btn.active {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.showcase-content {
    position: relative;
    min-height: 400px;
}

.showcase-demo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.showcase-demo.active {
    opacity: 1;
    visibility: visible;
}

/* Terminal Window */
.terminal-window {
    background: #0a0e1b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.terminal-header {
    background: #1a1f3a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.terminal-dots span:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dots span:nth-child(3) {
    background: #28ca42;
}

.terminal-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.terminal-body {
    padding: 2rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
}

.terminal-line {
    margin-bottom: 1rem;
    opacity: 0;
    animation: type-line 0.5s ease forwards;
}

.terminal-line:nth-child(2) {
    animation-delay: 0.5s;
}

.terminal-line:nth-child(3) {
    animation-delay: 1s;
}

.terminal-line:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes type-line {
    to {
        opacity: 1;
    }
}

.prompt {
    color: #10b981;
}

.command {
    color: #60a5fa;
}

.output {
    color: rgba(255, 255, 255, 0.8);
}

.output.success {
    color: #10b981;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: white;
    animation: cursor-blink 1s ease-in-out infinite;
}

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

/* Workflow Visualization */
.workflow-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.workflow-node {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.workflow-node.trigger {
    border-color: var(--color-accent);
    animation: node-pulse 2s ease-in-out infinite;
}

.workflow-node.agent {
    border-color: var(--color-primary);
    animation: node-pulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.workflow-node.action {
    border-color: var(--color-secondary);
    animation: node-pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes node-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.workflow-node i {
    font-size: 2rem;
}

.workflow-arrow {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.workflow-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
    animation: arrow-flow 2s ease-in-out infinite;
}

@keyframes arrow-flow {
    to {
        left: 100%;
    }
}

/* Widget Preview */
.widget-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.code-block {
    background: #0a0e1b;
    border-radius: 12px;
    padding: 2rem;
    overflow: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    color: #e2e8f0;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.widget-result {
    display: flex;
    justify-content: center;
}

.chat-widget {
    width: 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.chat-header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
}

.chat-body {
    padding: 1.5rem;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    color: var(--color-dark);
}

.chat-message.bot {
    background: #f3f4f6;
    align-self: flex-start;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #1a1f3a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border-color: var(--color-primary);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature i {
    color: var(--color-accent);
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--gradient-primary);
}

/* CTA Section */
.cta-section {
    background: var(--color-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1.25rem 3rem;
    background: white;
    color: var(--color-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

/* Orbit Animation */
.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
}

.orbit-2 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    left: 150px;
    animation-duration: 10s;
}

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

.orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.center-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Contact Section */
.contact-section {
    background: var(--color-dark);
    padding: 100px 0;
    position: relative;
}

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

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--glow-primary);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-secondary);
}

.contact-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

/* Footer */
.modern-footer {
    background: #0a0e1b;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* Problem Section - Removed */

/* Privacy Section */
.privacy-section {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f172a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.privacy-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.security-badge {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: var(--glow-primary);
    animation: badge-float 6s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.privacy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #4CAF50;
}

.security-icon.pulse {
    animation: icon-pulse 2s ease-in-out infinite;
}

.security-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.security-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #4CAF50;
}

.security-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 2px solid #4CAF50;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1.125rem;
    font-weight: 600;
}

.banner-content i {
    color: #4CAF50;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Workflow Section */
.workflow-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, #1a1f3a 100%);
    padding: 100px 0;
}

.workflow-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.workflow-icon-wrap {
    margin-bottom: 1.5rem;
}

.workflow-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.75rem;
    color: white;
}

.workflow-example-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-top: 4rem;
}

.workflow-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.pipeline-step {
    flex-shrink: 0;
    text-align: center;
}

.pipeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.pipeline-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pipeline-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pipeline-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.connector-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
}

.pipeline-connector i {
    position: relative;
    z-index: 1;
    background: var(--color-dark);
    padding: 0 0.5rem;
}

/* Use Cases Section */
.use-cases-section {
    background: var(--color-dark);
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.use-case-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Integration Options */
.integration-options {
    background: linear-gradient(180deg, #1a1f3a 0%, var(--color-dark) 100%);
    padding: 100px 0;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.integration-option:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.integration-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.integration-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.integration-option h3 {
    font-size: 1.75rem;
    margin: 0;
}

.integration-option > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.integration-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--color-accent);
    font-size: 1rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bento-item.large {
        grid-column: span 6;
    }
    
    .bento-item.medium {
        grid-column: span 6;
    }
    
    .bento-item.small {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        width: calc(100% - 20px);
        left: 10px;
        transform: none;
    }
    
    .nav-glass {
        padding: 0.75rem 1rem;
        border-radius: 20px;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .nav-brand {
        flex: 0 0 auto;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        flex: 0 0 auto;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        border-radius: 20px;
        min-width: auto;
    }
    
    .nav-btn.ghost {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.5rem 0.75rem;
    }
    
    .nav-btn.primary {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bento-item.small {
        grid-column: span 6;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
    }
    
    .showcase-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .widget-preview {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .orbit-container {
        transform: scale(0.8);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .floating-nav {
        top: 5px;
        width: calc(100% - 10px);
        left: 5px;
    }
    
    .nav-glass {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }
    
    .nav-logo {
        height: 28px;
    }
    
    .nav-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.813rem;
    }
    
    .nav-btn.ghost {
        padding: 0.4rem 0.6rem;
    }
    
    .nav-btn.primary {
        padding: 0.4rem 0.9rem;
    }
    
    /* Adjust hero for smaller nav */
    .hero-immersive {
        padding-top: 90px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
}

/* Animation Classes */
.animate-in {
    animation: fade-in-up 0.8s ease-out forwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift:hover {
    transform: translateY(-10px) !important;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: translate(-50%, -50%) scale(10);
        opacity: 0;
    }
}

/* Loading State */
body.loaded .floating-nav {
    animation: nav-slide-down 0.8s ease-out;
}

body.loaded .hero-content > * {
    animation: fade-in-up 0.8s ease-out backwards;
}

body.loaded .hero-badge {
    animation-delay: 0.2s;
}

body.loaded .hero-title {
    animation-delay: 0.4s;
}

body.loaded .hero-description {
    animation-delay: 0.6s;
}

body.loaded .hero-cta-group {
    animation-delay: 0.8s;
}

body.loaded .hero-metrics {
    animation-delay: 1s;
}

/* Typing Animation */
.type-animation {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 0.5s steps(40, end);
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Scroll States */
.floating-nav {
    transition: all 0.3s ease;
}

.floating-nav.scrolled .nav-glass {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Additional Responsive Styles */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}