/* Minimalist EDM-Inspired Dark Theme */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Subtle Background Gradient - Minimal */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #00ffff;
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 4px;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* Header - Minimal Clean */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.domain {
    color: #ff00ff;
    font-weight: 300;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.5);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Hero Section - Minimal */
.hero {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-emoji {
    font-size: 3rem;
    margin-bottom: 30px;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(224, 224, 224, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Features Section - Minimal Cards */
.features {
    background: transparent;
    padding: 100px 0;
    margin: 60px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #00ffff;
    margin-bottom: 80px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.3));
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-description {
    color: rgba(224, 224, 224, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Use Cases Section - Minimal List */
.use-cases {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.use-cases .section-title {
    color: #ff00ff;
}

.use-cases-list {
    list-style: none;
    max-width: 500px;
    margin: 60px auto 0;
    background: transparent;
    padding: 0;
    border: none;
    text-align: left;
}

.use-cases-list li {
    padding: 20px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    color: rgba(224, 224, 224, 0.7);
    font-weight: 300;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 30px;
}

.use-cases-list li:last-child {
    border-bottom: none;
}

.use-cases-list li:hover {
    color: #ffffff;
    padding-left: 40px;
}

.use-cases-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Contact Section - Minimal */
.contact {
    background: transparent;
    padding: 100px 0;
    margin: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.contact-description {
    font-size: 1rem;
    color: rgba(224, 224, 224, 0.6);
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.contact-box {
    margin-top: 30px;
}

.contact-button {
    display: inline-block;
    background: transparent;
    color: #00ffff;
    padding: 18px 50px;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.contact-button:hover::before {
    left: 0;
}

.contact-button:hover {
    border-color: #00ffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-button:active {
    transform: translateY(0);
}

/* Footer - Minimal */
.footer {
    background: transparent;
    color: rgba(224, 224, 224, 0.4);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-text {
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-contact {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-contact a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-contact a:hover {
    border-bottom-color: #00ffff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-button {
        padding: 15px 40px;
        font-size: 0.85rem;
    }

    .hero-emoji {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .features,
    .contact,
    .use-cases {
        padding: 60px 0;
        margin: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .use-cases-list {
        padding: 0;
    }

    .use-cases-list li {
        font-size: 0.9rem;
    }
}
