/* ============================================
   侯宇梵个人简历 - Lithos Hero + 简约正文
   ============================================ */

/* ===== 基础重置 ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-alt: #fafafa;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --accent: #1a1a1a;
    --accent-soft: #f0f0f0;
    --accent-hover: #000000;
    --border-color: #e8e8e8;
    --border-strong: #d0d0d0;
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --container-max: 960px;
    --section-pad: 96px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.font-playfair { font-family: 'Playfair Display', serif; }

/* ===== Hero 动画关键帧 ===== */
@keyframes heroReveal {
    0% { opacity: 0; transform: translateY(28px); filter: blur(12px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
    0% { transform: scale(1.12); }
    100% { transform: scale(1); }
}
@keyframes scrollDownHero {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-anim {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-reveal { animation-name: heroReveal; animation-duration: 1.1s; }
.hero-fade { animation-name: heroFadeUp; animation-duration: 1s; }
.hero-zoom { animation: heroZoom 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
    .hero-anim, .hero-zoom { animation: none; opacity: 1; }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
    height: 92svh;
    min-height: 640px;
    max-height: 900px;
    background: #06050b;
    isolation: isolate;
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    --spotlight-size: 280px;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 40;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, transparent 36%, transparent 64%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-base-image,
.hero-reveal-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-base-image {
    background-image: url('hero-base-shoutu-v4.webp');
    z-index: 10;
}

.hero-reveal-image {
    background-image: url('hero-reveal-ditu-aligned-v4.webp');
    z-index: 30;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
    will-change: opacity, -webkit-mask-image, mask-image;
    -webkit-mask-image: radial-gradient(
        circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
        #000 0%,
        #000 38%,
        rgba(0, 0, 0, 0.78) 56%,
        rgba(0, 0, 0, 0.28) 74%,
        transparent 100%
    );
    mask-image: radial-gradient(
        circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y),
        #000 0%,
        #000 38%,
        rgba(0, 0, 0, 0.78) 56%,
        rgba(0, 0, 0, 0.28) 74%,
        transparent 100%
    );
}

.hero-section.is-revealing .hero-reveal-image {
    opacity: 1;
}

/* ===== 顶部导航 ===== */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-wordmark {
    color: #fff;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.nav-center {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 8px;
    gap: 4px;
    align-items: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 768px) {
    .nav-center { display: flex; }
}

.nav-pill-link {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    cursor: pointer;
}

.nav-pill-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-pill-link.active {
    color: #fff;
}

.nav-signup {
    display: none;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    transition: background 0.2s;
}

.nav-signup:hover { background: #f0f0f0; }

@media (min-width: 768px) {
    .nav-signup { display: block; }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .nav-toggle { display: none; }
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero 标题 ===== */
.hero-heading {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 0 48px;
    pointer-events: none;
    z-index: 50;
}

.hero-heading h1 {
    color: #fff;
    line-height: 0.95;
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
}

.hero-line-1 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 88px;
    letter-spacing: 0;
    animation-delay: 0.25s;
}

.hero-line-2 {
    display: block;
    font-weight: 500;
    font-size: 64px;
    letter-spacing: 0;
    margin-top: -4px;
    animation-delay: 0.42s;
    text-transform: uppercase;
}

/* ===== Hero 底部文字 ===== */
.hero-bottom-left {
    position: absolute;
    bottom: 56px;
    left: 40px;
    max-width: 260px;
    z-index: 50;
    animation-delay: 0.7s;
}

@media (max-width: 640px) {
    .hero-bottom-left { display: none; }
}

.hero-bottom-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.hero-bottom-right {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    animation-delay: 0.85s;
}

@media (min-width: 640px) {
    .hero-bottom-right {
        bottom: 96px;
        left: auto;
        right: 40px;
        max-width: 260px;
    }
}

.hero-bottom-right p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.btn-start-digging {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 100px;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-start-digging:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
}

/* ===== 滚动提示 ===== */
.scroll-hint-hero {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 50;
}

.scroll-hint-hero span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    font-family: 'Inter', monospace;
}

.scroll-line-hero {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollDownHero 2s ease-in-out infinite;
}

@media (max-width: 640px) {
    .scroll-hint-hero { display: none; }
}

@media (hover: none) and (pointer: coarse) {
    .hero-section {
        --spotlight-x: 48%;
        --spotlight-y: 48%;
        --spotlight-size: 180px;
    }
}

/* ===== 通用 Section ===== */
.section {
    padding: var(--section-pad) 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 56px;
}

.section-num {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
}

/* ===== 关于我 ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.about-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== 技能 ===== */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px 32px;
}

.skill-group-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.skill-info span:first-child {
    color: var(--text-primary);
    min-width: 0;
    overflow-wrap: anywhere;
}

.skill-info span:last-child {
    color: var(--text-muted);
    flex-shrink: 0;
    font-size: 13px;
}

.skill-bar {
    height: 4px;
    background: var(--accent-soft);
    border-radius: 100px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== 时间线 ===== */
.timeline {
    position: relative;
    max-width: 640px;
}

.timeline-item {
    position: relative;
    padding-left: 32px;
    padding-bottom: 40px;
    border-left: 1px solid var(--border-color);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -5px;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
}

.timeline-date {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: inline-block;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.timeline-org {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== 联系区 ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: padding 0.2s;
}

.contact-method:hover { padding-left: 4px; }

.method-icon {
    font-size: 18px;
    width: 32px;
    text-align: center;
}

.method-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-value {
    font-size: 14px;
    font-weight: 500;
    overflow-wrap: anywhere;
}

/* ===== CTA 卡片（AI 加油站按钮） ===== */
.cta-card {
    background: var(--accent);
    color: #fff;
    padding: 40px 32px;
    border-radius: 8px;
}

.cta-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.btn-newapi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-newapi:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-arrow {
    transition: transform 0.2s;
}

.btn-newapi:hover .btn-arrow {
    transform: translateX(3px);
}

/* ===== AI 中转站承接页 ===== */
.project-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.project-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 48px;
    align-items: center;
}

.project-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2f6f5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.project-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.project-copy h3 {
    max-width: 640px;
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.project-copy p {
    max-width: 680px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.85;
}

.project-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn-newapi {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.btn-newapi:hover {
    background: #2f6f5f;
    border-color: #2f6f5f;
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #2f6f5f;
    color: #2f6f5f;
    transform: translateY(-1px);
}

.project-panel {
    background: #101412;
    color: #fff;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 20px 54px rgba(17, 17, 17, 0.16);
}

.panel-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-row:first-child {
    padding-top: 0;
}

.panel-row span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.panel-row strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
}

.panel-note {
    margin-top: 22px;
    padding: 16px;
    border-radius: 6px;
    background: rgba(91, 154, 134, 0.18);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.7;
}

.value-grid,
.scenario-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.value-card,
.scenario-card,
.faq-grid article {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 26px;
    min-width: 0;
}

.value-num {
    display: block;
    color: #2f6f5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.value-card h3,
.scenario-card h3,
.faq-grid h4 {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.value-card p,
.scenario-card p,
.faq-grid p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.scenario-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}

.scenario-card {
    background: #fafafa;
}

.steps-panel {
    position: sticky;
    top: 96px;
    background: #f0f4ef;
    border: 1px solid #dbe6dd;
    border-radius: 8px;
    padding: 28px;
}

.steps-panel h3 {
    font-size: 24px;
    line-height: 1.28;
    margin-bottom: 22px;
}

.steps-list {
    list-style: none;
    display: grid;
    gap: 18px;
}

.steps-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    align-items: start;
}

.steps-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.steps-list p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    color: #2f6f5f;
    font-weight: 700;
    font-size: 14px;
}

.contact-conversion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: center;
}

.contact-conversion .contact-card {
    min-width: 0;
}

.contact-conversion .contact-title {
    max-width: 560px;
}

.qr-panel {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.qr-panel img {
    display: block;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1.18;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
}

.qr-panel p {
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.qr-panel strong {
    color: var(--text-primary);
}

.faq-block {
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.faq-block h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

/* ===== 页脚 ===== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
    .hero-line-1 { font-size: 64px; }
    .hero-line-2 { font-size: 44px; }
    .section-title { font-size: 30px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }
    .hero-section {
        height: 88svh;
        min-height: 620px;
        --spotlight-size: 140px;
    }
    .hero-base-image { background-position: 18% top; }
    .hero-reveal-image { background-position: 74% top; }
    .hero-nav { padding: 14px 16px; }
    .nav-center {
        display: flex;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        transform: translateY(-6px);
        flex-direction: column;
        align-items: stretch;
        border-radius: 8px;
        background: rgba(8, 8, 12, 0.92);
        padding: 10px;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    body.menu-open .nav-center {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-signup { display: none !important; }
    .nav-toggle { display: flex !important; }
    .nav-pill-link { padding: 10px 14px; text-align: center; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .project-hero,
    .scenario-layout,
    .contact-conversion {
        grid-template-columns: 1fr;
    }
    .steps-panel {
        position: static;
    }
    .hero-bottom-right { left: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .hero-heading {
        top: 9%;
        align-items: flex-start;
        text-align: left;
        padding: 0 20px;
    }
    .hero-heading h1 { line-height: 1.06; }
    .hero-line-1 { font-size: 44px; }
    .hero-line-2 { font-size: 28px; margin-top: 4px; }
    .hero-bottom-right p { max-width: 320px; }
    .btn-start-digging { padding: 11px 22px; }
    .project-copy h3 { font-size: 30px; }
    .project-panel,
    .value-card,
    .scenario-card,
    .steps-panel,
    .faq-grid article {
        padding: 22px;
    }
    .value-grid,
    .scenario-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .project-actions,
    .final-actions {
        flex-direction: column;
    }
    .btn-newapi,
    .btn-secondary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-reveal-image { transition: none; }
}
