/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* scroll-snap-type: y mandatory; */ /* Removed */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: transparent;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* scroll-snap-type: y mandatory; */ /* Removed */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

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

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #E5E7EB;
    border: 1px solid #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    border-color: #6b97f5;
    color: #6b97f5;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1.5px 4px rgba(37,99,235,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-dots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.logo-dots span {
    background: #6b97f5;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-dots span:nth-child(odd) {
    animation: pulse 2s infinite;
}

.logo-arrow {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b97f5;
    font-size: 16px;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.1); }
}

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

.nav-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6b97f5;
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #E5E7EB;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 0; /* Hero should start at top */
}

.hero::before {
    display: none !important;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60A5FA;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6b97f5;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    border: 2px solid #0F1419;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    margin-left: 0.5rem;
    font-weight: 500;
    color: #60A5FA;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-window {
    background: #0D1117;
    border-radius: 0.75rem;
    border: 1px solid #30363D;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.terminal-header {
    background: #161B22;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #21262D;
}

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

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.control:hover {
    opacity: 0.8;
}

.control.red { background: #FF5F56; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #27CA3F; }

.terminal-title {
    color: #8B949E;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    background: #0D1117;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #E6EDF3;
    min-height: 300px;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.prompt {
    color: #6b97f5;
    font-weight: 600;
    user-select: none;
    flex-shrink: 0;
}

.command {
    color: #E6EDF3;
    font-weight: 500;
}

.typing {
    overflow: hidden;
    border-right: 2px solid #6b97f5;
    white-space: nowrap;
    animation: typing 3s steps(30) infinite, blink 1s infinite;
    max-width: fit-content;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: #6b97f5; }
    51%, 100% { border-color: transparent; }
}

.scan-results {
    margin: 1.5rem 0;
    padding-left: 0;
    border-left: 2px solid #21262D;
    padding-left: 1rem;
}

.scan-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.status {
    font-size: 1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.status.success { 
    color: #6b97f5; 
    font-weight: bold;
}

.status.warning { 
    color: #F59E0B; 
    font-weight: bold;
}

.status.critical { 
    color: #EF4444; 
    font-weight: bold;
}

.scan-item span:not(.status) {
    color: #C9D1D9;
    flex: 1;
}

.floating-badges {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.security-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #6b97f5;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

/* Stats Section */
/*
.stats {
    padding: 4rem 0;
    background: rgba(31, 41, 55, 0.5);
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6b97f5;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.9rem;
    font-weight: 500;
}
*/

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
}

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

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E5E7EB;
}

.feature-card p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Feature Animations */
.connection-animation {
    position: relative;
    width: 150px;
    height: 60px;
}

.node {
    width: 20px;
    height: 20px;
    background: #6b97f5;
    border-radius: 50%;
    position: absolute;
}

.node:nth-child(1) { top: 0; left: 0; }
.node:nth-child(2) { top: 0; right: 0; }
.node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }

.connecting-line {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, #6b97f5, transparent, #6b97f5);
    animation: flow 2s infinite;
}

@keyframes flow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.insight-panel {
    width: 100%;
    font-size: 0.8rem;
}

.insight-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    text-align: left;
}

.insight-item.critical {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #EF4444;
    color: #FECACA;
}

.insight-item.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #F59E0B;
    color: #FED7AA;
}

.insight-item.success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10B981;
    color: #A7F3D0;
}

.automation-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.flow-step {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid #6b97f5;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: #60A5FA;
}

.flow-arrow {
    color: #6b97f5;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid #709dff;
    outline-offset: 2px;
}
/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
}

.integrations .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-align: center;
}

.integration-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
}

.integration-logo {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    background: rgba(55, 65, 81, 0.1);
    margin-bottom: 0.75rem;
}

.integration-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

/* Special handling for SVG icons from DevIcons */
.integration-logo img[src*="devicons"] {
    width: 36px;
    height: 36px;
    filter: brightness(1) saturate(1.1);
}

.integration-item:hover .integration-logo img {
    filter: brightness(1.1);
}

.integration-item:hover .integration-logo img[src*="devicons"] {
    filter: brightness(1.1) saturate(1.2);
}

/* Fallback styling for images that fail to load */
.integration-logo img[src=""] {
    display: none;
}

.integration-logo img:not([src]),
.integration-logo img[src=""],
.integration-logo:empty {
    background: rgba(55, 65, 81, 0.3);
    border: 1px solid rgba(75, 85, 99, 0.5);
}

/* Special styling for text-based logos */
.integration-logo.more {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60A5FA;
}

.integration-item span {
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Demo Section - Before/After Slider
 * Interactive slider that compares traditional security vs ShipSec
 * Features: drag interaction, touch support, keyboard navigation, auto-play
 */
.demo {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
}

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

.before-after-slider {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    height: 500px;
    display: flex;
    overflow: hidden;
    border-radius: 1rem;
}

.before-panel, .after-panel {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.before-panel {
    left: 0;
}

.after-panel {
    right: 0;
}

.panel-header {
    padding: 1.5rem 2rem;
    background: rgba(31, 41, 55, 0.9);
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.panel-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.panel-subtitle {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Traditional Security (Before) */
.traditional-chaos {
    position: relative;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 2rem;
    height: calc(100% - 100px);
    overflow: hidden;
}

.alert-item {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.5);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    transform: translateX(-10px);
    opacity: 0.9;
}

.alert-item.floating {
    animation: floatingAlert 3s ease-in-out infinite alternate;
    /* Performance optimization */
    will-change: transform;
    transform: translateZ(0);
}

.alert-item.critical {
    border-left: 4px solid #EF4444;
    color: #FECACA;
}

.alert-item.warning {
    border-left: 4px solid #F59E0B;
    color: #FED7AA;
}

.alert-item.info {
    border-left: 4px solid #3B82F6;
    color: #BFDBFE;
}

.chaos-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.chaos-stat {
    color: #FECACA;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.chaos-stat:last-child {
    margin-bottom: 0;
}

/* ShipSec (After) */
.shipsec-organized {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(17, 24, 39, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 2rem;
    height: calc(100% - 100px);
}

.priority-section {
    margin-bottom: 2rem;
}

.priority-section h4, .resolved-section h4 {
    color: #6b97f5;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.action-item {
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 1rem;
}

.action-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    text-align: center;
}

.action-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.action-title {
    font-weight: 500;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.action-desc {
    color: #9CA3AF;
    font-size: 0.85rem;
}

.action-status {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.action-status.completed {
    background: rgba(37, 99, 235, 0.2);
    color: #6b97f5;
}

.action-status.scheduled {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.resolved-section {
    margin-bottom: 1.5rem;
}

.resolved-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.resolved-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.375rem;
    font-size: 0.85rem;
    color: #BFDBFE;
}

.resolved-icon {
    font-size: 1rem;
}

.agent-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 99, 235, 0.18);
}

.agent-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b97f5;
}

.agent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6b97f5;
}

.agent-dot.active {
    animation: pulse 2s infinite;
    /* Performance optimization */
    will-change: opacity;
}

.coverage-stat {
    font-size: 0.9rem;
    color: #6b97f5;
    font-weight: 500;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    user-select: none;
    transition: all 0.2s ease;
    /* Accessibility improvements */
    outline: none;
}

.slider-handle:hover,
.slider-handle:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
}

.slider-handle:focus {
    outline: 2px solid #6b97f5;
    outline-offset: 2px;
}

.slider-handle:active {
    background: rgba(37, 99, 235, 0.2);
    border-color: #6b97f5;
}

/* Better support for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .slider-handle {
        transition: none;
    }
    
    .alert-item.floating {
        animation: none;
    }
    
    .agent-dot.active {
        animation: none;
    }
}

.handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.handle-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
}

.handle-grip {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.handle-grip span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Slider Overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
    transition: right 0.1s ease;
    /* Performance optimization */
    will-change: right;
    transform: translateZ(0);
}

/* Slider Labels */
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.label-left, .label-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.label-text {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.label-left .label-text {
    color: #EF4444;
}

.label-right .label-text {
    color: #6b97f5;
}

.label-description {
    color: #9CA3AF;
    font-size: 0.85rem;
}

/* Animations */
@keyframes floatingAlert {
    0% { transform: translateX(-10px) translateY(0px); }
    100% { transform: translateX(-5px) translateY(-5px); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .demo-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .panel-header {
        padding: 1rem 1.5rem;
    }
    
    .panel-header h3 {
        font-size: 1.1rem;
    }
    
    .traditional-chaos, .shipsec-organized {
        padding: 1.5rem;
    }
    
    .resolved-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-handle {
        width: 50px;
        /* Larger touch target for mobile */
        min-height: 44px;
    }
    
    .handle-line {
        height: 30px;
    }
    
    .alert-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .action-item {
        padding: 0.75rem;
    }
    
    .slider-labels {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .label-left, .label-right {
        align-items: center;
    }
}

/* Customer Segments */
.customers {
    padding: 6rem 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 6rem;
}

.customers .container {
    /* No longer need flex properties here */
    width: 100%; /* Ensure container takes full width */
}

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

.customer-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.customer-card.featured {
    border-color: rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.customer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.customer-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.customer-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.customer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #E5E7EB;
}

.customer-pain {
    color: #F59E0B;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    border-left: 3px solid #F59E0B;
}

.customer-solution h4 {
    color: #6b97f5;
    margin-bottom: 1rem;
}

.customer-solution ul {
    list-style: none;
    text-align: left;
}

.customer-solution li {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.customer-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b97f5;
}

/* CLI Demo */
.cli-demo {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
}

.cli-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cli-window {
    background: #0D1117;
    border-radius: 0.75rem;
    border: 1px solid #21262D;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cli-header {
    background: #161B22;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #21262D;
}

.cli-controls {
    display: flex;
    gap: 0.5rem;
}

.cli-title {
    color: #8B949E;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.cli-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    background: #0D1117;
}

.cli-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cli-prompt {
    color: #6b97f5;
    font-weight: 500;
}

.cli-command {
    color: #E5E7EB;
}

.cli-output {
    color: #8B949E;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.slack-demo {
    background: #FFFFFF;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.slack-header {
    background: #4A154B;
    padding: 1rem;
    color: white;
    font-weight: 600;
}

.slack-messages {
    padding: 1rem;
    background: #FFFFFF;
}

.slack-message {
    margin-bottom: 1rem;
}

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

.bot-name {
    font-weight: 600;
    color: #1D1C1D;
}

.timestamp {
    font-size: 0.8rem;
    color: #616061;
}

.message-content {
    color: #1D1C1D;
    line-height: 1.5;
}

.message-actions {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.slack-btn {
    background: #007A5A;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Social Proof */
.social-proof {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.proof-card h4 {
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.company-logos {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.company-logo {
    background: rgba(55, 65, 81, 0.5);
    color: #9CA3AF;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    border: 1px solid rgba(55, 65, 81, 0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.company-logo-img {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    object-fit: contain;
    background: white;
    padding: 1px;
}

.company-logo.cmu { 
    background: rgba(220, 38, 127, 0.2); 
    color: #F472B6; 
}

.company-logo.yahoo {
    background: rgba(116, 7, 135, 0.2);
    color: #A855F7;
}

.company-logo.rippling {
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
}

.company-logo.gojek {
    background: rgba(34, 197, 94, 0.2);
    color: #4ADE80;
}

.company-logo.blinkit {
    background: rgba(249, 115, 22, 0.2);
    color: #FB923C;
}

.company-logo.persistence {
    background: rgba(139, 92, 246, 0.2);
    color: #A78BFA;
}

.company-logo.headout {
    background: rgba(245, 101, 101, 0.2);
    color: #F87171;
}

/* Mobile responsiveness for social proof */
@media (max-width: 768px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .proof-card {
        padding: 1.5rem;
    }
    
    .company-logos {
        gap: 0.3rem;
    }
    
    .company-logo {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .company-logo-img {
        width: 14px;
        height: 14px;
    }
}

.testimonial {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #E5E7EB;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-top: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

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

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-urgency {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60A5FA;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(8px);
    display: inline-block;
}

.cta-qr {
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #FFFFFF;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-pattern {
    width: 120px;
    height: 120px;
    background: 
        linear-gradient(90deg, #000 50%, transparent 50%),
        linear-gradient(#000 50%, transparent 50%);
    background-size: 20px 20px;
    position: relative;
}

.qr-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #6b97f5;
    border-radius: 4px;
}

.cta-qr p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0D1117;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding: 4rem 0 2rem;
    scroll-snap-align: end;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-brand p {
    color: #9CA3AF;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-contact a {
    color: #60A5FA;
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #6b97f5;
}

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

.footer-column h4 {
    color: #E5E7EB;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #60A5FA;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.legal-links a:hover {
    color: #60A5FA;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem 0;
        gap: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .footer-status {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 1.25rem 0.75rem 0;
        gap: 1.25rem;
    }

    .footer-legal {
        gap: 0.75rem;
    }

    .legal-links {
        gap: 0.75rem;
    }

    .legal-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .footer-status {
        font-size: 0.85rem;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .status-indicator {
        gap: 0.35rem;
    }
}

/* Additional animations for missing elements */
.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem;
    gap: 1rem;
}

body.using-keyboard *:focus {
    outline: 2px solid #6b97f5 !important;
    outline-offset: 2px !important;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Agent-focused Feature Styles */
.agent-network {
    position: relative;
    width: 150px;
    height: 100px;
    margin: 0 auto;
}

.agent-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid #6b97f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: agentPulse 2s infinite ease-in-out;
}

.agent-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #6b97f5;
    color: white;
    z-index: 2;
}

.agent-node:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.5s; }
.agent-node:nth-child(3) { bottom: 0; left: 20%; animation-delay: 1s; }
.agent-node:nth-child(4) { bottom: 0; right: 20%; animation-delay: 1.5s; }

@keyframes agentPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.orchestration-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.flow-item {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid #6b97f5;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    color: #60A5FA;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.flow-item:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #6b97f5;
    font-size: 1.2rem;
}

.context-analysis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.data-source {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #F59E0B;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #FED7AA;
    font-size: 0.8rem;
    text-align: center;
}

.analysis-result {
    grid-column: 1 / -1;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid #6b97f5;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #BFDBFE;
    font-weight: 500;
    text-align: center;
}

/* Connecting lines for agent network */
.connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connecting-lines::before,
.connecting-lines::after {
    content: '';
    position: absolute;
    background: rgba(37, 99, 235, 0.3);
    height: 2px;
}

.connecting-lines::before {
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.connecting-lines::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

/* Flow arrows for orchestration */
.flow-arrows {
    display: none; /* Hide since we're using ::after pseudo-elements for arrows */
}

/* Integration Categories */
.integration-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 1px solid rgba(55, 65, 81, 0.5);
    color: #9CA3AF;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-tab.active,
.category-tab:hover {
    border-color: #6b97f5;
    color: #60A5FA;
    background: rgba(37, 99, 235, 0.1);
}

/* Enhanced Customer Cards */
.customer-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
}

.customer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.3);
}

.customer-card.featured {
    border-color: rgba(37, 99, 235, 0.5);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.customer-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.tool-tag {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60A5FA;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Agent Spotlight Section */
.agent-spotlight {
    padding: 6rem 0;
    background: transparent;
    /* max-height: 100vh; */
    /* display: flex; */
    /* align-items: center; */
    /* scroll-snap-align: start; */
    /* scroll-snap-stop: always; */
    /* scroll-margin-top: 4rem; */
 }  

/* .agents-grid {

} */

@media (min-width: 768px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .agents-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.agent-card {
    background: rgba(31, 41, 55, 0.4);
    border: 1px solid rgba(55, 65, 81, 0.4);
    padding: 2rem;
    margin: 0 0rem;
    border-radius: 1rem;
    /* transition: all 0.3s ease; */
    backdrop-filter: blur(8px);
    /* position: relative; */
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6b97f5, #3B82F6, #60A5FA);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.4);
}

.agent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.agent-card h3 {
    color: #E5E7EB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.agent-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.agent-workflow {
    margin-bottom: 1.5rem;
}

.workflow-step {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #C9D1D9;
    position: relative;
    padding-left: 2.5rem;
}
/* 
.workflow-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #6b97f5;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
} */

.agent-card {
    counter-reset: step-counter;
}

.agent-integrations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.integration-tag {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6EE7B7;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Updates for New Components */
@media (max-width: 1200px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-tag,
    .integration-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Enhanced animations */
@keyframes agentDeploy {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.agent-card.animate-in {
    animation: agentDeploy 0.8s ease forwards;
}

/* Integration filtering animation */
.integration-item {
    transition: all 0.3s ease;
}

.integration-item.filtered {
    opacity: 0.3;
    transform: scale(0.9);
}

.integration-item:not(.filtered) {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced hover effects for customer cards */
.customer-card .customer-solution ul li {
    transition: all 0.2s ease;
}

.customer-card:hover .customer-solution ul li {
    color: #E5E7EB;
}

.customer-card:hover .tool-tag {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
    color: #93C5FD;
}

.agent-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    border: 2px solid #6b97f5;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 2px 12px rgba(37,99,235,0.12), 0 0 0 2px rgba(37,99,235,0.08);
    margin: 0 8px;
    transition: box-shadow 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}
.agent-chip.central {
    background: #6b97f5;
    color: #fff;
    border-color: #60A5FA;
    box-shadow: 0 4px 24px rgba(37,99,235,0.22), 0 0 0 4px rgba(96,165,250,0.18);
    font-size: 2rem;
    z-index: 2;
}
.agent-chip:hover {
    box-shadow: 0 6px 24px rgba(37,99,235,0.25), 0 0 0 4px #60A5FA;
    transform: scale(1.08);
}

.chip-label {
    margin-right: 1.5rem;
    margin-left: 0.25rem;
    color: #9CA3AF;
    font-size: 1rem;
    font-weight: 500;
    vertical-align: middle;
    display: inline-block;
}
.agent-chip.verified {
    background: #10B981;
    border-color: #10B981;
    color: #fff;
    box-shadow: 0 0 12px #10B98144, 0 0 0 2px #10B98133;
}

.rect-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem 0.5rem 0.9rem;
    border-radius: 1.5rem;
    background: rgba(37, 99, 235, 0.13);
    border: 1.5px solid #6b97f5;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 8px rgba(37,99,235,0.08);
    transition: box-shadow 0.18s, transform 0.18s;
    backdrop-filter: blur(4px);
    letter-spacing: 0.01em;
}
.rect-chip:last-child { margin-right: 0; }
.rect-chip:hover {
    box-shadow: 0 4px 16px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.04);
}

.cta-form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    width: 100vw;
    padding: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 4rem;
    font-family: var(--font-primary);
}

.cta-form-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100vw;
    max-width: 900px;
    margin: 0 auto;
    gap: 2.5rem;
    padding: 3rem 1.5rem 3rem 1.5rem;
}

.cta-form-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 2rem 1.5rem 2rem 0;
    min-width: 0;
    font-family: inherit;
}
.cta-form-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #E5E7EB;
    letter-spacing: -0.5px;
}
.cta-form-text p {
    color: white;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
    font-family: inherit;
}
.cta-urgency {
    color: #60A5FA;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.18);
    padding: 0.7rem 1.2rem;
    border-radius: 1.5rem;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-family: inherit;
}

.cta-form-fields {
    flex: 1 1 0;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem 1.5rem 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-width: 0;
    font-family: inherit;
}
.cta-form-fields input,
.cta-form-fields textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.6rem;
    border: 1.5px solid rgba(55, 65, 81, 0.32);
    background: #181F29;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
    resize: none;
    font-family: inherit;
    transition: border 0.2s, background 0.2s;
}
.cta-form-fields input:focus,
.cta-form-fields textarea:focus {
    outline: 2px solid #6b97f5;
    background: #232a3a;
    border-color: #6b97f5;
}
.cta-form-fields button[type="submit"] {
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    color: white;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(37,99,235,0.13);
}
.cta-form-fields button[type="submit"]:hover {
    background: linear-gradient(135deg, #6b97f5, #3B82F6);
    /* Remove transform and box-shadow for no animation */
}

@media (max-width: 900px) {
    .cta-form-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0.5rem 2rem 0.5rem;
        max-width: 98vw;
    }
    .cta-form-text, .cta-form-fields {
        padding: 0;
        max-width: 100%;
    }
}

/* Kit Form Integration Styles */
.kit-form-container {
    flex: 1 1 0;
    max-width: 400px;
    width: 100%;
    min-width: 0;
    color: white !important;
}

/* Style Kit forms to match your design */
.kit-form-container .formkit-form {
    background: rgba(31, 41, 55, 0.5) !important;
    border: 1px solid rgba(55, 65, 81, 0.3) !important;
    border-radius: 1rem !important;
    padding: 2rem 1.5rem !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18) !important;
    font-family: 'Inter', sans-serif !important;
    color: white !important;
}

.kit-form-container .formkit-form .formkit-input {
    background: #181F29 !important;
    border: 1.5px solid rgba(55, 65, 81, 0.32) !important;
    border-radius: 0.6rem !important;
    color: white !important;
    padding: 0.85rem 1rem !important;
    font-size: 1.05rem !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 1.1rem !important;
}

.kit-form-container .formkit-form .formkit-input:focus {
    outline: 2px solid #6b97f5 !important;
    /* background: #232a3a !important; */
    border-color: #6b97f5 !important;
}

.kit-form-container .formkit-form .formkit-submit {
    background: linear-gradient(135deg, #6b97f5, #3B82F6) !important;
    border: none !important;
    border-radius: 0.6rem !important;
    color: white !important;
    padding: 0.85rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 16px rgba(37,99,235,0.13) !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
}

.kit-form-container .formkit-form .formkit-submit:hover {
    background: linear-gradient(135deg, #5a86e4, #2563EB) !important;
}

/* Kit form labels and text styling */
.kit-form-container .formkit-form .formkit-label {
    color: white !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
}

.kit-form-container .formkit-form .formkit-disclaimer {
    color: white !important;
    font-size: 0.85rem !important;
    font-family: 'Inter', sans-serif !important;
}

/* Additional text color overrides */
.kit-form-container .formkit-form * {
    color: white !important;
}

/* Fallback form styling (will be removed once Kit form is added) */
.kit-fallback-form {
    /* background: rgba(31, 41, 55, 0.5); */
    border: 1px solid rgba(55, 65, 81, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-family: inherit;
    color: white !important;
}

.integration-tickers {
    width: 100%;
    overflow-x: auto;
    padding: 0.5rem 0 1.5rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.integration-ticker-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.1rem;
    min-width: 700px;
    will-change: transform;
}
.integration-ticker-row:nth-child(1) {
    animation: ticker-scroll 32s linear infinite;
}
.integration-ticker-row:nth-child(2) {
    animation: ticker-scroll-reverse 38s linear infinite;
}
.integration-ticker-row:nth-child(3) {
    animation: ticker-scroll 28s linear infinite;
}
.integration-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(37,99,235,0.13);
    border: 1.5px solid rgba(55,65,81,0.32);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 1.5rem;
    padding: 0.5rem 1.25rem 0.5rem 0.9rem;
    box-shadow: 0 1px 8px rgba(37,99,235,0.08);
    transition: box-shadow 0.18s, transform 0.18s;
    backdrop-filter: blur(4px);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.integration-chip img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.4rem;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 1px 4px rgba(37,99,235,0.08);
}
.integration-chip.more {
    background: rgba(16,185,129,0.13);
    border-color: #10B981;
    color: #10B981;
    font-weight: 600;
}
.integration-chip:hover {
    box-shadow: 0 4px 16px rgba(37,99,235,0.18);
    transform: translateY(-2px) scale(1.04);
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes ticker-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.integration-tickers::-webkit-scrollbar {
    display: none;
}
.integration-tickers {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.integrations .section-header {
    margin-bottom: 2.2rem;
    z-index: 2;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 700px) {
    .integration-ticker-row {
        min-width: 500px;
        gap: 0.7rem;
    }
    .integration-chip {
        font-size: 0.98rem;
        padding: 0.45rem 0.9rem 0.45rem 0.7rem;
    }
    .integrations .section-header {
        margin-bottom: 1.2rem;
    }
}

.integration-ticker.infinite {
    width: 100vw;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0 1.5rem 0;
    margin-bottom: 0.5rem;
    background: none;
}
.integration-ticker-track {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    width: max-content;
    animation: ticker-horizontal-scroll 40s linear infinite;
}
@keyframes ticker-horizontal-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.integration-lanes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.integration-lanes .integration-ticker.infinite:nth-child(2) .integration-ticker-track {
    animation-direction: reverse;
    animation-duration: 50s;
}
.integration-lanes .integration-ticker.infinite:nth-child(3) .integration-ticker-track {
    animation-duration: 32s;
}

/* Section Navigation Indicator */
.section-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none; /* Hide the nav as it's not needed without snapping */
}

.section-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.section-nav-dot.active {
    background: #6b97f5;
    border-color: #6b97f5;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.section-nav-dot:hover {
    border-color: #6b97f5;
    transform: scale(1.2);
}

/* Tooltip for navigation dots */
.section-nav-dot::before {
    content: attr(data-section);
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.section-nav-dot:hover::before {
    opacity: 1;
}

/* Keyboard navigation indicator */
.keyboard-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
    z-index: 1000;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.keyboard-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .section-nav {
        right: 1rem;
    }
    
    .section-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .keyboard-hint {
        display: none;
    }
}

/* Section Transition Animations */
.section-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Smooth scrolling override for better control */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .section-nav-dot,
    .keyboard-hint {
        transition: none;
    }
}

/* Enhanced scroll snap for better browser support */
@supports (scroll-snap-type: y mandatory) {
    html {
        scroll-snap-type: y mandatory;
    }
    
    body {
        scroll-snap-type: y mandatory;
    }
    
    section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

/* Fallback for browsers without scroll-snap support */
@supports not (scroll-snap-type: y mandatory) {
    .scroll-snap-fallback {
        /* Custom JavaScript-based scroll snap will handle this */
    }
}

.logo-img {
    width: 36px;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

.logo-img .logo-dot {
    animation: blink-dot 1.2s infinite alternate;
}
.logo-img .logo-dot:nth-of-type(2) { animation-delay: 0.15s; }
.logo-img .logo-dot:nth-of-type(3) { animation-delay: 0.3s; }
.logo-img .logo-dot:nth-of-type(4) { animation-delay: 0.45s; }
.logo-img .logo-dot:nth-of-type(5) { animation-delay: 0.6s; }
.logo-img .logo-dot:nth-of-type(6) { animation-delay: 0.75s; }
.logo-img .logo-dot:nth-of-type(7) { animation-delay: 0.9s; }
.logo-img .logo-dot:nth-of-type(8) { animation-delay: 1.05s; }
.logo-img .logo-dot:nth-of-type(9) { animation-delay: 1.2s; }
.logo-img .logo-dot:nth-of-type(10) { animation-delay: 1.35s; }

@keyframes blink-dot {
    0%   { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Asciinema Player Styling */
.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.asciinema-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    overflow: hidden;
}

/* Ensure asciinema player is accessible and responsive */
.asciinema-container iframe,
.asciinema-container [id^="asciicast-"] {
    /* Ensure proper aspect ratio */
    aspect-ratio: 16/9;
    object-fit: contain;
    
    /* Improve touch interaction on mobile */
    touch-action: manipulation;
    
    /* Ensure proper focus states for accessibility */
    outline: none;
}

.asciinema-container iframe:focus,
.asciinema-container [id^="asciicast-"]:focus {
    outline: 2px solid #6b97f5;
    outline-offset: 2px;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .asciinema-container iframe,
    .asciinema-container [id^="asciicast-"] {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
    }
    
    .asciinema-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Override any conflicting styles for asciinema player */
.demo-container iframe,
.demo-container [id^="asciicast-"] {
    width: 100% !important;
    max-width: 1200px !important;
    height: 60vh !important;
    min-height: 400px !important;
    max-height: 600px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure the container doesn't interfere */
.demo-container > div {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Responsive adjustments for asciinema player */
@media (max-width: 1024px) {
    .demo-container iframe,
    .demo-container [id^="asciicast-"] {
        width: 95% !important;
        height: 56vh !important;
        min-height: 350px !important;
    }
}

@media (max-width: 768px) {
    .demo {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .demo-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .asciinema-container {
        margin: 1.5rem 0;
    }
    
    .asciinema-container iframe,
    .asciinema-container [id^="asciicast-"] {
        aspect-ratio: auto;
        padding-bottom: 0;
        position: static;
        height: 50vh !important;
        min-height: 300px !important;
        max-height: 450px !important;
    }
    
    .demo-container iframe,
    .demo-container [id^="asciicast-"] {
        width: 100% !important;
        height: 50vh !important;
        min-height: 300px !important;
        max-height: 450px !important;
        border-radius: 0.5rem !important;
    }
    
    .demo .section-header h2 {
        font-size: 1.75rem;
    }
    
    .demo .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .demo {
        padding: 3rem 0;
    }
    
    .demo-container {
        padding: 0 0.25rem;
    }
    
    .asciinema-container {
        margin: 1rem 0;
    }
    
    .asciinema-container iframe,
    .asciinema-container [id^="asciicast-"] {
        aspect-ratio: auto;
        padding-bottom: 0;
        position: static;
        height: 45vh !important;
        min-height: 250px !important;
        max-height: 350px !important;
    }
    
    .demo-container iframe,
    .demo-container [id^="asciicast-"] {
        width: 100% !important;
        height: 45vh !important;
        min-height: 250px !important;
        max-height: 350px !important;
        border-radius: 0.375rem !important;
    }
    
    .demo .section-header h2 {
        font-size: 1.5rem;
    }
    
    .demo .section-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .asciinema-container iframe,
    .asciinema-container [id^="asciicast-"] {
        aspect-ratio: auto;
        padding-bottom: 0;
        position: static;
        height: 40vh !important;
        min-height: 200px !important;
        max-height: 300px !important;
    }
    
    .demo-container iframe,
    .demo-container [id^="asciicast-"] {
        height: 40vh !important;
        min-height: 200px !important;
        max-height: 300px !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1.5px 4px rgba(37,99,235,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

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

/* Enhanced Button Styles */
.nav-actions .btn-primary {
    background: #37BCF8;
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-actions .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    background: black;
    color: white;
    border: 1px solid #37BCF8;
    
}

.nav-actions .btn-primary:active {
    transform: translateY(1px) scale(0.98);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-actions .btn-primary {
        display: none; /* Hide the original button */
    }
    
    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 1024px) {
    .customer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cli-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-logo {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .demo-toggle {
        flex-direction: column;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-column {
        padding: 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem 0;
        gap: 1.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .footer-status {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-brand p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-bottom {
        padding: 1.25rem 0.75rem 0;
        gap: 1.25rem;
    }

    .footer-legal {
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links {
        gap: 0.75rem;
    }

    .legal-links a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }

    .footer-status {
        font-size: 0.85rem;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }

    .status-indicator {
        gap: 0.35rem;
    }
}

