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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 50%, #ddd6fe 100%);
    min-height: 100vh;
}

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

/* Status Badge */
.status-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    color: #7c3aed;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
    background: white;
    border-color: rgba(124, 58, 237, 0.3);
}

.pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

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

.hero-text h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: #7c3aed;
    color: white;
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.cta-button:hover {
    background: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

/* Mockups */
.hero-mockups {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 40px;
}

.mockup-main {
    width: 65%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.mockup-main:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 40px 100px rgba(124, 58, 237, 0.45);
    z-index: 3;
}

.mockup-secondary {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 45%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(34, 197, 94, 0.35);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.mockup-secondary:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 40px 100px rgba(34, 197, 94, 0.45);
    z-index: 3;
}

/* Connect Section */
.connect {
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.connect h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 50px;
    font-weight: 700;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.connect-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(0.2);
}

.connect-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.connect-card a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.connect-card a:hover {
    color: #6d28d9;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

footer p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-mockups {
        justify-content: center;
        min-height: 500px;
        padding: 30px;
    }
    
    .mockup-main {
        width: 55%;
    }
    
    .mockup-secondary {
        width: 40%;
        bottom: 30px;
        right: 10px;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .status-badge {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .hero {
        padding: 80px 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .hero-mockups {
        min-height: 450px;
        padding: 20px;
    }
    
    .mockup-main {
        width: 70%;
        max-height: 450px;
    }
    
    .mockup-secondary {
        width: 50%;
        max-height: 450px;
        bottom: 40px;
        right: 5px;
    }
    
    .connect h2 {
        font-size: 2rem;
    }
}
