/* Landing Page Styles - Minimalist & Professional */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #e8eef5;
    background: #0a1628;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.landing-header {
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(232, 238, 245, 0.15);
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.company-tagline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #a8b8d0;
    letter-spacing: -0.01em;
}

/* Main Content */
.landing-main {
    flex: 1;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    text-align: center;
    max-width: 600px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #a8b8d0;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Contact Section */
.contact-section {
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.contact-content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1rem;
    color: #a8b8d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #e8eef5;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 1.5px solid #e8eef5;
    border-radius: 4px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.contact-link:hover {
    background: #e8eef5;
    color: #0a1628;
    transform: translateY(-1px);
}

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

/* Footer */
.landing-footer {
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(232, 238, 245, 0.15);
    margin-top: auto;
}

.footer-text {
    font-size: 0.875rem;
    color: #6b7d9a;
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        padding: 0 1.5rem;
    }

    .landing-header {
        padding: 3rem 0 1.5rem;
    }

    .company-name {
        font-size: 2rem;
    }

    .company-tagline {
        font-size: 1rem;
    }

    .landing-main {
        padding: 4rem 0;
        gap: 5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.625rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 0 1rem;
    }

    .company-name {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .landing-main {
        padding: 3rem 0;
        gap: 4rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

