.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(9, 18, 14, 0.65) 10%, rgba(14, 26, 20, 0.2) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(700px, 90vw);
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(19px) saturate(180%);
    -webkit-backdrop-filter: blur(19px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero h1 span {
    font-weight: 300;
    display: block;
}

.subhead {
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 1100px) {
    .hero-content {
        max-width: 420px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 180px;
    }
}

@media (max-width: 700px) {
    .hero {
        padding-top: 200px;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-row {
        flex-direction: column;
        width: 100%;
    }

    .cta-row .btn {
        width: 100%;
    }
}