/* hero-n0602 — Canvas 版 hero 区域样式（原 index.html hero 相关样式迁移） */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: #000;
    color: #d0ccc4;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
                 -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(120, 140, 80, 0.4);
    color: #f2ecd9;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #2e2b25 #000;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
    background: #2e2b25;
    border: 2px solid #000;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: #453f33; }

/* ==================== HERO (Canvas) ==================== */
.hero-n0602 {
    position: relative;
    background: #000;
    overflow: hidden;
    opacity: 0;
    animation: heroRevealN0602 2.4s cubic-bezier(.25,.46,.45,.94) 0.2s forwards;
}

@keyframes heroRevealN0602 {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.cinema-n0602 {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    aspect-ratio: 2.35 / 1;
    overflow: hidden;
}

.hero-canvas-n0602 {
    position: absolute;
    inset: 0;
    display: block;
    cursor: default;
    touch-action: manipulation;
}

/* 底边渐隐，让画面"沉入"下方的黑色内容区 */
.cinema-n0602::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18%;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        #000 100%);
    pointer-events: none;
}

/* Navigation */
.top-nav-n0602 {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
}

.nav-brand-n0602 {
    font-size: 13px;
    letter-spacing: 3px;
    color: #d0c8a8;
    font-weight: 400;
}

.nav-links-n0602 {
    display: flex;
    gap: 36px;
}

.nav-links-n0602 a {
    position: relative;
    font-size: 12px;
    letter-spacing: 4px;
    color: #d0c8a8;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links-n0602 a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 4px;
    bottom: -7px;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(240, 232, 205, 0),
        rgba(240, 232, 205, 0.85),
        rgba(240, 232, 205, 0));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.nav-links-n0602 a:hover {
    color: #f2ead2;
}

.nav-links-n0602 a:hover::after {
    transform: scaleX(1);
}

/* ==================== CONTENT ==================== */
.content-wrap-n0602 {
    position: relative;
    background: #000;
}

.sect-n0602 {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 48px;
    text-align: center;
}

.sect-label-n0602 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 10px;
    color: #9a8e78;
    margin-bottom: 64px;
}

/* 抵消末字符的 letter-spacing，让文字在两条装饰线之间真正居中 */
.sect-label-n0602 span {
    margin-right: -10px;
}

.sect-label-n0602::before,
.sect-label-n0602::after {
    content: "";
    width: 46px;
    height: 1px;
    flex: 0 0 auto;
}

.sect-label-n0602::before {
    background: linear-gradient(90deg, transparent, #454033);
}

.sect-label-n0602::after {
    background: linear-gradient(90deg, #454033, transparent);
}

.sect-prose-n0602 {
    font-size: 16px;
    line-height: 2.4;
    color: #a8a298;
}

.sect-prose-n0602 strong {
    font-weight: 400;
    color: #d0c8a8;
}

/* 萤火式分隔：中心光点 + 两侧渐隐细线 */
.hr-n0602 {
    position: relative;
    width: 5px;
    height: 5px;
    border: none;
    border-radius: 50%;
    background: #8a7f63;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(255, 235, 140, 0.35);
}

.hr-n0602::before,
.hr-n0602::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 88px;
    height: 1px;
    margin-top: -0.5px;
}

.hr-n0602::before {
    right: 16px;
    background: linear-gradient(90deg, transparent, #3d382d);
}

.hr-n0602::after {
    left: 16px;
    background: linear-gradient(90deg, #3d382d, transparent);
}

.product-mark-n0602 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 6px;
    padding-left: 6px;
    color: #ddd2b2;
    margin-bottom: 24px;
    background: radial-gradient(55% 140% at 50% 50%,
        rgba(220, 195, 130, 0.09),
        transparent 72%);
}

.product-sub-n0602 {
    font-size: 14px;
    line-height: 2;
    color: #8a8478;
    margin-bottom: 56px;
}

.cta-n0602 {
    display: inline-block;
    padding: 15px 56px;
    border: 1px solid rgba(100, 130, 80, 0.35);
    color: #90b478;
    font-size: 12px;
    letter-spacing: 5px;
    text-decoration: none;
    transition: background 0.4s, border-color 0.4s, color 0.4s;
}

.cta-n0602:hover {
    background: rgba(100, 130, 80, 0.1);
    border-color: rgba(100, 130, 80, 0.6);
    color: #aecf98;
}

.cta-group-n0602 {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
}

.cta-btn-n0602 {
    position: relative;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    height: 56px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease,
                box-shadow 0.35s ease,
                color 0.35s ease;
}

.cta-btn-n0602:hover {
    transform: translateY(-2px);
}

.cta-appstore-n0602 {
    gap: 12px;
    padding: 0 22px 0 18px;
    color: #f5efdc;
    background:
        radial-gradient(120% 180% at 0% 0%, rgba(255, 235, 180, 0.08), transparent 55%),
        linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
    border: 1px solid rgba(208, 200, 168, 0.32);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 10px 30px rgba(0, 0, 0, 0.55);
}

.cta-appstore-n0602:hover {
    border-color: rgba(208, 200, 168, 0.6);
    background:
        radial-gradient(120% 180% at 0% 0%, rgba(255, 235, 180, 0.14), transparent 55%),
        linear-gradient(180deg, #262626 0%, #111 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 14px 36px rgba(0, 0, 0, 0.7);
}

.cta-appstore-icon-n0602 {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: #f5efdc;
}

.cta-appstore-text-n0602 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    white-space: nowrap;
}

.cta-appstore-text-n0602 small {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(208, 200, 168, 0.78);
    margin-bottom: 4px;
}

.cta-appstore-text-n0602 strong {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #f5efdc;
}

.cta-product-n0602 {
    gap: 12px;
    padding: 0 28px;
    color: #90b478;
    border: 1px solid rgba(100, 130, 80, 0.4);
    background: transparent;
    font-size: 13px;
    letter-spacing: 4px;
}

.cta-product-n0602:hover {
    color: #aecf98;
    border-color: rgba(140, 180, 110, 0.75);
    background: rgba(100, 130, 80, 0.08);
}

.cta-product-arrow-n0602 {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    transition: transform 0.35s ease;
}

.cta-product-n0602:hover .cta-product-arrow-n0602 {
    transform: translateX(4px);
}

/* ==================== FOOTER ==================== */
footer.footer-n0602 {
    padding: 56px 48px;
    text-align: center;
    border-top: 1px solid #1e1e1e;
}

footer.footer-n0602 p {
    font-size: 11px;
    line-height: 2.4;
    color: #585450;
    letter-spacing: 0.3px;
}

footer.footer-n0602 a {
    color: #6a6560;
    text-decoration: none;
    transition: color 0.3s;
}

.police-beian-n0602 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.police-beian-n0602 img {
    width: 13px;
    height: auto;
}

footer.footer-n0602 a:hover { color: #8a8580; }

/* ==================== SCROLL REVEAL ==================== */
/* reveal 类只由 JS 添加：无 JS 或不支持 IO 时，内容保持默认可见 */
.reveal-n0602 {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(.22,.61,.36,1) var(--rd, 0s),
                transform 0.9s cubic-bezier(.22,.61,.36,1) var(--rd, 0s);
}

.reveal-n0602.is-revealed-n0602 {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-n0602 {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==================== MOBILE ==================== */
.m-hero-n0602 { display: none; }

.m-egg-wrap-n0602 {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.egg-ripple-n0602 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 235, 140, var(--ea, 0.15));
    background: radial-gradient(circle,
        rgba(255, 245, 180, calc(var(--ea, 0.15) * 0.3)) 0%,
        transparent 70%);
    box-shadow: 0 0 var(--eg, 4px) rgba(255, 235, 140, var(--ea, 0.15)),
                0 0 calc(var(--eg, 4px) * 2) rgba(255, 220, 100, calc(var(--ea, 0.15) * 0.4));
    animation: eggPulseN0602 var(--ed, 0.9s) ease-out forwards;
    pointer-events: none;
}

@keyframes eggPulseN0602 {
    0%   { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(var(--es, 3)); opacity: 0; }
}

@media (max-width: 768px) {
    .cinema-n0602 { display: none; }

    .top-nav-n0602 { padding: 16px 20px; }
    .nav-brand-n0602 { font-size: 11px; }
    .nav-links-n0602 a { font-size: 11px; letter-spacing: 3px; }

    .hero-n0602 {
        padding: 0 0 24px;
    }

    .m-hero-n0602 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .m-hero-n0602 img {
        width: 220px;
        height: auto;
    }

    .m-hero-n0602 .m-tag-n0602 {
        font-size: 12px;
        letter-spacing: 8px;
        color: #8a8478;
    }

    .sect-n0602 {
        padding: 80px 24px;
    }

    .sect-label-n0602 {
        font-size: 12px;
        letter-spacing: 8px;
        margin-bottom: 40px;
        gap: 16px;
    }

    .sect-label-n0602 span { margin-right: -8px; }

    .sect-label-n0602::before,
    .sect-label-n0602::after { width: 34px; }

    .sect-prose-n0602 {
        font-size: 15px;
        line-height: 2.1;
    }

    .product-mark-n0602 {
        font-size: 24px;
        letter-spacing: 5px;
        padding-left: 5px;
    }

    .cta-group-n0602 {
        display: flex;
        width: 100%;
        gap: 12px;
    }

    .cta-btn-n0602 {
        flex: 1 1 auto;
        justify-content: center;
        height: 52px;
        min-width: 0;
    }

    .cta-product-n0602 {
        letter-spacing: 3px;
        padding: 0 18px;
    }

    .cta-appstore-n0602 {
        padding: 0 16px 0 14px;
    }

    .cta-appstore-text-n0602 strong { font-size: 15px; }
    .cta-appstore-text-n0602 small { font-size: 8px; letter-spacing: 1.5px; }
    .cta-appstore-icon-n0602 { width: 24px; height: 24px; }
}
