/* Shared hero component used across the premium Canepulp pages */
.site-hero {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0 2rem;
    background: linear-gradient(
        180deg,
        #f2faf5 0%,
        #f8fcf9 65%,
        #ffffff 100%
    );
    color: #0f172a;
}

.site-hero__glow {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    pointer-events: none;
}

.site-hero__glow--one {
    top: -15rem;
    left: -7rem;
    background: rgba(134, 239, 172, 0.16);
}

.site-hero__glow--two {
    right: -10rem;
    bottom: -15rem;
    background: rgba(187, 247, 208, 0.18);
}

.site-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
}

.site-hero__content {
    max-width: 63rem;
    margin: 0 auto;
}

.site-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 1rem;
    color: #047857;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.site-hero__line {
    width: 1.8rem;
    height: 1px;
    background: #86efac;
}

.site-hero__title {
    margin: 0 auto 1rem;
    max-width: 56rem;
    color: #0f172a;
    font-size: clamp(1.96rem, 3.64vw, 2.94rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.site-hero__highlight {
    display: inline;
    color: #047857;
}

.site-hero__intro,
.site-hero__description {
    max-width: 62rem;
    margin: 0 auto;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
}

.site-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.site-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 1.35rem;
    margin-top: 1.65rem;
    padding: 0.65rem 1.1rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.055);
    border-radius: 999px;
    box-shadow: 0 15px 40px -35px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.site-hero__meta-value {
    color: #047857;
    font-size: 0.84rem;
    font-weight: 750;
}

.site-hero__meta-label {
    color: #64748b;
    font-size: 0.59rem;
    font-weight: 650;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.site-hero__meta-divider {
    width: 1px;
    height: 1.15rem;
    background: rgba(15, 23, 42, 0.1);
}

@media (max-width: 640px) {
    .site-hero {
        padding: 3.15rem 0 1.5rem;
    }

    .site-hero__inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-hero__title {
        font-size: clamp(1.72rem, 8vw, 2.5rem);
        margin-bottom: 0.85rem;
        white-space: normal;
    }

    .site-hero__description {
        font-size: 1rem;
    }

    .site-hero__meta {
        flex-direction: column;
        gap: 0.7rem;
        border-radius: 1rem;
    }

    .site-hero__meta-divider {
        display: none;
    }
}
