/* 黑料百科网 - 浅色粗野档案风（Light Brutalist Investigative Archive） */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --manila: #ebe5d2;
    --manila-light: #f3eede;
    --manila-dark: #d9d1b5;
    --paper: #f7f3e6;
    --ink: #0a0a0a;
    --ink-soft: #2a2a2a;
    --ink-mute: #5a5a5a;
    --archive-red: #c1272d;
    --archive-deep: #8a1a1f;
    --classified-amber: #d4a017;
    --stamp-blue: #1e4d8b;
    --file-green: #3d6b3d;
    --border-ink: #0a0a0a;
    --line-fade: rgba(10, 10, 10, 0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Courier New', 'Lucida Console', 'PingFang SC', 'Microsoft YaHei', monospace;
    background-color: var(--manila);
    background-image:
        repeating-linear-gradient(0deg, transparent 0px, transparent 28px, rgba(10, 10, 10, 0.04) 28px, rgba(10, 10, 10, 0.04) 29px);
    color: var(--ink);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--archive-red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.15s;
}
a:hover {
    color: var(--ink);
    background: var(--classified-amber);
    text-decoration-color: var(--ink);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========== 顶部状态条 ========== */
.top-strip {
    background: var(--ink);
    color: var(--manila);
    border-bottom: 4px solid var(--archive-red);
    padding: 10px 0;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
}
.top-strip .marker {
    display: inline-block;
    padding: 2px 8px;
    background: var(--archive-red);
    color: var(--manila);
    margin-right: 10px;
    border: 1px solid var(--manila);
}
.top-strip .sep {
    color: var(--classified-amber);
    margin: 0 12px;
}
.top-strip .blink {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--archive-red);
    background: var(--classified-amber);
    margin-right: 8px;
    animation: blink 1.2s infinite;
}
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.2; }
}

/* ========== 主头部 ========== */
.site-header {
    background: var(--manila-light);
    border-bottom: 4px solid var(--ink);
    padding: 24px 0 20px;
    position: relative;
}
.site-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: var(--ink);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 16px;
}
.logo-mark {
    width: 58px; height: 58px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    color: var(--classified-amber);
    color: var(--classified-amber);
    color: var(--classified-amber);
    color: var(--classified-amber);
    color: var(--classified-amber);
    border: 3px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.6rem;
    box-shadow: 4px 4px 0 var(--archive-red);
    position: relative;
}
.logo-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--classified-amber);
    border: 1px solid var(--classified-amber);
}
.logo-text h1 {
    font-size: 1.6rem;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 2px;
}
.logo-text .sub {
    font-size: 0.74rem;
    color: var(--archive-red);
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
}
.search-box input {
    flex: 1;
    padding: 12px 18px;
    background: var(--paper);
    border: 3px solid var(--ink);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.95rem;
    border-right: none;
    font-weight: 600;
}
.search-box input::placeholder {
    color: var(--ink-mute);
    font-style: italic;
}
.search-box input:focus {
    outline: none;
    background: var(--manila-light);
    box-shadow: inset 0 0 0 2px var(--archive-red);
    box-shadow: inset 0 0 0 2px var(--archive-red);
}
.search-box button {
    padding: 0 24px;
    background: var(--archive-red);
    color: var(--manila);
    border: 3px solid var(--ink);
    font-family: inherit;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
}
.search-box button:hover {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
}

.header-actions {
    display: flex;
    gap: 12px;
}
.btn-outline {
    padding: 11px 22px;
    background: transparent;
    border: 3px solid var(--ink);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    text-decoration: none;
}
.btn-stamp {
    padding: 11px 22px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    border: 3px solid var(--ink);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--archive-red);
    box-shadow: 4px 4px 0 var(--archive-red);
    transition: all 0.15s;
}
.btn-stamp:hover {
    background: var(--archive-red);
    color: var(--manila);
    text-decoration: none;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

/* ========== 主导航 ========== */
.main-nav {
    background: var(--paper);
    border-bottom: 4px solid var(--ink);
    position: relative;
    z-index: 50;
}
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}
.main-nav li a {
    display: block;
    padding: 16px 30px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-right: 2px solid var(--ink);
    transition: all 0.15s;
    position: relative;
}
.main-nav li:last-child a { border-right: none; }
.main-nav li a:hover, .main-nav li a.active {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
}
.main-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--ink);
}

/* ========== Hero 区 ========== */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--ink);
    background:
        linear-gradient(180deg, var(--manila-light) 0%, var(--manila) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(193, 39, 45, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text .case-no {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 2px solid var(--ink);
}
.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-text h1 .accent {
    color: var(--archive-red);
    color: var(--archive-red);
    position: relative;
    display: inline-block;
}
.hero-text h1 .accent::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px; top: -4px; bottom: -4px;
    border: 3px solid var(--archive-red);
    border: 3px solid var(--archive-red);
    pointer-events: none;
}
.hero-text .lede {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-bottom: 32px;
    line-height: 1.85;
    padding: 18px 22px;
    background: var(--paper);
    border-left: 6px solid var(--archive-red);
    border-left: 6px solid var(--archive-red);
    border: 2px solid var(--ink);
    border-left: 6px solid var(--archive-red);
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--archive-red);
    color: var(--manila);
    font-family: inherit;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.92rem;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    transition: all 0.15s;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    text-decoration: none;
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--archive-red);
    box-shadow: 2px 2px 0 var(--archive-red);
}
.btn-line {
    display: inline-block;
    padding: 14px 32px;
    background: var(--paper);
    color: var(--ink);
    font-family: inherit;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.92rem;
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink-mute);
    transition: all 0.15s;
    text-decoration: none;
}
.btn-line:hover {
    background: var(--classified-amber);
    background: var(--classified-amber);
    color: var(--ink);
    text-decoration: none;
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--ink-mute);
}

/* Hero 右侧档案卡片 */
.hero-visual {
    position: relative;
    height: 460px;
}
.dossier-card {
    position: absolute;
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 20px 22px;
    color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    font-family: inherit;
}
.dossier-card .dossier-tab {
    position: absolute;
    top: -22px; left: 18px;
    padding: 4px 16px;
    background: var(--archive-red);
    background: var(--archive-red);
    color: var(--manila);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--ink);
}
.dossier-card .dossier-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.dossier-card .dossier-head .case-id {
    font-size: 0.78rem;
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.dossier-card .dossier-head .stamp {
    padding: 3px 10px;
    background: transparent;
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--archive-red);
    border: 2px solid var(--archive-red);
    transform: rotate(-4deg);
}
.dossier-card .dossier-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.dossier-card .dossier-sub {
    font-size: 0.76rem;
    color: var(--ink-mute);
    font-style: italic;
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--line-fade);
    padding-bottom: 10px;
}
.dossier-card .dossier-list {
    list-style: none;
}
.dossier-card .dossier-list li {
    padding: 5px 0;
    font-size: 0.82rem;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted var(--line-fade);
}
.dossier-card .dossier-list li:last-child { border: none; }
.dossier-card .dossier-list .v {
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
}
.dc-1 { top: 22px; left: 0; width: 290px; transform: rotate(-2deg); }
.dc-2 { top: 80px; right: 0; width: 280px; transform: rotate(2deg); box-shadow: 6px 6px 0 var(--archive-red); box-shadow: 6px 6px 0 var(--archive-red); }
.dc-3 { bottom: 80px; left: 30px; width: 270px; transform: rotate(-1.5deg); box-shadow: 6px 6px 0 var(--classified-amber); }
.dc-4 { bottom: 20px; right: 20px; width: 280px; transform: rotate(1.5deg); }

/* ========== 通用区块 ========== */
section { padding: 80px 0; }

.section-head {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}
.section-head .tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 2px solid var(--ink);
}
.section-head h2 {
    font-size: 2.6rem;
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-head h2 .accent {
    color: var(--archive-red);
    color: var(--archive-red);
    position: relative;
}
.section-head h2 .accent::after {
    content: '';
    position: absolute;
    left: -2px; right: -2px; bottom: 2px;
    height: 8px;
    background: var(--classified-amber);
    background: var(--classified-amber);
    z-index: -1;
    opacity: 0.5;
}
.section-head p {
    color: var(--ink-soft);
    font-size: 1rem;
    max-width: 680px;
    margin: 0 auto;
}
.section-head .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    gap: 12px;
}
.section-head .divider::before,
.section-head .divider::after {
    content: '';
    width: 80px; height: 3px;
    background: var(--ink);
}
.section-head .divider .marker {
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 4px;
}

/* ========== 数据统计 ========== */
.stats-band {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--manila);
    padding: 56px 0;
    margin: 30px 0;
    border-top: 4px solid var(--archive-red);
    border-top: 4px solid var(--archive-red);
    border-bottom: 4px solid var(--archive-red);
    position: relative;
}
.stats-band::before {
    content: '◆ ◆ ◆';
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--manila);
    padding: 0 18px;
    color: var(--archive-red);
    color: var(--archive-red);
    letter-spacing: 10px;
    font-size: 0.9rem;
    font-weight: 900;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-block .num {
    font-size: 3rem;
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-block .label {
    color: var(--manila);
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: bold;
}

/* ========== 词条分类网格 ========== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.cat-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 28px 26px;
    transition: all 0.2s;
    position: relative;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--ink);
}
.cat-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--archive-red);
    box-shadow: 10px 10px 0 var(--archive-red);
    background: var(--manila-light);
    text-decoration: none;
}
.cat-card .cat-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 12px;
}
.cat-card .cat-icon {
    width: 52px; height: 52px;
    background: var(--classified-amber);
    background: var(--classified-amber);
    border: 3px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 3px 3px 0 var(--ink);
}
.cat-card .cat-no {
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cat-card h3 {
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.cat-card .cat-sub {
    font-size: 0.8rem;
    color: var(--ink-mute);
    font-style: italic;
    margin-bottom: 14px;
    border-bottom: 1px dashed var(--line-fade);
    padding-bottom: 12px;
}
.cat-card .cat-list {
    list-style: none;
    margin-bottom: 16px;
}
.cat-card .cat-list li {
    padding: 5px 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted var(--line-fade);
}
.cat-card .cat-list li::before {
    content: '▸';
    color: var(--archive-red);
    color: var(--archive-red);
    margin-right: 8px;
    font-weight: 900;
}
.cat-card .cat-list .v {
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
}
.cat-card .cat-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 2px solid var(--ink);
    font-size: 0.82rem;
}
.cat-card .cat-count {
    color: var(--ink);
    font-weight: 900;
    letter-spacing: 1px;
}
.cat-card .cat-link {
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
}

/* ========== 双栏特性 ========== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.feature-visual {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 42px;
    color: var(--ink);
    position: relative;
    box-shadow: 6px 6px 0 var(--archive-red);
    box-shadow: 6px 6px 0 var(--archive-red);
}
.feature-visual::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid var(--line-fade);
    pointer-events: none;
}
.feature-visual .big-num {
    font-size: 4.6rem;
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.feature-visual .stat-label {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.feature-visual .stat-list {
    list-style: none;
}
.feature-visual .stat-list li {
    padding: 13px 0;
    border-bottom: 1px dashed var(--line-fade);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 600;
}
.feature-visual .stat-list li:last-child { border: none; }
.feature-visual .stat-list .v {
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
}

.feature-text .tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 2px solid var(--ink);
}
.feature-text h2 {
    font-size: 2.4rem;
    color: var(--ink);
    font-weight: 900;
    margin-bottom: 22px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.feature-text h2 .accent {
    color: var(--archive-red);
    color: var(--archive-red);
}
.feature-text p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}
.feature-text .check-list {
    list-style: none;
    margin-top: 26px;
}
.feature-text .check-list li {
    padding: 11px 0 11px 36px;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}
.feature-text .check-list li::before {
    content: '■';
    position: absolute;
    left: 0; top: 11px;
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 1rem;
}

/* ========== 时间线 ========== */
.timeline {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 30px; top: 0; bottom: 0;
    width: 4px;
    background: var(--ink);
}
.tl-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 36px;
    margin-bottom: 36px;
    position: relative;
}
.tl-row::before {
    content: '';
    position: absolute;
    left: 20px; top: 14px;
    width: 22px; height: 22px;
    background: var(--archive-red);
    background: var(--archive-red);
    border: 3px solid var(--ink);
    border-radius: 0;
    transform: rotate(45deg);
    z-index: 2;
}
.tl-row .tl-year {
    color: var(--ink);
    font-weight: 900;
    font-size: 1rem;
    padding-top: 6px;
    letter-spacing: 1px;
    text-align: right;
    border-right: 3px solid var(--ink);
    padding-right: 14px;
}
.tl-row .tl-body {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 24px 28px;
    transition: all 0.2s;
    box-shadow: 4px 4px 0 var(--ink);
}
.tl-row .tl-body:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--archive-red);
    box-shadow: 8px 8px 0 var(--archive-red);
}
.tl-row .tl-body h3 {
    color: var(--ink);
    font-size: 1.18rem;
    margin-bottom: 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.tl-row .tl-body h3 .vol {
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.88rem;
    margin-left: 8px;
    border: 2px solid var(--archive-red);
    border: 2px solid var(--archive-red);
    padding: 1px 8px;
}
.tl-row .tl-body p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 600;
}

/* ========== 合作方案 ========== */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.plan-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 42px 32px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
}
.plan-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--archive-red);
    box-shadow: 10px 10px 0 var(--archive-red);
}
.plan-card.featured {
    background: var(--classified-amber);
    background: var(--classified-amber);
    border-color: var(--ink);
    transform: translateY(-12px);
    box-shadow: 6px 6px 0 var(--ink);
}
.plan-card.featured:hover {
    box-shadow: 10px 10px 0 var(--archive-red);
    box-shadow: 10px 10px 0 var(--archive-red);
}
.plan-card .plan-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 2px solid var(--ink);
}
.plan-card .plan-name {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.plan-card .plan-price {
    font-size: 2.8rem;
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
    margin-bottom: 6px;
}
.plan-card .plan-price .unit {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 600;
}
.plan-card .plan-desc {
    color: var(--ink-soft);
    font-size: 0.88rem;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ink);
    font-style: italic;
}
.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.plan-card ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--ink-soft);
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--line-fade);
    font-weight: 600;
}
.plan-card ul li:last-child { border: none; }
.plan-card ul li::before {
    content: '✕';
    position: absolute;
    left: 0; top: 10px;
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 1rem;
    font-weight: 900;
}
.plan-card .btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-family: inherit;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--ink);
    transition: all 0.15s;
    text-decoration: none;
}
.plan-card .btn:hover {
    background: var(--archive-red);
    background: var(--archive-red);
    color: var(--manila);
    text-decoration: none;
}
.plan-card.featured .btn {
    background: var(--archive-red);
    background: var(--archive-red);
    color: var(--manila);
}
.plan-card.featured .btn:hover {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
}
.plan-badge {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    background: var(--archive-red);
    background: var(--archive-red);
    color: var(--manila);
    padding: 6px 22px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
}

/* ========== 热门词条 ========== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.showcase-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    overflow: hidden;
    transition: all 0.2s;
    color: var(--ink);
    text-decoration: none;
    box-shadow: 5px 5px 0 var(--ink);
}
.showcase-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--archive-red);
    box-shadow: 10px 10px 0 var(--archive-red);
    text-decoration: none;
}
.showcase-card .show-banner {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--manila);
    font-size: 1.6rem;
    font-weight: 900;
    position: relative;
    overflow: hidden;
    letter-spacing: 4px;
    text-align: center;
    padding: 0 16px;
}
.showcase-card .show-banner.bg-1 {
    background: var(--archive-red);
    border-bottom: 3px solid var(--ink);
}
.showcase-card .show-banner.bg-2 {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    border-bottom: 3px solid var(--ink);
}
.showcase-card .show-banner.bg-3 {
    background: var(--stamp-blue);
    border-bottom: 3px solid var(--ink);
}
.showcase-card .show-banner::before {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    pointer-events: none;
}
.showcase-card .show-banner .banner-stamp {
    position: absolute;
    top: 10px; right: 10px;
    padding: 3px 10px;
    background: var(--manila);
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    border: 2px solid var(--ink);
    transform: rotate(4deg);
}
.showcase-card .show-body {
    padding: 24px 26px;
}
.showcase-card .show-cat {
    display: inline-block;
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--archive-red);
    border-bottom: 2px solid var(--archive-red);
    padding-bottom: 2px;
}
.showcase-card h3 {
    color: var(--ink);
    font-size: 1.18rem;
    margin-bottom: 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.showcase-card p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
    font-weight: 600;
}
.showcase-card .show-meta {
    display: flex;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line-fade);
    font-size: 0.8rem;
    color: var(--ink-mute);
    font-weight: 600;
}
.showcase-card .show-meta .hot {
    color: var(--archive-red);
    color: var(--archive-red);
    font-weight: 900;
    letter-spacing: 1px;
}

/* ========== 近期更新 ========== */
.news-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.news-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 26px;
    margin-bottom: 20px;
    transition: all 0.2s;
    color: var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}
.news-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--archive-red);
    box-shadow: 8px 8px 0 var(--archive-red);
}
.news-date-box {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    padding: 18px 12px;
    text-align: center;
    height: fit-content;
    border: 2px solid var(--ink);
    position: relative;
}
.news-date-box::before {
    content: '';
    position: absolute;
    top: 4px; left: 4px; right: 4px; bottom: 4px;
    border: 1px solid var(--classified-amber);
    border: 1px solid var(--classified-amber);
}
.news-date-box .day {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    color: var(--classified-amber);
    color: var(--classified-amber);
}
.news-date-box .month {
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--manila);
}
.news-body .news-cat {
    display: inline-block;
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    border-bottom: 2px solid var(--archive-red);
    border-bottom: 2px solid var(--archive-red);
    padding-bottom: 2px;
}
.news-body h3 {
    color: var(--ink);
    font-size: 1.18rem;
    margin-bottom: 8px;
    font-weight: 900;
    line-height: 1.4;
}
.news-body h3 a { color: inherit; text-decoration: none; }
.news-body h3 a:hover { color: var(--archive-red); text-decoration: underline; }
.news-body h3 a:hover { color: var(--archive-red); text-decoration: underline; }
.news-body p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 600;
}

/* ========== 联系页 ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--ink);
    color: var(--manila);
    padding: 46px;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--archive-red);
    box-shadow: 6px 6px 0 var(--archive-red);
    border: 3px solid var(--ink);
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid var(--classified-amber);
    border: 1px solid var(--classified-amber);
    pointer-events: none;
}
.contact-info-card h3 {
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.86rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    font-weight: 900;
}
.contact-info-card h2 {
    color: var(--manila);
    font-size: 2.1rem;
    margin-bottom: 22px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
}
.contact-info-card h2 .accent {
    color: var(--classified-amber);
    color: var(--classified-amber);
}
.contact-info-card p {
    color: var(--manila);
    opacity: 0.88;
    margin-bottom: 30px;
    line-height: 1.85;
    position: relative;
}
.contact-info-list {
    list-style: none;
    position: relative;
}
.contact-info-list li {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(235, 229, 210, 0.3);
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
}
.contact-info-list li:last-child { border: none; }
.contact-info-list .lbl {
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-info-list .val {
    color: var(--manila);
    font-size: 0.92rem;
    font-weight: 600;
}
.contact-form-card {
    background: var(--paper);
    border: 3px solid var(--ink);
    padding: 42px;
    color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    position: relative;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px solid var(--line-fade);
    pointer-events: none;
}
.contact-form-card h3 {
    color: var(--ink);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.contact-form-card .sub {
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.86rem;
    margin-bottom: 28px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 600;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--manila);
    border: 2px solid var(--ink);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.92rem;
    transition: all 0.15s;
    font-weight: 600;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-mute);
    font-style: italic;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: var(--manila-light);
    box-shadow: 3px 3px 0 var(--archive-red);
    box-shadow: 3px 3px 0 var(--archive-red);
}
.form-group textarea {
    min-height: 130px;
    resize: vertical;
}
.form-group select { font-family: inherit; }
.form-submit {
    width: 100%;
    background: var(--archive-red);
    color: var(--manila);
    border: 3px solid var(--ink);
    padding: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
    margin-top: 8px;
    box-shadow: 4px 4px 0 var(--ink);
}
.form-submit:hover {
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

/* ========== 页面 banner ========== */
.page-banner {
    background:
        linear-gradient(180deg, var(--manila-light) 0%, var(--manila) 100%);
    border-bottom: 4px solid var(--ink);
    padding: 70px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 6px;
    height: 2px;
    background: var(--ink);
}
.page-banner .tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--ink);
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 2px solid var(--ink);
}
.page-banner h1 {
    color: var(--ink);
    font-size: 2.9rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.page-banner h1 .accent {
    color: var(--archive-red);
    color: var(--archive-red);
}
.page-banner .breadcrumb {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
    font-weight: 600;
}
.page-banner .breadcrumb a { color: var(--archive-red); font-weight: 900; text-decoration: none; }
.page-banner .breadcrumb a { color: var(--archive-red); font-weight: 900; text-decoration: none; }
.page-banner .breadcrumb a:hover { text-decoration: underline; background: transparent; }
.page-banner .breadcrumb span { margin: 0 10px; color: var(--ink-mute); }

/* ========== CTA 区 ========== */
.cta-band {
    background: var(--ink);
    color: var(--manila);
    border: 3px solid var(--ink);
    padding: 54px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--archive-red);
    box-shadow: 6px 6px 0 var(--archive-red);
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid var(--classified-amber);
    border: 1px solid var(--classified-amber);
    pointer-events: none;
}
.cta-band h2 {
    font-size: 2.3rem;
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
}
.cta-band p {
    color: var(--manila);
    font-size: 1.02rem;
    margin-bottom: 26px;
    opacity: 0.92;
    position: relative;
    font-style: italic;
}

/* ========== 页脚 ========== */
footer {
    background: var(--ink);
    color: var(--manila);
    padding: 72px 0 30px;
    margin-top: 60px;
    position: relative;
    border-top: 4px solid var(--archive-red);
    border-top: 4px solid var(--archive-red);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.footer-brand .f-logo .f-mark {
    width: 46px; height: 46px;
    background: var(--classified-amber);
    background: var(--classified-amber);
    border: 3px solid var(--manila);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-weight: 900;
    font-size: 1.3rem;
}
.footer-brand h3 {
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
}
.footer-brand .tag {
    color: var(--archive-red);
    color: var(--archive-red);
    font-size: 0.74rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 900;
}
.footer-brand p {
    color: var(--manila);
    font-size: 0.88rem;
    line-height: 1.85;
    opacity: 0.75;
}
.footer-col h4 {
    color: var(--classified-amber);
    color: var(--classified-amber);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--classified-amber);
    border-bottom: 1px solid var(--classified-amber);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: var(--manila);
    font-size: 0.88rem;
    transition: all 0.15s;
    opacity: 0.75;
    text-decoration: none;
    font-weight: 600;
}
.footer-col a:hover {
    color: var(--classified-amber);
    color: var(--classified-amber);
    opacity: 1;
    background: transparent;
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(235, 229, 210, 0.2);
    color: var(--manila);
    font-size: 0.82rem;
    opacity: 0.65;
    font-style: italic;
}
.footer-bottom .dot {
    color: var(--archive-red);
    color: var(--archive-red);
    margin: 0 10px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .hero-grid, .feature-row { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 380px; }
    .cat-grid, .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .hero-text h1 { font-size: 2.4rem; }
    .section-head h2 { font-size: 1.8rem; }
    .cat-grid, .showcase-grid { grid-template-columns: 1fr; }
    .news-card { grid-template-columns: 90px 1fr; gap: 18px; padding: 18px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .header-actions { display: none; }
    .main-nav ul { flex-wrap: wrap; }
    .main-nav li a { padding: 12px 18px; font-size: 0.82rem; }
}
