@import url("zhyp-brand-tokens.css");

/**
 * 和光通聘官网首页 — 品牌橙强调；底色素雅暖中性（非闷黄、非冷灰），分区有层次；Hero 保留点阵+淡噪点
 */
:root {
    --zhyp-ld-primary: var(--zhyp-brand-accent);
    --zhyp-ld-primary-light: var(--zhyp-brand-accent-light);
    --zhyp-ld-hover-text: var(--zhyp-brand-accent-hover);
    --zhyp-ld-text: var(--zhyp-brand-text);
    /* 次要字：暖灰褐透明度，易读不飘蓝 */
    --zhyp-ld-muted: rgba(62, 52, 44, 0.58);
    --zhyp-ld-bg: #f3f0ea;
    --zhyp-ld-surface: var(--zhyp-brand-surface);
    --zhyp-ld-border: var(--zhyp-brand-border);
    --zhyp-ld-border-strong: var(--zhyp-brand-border-strong);
    --zhyp-ld-btn-soft-bg: var(--zhyp-brand-btn-bg);
    --zhyp-ld-btn-soft-bg-hover: var(--zhyp-brand-btn-bg-hover);
    --zhyp-ld-btn-soft-border: var(--zhyp-brand-btn-border);
    --zhyp-ld-btn-soft-border-hover: var(--zhyp-brand-btn-border-hover);
    --zhyp-ld-btn-soft-text: var(--zhyp-brand-text);
    /* 卡片区分色（DESIGN 时间线 / 次要强调，降饱和） */
    --zhyp-ld-green: var(--zhyp-brand-success);
    --zhyp-ld-purple: #8b6b9e;
    --zhyp-ld-orange: var(--zhyp-brand-gold);
    --zhyp-ld-cyan: #5c7d8c;
    --zhyp-ld-nav-h: 64px;
    --zhyp-ld-radius: 8px;
    --zhyp-ld-shadow: rgba(90, 72, 55, 0.05) 0px 2px 20px, rgba(0, 0, 0, 0.03) 0px 1px 6px;
    --zhyp-ld-transition: 0.25s ease;
    --zhyp-ld-container: 1200px;
}

.zhyp-ld {
    margin: 0;
    font-family: var(--zhyp-font-ui);
    color: var(--zhyp-ld-text);
    background: var(--zhyp-ld-bg);
    -webkit-font-smoothing: antialiased;
}

.zhyp-ld * {
    box-sizing: border-box;
}

#zhyp-ld-features,
#zhyp-ld-scenarios,
#zhyp-ld-footer {
    scroll-margin-top: calc(var(--zhyp-ld-nav-h) + 12px);
}

.zhyp-ld a {
    color: inherit;
    text-decoration: none;
}

/* —— 顶栏 —— */
.zhyp-ld-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--zhyp-ld-nav-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(38, 37, 30, 0.08);
    box-shadow: 0 1px 0 rgba(38, 37, 30, 0.04);
}

.zhyp-ld-header-inner {
    max-width: var(--zhyp-ld-container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.zhyp-ld-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--zhyp-ld-text);
    letter-spacing: 0.04em;
    flex-shrink: 0;
    transition: color var(--zhyp-ld-transition);
}

.zhyp-ld-logo:hover,
.zhyp-ld-logo:focus {
    color: var(--zhyp-ld-hover-text);
}

.zhyp-ld-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.25;
}

.zhyp-ld-logo-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.zhyp-ld-logo-tagline {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--zhyp-ld-muted);
    letter-spacing: 0.14em;
}

.zhyp-ld-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    gap: 4px;
    flex-wrap: wrap;
}

.zhyp-ld-nav a {
    padding: 8px 14px;
    font-size: 14px;
    color: var(--zhyp-ld-text);
    border-radius: 6px;
    transition: color var(--zhyp-ld-transition), background var(--zhyp-ld-transition);
}

.zhyp-ld-nav a:hover {
    color: var(--zhyp-ld-primary);
    background: rgba(245, 78, 0, 0.07);
}

.zhyp-ld-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.zhyp-ld-header-console {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--zhyp-ld-text);
    border-radius: 6px;
    white-space: nowrap;
    transition: color var(--zhyp-ld-transition), background var(--zhyp-ld-transition);
}

.zhyp-ld-header-console:hover {
    color: var(--zhyp-ld-primary);
    background: rgba(245, 78, 0, 0.07);
}

.zhyp-ld-header-auth-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    margin-left: 2px;
    border-left: 1px solid var(--zhyp-ld-border);
}

.zhyp-ld-btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 38px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zhyp-ld-btn-soft-text);
    border: 1px solid var(--zhyp-ld-btn-soft-border);
    border-radius: 8px;
    cursor: pointer;
    background: var(--zhyp-ld-btn-soft-bg);
    box-shadow: 0 1px 2px rgba(90, 72, 55, 0.06);
    transition:
        background var(--zhyp-ld-transition),
        border-color var(--zhyp-ld-transition),
        color var(--zhyp-ld-transition),
        box-shadow var(--zhyp-ld-transition);
}

.zhyp-ld-btn-login:hover {
    background: #ffe8d4;
    border-color: rgba(245, 78, 0, 0.32);
    color: var(--zhyp-ld-primary);
    box-shadow: rgba(90, 72, 55, 0.07) 0px 4px 12px;
}

/* 顶栏登录：淡暖白底，比大块蜜桃色更克制 */
.zhyp-ld .zhyp-ld-btn-login {
    background: #fffaf4;
    border: 1px solid rgba(180, 140, 100, 0.22);
    color: var(--zhyp-ld-text);
}

/* —— Banner：暖白渐变 + 点阵 + 极淡噪点；底边品牌色带区分能力区 —— */
.zhyp-ld-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 52px 24px 60px;
    text-align: center;
    background:
        radial-gradient(ellipse 82% 58% at 50% -26%, rgba(255, 200, 150, 0.22) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #faf6f0 100%);
    border-bottom: 2px solid rgba(245, 78, 0, 0.28);
    box-shadow: none;
}

/* 点阵：双层错位圆点；叠加 SVG 噪点作纸感纹理 */
.zhyp-ld-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E"),
        radial-gradient(rgba(95, 78, 62, 0.1) 1.15px, transparent 1.35px),
        radial-gradient(rgba(95, 78, 62, 0.05) 0.85px, transparent 1.05px);
    background-size:
        240px 240px,
        32px 32px,
        32px 32px;
    background-position:
        0 0,
        0 0,
        16px 16px;
    mix-blend-mode: multiply;
}

/* 减弱动效偏好时去掉噪点层，仅保留点阵（略降对比） */
@media (prefers-reduced-motion: reduce) {
    .zhyp-ld-hero::before {
        background-image:
            radial-gradient(rgba(95, 78, 62, 0.085) 1.15px, transparent 1.35px),
            radial-gradient(rgba(95, 78, 62, 0.042) 0.85px, transparent 1.05px);
        background-size: 32px 32px, 32px 32px;
        background-position: 0 0, 16px 16px;
        mix-blend-mode: normal;
    }
}

.zhyp-ld-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.zhyp-ld-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-hero-sub {
    margin: 0 0 20px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(38, 37, 30, 0.76);
    line-height: 1.65;
}

.zhyp-ld-hero-lead {
    margin: 0 0 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.9375rem, 1.85vw, 1.0625rem);
    font-weight: 600;
    color: rgba(38, 37, 30, 0.68);
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.zhyp-ld-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
    margin-bottom: 8px;
}

.zhyp-ld-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    font-family: inherit;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        transform var(--zhyp-ld-transition),
        box-shadow var(--zhyp-ld-transition),
        border-color var(--zhyp-ld-transition),
        background var(--zhyp-ld-transition),
        color var(--zhyp-ld-transition);
}

.zhyp-ld-hero-btn--primary {
    border: 1px solid #d9420a;
    color: #fff;
    background: var(--zhyp-ld-primary);
    box-shadow: rgba(245, 78, 0, 0.22) 0 4px 14px;
}

.zhyp-ld-hero-btn--primary:hover {
    transform: translateY(-2px);
    background: #e04200;
    border-color: #c73800;
    color: #fff;
    box-shadow: rgba(245, 78, 0, 0.28) 0 8px 22px;
}

.zhyp-ld-hero-btn--secondary {
    background: var(--zhyp-ld-surface);
    color: var(--zhyp-ld-text);
    border: 1px solid var(--zhyp-ld-border-strong);
    box-shadow: var(--zhyp-ld-shadow);
}

.zhyp-ld-hero-btn--secondary:hover {
    transform: translateY(-2px);
    background: #fff5eb;
    border-color: var(--zhyp-ld-primary);
    color: var(--zhyp-ld-primary);
}

.zhyp-ld-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 520px;
    margin: 20px auto 0;
    padding: 0;
    font-size: 12px;
    color: rgba(62, 52, 44, 0.55);
    line-height: 1.5;
}

.zhyp-ld-hero-tags span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.95);
    border: 1px solid rgba(180, 140, 100, 0.18);
    box-shadow: none;
    letter-spacing: 0.02em;
    color: rgba(38, 37, 30, 0.72);
}

/* —— 内容区（即时设计：大留白、区头居中） —— */
.zhyp-ld-section {
    max-width: var(--zhyp-ld-container);
    margin: 0 auto;
    padding: 72px 24px 80px;
}

.zhyp-ld-section-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.zhyp-ld-section-head--title-only {
    margin-bottom: 40px;
}

.zhyp-ld-section-head--title-only .zhyp-ld-section-title {
    margin-bottom: 0;
}

.zhyp-ld-section-title {
    margin: 0 0 12px;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--zhyp-ld-text);
    letter-spacing: -0.02em;
}

.zhyp-ld-section-desc {
    margin: 0;
    font-size: 15px;
    color: rgba(38, 37, 30, 0.66);
    line-height: 1.65;
}

/* 核心能力：暖白画板，与 Hero 奶油底、页身 #f3f0ea 形成阶梯 */
.zhyp-ld-section--capabilities {
    padding-bottom: 56px;
    background: #fffdf9;
    border-top: 1px solid rgba(245, 78, 0, 0.12);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.6);
}

.zhyp-ld-features {
    display: grid;
    gap: 20px;
}

/* 核心能力 4×2 */
.zhyp-ld-features--grid8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.zhyp-ld-feature-card {
    display: block;
    border-radius: var(--zhyp-ld-radius);
    padding: 22px 20px 26px;
    border: 1px solid var(--zhyp-ld-border);
    box-shadow: var(--zhyp-ld-shadow);
    transition:
        transform var(--zhyp-ld-transition),
        box-shadow var(--zhyp-ld-transition),
        border-color var(--zhyp-ld-transition);
    opacity: 0;
    transform: translateY(16px);
}

.zhyp-ld--ready .zhyp-ld-feature-card {
    opacity: 1;
    transform: translateY(0);
}

.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(1) { transition-delay: 0.04s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(2) { transition-delay: 0.08s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(3) { transition-delay: 0.12s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(4) { transition-delay: 0.16s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(5) { transition-delay: 0.2s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(6) { transition-delay: 0.24s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(7) { transition-delay: 0.28s; }
.zhyp-ld--ready .zhyp-ld-feature-card:nth-child(8) { transition-delay: 0.32s; }

.zhyp-ld-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(38, 37, 30, 0.08) 0px 24px 48px, rgba(0, 0, 0, 0.05) 0px 12px 24px;
    border-color: rgba(38, 37, 30, 0.12);
}

/* 白底 + 极淡色条，避免整块暖黄渐变挡字 */
.zhyp-ld-feature-card--blue {
    background: linear-gradient(165deg, #ffffff 0%, rgba(190, 218, 245, 0.14) 50%, #ffffff 100%);
}

.zhyp-ld-feature-card--purple {
    background: linear-gradient(165deg, #ffffff 0%, rgba(230, 200, 245, 0.12) 50%, #ffffff 100%);
}

.zhyp-ld-feature-card--green {
    background: linear-gradient(165deg, #ffffff 0%, rgba(190, 225, 195, 0.14) 50%, #ffffff 100%);
}

.zhyp-ld-feature-card--orange {
    background: linear-gradient(165deg, #ffffff 0%, rgba(255, 210, 170, 0.12) 50%, #ffffff 100%);
}

.zhyp-ld-feature-card--cyan {
    background: linear-gradient(165deg, #ffffff 0%, rgba(185, 220, 230, 0.12) 50%, #ffffff 100%);
}

.zhyp-ld-feature-illus {
    width: 100%;
    height: 104px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zhyp-ld-feature-illus svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(38, 37, 30, 0.08));
}

.zhyp-ld-feature-card--purple .zhyp-ld-feature-illus svg {
    filter: drop-shadow(0 6px 16px rgba(139, 107, 158, 0.15));
}

.zhyp-ld-feature-card--green .zhyp-ld-feature-illus svg {
    filter: drop-shadow(0 6px 16px rgba(31, 138, 101, 0.14));
}

.zhyp-ld-feature-card--orange .zhyp-ld-feature-illus svg {
    filter: drop-shadow(0 6px 16px rgba(192, 133, 50, 0.14));
}

.zhyp-ld-feature-card--cyan .zhyp-ld-feature-illus svg {
    filter: drop-shadow(0 6px 16px rgba(92, 125, 140, 0.14));
}

.zhyp-ld-feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--zhyp-ld-text);
    line-height: 1.35;
}

.zhyp-ld-feature-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(38, 37, 30, 0.66);
}

/* —— 服务场景：暖灰褐分区 + 淡点阵，与上下区块区分又不发冷 —— */
.zhyp-ld-section--scenarios {
    background-image:
        radial-gradient(rgba(95, 78, 62, 0.055) 1px, transparent 1.12px),
        linear-gradient(180deg, #e8e2d8 0%, #f0ebe4 100%);
    background-size: 26px 26px, 100% 100%;
    background-position: 0 0, 0 0;
    border-top: 1px solid rgba(120, 95, 75, 0.14);
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.zhyp-ld-section--scenarios .zhyp-ld-section-head {
    max-width: var(--zhyp-ld-container);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.zhyp-ld-scenario-grid {
    max-width: var(--zhyp-ld-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.zhyp-ld-scenario-card {
    display: block;
    position: relative;
    padding: 28px 24px 32px;
    border-radius: var(--zhyp-ld-radius);
    background: var(--zhyp-ld-surface);
    border: 1px solid var(--zhyp-ld-border);
    box-shadow: var(--zhyp-ld-shadow);
    transition: transform var(--zhyp-ld-transition), box-shadow var(--zhyp-ld-transition), border-color var(--zhyp-ld-transition);
    overflow: hidden;
}

.zhyp-ld-scenario-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--zhyp-ld-radius) var(--zhyp-ld-radius) 0 0;
    background: var(--zhyp-ld-primary);
    opacity: 0.9;
}

.zhyp-ld-scenario-card--rpo::before {
    background: linear-gradient(90deg, #26251e, #f54e00);
}

.zhyp-ld-scenario-card--hunter::before {
    background: linear-gradient(90deg, #8b6b9e, #c0a8dd);
}

.zhyp-ld-scenario-card--corp::before {
    background: linear-gradient(90deg, #1f8a65, #9fc9a2);
}

.zhyp-ld-scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: rgba(38, 37, 30, 0.08) 0px 24px 48px, rgba(0, 0, 0, 0.05) 0px 12px 24px;
    border-color: rgba(38, 37, 30, 0.12);
}

.zhyp-ld-scenario-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 4px 10px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--zhyp-ld-primary);
    background: rgba(245, 78, 0, 0.1);
    border-radius: 6px;
}

.zhyp-ld-scenario-card--hunter .zhyp-ld-scenario-badge {
    color: var(--zhyp-ld-purple);
    background: rgba(139, 107, 158, 0.12);
}

.zhyp-ld-scenario-card--corp .zhyp-ld-scenario-badge {
    color: var(--zhyp-ld-green);
    background: rgba(31, 138, 101, 0.12);
}

.zhyp-ld-scenario-card h3 {
    margin: 0 0 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-scenario-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(38, 37, 30, 0.65);
}

/* —— 页脚：略深暖灰，与场景区再拉开一档 —— */
.zhyp-ld-footer {
    background: #ddd5cb;
    border-top: 2px solid rgba(120, 95, 75, 0.2);
    padding: 40px 24px 28px;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-footer-inner {
    max-width: var(--zhyp-ld-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1100px) {
    .zhyp-ld-features--grid8 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .zhyp-ld-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.zhyp-ld-footer-brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--zhyp-ld-text);
    margin-bottom: 8px;
}

.zhyp-ld-footer-meta {
    font-size: 13px;
    color: var(--zhyp-ld-muted);
    line-height: 1.7;
}

.zhyp-ld-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 14px;
}

.zhyp-ld-footer-links a {
    color: rgba(38, 37, 30, 0.88);
    font-weight: 500;
}

.zhyp-ld-footer-links a:hover {
    color: var(--zhyp-ld-primary);
}

.zhyp-ld-footer-copy {
    font-size: 12px;
    color: rgba(62, 52, 44, 0.6);
    line-height: 1.6;
    text-align: right;
}

.zhyp-ld-footer-legal > div {
    margin-top: 4px;
}

.zhyp-ld-footer-legal > div:first-child {
    margin-top: 0;
}

.zhyp-ld-footer-legal a {
    color: rgba(62, 52, 44, 0.6);
    text-decoration: none;
}

.zhyp-ld-footer-legal a:hover {
    color: var(--zhyp-ld-primary);
    text-decoration: underline;
}

.zhyp-ld-footer-psb a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    vertical-align: middle;
    color: rgba(62, 52, 44, 0.6);
    text-decoration: none;
}

.zhyp-ld-footer-psb a:hover {
    color: var(--zhyp-ld-primary);
}

.zhyp-ld-beian-mps-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    .zhyp-ld-footer-copy {
        text-align: center;
    }

    .zhyp-ld-footer-psb a {
        justify-content: center;
    }
}

/* —— 移动端导航 —— */
.zhyp-ld-nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.zhyp-ld-nav-toggle-label {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--zhyp-ld-border);
    cursor: pointer;
    font-size: 20px;
    color: var(--zhyp-ld-text);
}

@media (max-width: 900px) {
    .zhyp-ld-nav-toggle-label {
        display: flex;
    }

    .zhyp-ld-nav {
        display: none;
        position: absolute;
        top: var(--zhyp-ld-nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--zhyp-ld-surface);
        border-bottom: 1px solid var(--zhyp-ld-border);
        padding: 12px 16px 16px;
        box-shadow: var(--zhyp-ld-shadow);
    }

    .zhyp-ld-nav-toggle:checked ~ .zhyp-ld-nav {
        display: flex;
    }

    .zhyp-ld-header-inner {
        position: relative;
        flex-wrap: wrap;
    }

    .zhyp-ld-header-console {
        padding: 6px 8px;
        font-size: 13px;
    }

    .zhyp-ld-header-auth-group {
        padding-left: 10px;
        gap: 8px;
    }

    .zhyp-ld-btn-login,
    .zhyp-ld-btn-register {
        min-width: 76px;
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }

    .zhyp-ld-scenario-grid {
        grid-template-columns: 1fr;
    }

    .zhyp-ld-hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .zhyp-ld-hero-btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .zhyp-ld-features--grid8 {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zhyp-ld-feature-card,
    .zhyp-ld-scenario-card,
    .zhyp-ld-btn-login,
    .zhyp-ld-hero-btn,
    .zhyp-ld-auth-send,
    .zhyp-ld-auth-submit {
        transition: none;
    }

    .zhyp-ld-hero-btn:hover {
        transform: none;
    }

    .zhyp-ld-auth-send:hover:not(:disabled),
    .zhyp-ld-auth-submit:hover {
        transform: none;
    }

    .zhyp-ld-feature-card {
        opacity: 1;
        transform: none;
    }

    .zhyp-ld-feature-card:hover,
    .zhyp-ld-scenario-card:hover {
        transform: none;
    }
}

/* —— 首页登录 / 注册弹层 —— */
.zhyp-ld-auth {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.zhyp-ld-auth.is-open {
    opacity: 1;
    visibility: visible;
}

.zhyp-ld-auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(38, 37, 30, 0.42);
    backdrop-filter: blur(4px);
}

.zhyp-ld-auth-dialog {
    position: relative;
    width: min(700px, calc(100% - 32px));
    max-height: min(92vh, 720px);
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(38, 37, 30, 0.1);
    box-shadow:
        0 24px 56px rgba(38, 37, 30, 0.12),
        0 0 0 1px rgba(38, 37, 30, 0.04);
    overflow: hidden;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.zhyp-ld-auth.is-open .zhyp-ld-auth-dialog {
    transform: translateY(0) scale(1);
}

.zhyp-ld-auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(38, 37, 30, 0.06);
    color: var(--zhyp-ld-muted);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.zhyp-ld-auth-close:hover {
    background: rgba(38, 37, 30, 0.1);
    color: var(--zhyp-ld-text);
}

.zhyp-ld-auth-corner {
    position: absolute;
    top: 14px;
    right: 56px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 1px solid var(--zhyp-ld-border);
    border-radius: 10px;
    background: #f7f7f4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zhyp-ld-text);
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.zhyp-ld-auth-corner:hover {
    border-color: var(--zhyp-ld-border-strong);
    background: #ebeae5;
    color: var(--zhyp-ld-primary);
}

.zhyp-ld-auth-corner svg {
    width: 22px;
    height: 22px;
}

.zhyp-ld-auth-aside {
    flex: 0 0 248px;
    width: 248px;
    min-width: 0;
    padding: 32px 20px;
    background: linear-gradient(180deg, #e8eaee 0%, #f0f1f3 100%);
    border-right: 1px solid rgba(38, 37, 30, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.zhyp-ld-auth-aside-tagline {
    margin: 0;
    text-align: center;
    line-height: 1.45;
}

.zhyp-ld-auth-aside-name {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--zhyp-ld-text);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.zhyp-ld-auth-aside-sub {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--zhyp-ld-primary);
    letter-spacing: 0.18em;
}

.zhyp-ld-auth-body {
    flex: 1;
    min-width: 0;
    padding: 40px 24px 28px;
    overflow-y: auto;
    position: relative;
    background: #ffffff;
}

.zhyp-ld-auth-title {
    margin: 0 0 4px;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-auth-desc {
    margin: 0 0 18px;
    font-size: 14px;
    color: rgba(38, 37, 30, 0.68);
    line-height: 1.55;
}

.zhyp-ld-auth-panels {
    position: relative;
}

.zhyp-ld-auth-panel {
    display: none;
}

.zhyp-ld-auth-panel.is-active {
    display: block;
}

.zhyp-ld-auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--zhyp-ld-border);
}

.zhyp-ld-auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 15px;
    color: var(--zhyp-ld-muted);
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    position: relative;
    transition: color 0.2s ease;
}

.zhyp-ld-auth-tab:hover {
    color: var(--zhyp-ld-text);
}

.zhyp-ld-auth-tab.is-active {
    color: var(--zhyp-ld-primary);
    font-weight: 600;
}

.zhyp-ld-auth-tab.is-active::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -1px;
    height: 3px;
    background: var(--zhyp-ld-primary);
    border-radius: 3px 3px 0 0;
}

.zhyp-ld-auth-panel form {
    margin: 0;
}

.zhyp-ld-auth-field {
    margin-bottom: 14px;
}

.zhyp-ld-auth-field:has(+ .zhyp-ld-auth-submit) {
    margin-bottom: 10px;
}

.zhyp-ld-auth-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-auth-field input[type="text"],
.zhyp-ld-auth-field input[type="password"],
.zhyp-ld-auth-field input[type="tel"] {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--zhyp-ld-border);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.zhyp-ld-auth-field input:focus {
    outline: none;
    border-color: rgba(245, 78, 0, 0.35);
    box-shadow: rgba(245, 78, 0, 0.12) 0 0 0 3px, rgba(0, 0, 0, 0.06) 0px 4px 12px;
}

.zhyp-ld-auth-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.zhyp-ld-auth-row input {
    flex: 1;
}

.zhyp-ld-auth-send {
    flex-shrink: 0;
    min-width: 118px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--zhyp-ld-btn-soft-border);
    border-radius: 10px;
    background: var(--zhyp-ld-btn-soft-bg);
    color: var(--zhyp-ld-btn-soft-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.zhyp-ld-auth-send:hover:not(:disabled) {
    background: var(--zhyp-ld-btn-soft-bg-hover);
    border-color: var(--zhyp-ld-btn-soft-border-hover);
    color: var(--zhyp-ld-hover-text);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.zhyp-ld-auth-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #e8e8e8;
    color: #bfbfbf;
}

.zhyp-ld-auth-submit {
    width: 100%;
    height: 46px;
    margin-top: 4px;
    border: 1px solid #d9420a;
    border-radius: 8px;
    background: var(--zhyp-ld-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: rgba(245, 78, 0, 0.22) 0 4px 14px;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.zhyp-ld-auth-submit:hover {
    background: #e04200;
    border-color: #c73800;
    color: #ffffff;
    box-shadow: rgba(245, 78, 0, 0.28) 0 8px 22px;
}

.zhyp-ld-auth-hint {
    margin: 10px 0 0;
    font-size: 12px;
    color: rgba(38, 37, 30, 0.58);
    text-align: center;
    line-height: 1.5;
}

.zhyp-ld-auth-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--zhyp-ld-border);
    font-size: 14px;
    color: rgba(38, 37, 30, 0.62);
    text-align: center;
}

.zhyp-ld-auth-footer a {
    color: var(--zhyp-ld-primary);
    font-weight: 600;
    margin-left: 4px;
}

.zhyp-ld-auth-footer a:hover {
    color: var(--zhyp-ld-hover-text);
    text-decoration: underline;
}

.zhyp-ld-auth-scan {
    text-align: center;
    padding: 8px 0 16px;
}

.zhyp-ld-auth-scan img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--zhyp-ld-border);
    background: #fff;
}

.zhyp-ld-auth-scan-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    border-radius: 8px;
    border: 2px dashed var(--zhyp-ld-border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zhyp-ld-muted);
    font-size: 13px;
    padding: 16px;
    line-height: 1.5;
    background: #f7f7f4;
}

.zhyp-ld-auth-scan p {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--zhyp-ld-text);
}

.zhyp-ld-auth-scan .zhyp-ld-auth-back {
    margin-top: 20px;
    border: none;
    background: none;
    color: var(--zhyp-ld-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.zhyp-ld-auth-scan .zhyp-ld-auth-back:hover {
    color: var(--zhyp-ld-hover-text);
    text-decoration: underline;
}

.zhyp-ld-auth-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.zhyp-ld-auth-extra label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--zhyp-ld-muted);
    font-weight: normal;
}

.zhyp-ld-auth-extra a {
    color: var(--zhyp-ld-primary);
}

.zhyp-ld-auth-extra a:hover {
    color: var(--zhyp-ld-hover-text);
}

.zhyp-ld-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    height: 38px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--zhyp-ld-text);
    background: var(--zhyp-ld-surface);
    border: 1px solid var(--zhyp-ld-border-strong);
    border-radius: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    box-shadow: var(--zhyp-ld-shadow);
}

.zhyp-ld-btn-register:hover {
    background: #faf6f0;
    border-color: var(--zhyp-ld-primary);
    color: var(--zhyp-ld-primary);
}

@media (max-width: 768px) {
    .zhyp-ld-auth-dialog {
        flex-direction: column;
        max-height: 94vh;
    }

    .zhyp-ld-auth-aside {
        flex: 0 1 auto;
        width: 100%;
        min-width: 0;
        padding: 24px 20px 16px;
        border-right: none;
        border-bottom: 1px solid var(--zhyp-ld-border);
    }

    .zhyp-ld-auth-body {
        padding: 28px 20px 24px;
    }

    .zhyp-ld-auth-corner {
        right: 52px;
    }
}
