* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Noto Serif SC", "华文楷体", "楷体", serif;
    min-height: 100vh;
    background: #f7f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container {
    max-width: 800px;
    width: 100%;
    background: rgba(255,252,248,0.88);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 44px 36px 36px;
    box-shadow: 0 20px 60px rgba(139,69,19,0.08);
    border: 1px solid rgba(193,154,107,0.12);
}
.header { text-align: center; margin-bottom: 24px; }
.header h1 { font-size: 32px; font-weight: 700; color: #3d2a1a; letter-spacing: 10px; }
.header .subtitle { font-size: 14px; color: #9a8a7a; letter-spacing: 6px; }
.divider { width: 50px; height: 2px; background: linear-gradient(90deg, #c19a6b, #8b4513); margin: 16px auto 24px; }
.philosophy { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 28px; }
.philosophy-item { text-align: center; padding: 12px 6px; background: rgba(255,248,240,0.5); border-radius: 16px; border: 1px solid rgba(193,154,107,0.08); }
.philosophy-item .num { font-size: 20px; font-weight: 700; color: #8b4513; }
.philosophy-item .label { font-size: 12px; color: #8b7a6b; }
.philosophy-item .desc { font-size: 11px; color: #b8a898; }
.project-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(255,248,240,0.5); border-radius: 18px; border: 1px solid rgba(193,154,107,0.10); text-decoration: none; margin-bottom: 12px; }
.project-card:hover { background: rgba(193,154,107,0.08); transform: translateY(-2px); }
.project-icon { font-size: 24px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(193,154,107,0.08); border-radius: 14px; }
.project-info .name { font-size: 17px; font-weight: 600; color: #3d2a1a; }
.project-info .desc { font-size: 13px; color: #8b7a6b; }
.footer { text-align: center; padding-top: 18px; border-top: 1px solid rgba(193,154,107,0.08); }
.footer .slogan { font-size: 13px; color: #b8a898; letter-spacing: 6px; }
.footer .icp { font-size: 12px; color: #a09080; }
.footer .icp a { color: #a09080; text-decoration: none; }
@media (max-width: 480px) {
    .container { padding: 32px 18px 24px; }
    .header h1 { font-size: 24px; }
    .philosophy { grid-template-columns: repeat(3,1fr); gap: 6px; }
    .philosophy-item .desc { display: none; }
}
