.hao-page-hero {
    display: grid;
    gap: 12px;
    margin: 0 0 20px;
    padding: 24px 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.hao-page-hero__eyebrow {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(71, 85, 105, 0.82);
    font-weight: 700;
}

.hao-page-hero__title {
    margin: 0;
    font-size: clamp(1.9rem, 1.5rem + 1.4vw, 3rem);
    line-height: 1.08;
    color: var(--heo-fontcolor);
}

.hao-page-hero__desc {
    margin: 0;
    max-width: 64ch;
    color: var(--heo-secondtext);
    font-size: 15px;
    line-height: 1.8;
}

.hao-page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hao-page-hero__pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(79, 124, 255, 0.08);
    color: var(--heo-fontcolor);
    font-size: 13px;
    font-weight: 600;
}

html[data-theme='dark'] .hao-page-hero {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(2, 6, 23, 0.2);
}

html[data-theme='dark'] .hao-page-hero__eyebrow {
    color: rgba(71, 85, 105, 0.82);
}

html[data-theme='dark'] .hao-page-hero__desc {
    color: var(--heo-secondtext);
}

html[data-theme='dark'] .hao-page-hero__pill {
    background: rgba(79, 124, 255, 0.08);
    color: var(--heo-fontcolor);
}

@media (max-width: 768px) {
    .hao-page-hero {
        gap: 10px;
        margin: 0 0 16px;
        padding: 18px 16px;
        border-radius: 22px;
    }

    .hao-page-hero__title {
        font-size: clamp(1.6rem, 1.35rem + 1vw, 2.1rem);
    }

    .hao-page-hero__desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .hao-page-hero__pill {
        min-height: 32px;
        padding: 0 12px;
        font-size: 12px;
    }
}
