/* Import main styles for header and footer */
@import url('main.css');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #E0E0E0;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}


.content-overlay {
    position: relative;
    z-index: 2;
    flex: 1;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    padding-bottom: 4rem;
    margin-top: 80px;
}

.header {
    padding: 8rem 2rem 2rem;
    text-align: center;
}

.header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.header h1:hover {
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.3);
}

.header .subtitle {
    font-size: 1.1rem;
    color: #A0A0A0;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.utility-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(2px);
}

.hero-cta .arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
    transform: translateX(3px);
}

.preview-status {
    font-size: 0.875rem;
    color: #808080;
    margin-top: 0;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Removed old join-section styles - now using hero-cta */

/* Feature Section Styles */
.feature-section {
    margin-bottom: 5rem;
}

.section-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 3rem;
    max-width: 70ch;
}

/* Feature Detail Styles */
.feature-detail {
    margin-bottom: 3rem;
}

.feature-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #B0B0B0;
    margin-bottom: 2rem;
    max-width: 70ch;
}

.channel-list {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.channel-item:last-child {
    border-bottom: none;
}

/* Monitoring Grid - keeping for backwards compatibility */
.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: rgba(20, 25, 40, 0.85);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.metric-card:hover {
    border-color: rgba(100, 200, 255, 0.4);
    background: rgba(25, 30, 45, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(100, 200, 255, 0.15);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(100, 200, 255, 0.3));
}

.metric-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.metric-detail {
    font-size: 0.875rem;
    color: #A0A0A0;
}

/* Screenshot Showcase */
.screenshot-showcase {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.screenshot-wrapper {
    position: relative;
    display: inline-block;
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 12px;
}

.showcase-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.showcase-image:hover {
    transform: translateY(-10px);
}

.example-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #A0A0A0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #A0A0A0;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Technical Details */
.technical-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.technical-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #aebfd0;
}

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

.tech-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #5f7e9c;
}

.tech-list code {
    background: rgba(95, 126, 156, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Announcement Features */
.announcement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.announcement-card {
    background: rgba(20, 25, 40, 0.85);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.announcement-card:hover {
    border-color: rgba(100, 200, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100, 200, 255, 0.1);
}

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

.announcement-card p {
    margin-bottom: 1rem;
    opacity: 0.85;
}

.announcement-card ul {
    list-style: none;
}

.announcement-card li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.95rem;
    opacity: 0.8;
}

.announcement-card li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #5f7e9c;
}

/* GitHub Grid */
.github-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.repo-card {
    background: rgba(20, 25, 40, 0.85);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.repo-card:hover {
    border-color: rgba(100, 200, 255, 0.4);
    background: rgba(25, 30, 45, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(100, 200, 255, 0.15);
}

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

.repo-icon {
    font-size: 1.5rem;
}

.repo-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #aebfd0;
}

.repo-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* GitHub Features */
.github-features {
    margin-top: 3rem;
}

.github-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #aebfd0;
}

.processing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.processing-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 3px solid #5f7e9c;
}

.processing-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #aebfd0;
}

.processing-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.community-card {
    background: rgba(20, 25, 40, 0.85);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.community-card:hover {
    border-color: rgba(100, 200, 255, 0.4);
    background: rgba(25, 30, 45, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(100, 200, 255, 0.15);
}

.community-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.community-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Integration Benefits */
.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 20, 30, 0.5);
    border: 1px solid rgba(95, 126, 156, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(95, 126, 156, 0.6);
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #aebfd0;
}

.benefit-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #B0B0B0;
    max-width: 70ch;
}

/* Final Section */
.final-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.discord-widget {
    flex-shrink: 0;
}

.discord-widget iframe {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #ffffff;
}

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

.nav-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

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

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

.nav-cta {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #4A90E2, #67B4F0);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #5BA0F2, #77C4FF);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #5f7e9c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    animation: cursorPulse 2s ease-in-out infinite;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background-color: #5f7e9c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

@keyframes cursorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* Utility Classes */
.glass {
    background: rgba(20, 25, 40, 0.6);
    backdrop-filter: blur(10px);
}

.muted {
    opacity: 0.8;
}

.code {
    font-family: 'Fira Code', 'JetBrains Mono', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.utility-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #E0E0E0;
    transition: all 0.2s ease;
}

.utility-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 6rem 1rem 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .monitoring-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .github-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-features,
    .community-grid,
    .integration-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .showcase-image {
        max-width: 100%;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .utility-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .utility-badge {
        width: 100%;
        justify-content: center;
    }
    
    .final-section {
        flex-direction: column;
        text-align: center;
    }
    
    .discord-widget {
        width: 100%;
        max-width: 350px;
    }
    
    .discord-widget iframe {
        width: 100%;
        height: 400px;
    }
} 