/* ============================================
   Dimnuo Agent OS 官网样式表 - 水墨中国风
   ============================================ */

/* 颜色变量 - 水墨配色方案 */
:root {
    /* 主色调 */
    --ink-black: #1a1a1a;        /* 墨黑 */
    --ink-dark: #2d2d2d;         /* 浓墨 */
    --ink-medium: #4a4a4a;       /* 中墨 */
    --ink-light: #6b6b6b;        /* 淡墨 */
    --ink-wash: #8c8c8c;         /* 水墨 */
    
    /* 背景色 */
    --rice-paper: #f5f3ed;       /* 宣纸白 */
    --rice-paper-dark: #e8e6df;  /* 深宣纸 */
    --rice-paper-warm: #f9f7f1;  /* 暖宣纸 */
    
    /* 强调色 */
    --celadon: #7d9d9c;          /* 青花瓷 */
    --celadon-dark: #5d7d7c;     /* 深青花 */
    --seal-red: #c43c3c;         /* 印泥红 */
    --seal-red-dark: #a32c2c;    /* 深印红 */
    --ochre: #b8935a;            /* 赭石 */
    
    /* 功能色 */
    --success: #5a9d5a;
    --warning: #d4a93a;
    --error: #c43c3c;
    
    /* 渐变 */
    --gradient-ink: linear-gradient(180deg, var(--ink-black) 0%, var(--ink-medium) 100%);
    --gradient-paper: linear-gradient(180deg, var(--rice-paper) 0%, var(--rice-paper-dark) 100%);
    
    /* 阴影 */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-ink: 0 4px 20px rgba(26, 26, 26, 0.15);
    
    /* 圆角 */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    
    /* 间距 */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    
    /* 字体 */
    --font-serif: 'Noto Serif SC', 'SimSun', 'STSong', serif;
    --font-sans: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    
    /* 动画 */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--rice-paper);
    color: var(--ink-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
}

/* 云雾背景动画 */
.cloud-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: cloudFloat 20s infinite ease-in-out;
}

.cloud-1 {
    width: 600px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.cloud-2 {
    width: 800px;
    height: 400px;
    top: 40%;
    right: -20%;
    animation-delay: -7s;
}

.cloud-3 {
    width: 500px;
    height: 250px;
    bottom: 20%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(50px) translateY(-20px);
    }
    50% {
        transform: translateX(0) translateY(-40px);
    }
    75% {
        transform: translateX(-50px) translateY(-20px);
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--rice-paper-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ink-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ink-medium);
}

/* 通用容器 */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* 章节标题 */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ink-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ink-medium);
    font-weight: 300;
}

.divider-ink {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ink-black), transparent);
    margin: var(--spacing-md) auto;
    position: relative;
}

.divider-ink::before,
.divider-ink::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--seal-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.divider-ink::before {
    left: 0;
}

.divider-ink::after {
    right: 0;
}

/* ============================================
   导航栏
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(245, 243, 237, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--ink-black);
    letter-spacing: 0.05em;
}

.logo-seal {
    display: inline-block;
    width: 68px;
    height: 68px;
    background: var(--seal-red);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 68px;
    text-align: center;
    border-radius: 3px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.25em;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--celadon);
    transition: width var(--transition-medium);
}

.nav-menu a:hover {
    color: var(--celadon);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--seal-red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--seal-red-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--ink-black);
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ink-wash {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(26, 26, 26, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(26, 26, 26, 0.05) 0%, transparent 50%);
    animation: inkFlow 15s infinite ease-in-out;
}

@keyframes inkFlow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.03) 100%);
    clip-path: polygon(0% 100%, 0% 20%, 15% 40%, 30% 15%, 45% 35%, 60% 10%, 75% 30%, 90% 15%, 100% 25%, 100% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 900;
    color: var(--ink-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--ink-medium);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
}

/* 画轴样式 - 左右展开式水墨风格 */
.hero-scroll {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    gap: 0;
}

.scroll-roller {
    width: 24px;
    height: 140px;
    background: linear-gradient(90deg, #c4a574 0%, #d4b88a 30%, #e4c89a 50%, #d4b88a 70%, #c4a574 100%);
    border-radius: 3px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.scroll-roller-left {
    border-radius: 3px 0 0 3px;
}

.scroll-roller-right {
    border-radius: 0 3px 3px 0;
}

.scroll-roller::before,
.scroll-roller::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 6px;
    background: linear-gradient(90deg, #b8956a 0%, #c9a77a 50%, #b8956a 100%);
    border-radius: 2px;
    left: -2px;
}

.scroll-roller::before {
    top: -3px;
}

.scroll-roller::after {
    bottom: -3px;
}

.scroll-paper {
    background: #F5F5DC;
    height: 120px;
    padding: var(--spacing-md) var(--spacing-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    max-width: 420px;
    overflow: hidden;
}

.scroll-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.scroll-paper::after {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 12px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 69, 19, 0.2) 10%, rgba(139, 69, 19, 0.2) 90%, transparent 100%);
}

.scroll-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: var(--spacing-xs);
    text-align: center;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
}

.scroll-source {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--ink-wash);
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--ink-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* 印章风格按钮 */
.btn-seal-primary,
.btn-seal-secondary {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-seal-primary {
    background: var(--seal-red);
    color: white;
    box-shadow: 3px 3px 6px rgba(196, 60, 60, 0.3);
}

.btn-seal-primary:hover {
    background: var(--seal-red-dark);
    transform: translateY(-3px);
    box-shadow: 4px 4px 8px rgba(196, 60, 60, 0.4);
}

.btn-seal-secondary {
    background: transparent;
    color: var(--celadon);
    border: 2px solid var(--celadon);
}

.btn-seal-secondary:hover {
    background: var(--celadon);
    color: white;
    transform: translateY(-3px);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bamboo-left {
    position: absolute;
    left: 5%;
    bottom: 10%;
    width: 150px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M30,200 Q35,150 30,100 Q25,50 30,0' stroke='%235a7d5a' stroke-width='3' fill='none' opacity='0.6'/%3E%3Cpath d='M30,180 Q50,170 60,160' stroke='%235a7d5a' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M30,130 Q50,120 65,115' stroke='%235a7d5a' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M30,80 Q50,70 60,65' stroke='%235a7d5a' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E") no-repeat;
    opacity: 0.4;
}

.seal-corner {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: var(--seal-red);
    color: white;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--ink-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--ink-light);
    border-radius: 13px;
    margin: 0 auto var(--spacing-xs);
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--ink-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ============================================
   核心能力 Section
   ============================================ */
.features {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--rice-paper) 0%, var(--rice-paper-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: all var(--transition-medium);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--celadon), var(--ink-light));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-ink);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--celadon), var(--celadon-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-seal {
    position: absolute;
    top: 0;
    right: 25px;
    width: 40px;
    height: 40px;
    background: var(--seal-red);
    color: white;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    opacity: 0.9;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(189, 51, 33, 0.3);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: var(--spacing-xs);
}

.feature-poem {
    font-style: italic;
    color: var(--ink-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px dashed rgba(26, 26, 26, 0.1);
}

.feature-desc {
    color: var(--ink-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: var(--ink-dark);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li i {
    color: var(--celadon);
    font-size: 0.8rem;
}

.features-footer {
    text-align: center;
    padding: var(--spacing-lg);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.features-summary {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-dark);
    margin-bottom: var(--spacing-xs);
}

.features-values {
    color: var(--ink-light);
    font-weight: 500;
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-align: center;
}

/* ============================================
   应用场景 Section
   ============================================ */
.scenarios {
    padding: var(--spacing-xxl) 0;
    background: var(--rice-paper-warm);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.scenario-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: all var(--transition-medium);
    position: relative;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ochre), #9a7a4a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.scenario-icon i {
    font-size: 1.5rem;
    color: white;
}

.scenario-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink-black);
    margin-bottom: var(--spacing-xs);
}

.scenario-poem {
    font-style: italic;
    color: var(--ink-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.scenario-desc {
    color: var(--ink-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.scenario-case {
    background: rgba(125, 157, 156, 0.08);
    padding: var(--spacing-sm);
    border-radius: var(--radius-small);
    border-left: 3px solid var(--celadon);
}

.scenario-case h4 {
    font-size: 0.9rem;
    color: var(--ink-dark);
    margin-bottom: 4px;
}

.scenario-case p {
    font-size: 0.85rem;
    color: var(--ink-medium);
}

.scenarios-footer {
    text-align: center;
    padding: var(--spacing-lg);
}

.scenarios-summary {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-dark);
    margin-bottom: var(--spacing-xs);
}

.scenarios-tagline {
    color: var(--ink-light);
    font-size: 0.95rem;
}

/* ============================================
   公司简介 Section
   ============================================ */
.about {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--rice-paper-dark) 0%, var(--rice-paper) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-mission {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.about-mission-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--ink-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.15em;
}

.about-vision {
    font-size: 1.2rem;
    color: var(--ink-medium);
    font-style: italic;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.value-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
}

.value-seal {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--seal-red);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-black);
    margin-bottom: var(--spacing-xs);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--ink-medium);
    line-height: 1.6;
}

.about-team {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.about-team h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-black);
    margin-bottom: var(--spacing-sm);
}

.about-team p {
    color: var(--ink-medium);
    font-size: 1rem;
}

.about-timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--celadon), var(--ink-light));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: var(--spacing-md) 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
    padding: var(--spacing-md) 0;
}

/* 确保年份和事件之间间距一致 */
.timeline-year {
    margin-right: var(--spacing-md);
    white-space: nowrap;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-right: 0;
    margin-left: var(--spacing-md);
    white-space: nowrap;
}

/* 第 1 和第 3 项内容向左移动 8px */
.timeline-item:nth-child(1) .timeline-year,
.timeline-item:nth-child(1) .timeline-event,
.timeline-item:nth-child(3) .timeline-year,
.timeline-item:nth-child(3) .timeline-event {
    margin-right: 8px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--celadon);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--celadon);
    z-index: 1;
}

.timeline-item:nth-child(even)::before {
    left: -7px;
    right: auto;
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--celadon-dark);
    margin-right: var(--spacing-md);
    white-space: nowrap;
}

.timeline-item:nth-child(even) .timeline-year {
    margin-right: 0;
    margin-left: var(--spacing-md);
    white-space: nowrap;
}

.timeline-event {
    color: var(--ink-dark);
    font-weight: 500;
}

/* ============================================
   联系 Section
   ============================================ */
.contact {
    padding: var(--spacing-xxl) 0;
    background: var(--rice-paper-warm);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--ink-dark);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--celadon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.contact-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-black);
    margin-bottom: var(--spacing-sm);
}

.contact-cta p {
    color: var(--ink-medium);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--ink-black);
    color: var(--rice-paper);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer-cloud-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--rice-paper);
}

.footer-logo .logo-seal {
    background: var(--seal-red);
    color: white;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--ink-wash);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--rice-paper);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--ink-wash);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom .company-fullname {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--rice-paper);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.footer-quote {
    color: var(--ink-light);
    font-style: italic;
    letter-spacing: 0.1em;
}

.footer-beian {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-beian a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ink-wash);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-beian a:hover {
    color: var(--rice-paper);
}

.footer-beian .beian-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.footer-beian .beian-divider {
    color: var(--ink-light);
    font-size: 0.8rem;
}

/* ============================================
   滚动渐显动画
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    will-change: opacity, transform;
}

.scroll-reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 50px;
        justify-content: flex-start;
    }
    
    .timeline-item::before,
    .timeline-item:nth-child(even)::before {
        left: -26px;
    }
    
    .timeline-year {
        margin-right: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-quote p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .bamboo-left,
    .seal-corner {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: var(--spacing-sm);
    }
    
    .section-container {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   步骤 3.5：墨迹渐显动画
   ============================================ */
@keyframes ink-spread {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ink-drip {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.ink-reveal {
    position: relative;
    overflow: hidden;
}

.ink-reveal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.ink-reveal.active::before {
    width: 300px;
    height: 300px;
}

.ink-reveal > * {
    position: relative;
    z-index: 1;
}

/* 墨滴效果 */
.ink-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--ink-black);
    border-radius: 50%;
    opacity: 0;
    animation: ink-drip 2s ease-in-out infinite;
}

.ink-drop:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ink-drop:nth-child(2) {
    top: 15%;
    left: 80%;
    animation-delay: 0.5s;
}

.ink-drop:nth-child(3) {
    top: 20%;
    left: 50%;
    animation-delay: 1s;
}

/* ============================================
   滚动进度条（墨条研磨效果）
   ============================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(26, 26, 26, 0.1);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--ink-light), var(--ink-black), var(--celadon));
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

.scroll-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--ink-black);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(26, 26, 26, 0.5);
}

/* 墨条研磨动画 */
@keyframes grinding {
    0%, 100% {
        box-shadow: 0 0 10px rgba(26, 26, 26, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(26, 26, 26, 0.8), 0 0 30px var(--celadon);
    }
}

.scroll-progress.grinding::after {
    animation: grinding 0.3s ease-in-out infinite;
}

/* ============================================
   卡片悬停云纹发光增强
   ============================================ */
.feature-card:hover::after,
.scenario-card:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--celadon), var(--ink-light), var(--celadon));
    border-radius: calc(var(--radius-medium) + 2px);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
    animation: cloud-glow 2s ease-in-out infinite;
}

@keyframes cloud-glow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        filter: blur(15px);
    }
}

/* ============================================
   云雾流动动画增强
   ============================================ */
@keyframes cloud-flow {
    0% {
        transform: translateX(-100%) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100vw) translateY(20px);
        opacity: 0;
    }
}

.cloud {
    position: absolute;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: cloud-flow linear infinite;
}

.cloud-1 {
    width: 300px;
    height: 100px;
    top: 20%;
    left: -300px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.cloud-2 {
    width: 400px;
    height: 120px;
    top: 40%;
    left: -400px;
    animation-duration: 30s;
    animation-delay: -10s;
}

.cloud-3 {
    width: 250px;
    height: 80px;
    top: 60%;
    left: -250px;
    animation-duration: 20s;
    animation-delay: -5s;
}

/* ============================================
   画卷展开入场动画增强
   ============================================ */
@keyframes scroll-unfold {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.hero-content {
    animation: scroll-unfold 1.2s ease-out;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
