body
{
    overflow: hidden;
    background:
            radial-gradient(circle at top left, rgba(255, 153, 51, 0.18), transparent 28%),
            radial-gradient(circle at bottom right, rgba(255, 102, 153, 0.14), transparent 30%),
            linear-gradient(135deg, #050507 0%, #12121a 55%, #1b1520 100%);
}

.landing-page
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
}

.hero-card
{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding: 4rem 3rem;
    text-align: center;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.badge
{
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffd7a8;
    border: 1px solid rgba(255, 196, 128, 0.35);
    background: rgba(255, 170, 85, 0.08);
}

.hero-card h1
{
    margin-bottom: 1.25rem;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #ffd1a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-card p
{
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.divider
{
    width: 90px;
    height: 2px;
    margin: 2rem auto 1.25rem;
    border-radius: 999px;
    background: linear-gradient(
            90deg,
            rgba(255, 153, 102, 0),
            rgba(255, 190, 130, 1),
            rgba(255, 153, 102, 0)
    );
}

.subtext
{
    display: inline-block;
    font-size: 0.98rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 222, 190, 0.72);
}

.background-glow
{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.75;
    pointer-events: none;
}

.background-glow-1
{
    top: 8%;
    left: 10%;
    width: 340px;
    height: 340px;
    background: rgba(255, 136, 51, 0.26);
}

.background-glow-2
{
    right: 8%;
    bottom: 6%;
    width: 420px;
    height: 420px;
    background: rgba(255, 85, 153, 0.18);
}

@media (max-width: 768px)
{
    .landing-page
    {
        padding: 1.5rem;
    }

    .hero-card
    {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .hero-card p
    {
        font-size: 1rem;
    }

    .subtext
    {
        font-size: 0.82rem;
        line-height: 1.5;
    }
}