/* Architect Detail Page Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }

.architect-site {
    min-height: 100vh;
    background: #f8fafc;
}

.subdomain-badge {
    position: fixed;
    top: 20px;
    right: 28px;
    z-index: 200;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.subdomain-badge:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    border-color: rgba(99, 102, 241, 0.4);
}

.site-header {
    background: linear-gradient(135deg, #0c1222 0%, #1a1f3a 35%, #1e293b 70%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.site-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 60%, rgba(168, 85, 247, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}
.geo-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.geo-circle-1 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}
.geo-circle-2 {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(168, 85, 247, 0.08);
    border-radius: 50%;
    bottom: -80px;
    left: -60px;
}
.geo-circle-3 {
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 30%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}
.geo-diamond {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: rotate(45deg);
    top: 15%;
    left: 8%;
    animation: float 10s ease-in-out infinite reverse;
}
.geo-line-1 {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    top: 25%;
    left: 10%;
}
.geo-line-2 {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    bottom: 30%;
    right: 12%;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(50deg); }
}
.site-header-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 80px;
}

.architect-profile {
    display: flex;
    gap: 56px;
    align-items: center;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.architect-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}
.architect-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.4),
        0 0 0 10px rgba(99, 102, 241, 0.1),
        inset 0 2px 10px rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.architect-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-ring {
    position: absolute;
    top: -16px; left: -16px; right: -16px; bottom: -16px;
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
}
.avatar-ring-2 {
    position: absolute;
    top: -28px; left: -28px; right: -28px; bottom: -28px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    animation: rotate 60s linear infinite reverse;
}
.avatar-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.architect-info { flex: 1; min-width: 0; }
.architect-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.architect-title-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}
.architect-title-badge:hover::before {
    left: 100%;
}
.architect-name {
    font-size: 52px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Songti SC', 'Microsoft YaHei', SimSun, serif;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 30%, #c4b5fd 60%, #ddd6fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    line-height: 1.2;
    position: relative;
}
.architect-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, transparent);
    border-radius: 2px;
}
.architect-en-name {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 300;
    margin-top: 20px;
}
.architect-bio {
    font-size: 15px;
    line-height: 2;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin-bottom: 32px;
    text-align: justify;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border-left: 3px solid rgba(99, 102, 241, 0.4);
}
.architect-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.meta-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}
.meta-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.meta-item:hover::before {
    opacity: 1;
}
.meta-item > * {
    position: relative;
    z-index: 1;
}
.meta-item a {
    color: #a5b4fc;
    text-decoration: none;
    transition: color 0.2s;
}
.meta-item a:hover { color: #fff; }

.site-nav {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.site-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}
.site-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 24px;
    gap: 8px;
    position: relative;
}
.nav-tab {
    padding: 20px 36px;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
}
.nav-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-tab:hover {
    color: #1e293b;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, transparent 100%);
}
.nav-tab:hover::before {
    transform: translateX(-50%) scaleX(0.5);
}
.nav-tab.active {
    color: #6366f1;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
}
.nav-tab.active::before {
    transform: translateX(-50%) scaleX(1);
}
.nav-tab .count {
    background: #f1f5f9;
    color: #64748b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}
.nav-tab:hover .count {
    background: #e0e7ff;
    color: #4f46e5;
}
.nav-tab.active .count {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px 100px;
    position: relative;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

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

.about-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
}

.about-main h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Songti SC', 'Microsoft YaHei', SimSun, serif;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.about-main h2::before {
    content: '';
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 3px;
}
.about-main h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
    margin-left: 8px;
}
.about-content {
    line-height: 2.1;
    color: #334155;
    font-size: 16px;
    background: #fff;
    padding: 40px 44px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}
.about-content h4 {
    font-size: 20px;
    color: #0f172a;
    margin: 40px 0 20px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Songti SC', 'Microsoft YaHei', SimSun, serif;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f0f4ff, #faf5ff);
    border-radius: 12px;
    border-left: 5px solid #6366f1;
    position: relative;
}
.about-content h4::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.about-content h4:first-child { margin-top: 0; }
.about-content p {
    margin-bottom: 20px;
    text-indent: 2em;
    text-align: justify;
    color: #475569;
    line-height: 2.2;
}
.about-content ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}
.about-content ul li {
    margin-bottom: 14px;
    line-height: 1.9;
    padding: 12px 20px 12px 48px;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 10px;
    color: #475569;
    transition: all 0.3s;
}
.about-content ul li:hover {
    background: linear-gradient(135deg, #f0f4ff, #faf5ff);
    transform: translateX(6px);
}
.about-content ul li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 2px;
}
.about-content .work-list {
    margin: 24px 0;
}
.about-content .work-item {
    margin-bottom: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-left: 5px solid #6366f1;
    border-radius: 0 14px 14px 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.about-content .work-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(270deg, rgba(99, 102, 241, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.about-content .work-item:hover {
    background: linear-gradient(135deg, #f0f4ff, #ede9fe);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}
.about-content .work-item:hover::before {
    opacity: 1;
}
.about-content .work-item strong {
    color: #4f46e5;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.about-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
}
.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Songti SC', 'Microsoft YaHei', SimSun, serif;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-card h3::before {
    content: '';
    width: 5px;
    height: 20px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 2px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px dashed #e2e8f0;
    transition: all 0.2s;
}
.info-row:hover {
    padding-left: 8px;
}
.info-row:last-child { border-bottom: none; }
.info-row .label { color: #64748b; }
.info-row .value { 
    color: #1e293b; 
    font-weight: 600; 
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.stat-card-mini {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.stat-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-card-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #c7d2fe;
}
.stat-card-mini:hover::before {
    transform: scaleX(1);
}
.stat-card-mini .number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-card-mini .label {
    font-size: 14px;
    color: #64748b;
    margin-top: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 36px;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Songti SC', 'Microsoft YaHei', SimSun, serif;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.section-title::before {
    content: '';
    width: 6px;
    height: 30px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 3px;
}
.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #e2e8f0, transparent);
    margin-left: 8px;
}

.works-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); 
    gap: 32px; 
}
.work-card { 
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
    cursor: pointer; 
    border: 1px solid #e2e8f0;
    position: relative;
}
.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}
.work-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: #c7d2fe;
}
.work-card:hover::before {
    transform: scaleX(1);
}
.work-card .cover { 
    height: 240px; 
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff, #faf5ff);
}
.work-card .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.work-card:hover .cover img {
    transform: scale(1.05);
}
.work-card .cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}
.work-card:hover .cover::after { opacity: 1; }
.work-card .cover .geo-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.work-card:hover .cover .geo-accent {
    opacity: 1;
    top: 16px;
    right: 16px;
    transform: scale(0.5);
}
.work-card .cover .year { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    background: rgba(255,255,255,0.95); 
    color: #4f46e5; 
    padding: 6px 16px; 
    border-radius: 20px; 
    font-size: 13px; 
    font-weight: 600;
    backdrop-filter: blur(12px);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.work-card:hover .cover .year {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}
.work-card .cover .view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: #fff;
    color: #4f46e5;
    padding: 10px 28px;
    border-radius: 28px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.work-card:hover .cover .view-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.work-card .cover .view-btn:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}
.work-card .info { 
    padding: 24px 26px 26px; 
    position: relative;
}
.work-card .info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 26px;
    right: 26px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.work-card .info h4 { 
    font-size: 18px; 
    margin-bottom: 12px; 
    color: #0f172a; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap;
    font-weight: 600;
    transition: all 0.3s;
}
.work-card:hover .info h4 { 
    color: #6366f1;
    transform: translateX(4px);
}
.work-card .info .location { 
    font-size: 14px; 
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.article-card {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
}
.article-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6366f1, #a855f7, #ec4899);
    transform: scaleY(0);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateX(8px);
    border-color: #c7d2fe;
}
.article-card:hover::before {
    transform: scaleY(1);
}
.article-cover {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, #eef2ff, #faf5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}
.article-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.08));
    opacity: 0;
    transition: opacity 0.4s;
}
.article-card:hover .article-cover::after {
    opacity: 1;
}
.article-cover.has-image {
    font-size: 0;
}
.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-body {
    flex: 1;
    padding: 28px 32px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-category {
    display: inline-block;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #4338ca;
    padding: 5px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
    align-self: flex-start;
    transition: all 0.3s;
}
.article-card:hover .article-category {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}
.article-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s;
}
.article-card:hover .article-title { 
    color: #6366f1;
}
.article-summary {
    font-size: 14px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.article-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #94a3b8;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.empty-state { 
    text-align: center; 
    padding: 120px 20px; 
    color: #94a3b8; 
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.empty-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.empty-state .icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}
.empty-state h3 { 
    font-size: 20px; 
    margin-bottom: 10px; 
    color: #64748b; 
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.empty-state p {
    font-size: 15px;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

.personal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-100%);
}
.personal-nav.visible {
    transform: translateY(0);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.personal-nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}
.personal-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.personal-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}
.personal-nav-logo:hover {
    color: #a5b4fc;
}
.personal-nav-logo .nav-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}
.personal-nav-logo:hover .nav-avatar {
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}
.personal-nav-logo .nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.personal-nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.personal-nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    position: relative;
}
.personal-nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.personal-nav-links a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    font-weight: 600;
}
.personal-nav-links .back-to-main {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    margin-left: 16px;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.personal-nav-links .back-to-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.site-footer {
    background: linear-gradient(180deg, #0c1222 0%, #0f172a 50%, #1a1f3a 100%);
    color: rgba(255,255,255,0.6);
    padding: 70px 24px 36px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 15% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}
.footer-geo-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    pointer-events: none;
}
.footer-geo-diamond {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.04);
    transform: rotate(45deg);
    top: 30%;
    right: 10%;
    pointer-events: none;
}
.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', serif;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 24px;
}
.footer-brand .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.footer-brand .footer-badge:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-left: 12px;
}
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}
.footer-col ul li a:hover {
    color: #a5b4fc;
    transform: translateX(6px);
}
.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}
.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom .powered-by a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-bottom .powered-by a:hover {
    color: #c4b5fd;
}

.back-to-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 250;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.back-to-top-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    opacity: 0;
    transition: all 0.3s;
}
.back-to-top-btn:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
    .about-section { grid-template-columns: 1fr; }
    .about-sidebar { position: static; }
    .stats-cards { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .architect-profile { flex-direction: column; text-align: center; gap: 32px; }
    .architect-meta { justify-content: center; }
    .architect-name { font-size: 36px; letter-spacing: 2px; }
    .architect-avatar { width: 140px; height: 140px; font-size: 56px; }
    .avatar-ring, .avatar-ring-2 { display: none; }
    .avatar-glow { display: none; }
    .site-nav-inner { overflow-x: auto; }
    .nav-tab { white-space: nowrap; padding: 18px 28px; }
    .works-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
    .article-card { flex-direction: column; }
    .article-cover { width: 100%; height: 220px; }
    .article-body { padding: 24px; }
    .stats-cards { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
    .stat-card-mini { padding: 20px 16px; }
    .stat-card-mini .number { font-size: 26px; }
    .site-header-inner { padding: 60px 16px 48px; }
    .site-header { min-height: auto; }
    .about-content { padding: 24px 20px; }
    .site-content { padding: 40px 12px 60px; }
    .personal-nav-links a { padding: 8px 12px; font-size: 13px; }
    .personal-nav-links .back-to-main { display: none; }
    .personal-nav-logo span { display: none; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .back-to-top-btn { bottom: 20px; right: 20px; width: 46px; height: 46px; }
    .geo-circle-1, .geo-circle-2, .geo-diamond, .geo-line-1, .geo-line-2, .geo-circle-3 { display: none; }
    .architect-name::after { left: 50%; transform: translateX(-50%); }
}
