.landing-page {
    background:
        radial-gradient(circle at 20% 10%, rgba(34,197,94,.25), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(37,99,235,.25), transparent 30%),
        linear-gradient(
            180deg,
            #071626 0%,
            #0e2438 42%,
            #f7fafc 42%
        );
}

.announcement {
    background:
        linear-gradient(
            90deg,
            #22c55e,
            #2563eb,
            #7c3aed
        );

    color: #ffffff;

    text-align: center;

    padding: 10px;

    font-weight: 800;
}

.landing-hero {
    width: min(1180px, calc(100% - 32px));

    margin: 50px auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 48px;

    align-items: center;

    color: #ffffff;
}

.hero-content h1 {
    font-size: clamp(44px, 7vw, 82px);

    line-height: .95;

    margin: 12px 0;
}

.hero-content p {
    font-size: 19px;

    color: #dbeafe;

    max-width: 640px;
}

.eyebrow {
    display: inline-block;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(34,197,94,.16);

    color: #bbf7d0;

    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

.orb {
    position: absolute;
    border-radius: 50%;
}

.orb-one {
    width: 230px;
    height: 230px;

    right: 80px;
    top: 20px;

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #2563eb
        );
}

.orb-two {
    width: 160px;
    height: 160px;

    left: 20px;
    bottom: 40px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #22c55e
        );
}

.globe-card {
    position: absolute;

    top: 80px;
    right: 40px;

    width: 280px;

    background: rgba(255,255,255,.94);

    color: #102033;

    padding: 28px;

    border-radius: 28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.22);

    display: grid;
    gap: 10px;
}

.globe-card span {
    font-size: 64px;
}

.section {
    width: min(1180px, calc(100% - 32px));

    margin: 40px auto;

    background: #ffffff;

    border-radius: 28px;

    padding: 34px;

    box-shadow: var(--shadow);
}

.section-heading {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 24px;
}

.section-heading h2,
.cta-section h2 {
    font-size: clamp(28px, 4vw, 48px);
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 18px;
}

.feature-card {
    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    font-weight: 900;
}

.cta-section {
    width: min(1180px, calc(100% - 32px));

    margin: 40px auto;

    padding: 46px;

    border-radius: 32px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #2563eb,
            #22c55e
        );

    color: #ffffff;
}

@media (max-width: 900px) {

    .landing-hero {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 260px;
    }

}