    /* Locks the home page to one viewport, no scroll (mirrors .map-page). */
    body.home-page {
        max-height: 100vh;
        overflow: hidden;
        --hero-inset: var(--content-inset);
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        background-color: #e8e0ef;
        overflow: hidden;
        flex: 0 1 400px;
        min-height: 0;
        display: flex;
        align-items: center;
    }

    /* Watermark Background */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 0;
    }

    .hero-watermark {
        width: 40%;
        max-width: 500px;
        opacity: 0.55;
        filter: grayscale(100%);
        user-select: none;
        -webkit-user-drag: none;
        object-fit: contain;
    }

    /* Hero Content */
    .hero-content {
        position: relative;
        z-index: 1;
        margin: 0;
        width: 100%;
        padding: 0 var(--hero-inset);
    }

    .hero-content h1 {
        font-size: 32px;
        font-weight: 1000;
        color: #1a1a2e;
        margin-bottom: 25px;
        /* padding-left: var(--content-inset); */
        margin-left: 0;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
        font-size: 21px;
        color: #6b7280;
        line-height: 1.4;
        margin-bottom: 2rem;
        margin-left: 200px;
        margin-right: 200px;
        /* margin-left: var(--content-inset);
        margin-right: var(--content-inset); */
    }

    /* CTA Button */
    .hero-btn {
        display: inline-block;
        padding: 14px 20px;
        background-color: #664e9f;
        color: #ffffff;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(91, 74, 138, 0.3);
        width: 250px;
        text-align: center;
    }
    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(31, 41, 51, 0.4);
    }


    /* Explore Section */
    .explore-section {
        margin-top: 10px;
        margin-bottom: 10px;
        /* padding: 60px 40px; */
        text-align: center;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .explore-title {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a2e;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .explore-cards {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        margin: 20px var(--content-inset);
        flex-wrap: nowrap;
    }

    /* Card */
    .explore-card {
        background-color: #E0E0E0;
        border-radius: 30px;
        padding: 15px;
        width: 350px;
        text-align: right;
        position: relative;
        margin-top: 10px;
        margin-left: 60px;
        display: flex;
    }

    .explore-card-icon {
        position: absolute;
        top: -40px;
        left: -60px;
    }

    .explore-card-icon img {
        width: 150px;
        height: 150px;
        object-fit: contain;
    }

    .explore-card-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .explore-card-desc {
        text-align: right;
        font-size: 18px;
        font-weight: 500;
        color: #6b7280;
        font-family: 'acumin-pro', sans-serif;
        font-weight: 400;
        font-style: normal;
        margin-left: 100px;
        margin-right: 8px;
    }

    .explore-card-link {
        display: inline-block;
        font-size: 0.95rem;
        font-weight: 700;
        color: #6b7280;
        text-decoration: none;
        margin-right: 8px;
    }

    a.explore-card-link:hover {
        color: #555; /* invalid hex provided - #31f2933 */
    }

    /* Wraps content + footer so the footer sticks to the bottom
       on short pages instead of leaving a gap under it. */
    .home-flex-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }

    /* Grows to fill the space above the footer; shrinks the hero/explore
       sections together instead of overflowing the viewport. */
    .full-height {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    @media (max-width: 1600px) {
        body.home-page {
            --hero-inset: 80px;
        }

        .hero-content h1 {
            margin-bottom: 15px;
        }

        .hero-content p {
            margin-left: 0;
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .explore-title {
            font-size: 26px;
        }

        .explore-card {
            padding-left: 10px;
            padding-right: 10px;
        }

        .explore-card-desc {
            font-size: 16px;
        }

        .explore-card-link {
            font-size: 0.85rem;
        }
    }
