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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 4rem 2rem 2rem;
    position: relative;
}

/* Content - Left Justified */
.content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 0.6s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Main Header */
.header {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Intro Description */
.intro-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Section */
.section {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #707070;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.section-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

/* SuperHome Header */
.superhome-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.superhome-logo {
    max-width: 140px;
    height: auto;
}

.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.section-description {
    font-size: 1rem;
    font-weight: 400;
    color: #909090;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Learn More Link */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.learn-more-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

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

.learn-more-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    font-weight: 400;
    color: #707070;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .header {
        font-size: 2rem;
    }

    .intro-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .logo {
        max-width: 320px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .section {
        margin-bottom: 2rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        flex-wrap: wrap;
    }

    .superhome-header {
        flex-wrap: wrap;
    }

    .superhome-logo {
        max-width: 120px;
    }

    .footer {
        margin-top: 3rem;
    }
}

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

    .header {
        font-size: 1.75rem;
    }

    .intro-description {
        font-size: 0.9375rem;
    }

    .logo {
        max-width: 280px;
    }

    .section-card {
        padding: 1.25rem;
    }

    .section-description {
        font-size: 0.9375rem;
    }

    .learn-more-link {
        font-size: 0.9375rem;
        padding: 0.5rem 1rem;
    }

    .superhome-logo {
        max-width: 100px;
    }
}