.hero {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    padding: 140px 20px 80px;
}

.hero-container {

    max-width: 1200px;
    width: 100%;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    position: relative;

    z-index: 2;
}

/* --------------------------
   Badge
-------------------------- */

.hero-badge {

    padding: 10px 20px;

    border-radius: 999px;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.8);

    font-size: 14px;
    font-weight: 500;

    margin-bottom: 30px;
}

/* --------------------------
   Heading
-------------------------- */

.hero h1 {

    font-size: clamp(3rem, 8vw, 6rem);

    line-height: 1;

    font-weight: 600;

    max-width: 800px;

    letter-spacing: -3px;

    margin-bottom: 24px;
}

.hero h1 span {

    display: block;

    background: linear-gradient(
        135deg,
        var(--orange)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --------------------------
   Description
-------------------------- */

.hero p {

    max-width: 700px;

    font-size: 1.125rem;

    line-height: 1.8;

    color: rgba(255,255,255,.75);

    margin-bottom: 40px;
}

/* --------------------------
   Buttons
-------------------------- */

.hero-buttons {

    display: flex;
    gap: 16px;

    flex-wrap: wrap;

    justify-content: center;

    margin-bottom: 90px;
}

.hero-primary-btn,
.hero-secondary-btn {

    text-decoration: none;

    padding: 14px 26px;

    border-radius: 14px;

    font-weight: 600;

    transition: .35s ease;
}

.hero-primary-btn {

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    color: white;
}

.hero-primary-btn:hover {

    transform: translateY(-3px);

    box-shadow:
    0 15px 40px rgba(247,148,29,.25);
}

.hero-secondary-btn {

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.08);

    color: white;
}

.hero-secondary-btn:hover {

    border-color: rgba(255,255,255,.2);

    transform: translateY(-3px);
}

/* --------------------------
   Floating Cards
-------------------------- */

.floating-elements {

    width: 100%;

    display: flex;
    justify-content: center;
    gap: 24px;

    flex-wrap: wrap;
}

.glass-card {

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 20px;

    padding: 24px 32px;

    min-width: 220px;

    text-align: center;

    color: white;

    font-weight: 500;

    animation: float 6s ease-in-out infinite;
}

.card-2 {

    animation-delay: 1.5s;
}

.card-3 {

    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* --------------------------
   Mobile
-------------------------- */

@media (max-width: 768px) {

    .hero {

        padding-top: 120px;
    }

    .hero h1 {

        letter-spacing: -1px;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;

        max-width: 300px;
    }

    .hero-primary-btn,
    .hero-secondary-btn {

        width: 100%;
    }

    .glass-card {

        width: 100%;
        min-width: unset;
    }
}

