@charset "UTF-8";
/*
  ============================================================
  骰子结果声明
  D12=7: 便当盒网格(Bento) | D8=5: 隐形滚动(scroll-spy)
  D30: [11,14,26,28,30] | D8=6: SVG textPath
  D8=1: 刚性机械 | D8=2: 新拟态(Neumorphism)
  D8=2: 舒适宽松 | D8=1: 入场即现
  彩蛋: E10 生成纹理 | 主题: 银粉色系
  ============================================================
*/

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Primary Silver-Pink Palette */
    --xjy-primary: #D4A5A5;
    --xjy-primary-light: #E8C4C4;
    --xjy-primary-dark: #B88989;
    --xjy-primary-soft: #F0D5D5;
    --xjy-primary-mute: #FAEDED;

    /* Silver Accents */
    --xjy-silver: #C0C0C0;
    --xjy-silver-light: #E8E8E8;
    --xjy-silver-dark: #A0A0A0;

    /* Background Layers */
    --xjy-bg-primary: #FAF5F5;
    --xjy-bg-secondary: #F5EDED;
    --xjy-bg-card: #FDF8F8;
    --xjy-bg-dark: #2D2424;

    /* Text Colors */
    --xjy-text-primary: #3D3333;
    --xjy-text-secondary: #6B5B5B;
    --xjy-text-muted: #9B8B8B;
    --xjy-text-light: #FDF8F8;

    /* Border & Divider */
    --xjy-border: #E8D8D8;
    --xjy-border-light: #F0E5E5;
    --xjy-border-radius-sm: 12px;
    --xjy-border-radius: 20px;
    --xjy-border-radius-lg: 28px;
    --xjy-border-radius-xl: 36px;

    /* Neumorphism Shadows (维度6: 新拟态) */
    --xjy-shadow-light: #FFFFFF;
    --xjy-shadow-dark: rgba(180, 150, 150, 0.25);
    --xjy-neu-raised: 8px 8px 16px var(--xjy-shadow-dark), -8px -8px 16px var(--xjy-shadow-light);
    --xjy-neu-raised-sm: 4px 4px 8px var(--xjy-shadow-dark), -4px -4px 8px var(--xjy-shadow-light);
    --xjy-neu-raised-lg: 12px 12px 24px var(--xjy-shadow-dark), -12px -12px 24px var(--xjy-shadow-light);
    --xjy-neu-inset: inset 4px 4px 8px var(--xjy-shadow-dark), inset -4px -4px 8px var(--xjy-shadow-light);
    --xjy-neu-inset-sm: inset 2px 2px 4px var(--xjy-shadow-dark), inset -2px -2px 4px var(--xjy-shadow-light);

    /* Animation (维度5: 刚性机械 linear 0.1s) */
    --xjy-transition-fast: all 0.1s linear;
    --xjy-transition: all 0.15s linear;
    --xjy-transition-slow: all 0.2s linear;

    /* Layout Spacing (维度7: 舒适宽松) */
    --xjy-section-padding: 8vh;
    --xjy-section-gap: 8vh;
    --xjy-container-padding: 1.5rem;

    /* Typography */
    --xjy-line-height: 1.6;
    --xjy-line-height-tight: 1.3;
    --xjy-letter-spacing: 0.02em;

    /* Scroll Progress */
    --xjy-scroll-progress: 0;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--xjy-bg-primary);
    color: var(--xjy-text-primary);
    line-height: var(--xjy-line-height);
    letter-spacing: var(--xjy-letter-spacing);
    overflow-x: hidden;
    font-display: swap;
}
a {
    color: var(--xjy-primary-dark);
    text-decoration: none;
    transition: var(--xjy-transition-fast);
}
a:hover, a:focus { color: var(--xjy-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
    color: var(--xjy-text-primary);
    line-height: var(--xjy-line-height-tight);
    font-weight: 600;
}
::selection { background: var(--xjy-primary-soft); color: var(--xjy-text-primary); }
:focus-visible { outline: 2px solid var(--xjy-primary); outline-offset: 2px; }

/* ==================== SKIP LINK ==================== */
.xjy-skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--xjy-primary-dark); color: var(--xjy-text-light);
    padding: 0.75rem 1.5rem; border-radius: 0 0 var(--xjy-border-radius) var(--xjy-border-radius);
    z-index: 99999; font-weight: 500; white-space: nowrap;
    box-shadow: var(--xjy-neu-raised); transition: var(--xjy-transition-fast);
}
.xjy-skip-link:focus { top: 0; }

/* ==================== CANVAS BG (E10: 生成纹理) ==================== */
.xjy-canvas-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none; opacity: 0.4;
}

/* ==================== SCROLL PROGRESS RING (#28) ==================== */
.xjy-scroll-progress-container {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--xjy-transition); pointer-events: none;
}
.xjy-scroll-progress-container.visible { opacity: 1; pointer-events: auto; }
.xjy-scroll-progress-ring { position: absolute; transform: rotate(-90deg); }
.xjy-progress-track { stroke: var(--xjy-border-light); }
.xjy-progress-indicator {
    stroke: var(--xjy-primary);
    stroke-dashoffset: calc(163.36 - (163.36 * var(--xjy-scroll-progress)) / 100);
    transition: stroke-dashoffset 0.1s linear;
}
.xjy-progress-percent {
    font-size: 0.65rem; font-weight: 700; color: var(--xjy-primary-dark);
    position: relative; z-index: 1;
}

/* ==================== TOP BAR ==================== */
.xjy-top-bar {
    background: linear-gradient(135deg, var(--xjy-primary-mute) 0%, var(--xjy-bg-secondary) 100%);
    border-bottom: 1px solid var(--xjy-border-light);
    padding: 0.5rem 0; font-size: 0.8125rem;
}
.xjy-top-bar-item { color: var(--xjy-text-secondary); display: inline-flex; align-items: center; gap: 0.35rem; }
.xjy-top-bar-item i { color: var(--xjy-primary); font-size: 0.75rem; }
.xjy-top-bar-item a { color: var(--xjy-primary-dark); font-weight: 500; }
.xjy-top-bar-divider {
    display: inline-block; width: 4px; height: 4px; border-radius: 50%;
    background: var(--xjy-primary-soft); margin: 0 0.75rem; vertical-align: middle;
}

/* ==================== MAIN HEADER & NAV ==================== */
.xjy-main-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(250, 245, 245, 0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--xjy-border-light);
    transition: var(--xjy-transition-fast);
}
.xjy-main-header.scrolled {
    box-shadow: 0 4px 20px rgba(180, 150, 150, 0.12);
    background: rgba(250, 245, 245, 0.97);
}
.xjy-navbar { padding: 0.75rem 0; }
.xjy-brand {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0; margin: 0;
}
.xjy-brand-logo {
    width: 48px; height: 48px; border-radius: var(--xjy-border-radius-sm);
    box-shadow: var(--xjy-neu-raised-sm); object-fit: contain;
    background: var(--xjy-bg-card); padding: 4px;
}
.xjy-brand-text { display: flex; flex-direction: column; }
.xjy-brand-name {
    font-size: 1.25rem; font-weight: 700; color: var(--xjy-text-primary);
    line-height: 1.2; letter-spacing: 0.04em;
}
.xjy-brand-tagline {
    font-size: 0.6875rem; color: var(--xjy-text-muted);
    letter-spacing: 0.06em; margin-top: 0.15rem;
}

/* Nav Toggle */
.xjy-nav-toggle {
    border: none; padding: 0.5rem; border-radius: var(--xjy-border-radius-sm);
    box-shadow: var(--xjy-neu-raised-sm); background: var(--xjy-bg-card);
    width: 44px; height: 44px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
}
.xjy-nav-toggle:focus { box-shadow: var(--xjy-neu-inset); }
.xjy-toggle-line {
    display: block; width: 22px; height: 2px; background: var(--xjy-primary-dark);
    border-radius: 2px; transition: var(--xjy-transition-fast);
}
.xjy-nav-toggle[aria-expanded="true"] .xjy-toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.xjy-nav-toggle[aria-expanded="true"] .xjy-toggle-line:nth-child(2) { opacity: 0; }
.xjy-nav-toggle[aria-expanded="true"] .xjy-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav Links */
.xjy-nav-list { gap: 0.25rem; }
.xjy-nav-item { position: relative; }
.xjy-nav-link {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.625rem 1rem; border-radius: var(--xjy-border-radius-sm);
    color: var(--xjy-text-secondary); font-size: 0.9375rem; font-weight: 500;
    transition: var(--xjy-transition-fast); white-space: nowrap;
}
.xjy-nav-link i { font-size: 1rem; color: var(--xjy-text-muted); transition: var(--xjy-transition-fast); }
.xjy-nav-link:hover, .xjy-nav-link:focus {
    color: var(--xjy-primary-dark); background: var(--xjy-primary-mute);
    box-shadow: var(--xjy-neu-inset-sm);
}
.xjy-nav-link:hover i, .xjy-nav-link:focus i { color: var(--xjy-primary); }
.xjy-nav-link.active {
    color: var(--xjy-primary-dark); background: var(--xjy-primary-soft);
    box-shadow: var(--xjy-neu-inset-sm); font-weight: 600;
}
.xjy-nav-link.active i { color: var(--xjy-primary); }

/* Nav CTA */
.xjy-nav-cta { margin-left: 1rem; }

/* ==================== BUTTONS (Neumorphic) ==================== */
.xjy-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem; border-radius: var(--xjy-border-radius);
    font-weight: 600; font-size: 0.9375rem; border: none; cursor: pointer;
    transition: var(--xjy-transition-fast); white-space: nowrap;
    position: relative; overflow: hidden;
}
.xjy-btn-primary {
    background: linear-gradient(135deg, var(--xjy-primary) 0%, var(--xjy-primary-dark) 100%);
    color: var(--xjy-text-light); box-shadow: var(--xjy-neu-raised);
}
.xjy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--xjy-neu-raised-lg), 0 8px 25px rgba(180, 150, 150, 0.3);
    color: var(--xjy-text-light);
}
.xjy-btn-primary:active { transform: translateY(0); box-shadow: var(--xjy-neu-inset); }
.xjy-btn-outline {
    background: var(--xjy-bg-card); color: var(--xjy-primary-dark);
    box-shadow: var(--xjy-neu-raised-sm); border: 1px solid var(--xjy-border);
}
.xjy-btn-outline:hover {
    box-shadow: var(--xjy-neu-inset-sm); color: var(--xjy-primary);
}
.xjy-btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; border-radius: var(--xjy-border-radius-sm); }
.xjy-btn-lg { padding: 1rem 2.5rem; font-size: 1rem; border-radius: var(--xjy-border-radius-lg); }

/* ==================== SOUNDWAVE FEEDBACK (#26) ==================== */
.xjy-soundwave-container {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 9999; pointer-events: none; opacity: 0;
}
.xjy-soundwave-container.active { opacity: 1; }
.xjy-soundwave-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 20px; height: 20px; border-radius: 50%;
    border: 2px solid var(--xjy-primary); opacity: 0;
}
.xjy-soundwave-container.active .xjy-soundwave-ring {
    animation: xjySoundwave 0.6s ease-out forwards;
}
.xjy-soundwave-container.active .xjy-soundwave-ring:nth-child(1) { animation-delay: 0s; }
.xjy-soundwave-container.active .xjy-soundwave-ring:nth-child(2) { animation-delay: 0.15s; }
.xjy-soundwave-container.active .xjy-soundwave-ring:nth-child(3) { animation-delay: 0.3s; }
@keyframes xjySoundwave {
    0% { width: 20px; height: 20px; opacity: 0.8; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

/* ==================== MOBILE BOTTOM NAV ==================== */
.xjy-mobile-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
    background: rgba(250, 245, 245, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--xjy-border-light);
    display: flex; justify-content: space-around; align-items: center;
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(180, 150, 150, 0.1);
}
.xjy-mob-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
    padding: 0.35rem 0.75rem; border-radius: var(--xjy-border-radius-sm);
    color: var(--xjy-text-muted); font-size: 0.6875rem; transition: var(--xjy-transition-fast);
}
.xjy-mob-nav-item i { font-size: 1.25rem; }
.xjy-mob-nav-item.active { color: var(--xjy-primary-dark); }
.xjy-mob-nav-item:active { box-shadow: var(--xjy-neu-inset-sm); }
.xjy-mob-nav-call { color: var(--xjy-primary-dark); }
.xjy-mob-nav-call i { color: var(--xjy-primary); }

/* ==================== BREADCRUMB ==================== */
.xjy-breadcrumb-bar {
    background: var(--xjy-bg-secondary); border-bottom: 1px solid var(--xjy-border-light);
    padding: 0.75rem 0;
}
.xjy-breadcrumb {
    background: none; padding: 0; margin: 0; font-size: 0.8125rem;
}
.xjy-bc-item a { color: var(--xjy-text-secondary); }
.xjy-bc-item a:hover { color: var(--xjy-primary-dark); }
.xjy-bc-item.active { color: var(--xjy-text-muted); }

/* ==================== MAIN CONTENT ==================== */
.xjy-main-content { min-height: 50vh; }

/* ==================== SECTIONS ==================== */
.xjy-section {
    padding: var(--xjy-section-padding) 0;
    position: relative;
}
.xjy-section-alt { background: var(--xjy-bg-secondary); }
.xjy-section-mute { background: linear-gradient(135deg, var(--xjy-bg-primary) 0%, var(--xjy-primary-mute) 100%); }

/* Section Headers */
.xjy-section-header { text-align: center; margin-bottom: 3rem; }
.xjy-section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8125rem; font-weight: 600; color: var(--xjy-primary);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.xjy-section-label::before, .xjy-section-label::after {
    content: ''; display: block; width: 24px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--xjy-primary));
}
.xjy-section-label::after {
    background: linear-gradient(90deg, var(--xjy-primary), transparent);
}
.xjy-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700;
    color: var(--xjy-text-primary); margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.xjy-section-subtitle {
    font-size: 1rem; color: var(--xjy-text-secondary); max-width: 600px; margin: 0 auto;
}

/* ==================== SVG TEXT PATH (维度4: 文字图形) ==================== */
.xjy-svg-text-container { position: relative; overflow: hidden; }
.xjy-svg-text-path {
    width: 100%; height: auto; overflow: visible;
}
.xjy-svg-text-path text {
    fill: var(--xjy-primary-soft); font-size: 14px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
}

/* ==================== CARDS (Neumorphic) ==================== */
.xjy-card {
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius-lg);
    box-shadow: var(--xjy-neu-raised); padding: 2rem;
    transition: var(--xjy-transition-fast); 
    /*height: 100%;*/
    border: 1px solid var(--xjy-border-light);
}
.xjy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--xjy-neu-raised-lg), 0 12px 40px rgba(180, 150, 150, 0.15);
}
.xjy-card-inset {
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius-lg);
    box-shadow: var(--xjy-neu-inset); padding: 2rem;
    border: 1px solid var(--xjy-border-light);
}
.xjy-card-icon {
    width: 64px; height: 64px; border-radius: var(--xjy-border-radius);
    background: linear-gradient(135deg, var(--xjy-primary-soft) 0%, var(--xjy-primary-mute) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--xjy-neu-raised-sm); margin-bottom: 1.25rem;
}
.xjy-card-icon i { font-size: 1.75rem; color: var(--xjy-primary-dark); }
.xjy-card-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.xjy-card-text { font-size: 0.9375rem; color: var(--xjy-text-secondary); line-height: 1.7; }

/* ==================== BADGES & TAGS ==================== */
.xjy-badge {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.8125rem;
    font-weight: 500;
}
.xjy-badge-primary { background: var(--xjy-primary-soft); color: var(--xjy-primary-dark); }
.xjy-badge-outline { background: transparent; border: 1px solid var(--xjy-border); color: var(--xjy-text-secondary); }
.xjy-tag {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: var(--xjy-border-radius-sm);
    background: var(--xjy-bg-secondary); color: var(--xjy-text-secondary);
    font-size: 0.8125rem; margin: 0.25rem; transition: var(--xjy-transition-fast);
    border: 1px solid var(--xjy-border-light);
}
.xjy-tag:hover { background: var(--xjy-primary-soft); color: var(--xjy-primary-dark); border-color: var(--xjy-primary-soft); }

/* ==================== HERO SECTION ==================== */
.xjy-hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--xjy-bg-primary) 0%, var(--xjy-primary-mute) 50%, var(--xjy-bg-secondary) 100%);
}
.xjy-hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
    background-image: radial-gradient(circle at 25% 25%, var(--xjy-primary) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, var(--xjy-primary) 1px, transparent 1px);
    background-size: 60px 60px;
}
.xjy-hero-content { position: relative; z-index: 2; }
.xjy-hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--xjy-bg-card); padding: 0.5rem 1.25rem;
    border-radius: 50px; box-shadow: var(--xjy-neu-raised-sm);
    font-size: 0.875rem; color: var(--xjy-primary-dark); font-weight: 500;
    margin-bottom: 1.5rem;
}
.xjy-hero-badge i { color: var(--xjy-primary); }
.xjy-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 1.25rem; color: var(--xjy-text-primary);
}
.xjy-hero-title .xjy-highlight {
    background: linear-gradient(135deg, var(--xjy-primary) 0%, var(--xjy-primary-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.xjy-hero-desc {
    font-size: 1.0625rem; color: var(--xjy-text-secondary);
    max-width: 520px; margin-bottom: 2rem; line-height: 1.8;
}
.xjy-hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.xjy-hero-stat { text-align: center; }
.xjy-hero-stat-number {
    font-size: 1.75rem; font-weight: 800;
    background: linear-gradient(135deg, var(--xjy-primary-dark) 0%, var(--xjy-primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.xjy-hero-stat-label { font-size: 0.8125rem; color: var(--xjy-text-muted); }
.xjy-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.xjy-hero-image {
    position: relative; border-radius: var(--xjy-border-radius-xl);
    box-shadow: var(--xjy-neu-raised-lg); overflow: hidden;
    background: var(--xjy-bg-card); padding: 1rem;
}
.xjy-hero-image img { border-radius: var(--xjy-border-radius-lg); width: 100%; }

/* ==================== SLIDER / CAROUSEL ==================== */
.xjy-carousel { border-radius: var(--xjy-border-radius-lg); overflow: hidden; box-shadow: var(--xjy-neu-raised); }
.xjy-carousel .carousel-item { height: 500px; }
.xjy-carousel .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.xjy-carousel-caption {
    background: rgba(250, 245, 245, 0.9); backdrop-filter: blur(10px);
    border-radius: var(--xjy-border-radius); padding: 1.5rem 2rem;
    box-shadow: var(--xjy-neu-raised-sm); max-width: 500px;
}
.xjy-carousel-indicators button {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--xjy-border); border: none; margin: 0 5px;
    transition: var(--xjy-transition-fast);
}
.xjy-carousel-indicators button.active { background: var(--xjy-primary); transform: scale(1.2); }

/* ==================== BENTO GRID (维度1: 便当盒网格) ==================== */
.xjy-bento-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
}
.xjy-bento-item {
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius-lg);
    box-shadow: var(--xjy-neu-raised); padding: 1.75rem;
    transition: var(--xjy-transition-fast); overflow: hidden;
    border: 1px solid var(--xjy-border-light); display: flex; flex-direction: column;
}
.xjy-bento-item:hover { transform: translateY(-3px); box-shadow: var(--xjy-neu-raised-lg); }
.xjy-bento-item-lg { grid-column: span 2; grid-row: span 2; }
.xjy-bento-item-wide { grid-column: span 2; }
.xjy-bento-item-tall { grid-row: span 2; }

/* ==================== STATS / COUNTERS ==================== */
.xjy-stat-card { text-align: center; padding: 2rem 1rem; }
.xjy-stat-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--xjy-primary-soft) 0%, var(--xjy-primary-mute) 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--xjy-neu-raised-sm); margin: 0 auto 1rem;
}
.xjy-stat-icon i { font-size: 2rem; color: var(--xjy-primary-dark); }
.xjy-stat-number {
    font-size: 2.5rem; font-weight: 800; line-height: 1;
    background: linear-gradient(135deg, var(--xjy-primary-dark) 0%, var(--xjy-primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.xjy-stat-label { font-size: 0.9375rem; color: var(--xjy-text-secondary); margin-top: 0.5rem; }

/* ==================== TIMELINE ==================== */
.xjy-timeline { position: relative; padding-left: 2rem; }
.xjy-timeline::before {
    content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--xjy-primary) 0%, var(--xjy-primary-soft) 100%);
}
.xjy-timeline-item { position: relative; padding-bottom: 2rem; }
.xjy-timeline-dot {
    position: absolute; left: -2rem; top: 0.25rem; width: 16px; height: 16px;
    border-radius: 50%; background: var(--xjy-primary);
    box-shadow: 0 0 0 4px var(--xjy-primary-soft); border: 2px solid var(--xjy-bg-card);
}
.xjy-timeline-content { background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius); padding: 1.25rem; box-shadow: var(--xjy-neu-raised-sm); }
.xjy-timeline-year { font-size: 0.8125rem; color: var(--xjy-primary); font-weight: 600; }

/* ==================== FAQ (Schema FAQPage) ==================== */
.xjy-faq-item { margin-bottom: 1rem; }
.xjy-faq-question {
    width: 100%; text-align: left; padding: 1.25rem 1.5rem;
    background: var(--xjy-bg-card); border: none; border-radius: var(--xjy-border-radius);
    box-shadow: var(--xjy-neu-raised-sm); font-weight: 600; font-size: 1rem;
    color: var(--xjy-text-primary); display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: var(--xjy-transition-fast);
}
.xjy-faq-question:hover { box-shadow: var(--xjy-neu-raised); }
.xjy-faq-question[aria-expanded="true"] { box-shadow: var(--xjy-neu-inset); color: var(--xjy-primary-dark); }
.xjy-faq-question i { transition: transform 0.1s linear; color: var(--xjy-primary); }
.xjy-faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.xjy-faq-answer {
    padding: 1.25rem 1.5rem; color: var(--xjy-text-secondary);
    background: var(--xjy-bg-secondary); border-radius: 0 0 var(--xjy-border-radius) var(--xjy-border-radius);
    margin-top: -4px; position: relative; z-index: -1; line-height: 1.8;
}

/* ==================== FORMS (Liquid Form #20) ==================== */
.xjy-form-group { margin-bottom: 1.25rem; }
.xjy-form-label {
    display: block; font-size: 0.875rem; font-weight: 600;
    color: var(--xjy-text-primary); margin-bottom: 0.5rem;
}
.xjy-form-label .xjy-required { color: #E57373; margin-left: 0.25rem; }
.xjy-form-control {
    width: 100%; padding: 0.875rem 1.25rem;
    background: var(--xjy-bg-card); border: 1px solid var(--xjy-border);
    border-radius: var(--xjy-border-radius); color: var(--xjy-text-primary);
    font-size: 0.9375rem; transition: var(--xjy-transition-fast);
    box-shadow: var(--xjy-neu-inset-sm);
}
.xjy-form-control:focus {
    outline: none; border-color: var(--xjy-primary);
    box-shadow: var(--xjy-neu-inset), 0 0 0 3px var(--xjy-primary-soft);
}
.xjy-form-control::placeholder { color: var(--xjy-text-muted); }
.xjy-form-control.is-invalid { border-color: #E57373; animation: xjyJelly 0.4s ease; }
@keyframes xjyJelly {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

/* ==================== CITY GRID ==================== */
.xjy-city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.75rem; }
.xjy-city-item {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.625rem 0.75rem; background: var(--xjy-bg-card);
    border-radius: var(--xjy-border-radius-sm); box-shadow: var(--xjy-neu-raised-sm);
    font-size: 0.875rem; color: var(--xjy-text-secondary); transition: var(--xjy-transition-fast);
    border: 1px solid var(--xjy-border-light); white-space: nowrap;
}
.xjy-city-item:hover { background: var(--xjy-primary-soft); color: var(--xjy-primary-dark); transform: translateY(-2px); }
.xjy-city-item i { font-size: 0.75rem; color: var(--xjy-primary); }

/* ==================== NEWS / CARDS ==================== */
.xjy-news-card {
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius-lg);
    box-shadow: var(--xjy-neu-raised); overflow: hidden; transition: var(--xjy-transition-fast);
    height: 100%; display: flex; flex-direction: column; border: 1px solid var(--xjy-border-light);
}
.xjy-news-card:hover { transform: translateY(-5px); box-shadow: var(--xjy-neu-raised-lg), 0 15px 35px rgba(180, 150, 150, 0.12); }
.xjy-news-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;       /* 固定高度 */
    flex-shrink: 0;
    background-color: #f0f0f0; /* 加个背景色，图片加载前不显白板 */
}

.xjy-news-img-wrap img {
    display: block;       /* 【必须加】消除底部留白 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* 图片居中裁剪 */
    transition: transform 0.3s linear;
}

.xjy-news-card:hover .xjy-news-img-wrap img { transform: scale(1.05); }
.xjy-news-category {
    position: absolute; top: 1rem; left: 1rem;
    background: rgba(250, 245, 245, 0.95); backdrop-filter: blur(4px);
    padding: 0.35rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600; color: var(--xjy-primary-dark);
    box-shadow: var(--xjy-neu-raised-sm);
}
.xjy-news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.xjy-news-title {
    font-size: 1.0625rem; font-weight: 600; color: var(--xjy-text-primary);
    margin-bottom: 0.75rem; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.xjy-news-desc {
    font-size: 0.875rem; color: var(--xjy-text-secondary); line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.xjy-news-meta {
    display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
    padding-top: 1rem; border-top: 1px solid var(--xjy-border-light);
    font-size: 0.8125rem; color: var(--xjy-text-muted);
}
.xjy-news-meta i { margin-right: 0.25rem; }

/* ==================== NEWS DETAIL ==================== */
.xjy-article-header { margin-bottom: 2rem; }
.xjy-article-title { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
.xjy-article-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--xjy-text-muted); }
.xjy-article-meta i { color: var(--xjy-primary); }
.xjy-article-featured-img { border-radius: var(--xjy-border-radius-lg); overflow: hidden; box-shadow: var(--xjy-neu-raised); margin-bottom: 2rem; }
.xjy-article-featured-img img { width: 100%; height: auto; }
.xjy-article-content { font-size: 1rem; line-height: 1.9; color: var(--xjy-text-primary); }
.xjy-article-content p { margin-bottom: 1.25rem; }
.xjy-article-content h2, .xjy-article-content h3 { margin: 2rem 0 1rem; color: var(--xjy-text-primary); }
.xjy-article-content img { border-radius: var(--xjy-border-radius); box-shadow: var(--xjy-neu-raised-sm); margin: 1.5rem 0; }
.xjy-article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--xjy-border); }

/* ==================== GLITCH GALLERY (#21: 故障画廊) ==================== */
.xjy-glitch-img { position: relative; overflow: hidden; }
.xjy-glitch-img:hover img {
    animation: xjyGlitch 0.3s linear;
}
@keyframes xjyGlitch {
    0% { filter: none; transform: translate(0); }
    20% { filter: hue-rotate(90deg); transform: translate(-3px, 2px); }
    40% { filter: hue-rotate(180deg) saturate(1.5); transform: translate(3px, -2px); }
    60% { filter: hue-rotate(270deg); transform: translate(-2px, -1px); }
    80% { filter: hue-rotate(360deg); transform: translate(2px, 1px); }
    100% { filter: none; transform: translate(0); }
}

/* ==================== TOAST NOTIFICATION (#13) ==================== */
.xjy-toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 1060; }
.xjy-toast {
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius);
    box-shadow: var(--xjy-neu-raised-lg); padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
    border-left: 4px solid var(--xjy-primary);
    animation: xjySlideIn 0.2s linear; max-width: 350px;
}
@keyframes xjySlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.xjy-toast-icon { font-size: 1.25rem; color: var(--xjy-primary); flex-shrink: 0; }

/* ==================== BACK TO TOP ==================== */
.xjy-back-to-top {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 1000;
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--xjy-bg-card); border: none;
    box-shadow: var(--xjy-neu-raised); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--xjy-primary-dark); font-size: 1.25rem;
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: var(--xjy-transition-fast);
}
.xjy-back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.xjy-back-to-top:hover { box-shadow: var(--xjy-neu-raised-lg); color: var(--xjy-primary); }
.xjy-btt-progress { position: absolute; width: 44px; height: 44px; }
.xjy-btt-track { stroke: var(--xjy-border-light); }
.xjy-btt-indicator { stroke: var(--xjy-primary); transition: stroke-dashoffset 0.1s linear; }

/* ==================== FOOTER ==================== */
.xjy-footer-wave { height: 60px; overflow: hidden; line-height: 0; }
.xjy-footer-wave-svg { width: 100%; height: 100%; }
.xjy-footer-main {
    background: linear-gradient(135deg, var(--xjy-bg-dark) 0%, #3D3333 100%);
    color: var(--xjy-text-light); padding: 4rem 0 2rem;
}
.xjy-footer-brand { margin-bottom: 1.5rem; }
.xjy-footer-logo-link { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.xjy-footer-logo {
    width: 56px; height: 56px; border-radius: var(--xjy-border-radius-sm);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.3), -6px -6px 12px rgba(255,255,255,0.05);
    object-fit: contain; background: var(--xjy-bg-card); padding: 4px;
}
.xjy-footer-logo-text { display: flex; flex-direction: column; }
.xjy-footer-name { font-size: 1.25rem; font-weight: 700; color: var(--xjy-text-light); }
.xjy-footer-slogan { font-size: 0.75rem; color: var(--xjy-silver); letter-spacing: 0.08em; }
.xjy-footer-desc { font-size: 0.875rem; color: var(--xjy-silver); line-height: 1.8; margin-bottom: 1.25rem; }

/* Footer Social */
.xjy-footer-social { display: flex; gap: 0.75rem; }
.xjy-social-btn {
    width: 42px; height: 42px; border-radius: var(--xjy-border-radius-sm);
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: var(--xjy-silver); font-size: 1.125rem; transition: var(--xjy-transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}
.xjy-social-btn:hover { background: var(--xjy-primary); color: var(--xjy-text-light); transform: translateY(-2px); }

/* Footer Links */
.xjy-footer-title {
    font-size: 1.0625rem; font-weight: 600; color: var(--xjy-text-light);
    margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem;
}
.xjy-footer-title i { color: var(--xjy-primary); }
.xjy-footer-list li { margin-bottom: 0.625rem; }
.xjy-footer-link {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--xjy-silver); font-size: 0.875rem; transition: var(--xjy-transition-fast);
}
.xjy-footer-link i { font-size: 0.625rem; color: var(--xjy-primary); }
.xjy-footer-link:hover { color: var(--xjy-text-light); padding-left: 0.35rem; }

/* Footer Contact */
.xjy-contact-list { list-style: none; }
.xjy-contact-item { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1rem; }
.xjy-contact-icon {
    width: 40px; height: 40px; border-radius: var(--xjy-border-radius-sm);
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: var(--xjy-primary); font-size: 1rem; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.xjy-contact-label { display: block; font-size: 0.75rem; color: var(--xjy-silver); margin-bottom: 0.15rem; }
.xjy-contact-value { font-size: 0.875rem; color: var(--xjy-text-light); font-weight: 500; }
a.xjy-contact-value:hover { color: var(--xjy-primary); }

/* WeChat QR */
.xjy-footer-qr { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
.xjy-qr-label { font-size: 0.8125rem; color: var(--xjy-silver); margin-bottom: 0.75rem; }
.xjy-qr-wrapper { position: relative; display: inline-block; border-radius: var(--xjy-border-radius-sm); overflow: hidden; }
.xjy-qr-img { width: 120px; height: 120px; border-radius: var(--xjy-border-radius-sm); }
.xjy-qr-scan-line {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--xjy-primary), transparent);
    animation: xjyQrScan 2s linear infinite;
}
@keyframes xjyQrScan { 0%, 100% { top: 0; } 50% { top: 118px; } }
.xjy-qr-wechat { font-size: 0.75rem; color: var(--xjy-silver); margin-top: 0.5rem; }

/* Friend Links */
.xjy-friend-links {
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.xjy-friend-header {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9375rem; font-weight: 600; color: var(--xjy-text-light);
    margin-bottom: 1rem;
}
.xjy-friend-header i { color: var(--xjy-primary); }
.xjy-friend-line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.xjy-friend-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.xjy-friend-link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.4rem 0.85rem; border-radius: var(--xjy-border-radius-sm);
    background: rgba(255,255,255,0.06); color: var(--xjy-silver);
    font-size: 0.8125rem; transition: var(--xjy-transition-fast);
    border: 1px solid rgba(255,255,255,0.08);
}
.xjy-friend-link:hover { background: var(--xjy-primary); color: var(--xjy-text-light); border-color: var(--xjy-primary); }

/* Footer Bottom */
.xjy-footer-bottom {
    background: rgba(0,0,0,0.2); padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.xjy-copyright { font-size: 0.8125rem; color: var(--xjy-silver); }
.xjy-copyright i { color: var(--xjy-primary); }
.xjy-copyright-divider { margin: 0 0.5rem; opacity: 0.5; }
.xjy-footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; flex-wrap: wrap; }
.xjy-legal-link { color: var(--xjy-silver); font-size: 0.8125rem; }
.xjy-legal-link:hover { color: var(--xjy-text-light); }
.xjy-legal-divider { width: 3px; height: 3px; border-radius: 50%; background: var(--xjy-silver); opacity: 0.4; }
.xjy-footer-disclaimer {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; font-size: 0.75rem; color: var(--xjy-silver-dark);
}
.xjy-footer-disclaimer i { color: var(--xjy-primary); margin-right: 0.25rem; }

/* ==================== PAGINATION ==================== */
.xjy-pagination { display: flex; justify-content: center; gap: 0.35rem; margin-top: 3rem; }
.xjy-page-item {
    min-width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
    background: var(--xjy-bg-card); border-radius: var(--xjy-border-radius-sm);
    box-shadow: var(--xjy-neu-raised-sm); color: var(--xjy-text-secondary);
    font-size: 0.875rem; font-weight: 500; padding: 0 0.75rem;
    transition: var(--xjy-transition-fast); border: 1px solid var(--xjy-border-light);
}
.xjy-page-item:hover { box-shadow: var(--xjy-neu-raised); color: var(--xjy-primary-dark); }
.xjy-page-item.active { background: var(--xjy-primary); color: var(--xjy-text-light); box-shadow: var(--xjy-neu-raised); }
.xjy-page-item.disabled { opacity: 0.5; pointer-events: none; }

/* ==================== COMPARISON SLIDER (#11) ==================== */
.xjy-compare-container { position: relative; overflow: hidden; border-radius: var(--xjy-border-radius-lg); }
.xjy-compare-before, .xjy-compare-after { position: relative; width: 100%; }
.xjy-compare-after { position: absolute; top: 0; left: 0; width: 50%; overflow: hidden; height: 100%; }
.xjy-compare-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
    background: var(--xjy-primary); cursor: ew-resize; z-index: 10;
    transform: translateX(-50%);
}
.xjy-compare-handle::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--xjy-primary); box-shadow: var(--xjy-neu-raised);
}

/* ==================== DYNAMIC PRICING (#30) ==================== */
.xjy-pricing-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 4px; background: var(--xjy-bg-secondary); outline: none; }
.xjy-pricing-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--xjy-primary); box-shadow: var(--xjy-neu-raised); cursor: pointer; }
.xjy-pricing-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--xjy-primary); box-shadow: var(--xjy-neu-raised); cursor: pointer; border: none; }

/* ==================== FLOATING CTA ==================== */
.xjy-float-cta {
    position: fixed; right: 2rem; top: 50%; transform: translateY(-50%); z-index: 999;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.xjy-float-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--xjy-bg-card); box-shadow: var(--xjy-neu-raised);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--xjy-primary-dark); font-size: 0.625rem; gap: 0.15rem;
    transition: var(--xjy-transition-fast); border: none; cursor: pointer;
}
.xjy-float-btn i { font-size: 1.25rem; }
.xjy-float-btn:hover { background: var(--xjy-primary); color: var(--xjy-text-light); transform: scale(1.1); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199px) {
    .xjy-bento-grid { grid-template-columns: repeat(3, 1fr); }
    .xjy-bento-item-lg { grid-column: span 2; grid-row: span 1; }
    .xjy-float-cta { display: none; }
}
@media (max-width: 991px) {
    :root { --xjy-section-padding: 5vh; }
    .xjy-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .xjy-bento-item-lg { grid-column: span 2; }
    .xjy-hero { min-height: auto; padding: 6rem 0 4rem; }
    .xjy-hero-stats { gap: 1.5rem; }
    .xjy-mobile-bottom-nav + main { padding-bottom: 70px; }
    .xjy-footer-legal { justify-content: center; margin-top: 0.75rem; }
    .xjy-scroll-progress-container { bottom: 5rem; right: 1rem; }
}
@media (max-width: 767px) {
    .xjy-bento-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .xjy-bento-item { padding: 1.25rem; }
    .xjy-bento-item-lg { grid-column: span 2; grid-row: span 1; }
    .xjy-section-title { font-size: 1.5rem; }
    .xjy-hero-title { font-size: 1.75rem; }
    .xjy-carousel .carousel-item { height: 280px; }
    .xjy-city-grid { grid-template-columns: repeat(3, 1fr); }
    .xjy-card { padding: 1.5rem; }
}
@media (max-width: 575px) {
    .xjy-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .xjy-bento-item-wide { grid-column: span 2; }
    .xjy-section-header { margin-bottom: 2rem; }
    .xjy-hero-actions { flex-direction: column; }
    .xjy-hero-actions .xjy-btn { width: 100%; }
    .xjy-news-img-wrap { height: 180px; }
    .xjy-stat-number { font-size: 2rem; }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .xjy-main-header, .xjy-mobile-bottom-nav, .xjy-float-cta,
    .xjy-scroll-progress-container, .xjy-back-to-top, .xjy-footer-wave,
    .xjy-canvas-bg { display: none !important; }
    .xjy-footer-main { background: #fff !important; color: #333 !important; }
    body { background: #fff !important; }
    .xjy-section { padding: 1rem 0 !important; }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .xjy-canvas-bg { display: none; }
}