.hr-home {
    --hr-max: min(1680px, 100%);
    --hr-gutter: clamp(20px, 4vw, 80px);

    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    color: var(--hr-text);
    background: var(--rm-color-neutral-0);
    font-family: "Arimo", "Microsoft YaHei", "PingFang SC", sans-serif;
}

/* ── 通用容器 ─────────────────────────────────────────── */
.hr-container {
    width: 100%;
    max-width: var(--hr-max);
    margin: 0 auto;
    padding-left: var(--hr-gutter);
    padding-right: var(--hr-gutter);
    box-sizing: border-box;
}

/* ── 通用标题 ─────────────────────────────────────────── */
.hr-headline {
    margin: 0 0 20px;
    font-size: clamp(1.625rem, 3vw, 2.375rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--hr-text);
}

.hr-headline--light {
    color: var(--rm-color-neutral-0);
}

.hr-heading {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.hr-heading--light {
    color: var(--rm-color-neutral-0);
}

.hr-lead {
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1rem);
    line-height: 1.8;
    color: var(--hr-text-muted);
}

.hr-lead--light {
    color: rgba(255, 255, 255, 0.82);
}

/* ── 通用 section ────────────────────────────────────── */
.hr-section {
    width: 100%;
    padding: clamp(64px, 8vw, 112px) 0;
}

.hr-section__head {
    max-width: 720px;
    margin: 0 auto clamp(48px, 5vw, 64px);
    text-align: center;
}

.hr-section__head .hr-lead {
    margin-inline: auto;
}

/* ── 按钮 ─────────────────────────────────────────────── */
.hr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hr-btn:hover,
.hr-btn:focus,
.hr-btn:visited {
    text-decoration: none;
}

.hr-btn--light {
    color: var(--hr-brand);
    background: var(--rm-color-neutral-0);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.hr-btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.hr-btn--outline {
    color: var(--rm-color-neutral-0);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}

.hr-btn--outline:hover,
.hr-btn--outline:focus,
.hr-btn--outline:visited {
    color: var(--rm-color-neutral-0);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--rm-color-neutral-0);
}

/* ── 二级导航（粘性条） ───────────────────────────────── */
.hr-subnav {
    position: sticky;
    top: 85px;
    z-index: 90;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid color-mix(in srgb, var(--hr-brand) 12%, transparent);
}

.hr-subnav .hr-container {
    max-width: var(--hr-max);
    margin: 0 auto;
    padding: 0 var(--hr-gutter);
}

.hr-subnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hr-subnav a {
    display: block;
    padding: 16px 20px;
    color: var(--hr-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hr-subnav a.active,
.hr-subnav a:hover {
    color: var(--hr-brand);
    border-bottom-color: var(--hr-brand);
}

/* ── Hero 区域 ────────────────────────────────────────── */
.hr-hero {
    position: relative;
    min-height: clamp(520px, 88vh, 920px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hr-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-color: var(--rm-color-brand-900);
}

.hr-hero__img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hr-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 20, 18, 0.82) 0%, rgba(0, 40, 35, 0.35) 50%, rgba(0, 30, 26, 0.55) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 42%);
}

.hr-hero__inner {
    position: relative;
    z-index: 2;
    max-width: min(920px, 100%);
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(80px, 10vw, 120px);
}

.hr-hero__eyebrow {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hr-brand-bright);
}

.hr-hero__title {
    margin: 0 0 20px;
    font-size: clamp(1.875rem, 3.2vw, 3rem);
    font-weight: var(--rm-font-bold);
    line-height: 1.15;
    letter-spacing: var(--rm-tracking-tight);
    color: var(--rm-color-neutral-0);
}

.hr-hero__tagline {
    margin: 0 0 14px;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.hr-hero__subtitle {
    margin: 0 0 32px;
    max-width: 560px;
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.hr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hr-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 2;
    transform: translateX(-50%);
}

.hr-hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--hr-brand-bright), transparent);
    animation: hr-scroll-pulse 2s ease-in-out infinite;
}

@keyframes hr-scroll-pulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── 数据统计 ─────────────────────────────────────────── */
.hr-stats {
    padding: clamp(40px, 5vw, 56px) 0;
    background: var(--hr-brand-dark);
}

.hr-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hr-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.hr-stats__value {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--hr-brand-bright);
}

.hr-stats__label {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

/* ── 了解绿萌 ────────────────────────────────────────── */
.hr-intro {
    background: linear-gradient(180deg, var(--rm-color-neutral-0) 0%, var(--hr-brand-muted) 100%);
}

.hr-intro__grid {
    display: grid;
    gap: clamp(36px, 5vw, 64px);
    align-items: center;
}

.hr-intro__photo {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--hr-brand-muted);
    box-shadow: 0 16px 48px rgba(0, 77, 65, 0.12);
}

.hr-intro__photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* ── 企业文化 / DNA ──────────────────────────────────── */
.hr-culture {
    background: var(--rm-color-neutral-0);
}

.hr-culture__grid {
    display: grid;
    gap: 20px;
    margin: 0 0 clamp(48px, 6vw, 72px);
    padding: 0;
    list-style: none;
}

.hr-culture__card {
    padding: clamp(28px, 3vw, 36px);
    background: var(--hr-brand-muted);
    border-radius: 18px;
    border: 1px solid rgba(0, 133, 111, 0.1);
}

.hr-culture__card-title {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hr-brand);
}

.hr-culture__card-body {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--hr-text-muted);
}

.hr-dna {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(40px, 5vw, 56px);
    background: linear-gradient(135deg, var(--hr-brand-dark), var(--hr-brand));
    border-radius: 24px;
}

.hr-dna__title {
    margin: 0 0 20px;
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.hr-dna__lead,
.hr-dna__cta {
    margin: 0 0 12px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.hr-dna__cta {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--hr-brand-bright);
}

/* ── 招聘通道 ─────────────────────────────────────────── */
.hr-channels {
    background: var(--hr-brand-muted);
}

.hr-channels__grid {
    display: grid;
    gap: clamp(20px, 2.5vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hr-channel__link {
    display: flex;
    gap: clamp(20px, 3vw, 28px);
    align-items: flex-start;
    height: 100%;
    padding: clamp(32px, 4vw, 44px);
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 133, 111, 0.08);
    box-shadow: 0 4px 24px rgba(0, 77, 65, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hr-channel__link:hover,
.hr-channel__link:focus,
.hr-channel__link:visited {
    text-decoration: none;
    color: inherit;
}

.hr-channel__link:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 133, 111, 0.25);
    box-shadow: 0 24px 56px rgba(0, 77, 65, 0.12);
}

.hr-channel__link:hover .hr-channel__title {
    color: var(--hr-brand);
}

.hr-channel__link:hover .hr-channel__more {
    color: var(--hr-brand-light);
}

.hr-channel__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, var(--hr-brand), var(--hr-brand-light));
}

.hr-channel__icon svg,
.hr-channel__icon .citrus-icon,
.hr-channel__icon img {
    width: 28px;
    height: 28px;
}

.hr-channel__icon img {
    filter: brightness(0) invert(1);
}

.hr-channel__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hr-channel__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--hr-text);
}

.hr-channel__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--hr-text-muted);
}

.hr-channel__more {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hr-brand);
}

/* ── 在绿萌成长 ──────────────────────────────────────── */
.hr-growth {
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0, 168, 138, 0.2), transparent 60%),
        linear-gradient(135deg, #003a34 0%, #003a34 50%, #006b59 100%);
}

.hr-growth__head {
    max-width: 640px;
    margin-bottom: clamp(36px, 4vw, 52px);
}

.hr-growth__gallery {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hr-growth__img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ── 在绿萌生活 ──────────────────────────────────────── */
.hr-life {
    background: #fff;
}

.hr-life__title {
    text-align: center;
    margin-bottom: clamp(36px, 4vw, 52px);
}

.hr-life__grid {
    display: grid;
    gap: clamp(12px, 1.5vw, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, 1fr);
}

.hr-life__item {
    border-radius: 14px;
    overflow: hidden;
    min-height: 160px;
}

.hr-life__img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hr-life__item:hover .hr-life__img {
    transform: scale(1.04);
}

/* ── 薪酬与福利 ──────────────────────────────────────── */
.hr-benefits {
    background: var(--hr-brand-muted);
}

.hr-benefits__grid {
    display: grid;
    gap: clamp(16px, 2vw, 20px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hr-benefit {
    padding: clamp(24px, 3vw, 28px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 133, 111, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hr-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 77, 65, 0.08);
}

.hr-benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    color: var(--hr-brand);
    background: rgba(0, 133, 111, 0.1);
}

.hr-benefit__icon .citrus-icon,
.hr-benefit__icon img {
    width: 22px;
    height: 22px;
}

.hr-benefit__title {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hr-text);
}

.hr-benefit__body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--hr-text-muted);
}

/* ── CTA 区域 ─────────────────────────────────────────── */
.hr-cta {
    padding: clamp(36px, 4.5vw, 52px) 0;
    background: linear-gradient(135deg, var(--hr-brand) 0%, var(--hr-brand-dark) 100%);
}

.hr-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hr-cta__copy {
    max-width: 640px;
}

.hr-cta .hr-heading--light {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    line-height: 1.3;
}

.hr-cta .hr-lead--light {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.65;
}

.hr-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ═══════════════════════════════════════════════════════
   响应式布局
   ═══════════════════════════════════════════════════════ */

@media (min-width: 768px) {
    .hr-stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hr-culture__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hr-channels__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr-growth__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .hr-life__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hr-life__item--featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .hr-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 960px) {
    .hr-intro__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 640px) {
    .hr-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hr-benefits__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hr-hero {
        min-height: clamp(480px, 75vh, 640px);
    }

    .hr-hero__title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hr-hero__scroll-line {
        animation: none;
    }

    .hr-channel__link:hover,
    .hr-benefit:hover,
    .hr-life__item:hover .hr-life__img,
    .hr-btn--light:hover {
        transform: none;
    }
}

/* ── 隐藏 CTA 下方 <hr>（仅 hr-page 生效） ──────────── */
.hr-page #main-content + hr {
    display: none;
}

/* ==========================================
   Open Positions (Intl Jobs) — 国际化职位区域
   ========================================== */

.hr-intl-jobs {
    position: relative;
    padding: clamp(72px, 9vw, 120px) 0;
    background: linear-gradient(165deg, #003d32 0%, #005a49 42%, #007a62 100%);
    color: #fff;
    overflow: hidden;
}

.hr-intl-jobs__glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 60%;
    background: radial-gradient(at 30% 20%, rgba(255,255,255,0.14), transparent 62%);
    pointer-events: none;
}

.hr-intl-jobs__head {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
}

.hr-intl-jobs__eyebrow {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* ── 筛选表单 ──────────────────────────────── */
.hr-intl-jobs__filter {
    margin-bottom: clamp(32px, 4vw, 48px);
}

.hr-intl-jobs__filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
}

.hr-intl-jobs__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
}

.hr-intl-jobs__field select,
.hr-intl-jobs__field input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    background: rgba(255,255,255,0.96);
    color: #12352d;
    font-size: 0.9375rem;
    line-height: 1.4;
    box-sizing: border-box;
}

.hr-intl-jobs__field input::placeholder {
    color: rgba(18,53,45,0.45);
}

.hr-intl-jobs__field select:focus,
.hr-intl-jobs__field input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.85);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
}

.hr-intl-jobs__field select option {
    color: #1a1a1a;
}

.hr-intl-jobs__field--submit {
    display: flex;
    flex-direction: column;
}

.hr-intl-jobs__submit-label {
    display: block;
    height: 0;
    margin-bottom: 8px;
    visibility: hidden;
}

.hr-intl-jobs__submit {
    width: 100%;
    min-height: 48px;
    justify-content: center;
}

/* ── 职位卡片列表 ───────────────────────────── */
.hr-intl-jobs__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.hr-intl-job-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: clamp(20px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    color: #12352d;
    box-shadow: 0 18px 48px rgba(0,0,0,0.16);
    transition: transform 0.22s, box-shadow 0.22s;
}

.hr-intl-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.22);
}

.hr-intl-job-card__title {
    margin: 0 0 10px;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.35;
}

.hr-intl-job-card__title a {
    color: inherit;
    text-decoration: none;
}

.hr-intl-job-card__title a:hover {
    color: #00856f;
}

.hr-intl-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    color: #5a756e;
}

.hr-intl-job-card__meta li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: #00856f;
    vertical-align: middle;
}

.hr-intl-job-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

/* ── 空状态 ────────────────────────────────── */
.hr-intl-jobs__empty {
    text-align: center;
    padding: 48px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.28);
}

.hr-intl-jobs__empty p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.88);
}

/* ── 响应式 ────────────────────────────────── */
@media (max-width: 991px) {
    .hr-intl-jobs__filter-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hr-intl-jobs__filter-grid .hr-intl-jobs__field--submit {
        grid-column: 1 / -1;
    }
    .hr-intl-jobs__filter-grid .hr-intl-jobs__submit {
        width: 100%;
    }
    .hr-intl-job-card {
        grid-template-columns: 1fr;
    }
    .hr-intl-job-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .hr-intl-jobs__filter-grid {
        grid-template-columns: 1fr;
    }
}
