/* ===== HOMEPAGE SPECIFIC STYLES ===== */
/* Override body background for homepage */
body.homepage-body {
    background: #E6E6E6 !important;
}

/* Homepage Hero Container */
.homepage-hero {
    position: relative;
    width: 100%;
    min-height: 832px;
    background: #E6E6E6;
    margin: 0;
    padding: 0;
}

/* Frame 4 - Main Content Container */
.frame-4 {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 163px;
    
    position: absolute;
    width: 565px;
    height: 404px;
    left: 81px;
    top: 288px;
}

/* Mask Group - Headline Container */
.mask-group {
    width: 565px;
    height: 89px;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* DSEPAPER.SPACE Headline */
.main-headline {
    position: absolute;
    width: 565px;
    height: 89px;
    left: 0px;
    top: 0px;
    
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 70px;
    line-height: 89px;
    text-align: center;
    
    color: #000000;
    margin: 0;
}

/* Frame 5 - Sub Content Container */
.frame-5 {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 33px;
    
    width: 565px;
    height: 152px;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Focused. Efficient. Master-Crafted. Subheadline */
.sub-headline {
    width: 565px;
    height: 41px;
    
    /* H Primary */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 41px;
    /* identical to box height */
    
    color: #666666;
    margin: 0;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

/* Description Paragraph */
.homepage-hero .description {
    width: 565px;
    height: auto;
    min-height: 78px;
    
    /* H Secondary */
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    
    color: #666666;
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    
    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .homepage-hero {
        width: 100%;
        min-height: 832px;
    }
    
    .frame-4 {
        position: relative;
        left: auto;
        top: auto;
        margin: 288px auto 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .frame-4 {
        width: 90%;
        gap: 80px;
        margin: 150px auto 0;
    }
    
    .mask-group,
    .frame-5 {
        width: 100%;
    }
    
    .main-headline {
        width: 100%;
        font-size: 50px;
        line-height: 60px;
        position: relative;
        left: auto;
        top: auto;
    }
    
    .sub-headline {
        width: 100%;
        font-size: 24px;
        line-height: 32px;
    }
    
    .description {
        width: 100%;
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .frame-4 {
        gap: 50px;
        margin: 100px auto 0;
    }
    
    .main-headline {
        font-size: 36px;
        line-height: 44px;
    }
    
    .sub-headline {
        font-size: 20px;
        line-height: 26px;
    }
    
    .description {
        font-size: 14px;
        line-height: 20px;
    }
}