/* ========================================
   SitePulse Landing Page - Custom Styles
   ======================================== */

/* CSS Variables / Design Tokens */
:root {
    --bg-primary: #050505;
    --bg-secondary: #050505;
    --bg-card: rgba(20, 20, 20, 0.8);
    --text-primary: #fafafa;
    --text-muted: #999999;
    --color-primary: #089ddc;
    --color-primary-light: #089ddc;
    --color-accent: #a855f7;
    --color-border: #262626;
    --color-success: #10b981;
    --color-warning: #eab308;
    --color-info: #3b82f6;
    --border-radius: 0.75rem;
    --card: #0d1622;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== Modern Navigation Styles ========== */

#mainNav {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: fixed;
}

/* #mainNav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(8, 157, 220, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

#mainNav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(8, 157, 220, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#mainNav.scrolled::before {
    opacity: 1;
}

/* Brand Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0.5;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1;
}

/* Custom Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-menu {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:first-child {
    transform: rotate(45deg);
    top: 8px;
    position: absolute;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:last-child {
    transform: rotate(-45deg);
    top: 8px;
    position: absolute;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--color-primary) !important;
    background: rgba(8, 157, 220, 0.1);
    border: 1px solid rgba(8, 157, 220, 0.2);
}

.navbar-nav .nav-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-muted);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 16px;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Navigation Actions */
.navbar-actions {
    gap: 1rem;
}

.nav-social {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Modern Button Styles */
.btn-outline-nav {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-nav:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8, 157, 220, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 157, 220, 0.4);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    #mainNav {
        padding: 0.75rem 0;
    }
    
    .navbar-collapse {
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(25px);
        margin: 1rem -1rem -0.5rem -1rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem !important;
        margin: 0.25rem 0;
        border-radius: 12px;
        font-size: 1rem;
    }
    
    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-social {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .nav-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn-outline-nav,
    .btn-primary-nav {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .brand-tagline {
        display: none !important;
    }
}

/* Legacy Navigation Styles (keeping for compatibility) */
.bg-nav {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.navbar-brand .logo {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    animation: pulse-glow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.logo-placeholder::before {
    content: 'SP';
    color: white;
    font-size: 0.75rem;
}

.logo-placeholder.logo-lg {
    width: 40px;
    height: 40px;
}

.logo-placeholder.logo-lg::before {
    font-size: 0.875rem;
}

.text-primary {
    color: #0c6dc2 !important
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary) !important;
}

/* Buttons */
.btn-cta,
.btn-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 71, 133, 0.4), 0 0 80px rgba(8, 157, 220, 0.2);
}

.btn-cta:hover,
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 71, 133, 0.6), 0 0 120px rgba(8, 157, 220, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(153, 153, 153, 0.2);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    background: rgba(250, 250, 250, 0.05);
}

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

.glow-effect {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.glow-1 {
    top: 25%;
    right: 25%;
    background: rgba(168, 85, 247, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

.glow-2 {
    bottom: 25%;
    left: 25%;
    background: rgb(0 136 255 / 27%);
    animation: glow-pulse 2s ease-in-out infinite 1s;
}

.hero-content {
    z-index: 1;
    animation: fade-in 0.6s ease-out;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: #44b4e4;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.text-gradient-orange {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.avatar-group {
    display: flex;
}

/* Dashboard Preview Specific Styles */
#dashboard-preview .card {
    background: var(--card) !important;
    border: 1px solid hsla(16, 100%, 50%, 0.3) !important;
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 1.75rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
    }
    
    #dashboard-preview .card-header .d-flex {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    #dashboard-preview .badge {
        font-size: 0.7rem !important;
    }
}

#dashboard-preview .card-header {
    background: var(--card) !important;
    border-bottom: 1px solid var(--border) !important;
}


.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border: 2px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -0.5rem;
}

/* Floating Cards */
.floating-cards-container {
    position: relative;
    height: 600px;
}

.platform-icons {
    position: absolute;
    top: -2rem;
    right: 3rem;
    display: flex;
    gap: 0.75rem;
    animation: fade-in 0.6s ease-out 0.6s both;
    z-index: 10;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    animation: pulse-glow 2s ease-in-out infinite;
}

.icon-box:hover {
    transform: scale(1.1);
}

.floating-card {
    position: absolute;
    width: 400px;
    padding: 1.25rem;
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.4), 0 0 120px rgba(168, 85, 247, 0.2);
}

.floating-card:hover {
    transform: scale(1.05) !important;
    border-color: rgba(168, 85, 247, 0.5);
}

.card-1 {
    top: 0;
    right: 0;
    transform: rotate(-3deg);
    animation: fade-in 0.6s ease-out;
}

.card-2 {
    top: 35%;
    left: 10%;
    transform: rotate(2deg);
    animation: fade-in 0.6s ease-out 0.2s both;
}

.card-3 {
    top: 70%;
    right: 0;
    transform: rotate(-2deg);
    animation: fade-in 0.6s ease-out 0.4s both;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.decorative-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float-animation 6s ease-in-out infinite;
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.bg-dark-card {
    background: var(--bg-secondary);
}

/* Metric Cards */
.metric-card {
    /* background: var(--bg-card); */
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fade-in 0.6s ease-out;
}

.metric-card:hover {
    border-color: rgba(0, 71, 133, 0.5);
    box-shadow: 0 0 40px rgba(0, 71, 133, 0.4), 0 0 80px rgba(8, 157, 220, 0.2);
    transform: translateY(-5px);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    background: rgba(0, 71, 133, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: background 0.3s ease;
}

.metric-card:hover .metric-icon {
    background: rgba(0, 71, 133, 0.2);
}

.badge-metric {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.badge-red {
    background: #0047851A;
    color: #004785;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.badge-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-label {
    font-size: 0.875rem;
}

/* Roadmap */
.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--text-muted) 100%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    animation: fade-in 0.6s ease-out;
}

.roadmap-left .roadmap-content {
    text-align: right;
    padding-right: 1rem;
}

.roadmap-right .roadmap-content {
    text-align: left;
    padding-left: 1rem;
}

.roadmap-spacer {
    min-width: 0; /* Placeholder for grid layout */
}

.roadmap-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--bg-secondary);
    box-shadow: 0 0 0 4px var(--bg-primary);
    z-index: 1;
    flex-shrink: 0;
    position: relative;
}

.roadmap-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.roadmap-dot.active::before {
    background: var(--color-primary);
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--color-primary);
}

.badge-status-progress {
    background: rgba(0, 71, 133, 0.2);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.badge-status-upcoming {
    background: rgba(168, 85, 247, 0.2);
    color: var(--color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
}

.badge-status-planned {
    background: rgba(153, 153, 153, 0.2);
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
}

/* Integrations */
.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 160px;
    animation: fade-in 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 157, 220, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.integration-card:hover {
    border-color: rgba(8, 157, 220, 0.5);
    box-shadow: 0 0 40px rgba(8, 157, 220, 0.15), 0 0 80px rgba(8, 157, 220, 0.05);
    transform: translateY(-5px);
}

.integration-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon {
    transform: scale(1.1);
}

.integration-card h6 {
    position: relative;
    z-index: 2;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.integration-card small {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
}

.integration-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
}

.integration-badge .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
}

.integration-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.integration-logo.fallback {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.integration-card:hover .integration-logo {
    opacity: 1;
    filter: grayscale(0%);
}

/* Enhanced Integration Elements */
.integration-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.integration-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(8, 157, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.integration-card:hover .integration-glow {
    opacity: 1;
}

.integration-pulse {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.integration-card:hover .integration-pulse {
    opacity: 1;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Keep basic integration elements only */

/* Ecosystem Showcase */
.ecosystem-showcase {
    background: linear-gradient(135deg, rgba(8, 157, 220, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(8, 157, 220, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ecosystem-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 157, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ecosystem-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

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

/* Performance insights */
.performance-insights {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.insight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.insight-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.ecosystem-stats {
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.tool-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-badge:hover {
    background: rgba(8, 157, 220, 0.1);
    border-color: rgba(8, 157, 220, 0.3);
    transform: translateY(-2px);
}

.tool-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-badge:hover::before {
    left: 100%;
}

.tool-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.more-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 600;
}

.more-badge:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .ecosystem-stats {
        justify-content: center !important;
    }
    
    .integration-header-icon {
        width: 36px;
    }
    
    .tool-badge span {
        font-size: 0.7rem;
    }
    
    .ecosystem-stats {
        justify-content: center !important;
    }
    
    .metric-preview-card {
        padding: 1rem 0.75rem;
    }
    
    .integration-card {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-insights .row {
        row-gap: 0.75rem;
    }
    
    .insight-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
}

.integration-pulse {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.integration-card:hover .integration-pulse {
    opacity: 1;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Ecosystem Showcase */
.ecosystem-showcase {
    background: linear-gradient(135deg, rgba(8, 157, 220, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(8, 157, 220, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ecosystem-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 157, 220, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.ecosystem-icon {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.ecosystem-stats {
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.tool-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-badge:hover {
    background: rgba(8, 157, 220, 0.1);
    border-color: rgba(8, 157, 220, 0.3);
    transform: translateY(-2px);
}

.tool-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tool-badge:hover::before {
    left: 100%;
}

.tool-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.more-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 600;
}

.more-badge:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .ecosystem-stats {
        justify-content: center !important;
    }
    
    .integration-header-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .integration-card {
        padding: 1.5rem;
        min-height: 140px;
    }
}

/* How It Works */
.how-it-works-step {
    text-align: center;
    animation: fade-in 0.6s ease-out;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(0, 71, 133, 0.1);
    border: 1px solid rgba(0, 71, 133, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.how-it-works-step:hover .step-icon {
    border-color: rgba(0, 71, 133, 0.5);
    box-shadow: 0 0 40px rgba(0, 71, 133, 0.4), 0 0 80px rgba(8, 157, 220, 0.2);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 71, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Waitlist Form */
.waitlist-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(0, 71, 133, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(0, 71, 133, 0.4), 0 0 80px rgba(8, 157, 220, 0.2);
    animation: fade-in 0.6s ease-out;
}

.custom-input {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--color-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: rgba(20, 20, 20, 0.9);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 133, 0.25);
    color: var(--text-primary);
}

.custom-input::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-input {
    background-color: rgba(20, 20, 20, 0.8);
    border-color: var(--color-border);
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-label {
    color: var(--text-primary);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0, 71, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* FAQ Accordion */
.custom-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    animation: fade-in 0.6s ease-out;
}

.custom-accordion .accordion-item:hover {
    border-color: rgba(0, 71, 133, 0.5);
}

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-primary);
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.custom-accordion .accordion-body {
    background: transparent;
    color: var(--text-muted);
    padding: 0 1.5rem 1.5rem;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.logo-lg {
    width: 40px;
    height: 40px;
}

.footer-link {
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--color-primary) !important;
}

.social-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--color-primary);
}

.social-link:hover .social-icon {
    filter: drop-shadow(0 0 8px rgba(0, 71, 133, 0.6));
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 71, 133, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 71, 133, 0.6), 0 0 80px rgba(8, 157, 220, 0.3);
    }
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 5rem;
    }

    .floating-cards-container {
        height: auto;
        margin-top: 3rem;
    }

    .floating-card {
        position: relative !important;
        width: 100%;
        margin-bottom: 1rem;
        transform: rotate(0deg) !important;
    }

    .platform-icons {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .roadmap-timeline::before {
        left: 8px;
    }

    .roadmap-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .roadmap-left,
    .roadmap-right {
        grid-template-columns: auto 1fr !important;
    }

    .roadmap-spacer {
        display: none;
    }

    .roadmap-left .roadmap-content,
    .roadmap-right .roadmap-content {
        text-align: left;
        padding-left: 1rem;
        padding-right: 0;
    }

    .roadmap-left .roadmap-content .d-flex,
    .roadmap-right .roadmap-content .d-flex {
        justify-content: flex-start !important;
    }

    .roadmap-left .roadmap-content .text-end,
    .roadmap-right .roadmap-content .text-start {
        text-align: left !important;
    }

    .roadmap-dot {
        left: 0;
        transform: none;
        margin-left: 0;
    }

    .roadmap-content {
        text-align: left;
        padding-left: 3rem;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .waitlist-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Utility Classes */
.text-muted {
    color: var(--text-muted) !important;
}

.border-secondary {
    border-color: var(--color-border) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
