/* ===== Welcome / Landing page ===== */

body { background: #fff; overflow-x: hidden; }

/* ── Hero: full-height flex row ── */
.hero_section {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 80px);
    gap: 120px;
    overflow: hidden;
}

/* ── Mascot wrapper: stretches full height; padding creates top/bottom breathing room ── */
.mascot_wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    padding: 88px 0 27px 0;
}

/* ── Purple card: fills wrapper after padding, rounds only on right side ── */
.mascot_card {
    position: relative;
    background: #d9bcfb;
    border-radius: 0 115px 115px 0;
    width: 548px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ground shadow beneath character feet, bottom-left */
.mascot_card::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 5%;
    width: 240px;
    height: 110px;
    background: radial-gradient(ellipse at center, rgba(80, 50, 130, 0.55) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mascot_card img {
    width: 90%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    position: relative;
    z-index: 1;
}

/* ── Right info column: vertically centered, wide enough for heading ── */
.right__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3em;
    padding: 117px 60px 40px 0;
    margin-top: 100px;
}

.heading__info {
    display: flex;
    flex-direction: column;
    gap: -1.1rem;
}

/* ── Heading ── */
.heading {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 67.0476px;
    line-height: 81px;
    color: #535862;
    margin: 0;
}

/* ── Description ── */
.description {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #535862;
    margin: 10px 0 13px 0;
    max-width: 860px;
}

/* ── Get Started button ── */
.get_started_btn {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 18px;
    text-decoration: none;
    width: 125.23px;
    height: 50.82px;
    background: linear-gradient(180deg, #8371f7 0%, #5d48d6 100%);
    box-shadow:
        0px 0.84px 1.68px rgba(10, 13, 18, 0.05),
        inset 0px 0px 0px 0.84px rgba(10, 13, 18, 0.18),
        inset 0px -1.68px 0px rgba(10, 13, 18, 0.05);
    border-radius: 8.47784px;
    border: none;
    color: #fff !important;
    font-size: 15.9px;
    font-weight: 300;
    white-space: nowrap;
}

.get_started_btn:hover {
    background: linear-gradient(180deg, #6f5df5 0%, #4c39c9 100%);
    box-shadow: 0px 3px 8px rgba(10, 13, 18, 0.22);
    color: #fff !important;
    text-decoration: none;
}

/* ── Learn More button ── */
.learn_more_btn {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 18px;
    width: 123.23px;
    height: 50.82px;
    box-shadow:
        inset 0px 0px 0px 0.84px rgba(10, 13, 18, 0.18),
        inset 0px -1.68px 0px rgba(10, 13, 18, 0.05);
    filter: drop-shadow(0px 0.84px 1.68px rgba(10, 13, 18, 0.05));
    border-radius: 8.47784px;
    color: #4a75ec;
    font-weight: 300;
    font-size: 16px;
    background: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.learn_more_btn:hover {
    background: rgba(10, 13, 18, 0.04);
    color: #333;
    text-decoration: none;
}

/* ── Partners ── */
.partener_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

.partener_wrapper img { display: block; }

/* ── Responsive ── */
@media (max-width: 1280px) {
    .heading { font-size: 52px; line-height: 64px; }
    .mascot_card { width: 340px; }
    .hero_section { gap: 60px; }
    .mascot_wrapper { padding: 80px 0 60px; }
}

@media (max-width: 1024px) {
    .heading { font-size: 40px; line-height: 50px; }
    .description { font-size: 17px; }
    .mascot_card { width: 280px; border-radius: 0 60px 60px 0; }
    .hero_section { gap: 40px; }
    .mascot_wrapper { padding: 60px 0 50px; }
    .right__info { padding-right: 24px;}
}

@media (max-width: 768px) {
    .hero_section {
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }
    .mascot_wrapper {
        width: 100%;
        height: 300px;
        padding: 0;
        align-items: stretch;
    }
    .mascot_card {
        width: 100%;
        height: 100%;
        border-radius: 0 0 48px 48px;
    }
    .mascot_card img { width: 50%; max-height: 90%; }
    .right__info {
        padding: 32px 24px;
        max-width: 100%;
        gap: 2em;
    }
    .heading { font-size: 28px; line-height: 1.3; }
    .description { font-size: 15px; line-height: 22px; }
    .partener_wrapper { justify-content: center; }
    .partener_wrapper img { max-width: 100%; height: auto; }
}

@media (max-width: 480px) {
    .heading { font-size: 24px; }
    .get_started_btn, .learn_more_btn { width: auto; }
}
