* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'SF Pro Text', sans-serif;
    background: #fefcf7;
    color: #1a1e2b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f0ede8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c084fc, #f97316);
    border-radius: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

/* 导航栏 */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 252, 245, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
    padding: 14px 0;
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.logo {
    font-weight: 800;
    font-size: 1.7rem;
    background: linear-gradient(125deg, #c2410c, #ea580c, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}
.logo i {
    background: none;
    -webkit-background-clip: unset;
    color: #f97316;
    margin-right: 6px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #2d2f3e;
    transition: 0.2s;
    position: relative;
}
.nav-links a:hover {
    color: #ea580c;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #f97316, #c084fc);
    border-radius: 4px;
    transition: width 0.25s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

section {
    padding: 88px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1e293b, #c2410c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #c084fc);
    border-radius: 6px;
}

/* Hero 区域 */
.hero {
    background: radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.05), rgba(192, 132, 252, 0.02)), #fffbf5;
    padding: 80px 0 90px;
}
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
}
.hero-info {
    flex: 2;
    min-width: 260px;
}
.hero-badge {
    background: #fff0e6;
    color: #ea580c;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid #ffdec2;
}
.hero-info h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-name {
    background: linear-gradient(135deg, #c2410c, #f97316, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-tagline {
    font-size: 1.35rem;
    font-weight: 700;
    color: #c2410c;
    margin: 16px 0 12px;
}
.hero-slogan {
    background: rgba(255, 255, 245, 0.7);
    backdrop-filter: blur(4px);
    padding: 8px 18px;
    border-radius: 60px;
    display: inline-block;
    font-weight: 500;
    color: #4a3b2c;
    margin-bottom: 28px;
    border: 1px solid #ffddb0;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0 20px;
}
.stat-card {
    background: white;
    padding: 14px 24px;
    border-radius: 48px;
    box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.06);
    border: 1px solid #ffe2c4;
    transition: all 0.2s;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: #f97316;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b5c70;
}
.unit-indicator {
    margin: 24px 0 16px;
}
.unit-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a55c2c;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.unit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.unit-tag {
    background: #fff3e8;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #b45309;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ffddb0;
}
.unit-tag i {
    font-size: 0.9rem;
}
.unit-tag:hover {
    background: #f97316;
    color: white;
    border-color: #f97316;
    transform: translateY(-2px);
}

/* 个人形象照 */
.hero-photo {
    flex: 1;
    text-align: center;
    background: rgba(255, 245, 235, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 52px;
    padding: 28px 20px;
    border: 1px solid rgba(249, 115, 22, 0.25);
}
.photo-frame {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff2e6, #ffe0cd);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
    border: 3px solid white;
}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 截图图框 */
.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 20px;
}
.screenshot-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffedd5;
    text-align: center;
}
.screenshot-card:hover {
    transform: translateY(-6px);
    border-color: #f97316;
}
.screenshot-img {
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    background: #fef2e6;
    margin-bottom: 16px;
}
.screenshot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.screenshot-card p {
    font-weight: 600;
    color: #c2410c;
}

/* 聊天气泡 */
.chat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 16px;
}
.chat-bubble {
    background: #ffffff;
    border-radius: 32px;
    padding: 22px 26px;
    box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.04);
    border: 1px solid #ffedd5;
    display: flex;
    gap: 14px;
    transition: 0.25s;
}
.chat-bubble:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 38px -16px rgba(249, 115, 22, 0.2);
    border-color: #fdba74;
}
.chat-avatar {
    font-size: 2rem;
    color: #f97316;
}
.chat-content {
    flex: 1;
}
.chat-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #c2410c;
    margin-bottom: 6px;
}
.chat-text {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #2c2e3a;
}
.chat-time {
    font-size: 0.7rem;
    color: #9c8b70;
    margin-top: 12px;
    text-align: right;
}

/* 服务区域 */
.service-simple-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 20px;
}
.poster-card {
    flex: 1;
    min-width: 260px;
    background: linear-gradient(145deg, #fffaf2, #fff3e8);
    border-radius: 48px;
    padding: 32px 24px;
    text-align: center;
    border: 2px dashed #f97316;
}
.poster-card:hover {
    background: #fff6ec;
    transform: scale(1.01);
}
.poster-inner {
    background: rgba(255, 255, 245, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 36px;
    padding: 40px 16px;
}
.poster-inner i {
    font-size: 3.2rem;
    color: #f97316;
    margin-bottom: 18px;
    animation: gentleFloat 2s infinite ease-in-out;
}
@keyframes gentleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}
.contact-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    border-radius: 48px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #ffe0c4;
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: #f97316;
}
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 1.1rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}
.social-links a {
    color: #5b5c70;
    font-size: 1.8rem;
    transition: 0.2s;
}
.social-links a:hover {
    color: #f97316;
    transform: translateY(-3px);
}

footer {
    background: #13141f;
    color: #bcbcda;
    text-align: center;
    padding: 44px 0;
    font-size: 0.85rem;
}

@media (max-width: 880px) {
    .hero-info h1 { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .service-simple-wrapper { flex-direction: column; }
    .chat-grid { grid-template-columns: 1fr; }
    .photo-frame { width: 160px; height: 160px; }
    .screenshot-grid { flex-direction: column; }
}
.highlight {
    color: #f97316;
    font-weight: 700;
}
/* 他的故事 - 美化样式 */
.story-card {
    background: rgba(255, 255, 250, 0.85);
    backdrop-filter: blur(2px);
    border-radius: 48px;
    padding: 40px 48px;
    border: 1px solid #ffe0c4;
    transition: 0.2s;
    box-shadow: 0 20px 30px -16px rgba(0, 0, 0, 0.04);
}

.story-paragraph {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2c2f3c;
    margin-bottom: 28px;
    text-align: justify;
}

/* 首字下沉效果 */
.dropcap {
    float: left;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 0.85;
    margin-right: 12px;
    margin-top: 6px;
    color: #f97316;
    font-family: inherit;
    background: linear-gradient(135deg, #c2410c, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 高亮品牌词 */
.highlight-brand {
    background: linear-gradient(120deg, #fff0e6, #ffe2cc);
    color: #c2410c;
    padding: 2px 12px;
    border-radius: 40px;
    font-weight: 800;
    display: inline-block;
    font-size: 1.1rem;
}

/* 现代引用块 */
.modern-quote {
    background: linear-gradient(105deg, #fff6ef, #ffefe2);
    border-left: 6px solid #f97316;
    padding: 20px 32px;
    border-radius: 40px;
    font-weight: 700;
    color: #c2410c;
    font-size: 1.2rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.08);
}

.modern-quote i {
    font-size: 2rem;
    color: #f97316;
    opacity: 0.8;
}
