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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.description {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

/* Features */
.features {
    display: none;
}

/* CTA Section */
.cta-section {
    margin-top: 0;
}

.contact-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .contact-link {
        font-size: 0.75rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .copyright {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.7rem;
        margin-bottom: 2rem;
    }

    .contact-link {
        font-size: 0.7rem;
    }

    .copyright {
        font-size: 0.65rem;
    }
}