.home-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.home-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 40%, var(--gradient-1) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 30%, var(--gradient-3) 0%, transparent 75%),
    radial-gradient(ellipse at 50% 70%, var(--gradient-5) 0%, transparent 80%),
    repeating-linear-gradient(45deg,
            transparent,
            transparent 60px,
            var(--gradient-4) 60px,
            var(--gradient-4) 62px,
            transparent 62px,
            transparent 150px
    );
    opacity: 0.12;
    z-index: -1;
}

.home-page-content h1,
.home-page-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 800px;
}

.home-page-content h1 {
    font-size: clamp(5rem, 12vw, 9rem);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 0;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    opacity: 0.9;
    margin-top: 0.5rem;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--gradient-4);
}

.btn-secondary:hover {
    background: var(--gradient-4);
    color: white;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 3vw, 2rem);
    }

    .home-page-content h1 {
        font-size: clamp(3.5rem, 10vw, 6rem);
        line-height: 1.1;
    }
}
