
.hero {
    position: relative;
    align-items: center;
    color: #0f331d;
    padding-top: 90px;
    background: radial-gradient(circle at top left, #f4ffe3 0%, #d0ffd0 45%, #a2f7ff 100%);
    width: 100vw;
}

.hero__background {
    position: absolute;
    inset: 0;
    background-image: url(images/background.png);
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__logo {
    max-width: min(420px, 100%);
    width: min(80vw, 420px);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
}

.hero__eyebrow {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2d7d3a;
    font-weight: 700;
}

.hero__title {
    font-size: 48px;
    text-align: center;
    line-height: 1.8;
    margin: 0;
    color: darkslateblue;
    text-shadow: 0 6px 6px rgba(16, 71, 43, 0.65);
}

.hero__description {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: rgba(13, 47, 33, 0.82);
}

.store_buttons {
    display: flex;
    gap: 1rem;
    margin: auto;
    width: fit-content;
}

.hero__visual {
    position: relative;
    width: 1200px;
    max-width: 90vw;
    aspect-ratio: 2;
    margin: 0 auto;
}

.hero-layer {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}


.highlight {
    color: #43a047;
    font-weight: bold;
    font-size: 1.2em;
}

.buttons {
    text-align: center;
    margin: 2rem 1rem;
}

@media screen and (max-width: 767px) {
    .hero {
        padding-top: 32vw;
    }

    .hero__inner {
        display: flex;
        flex-direction: column;
        gap: 10vw;
        align-items: center;
        text-align: center;
    }

    .hero__content {
        align-items: center;
        gap: 6vw;
    }

    .hero__title {
        font-size: 8vw;
        line-height: 1.4;
    }

    .hero__description {
        font-size: 4vw;
    }

    .store_buttons {
        flex-direction: column;
        width: 100%;
        gap: 4vw;
    }

    .hero__visual {
        width: 100%;
        max-width: 100vw;
        aspect-ratio: 16 / 11;
    }
}

