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

body {
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.4);
}

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

.header-top-bar {
    height: 3px;
    background: linear-gradient(90deg, #f97316, #dc2626, #7c3aed);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: white;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #7c3aed);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 40px 100px;
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #0f0f0f 30%, #1a0a0a 70%, #000000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    color: #d1d5db;
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-visual {
    position: relative;
    width: 600px;
    height: 600px;
    overflow: hidden;
}

/* Create a beautiful dynamic animation system */
.animation-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

/* Floating geometric shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 20%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(124, 58, 237, 0.2));
    animation-delay: 0s;
    animation-duration: 12s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 25%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.2));
    animation-delay: 2s;
    animation-duration: 10s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 15%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(139, 92, 246, 0.2));
    animation-delay: 4s;
    animation-duration: 14s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 20%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(6, 182, 212, 0.2));
    animation-delay: 6s;
    animation-duration: 9s;
}

/* Central animated core */
.central-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #7c3aed, #f97316);
    background-size: 300% 300%;
    animation: corePulse 6s ease-in-out infinite;
    box-shadow: 
        0 0 60px rgba(220, 38, 38, 0.4),
        0 0 120px rgba(124, 58, 237, 0.2),
        0 0 180px rgba(249, 115, 22, 0.1);
    z-index: 5;
}

.central-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    animation: innerGlow 4s ease-in-out infinite;
}

.central-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: coreRotate 8s linear infinite;
}

/* Single orbital ring */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

/* Particle effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 30%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; right: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 10%; animation-delay: 2s; }
.particle:nth-child(4) { top: 50%; right: 15%; animation-delay: 3s; }
.particle:nth-child(5) { top: 70%; left: 25%; animation-delay: 4s; }
.particle:nth-child(6) { top: 80%; right: 30%; animation-delay: 5s; }

/* Energy waves */
.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    animation: waveExpand 8s ease-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 2s; }
.wave-3 { animation-delay: 4s; }

/* Animations */
@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.2); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.1); 
        opacity: 1;
    }
}

@keyframes corePulse {
    0%, 100% { 
        background-position: 0% 50%; 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 60px rgba(220, 38, 38, 0.4),
            0 0 120px rgba(124, 58, 237, 0.2),
            0 0 180px rgba(249, 115, 22, 0.1);
    }
    50% { 
        background-position: 100% 50%; 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 
            0 0 80px rgba(220, 38, 38, 0.6),
            0 0 160px rgba(124, 58, 237, 0.4),
            0 0 240px rgba(249, 115, 22, 0.2);
    }
}

@keyframes innerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes coreRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) scale(1.5); 
        opacity: 1;
    }
}

@keyframes waveExpand {
    0% { 
        transform: translate(-50%, -50%) scale(0.1); 
        opacity: 0.8;
        border-width: 2px;
    }
    100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0;
        border-width: 1px;
    }
}

/* Section Styles */
.section-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 19px;
    color: #d1d5db;
    text-align: center;
    margin-bottom: 70px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

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

.boundary-icon {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
}

.database-icon {
    background: linear-gradient(135deg, #dc2626, #2563eb);
}

.storage-icon {
    background: linear-gradient(135deg, #dc2626, #059669);
}

.validation-icon {
    background: linear-gradient(135deg, #dc2626, #7c2d12);
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 16px;
}

.learn-more {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.learn-more:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

.learn-more:hover::before {
    left: 100%;
}

/* Community Section */
.community {
    padding: 140px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Community Tag */
.community-tag {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Community Title */
.community-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: white;
    letter-spacing: -1px;
}

.community-title .highlight {
    background: linear-gradient(135deg, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Community Description */
.community-description {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 44px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 500px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social-btn::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;
}

.social-btn:hover {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn i {
    font-size: 22px;
}

/* Testimonial Card */
.community-testimonial {
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    display: flex;
    gap: 24px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(220, 38, 38, 0.2);
}

/* Profile Stack */
.profile-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.profile-pic.active {
    border-color: #dc2626;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    transform: scale(1.05);
}

.profile-pic[data-social="github"] i {
    color: #ffffff;
    font-size: 18px;
}

.profile-pic[data-social="discord"] i {
    color: #5865F2;
    font-size: 18px;
}

.profile-pic[data-social="twitter"] i {
    color: #1DA1F2;
    font-size: 18px;
}

.profile-pic[data-social="linkedin"] i {
    color: #0077B5;
    font-size: 18px;
}

.profile-pic[data-social="youtube"] i {
    color: #FF0000;
    font-size: 18px;
}

.profile-pic[data-social="medium"] i {
    color: #00AB6C;
    font-size: 18px;
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.username {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.social-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1DA1F2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.testimonial-text {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.testimonial-text p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
    transition: opacity 0.3s ease;
}

/* Integrations Section */
.integrations {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.integration-visual {
    position: relative;
    width: 800px;
    height: 600px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central XResearch Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: #000000;
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 
        0 0 30px rgba(220, 38, 38, 0.4),
        0 0 60px rgba(220, 38, 38, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.central-hub:hover {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 
        0 0 40px rgba(220, 38, 38, 0.6),
        0 0 80px rgba(220, 38, 38, 0.3);
}

.hub-logo {
    font-size: 64px;
    font-weight: 900;
    color: #f97316;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

/* Technology Integration Nodes */
.tech-node {
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

.tech-node:hover {
    transform: scale(1.2);
    z-index: 15;
}

/* Simple hover effect - just size increase */
.java-node:hover,
.springboot-node:hover,
.postgresql-node:hover,
.python-node:hover {
    transform: scale(1.2);
}

/* Special handling for Vue and Cloud nodes to preserve their centered positioning */
.vue-node:hover {
    transform: translateY(-50%) scale(1.2);
}

.cloud-node:hover {
    transform: translateY(-50%) scale(1.2);
}

/* Node positioning - Natural Spider Web Layout */
/* Left Side (3 legs) */
.java-node {
    top: 15%;  /* Upper diagonal - moved further out */
    left: 15%;
    border-color: rgba(0, 115, 150, 0.4);
    box-shadow: 0 0 20px rgba(0, 115, 150, 0.2);
}

.vue-node {
    top: 50%;  /* Direct left - moved further out */
    left: 0%;
    transform: translateY(-50%);
    border-color: rgba(66, 184, 131, 0.4);
    box-shadow: 0 0 20px rgba(66, 184, 131, 0.2);
}

.springboot-node {
    bottom: 15%;  /* Lower diagonal - moved further out */
    left: 15%;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Right Side (3 legs) */
.postgresql-node {
    top: 15%;  /* Upper diagonal - moved further out */
    right: 15%;
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.cloud-node {
    top: 50%;  /* Direct right - moved further out */
    right: 0%;
    transform: translateY(-50%);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.python-node {
    bottom: 15%;  /* Lower diagonal - moved further out */
    right: 15%;
    border-color: rgba(55, 118, 171, 0.4);
    box-shadow: 0 0 20px rgba(55, 118, 171, 0.2);
}


.view-integrations {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.view-integrations:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.4);
}

.view-integrations:hover::before {
    left: 100%;
}

/* Solutions Section */
.solutions {
    padding: 140px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

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

/* Solution Icon Backgrounds */
.solution-icon.yayfriday-icon {
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.solution-icon.datadropper-icon {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
}

.solution-icon.documentclassifier-icon {
    background: linear-gradient(135deg, #dc2626, #059669);
}

.solution-icon.medex-icon {
    background: linear-gradient(135deg, #dc2626, #2563eb);
}

.solution-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.solution-card p {
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 16px;
}

.solution-card .learn-more {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card .learn-more:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
}

/* Footer CTA Section */
.footer-cta {
    padding: 140px 0;
    background: linear-gradient(180deg, #000000 0%, #0f0f0f 30%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: linear-gradient(45deg, #7c3aed, #dc2626, #f97316);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(90deg) scale(1.05); }
    50% { transform: translateY(-25px) rotate(180deg) scale(1.1); }
    75% { transform: translateY(-15px) rotate(270deg) scale(1.05); }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.3);
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
}

.newsletter-text {
    color: #d1d5db;
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 15px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.email-input::placeholder {
    color: #9ca3af;
}

.subscribe-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

.subscribe-btn:hover::before {
    left: 100%;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #dc2626;
    color: white;
}

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

.link-column h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.link-column a {
    display: block;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

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

.copyright {
    color: #a1a1aa;
}

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

.legal-links a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 20px 15px;
    }
    

    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 80px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-visual {
        width: 100%;
        height: 350px;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .community {
        padding: 80px 0;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .community-title {
        font-size: 36px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-btn {
        justify-content: center;
    }
    
    .integrations {
        padding: 80px 0;
    }
    
    .integration-visual {
        width: 100%;
        height: 400px;
        margin: 50px auto;
    }
    
    /* Mobile adjustments for spider web */
    .central-hub {
        width: 120px;
        height: 120px;
    }
    
    .hub-logo {
        font-size: 48px;
    }
    
    .tech-node {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .solutions {
        padding: 80px 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 50px;
    }
    
    .solution-card {
        padding: 30px 24px;
    }
    
    .footer-cta {
        padding: 80px 0;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .feature-grid,
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card,
    .solution-card {
        padding: 25px 20px;
    }
    
    .feature-icon,
    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .integration-visual {
        height: 350px;
    }
    
    .central-hub {
        width: 100px;
        height: 100px;
    }
    
    .hub-logo {
        font-size: 40px;
    }
    
    .tech-node {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .community-title {
        font-size: 28px;
    }
    
    .community-description {
        font-size: 16px;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-stack {
        flex-direction: row;
        gap: 8px;
    }
    
    .profile-pic {
        width: 40px;
        height: 40px;
    }
}

