:root {
    /* ── xAI Design Language ── */
    /* Canvas (surfaces) */
    --clr-bg: #0a0a0a;
    --clr-bg-alt: #1a1c20;
    --clr-bg-elev: #191919;

    /* Primary */
    --clr-primary: #ffffff;
    --clr-primary-hover: #fafaf7;
    --clr-primary-light: rgba(255, 255, 255, 0.08);

    /* Accent — sunset orange / dusk purple as sparse moments */
    --clr-accent: #ff7a17;
    --clr-accent-soft: #ffc285;
    --clr-accent-dusk: #7c3aed;
    --clr-accent-light: rgba(255, 122, 23, 0.1);

    /* Text */
    --clr-text: #ffffff;
    --clr-text-muted: #dadbdf;
    --clr-text-dim: #7d8187;

    /* Borders */
    --clr-border: #212327;
    --clr-border-light: #363a3f;
    --clr-border-glow: rgba(255, 255, 255, 0.15);

    /* Semantic */
    --clr-success: #10b981;
    --clr-warning: #f59e0b;
    --clr-danger: #ef4444;

    --clr-highlight: rgba(255,255,255,0.03);
    --clr-border-highlight: rgba(255,255,255,0.25);

    /* No gradients — flat white on near-black */
    --gradient-primary: #ffffff;
    --gradient-text: #ffffff;

    /* No shadows */
    --shadow-glow: none;
    --shadow-card: none;

    --font-main: 'HarmonyOS Sans', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'NumberFont', ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;

    --max-width: 1280px;
    --transition: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: clip; }



body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 让数字 / 价格 / 编号等场景默认使用 NumberFont（不影响中文与英文段落） */
.num, code, kbd, samp,
.card-price, .stat-value, .stat-number,
.data-table td a,
.contact-row-text strong, .ct-row strong,
.legal-meta, .legal-toc ol li::before {
    font-family: var(--font-mono);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; }

/* ========== 动态渐变光晕 Keyframes ========== */
@keyframes orbDrift1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 1; }
    25%  { transform: translate(5%, 10%) scale(1.12); opacity: 0.85; }
    50%  { transform: translate(-4%, 16%) scale(0.93); opacity: 1; }
    75%  { transform: translate(8%, 6%) scale(1.07); opacity: 0.9; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}
@keyframes orbDrift2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
    30%  { transform: translate(-10%, -8%) scale(1.15); opacity: 1; }
    60%  { transform: translate(9%, -12%) scale(0.88); opacity: 0.75; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}
@keyframes orbDrift3 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
    35%  { transform: translate(6%, 8%) scale(1.1); opacity: 1; }
    70%  { transform: translate(-7%, 4%) scale(0.9); opacity: 0.7; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
}
@keyframes orbPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes shimmerBorder {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========== 全局背景：纯黑画布 ========== */
.bg-grid {
    display: none;
}
.bg-orb {
    display: none;
}
.bg-orb-1 { display: none; }
.bg-orb-2 { display: none; }

.text-primary { color: var(--clr-primary); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 3%; position: relative; }
.section-padding { padding: 7rem 0; }

:root {
    --header-h: 64px;
    --page-top-offset: calc(var(--header-h) + 2.5rem);
}
@media (max-width: 600px) {
    :root { --page-top-offset: calc(var(--header-h) + 1.25rem); }
}
.bg-light {
    background: rgba(255,255,255,0.015);
    position: relative;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}
.bg-light::before { display: none; }
.bg-light::after { display: none; }

.gradient-text {
    color: var(--clr-text);
    -webkit-text-fill-color: unset;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.5rem 1.25rem; border-radius: 9999px; font-weight: 400; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.25); transition: var(--transition);
    gap: 0.5rem; font-size: 0.875rem; line-height: 1.25rem;
    white-space: nowrap; letter-spacing: 0;
    background: transparent; color: var(--clr-text);
}
.btn-lg { padding: 0.65rem 1.75rem; font-size: 0.95rem; }
.btn-primary {
    background: #ffffff; color: #0a0a0a;
    border-color: #ffffff;
}
.btn-primary:hover { background: #fafaf7; border-color: #fafaf7; }
.btn-primary::before { display: none; }

.btn-secondary {
    background: transparent; color: var(--clr-text);
    border-color: rgba(255,255,255,0.25);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.06); color: var(--clr-text);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline {
    background: transparent; color: var(--clr-text);
    border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.06); color: var(--clr-text);
    border-color: rgba(255,255,255,0.4);
}

.navbar { display: flex; justify-content: space-between; align-items: center; height: 64px; gap: 2rem; min-width: 0; width: 100%; box-sizing: border-box; }
.logo { flex-shrink: 0; }
#header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background-color: rgba(10,10,10,0.85); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border); transition: var(--transition);
}
#header.scrolled {
    border-bottom: 1px solid var(--clr-border);
    background-color: rgba(10,10,10,0.95);
}
.logo img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-link {
    font-size: 0.875rem; font-weight: 400; color: var(--clr-text);
    display: inline-flex; align-items: center; gap: 0.35rem; position: relative;
    opacity: 0.75;
}
.nav-link::after { display: none; }
.nav-link:hover { opacity: 1; color: var(--clr-text); }
.nav-link.nav-link-accent {
    padding: 0.3rem 0.85rem; border: 1px solid rgba(255,255,255,0.25);
    border-radius: 9999px; color: var(--clr-text); background: transparent; opacity: 1;
}
.nav-link.nav-link-accent:hover { background: rgba(255,255,255,0.06); }
.nav-ext { font-size: 0.7rem; opacity: 0.7; }

.nav-actions { display: flex; gap: 0.75rem; align-items: center; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--clr-text); font-size: 1.25rem; cursor: pointer; padding: 0.5rem; }

.mobile-nav-overlay {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none; flex-direction: column;
    padding: 1.5rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
    z-index: 999;
    border-top: 1px solid var(--clr-border);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    gap: 0;
}
.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay .nav-link {
    font-size: 1rem; font-weight: 400; opacity: 1;
    padding: 1rem 0; margin: 0; display: flex; align-items: center;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
}
.mobile-nav-overlay .nav-link:last-of-type { border-bottom: none; }
.mobile-nav-overlay .nav-link::after { display: none; }
.mobile-nav-overlay .btn { margin-top: 1.5rem; }

.hero-section {
    padding-top: 180px; padding-bottom: 120px;
    position: relative; text-align: center;
    /* 阻止光晕水平溢出，但允许向下溢出融合到下个区块 */
    clip-path: inset(0 0 -300px 0);
}
/* 主光晕 - 底部深紫扩散（强） */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: -30%; left: 50%;
    transform: translateX(-50%);
    width: 1100px; height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(109, 40, 217, 0.55) 0%,
        rgba(79, 70, 229, 0.35) 30%,
        rgba(67, 56, 202, 0.18) 55%,
        transparent 75%
    );
    border-radius: 50%;
    filter: blur(55px);
    animation: orbDrift1 16s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
/* 辅助光晕 - 右侧靛蓝 */
.hero-section .hero-orb-2 {
    position: absolute;
    top: 5%; right: -15%;
    width: 700px; height: 600px;
    background: radial-gradient(ellipse at center,
        rgba(67, 56, 202, 0.45) 0%,
        rgba(99, 102, 241, 0.25) 35%,
        rgba(79, 70, 229, 0.1) 60%,
        transparent 75%
    );
    border-radius: 50%;
    filter: blur(70px);
    animation: orbDrift2 20s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
/* 辅助光晕 - 左侧暖紫 */
.hero-section .hero-orb-3 {
    position: absolute;
    top: 15%; left: -12%;
    width: 600px; height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.4) 0%,
        rgba(167, 139, 250, 0.2) 40%,
        transparent 68%
    );
    border-radius: 50%;
    filter: blur(65px);
    animation: orbDrift3 24s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}

.hero-arc { display: none; }
.hero-floor { display: none; }
.hero-floor-grid { display: none; }
.hero-rings { display: none; }
.ring { display: none; }
.ring-dot { display: none; }

.hero-floats { display: none; }
.float-chip { display: none; }

.hero-beams { display: none; }

/* hero-section::after 保留做光晕用，hairline 改由 .features-section 顶部提供 */
.features-section { }

.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after { display: none; }

/* ========== 打字机光标 ========== */
@keyframes cursorBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
.typewriter {
    display: inline-block;
    background: linear-gradient(120deg, #c4b5fd 0%, #a78bfa 35%, #818cf8 70%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 100%;
    animation: typewriterShine 6s ease-in-out infinite;
    position: relative;
    min-height: 1em;
}
.typewriter::after {
    content: '';
    display: inline-block;
    width: 3px; height: 0.85em;
    background: #a78bfa;
    vertical-align: -0.08em;
    margin-left: 4px;
    border-radius: 2px;
    animation: cursorBlink 0.9s step-end infinite;
    -webkit-text-fill-color: #a78bfa;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}
@keyframes typewriterShine {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.3rem 0.9rem 0.3rem 0.5rem;
    margin-bottom: 2.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    font-size: 0.75rem; font-weight: 400;
    color: var(--clr-text-muted);
    font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge .badge-logo {
    width: 20px; height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.8;
}
.hero-badge .badge-text {
    display: inline-flex; align-items: baseline; gap: 0.55rem;
    line-height: 1;
}
.hero-badge .badge-version {
    color: var(--clr-text-dim);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    padding-left: 0.55rem;
    border-left: 1px solid var(--clr-border-light);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 400;
    line-height: 1.05; margin-bottom: 1.75rem;
    letter-spacing: clamp(-1.5px, -0.03em, -2px);
    color: #ffffff;
}
.hero-description {
    font-size: 1.125rem; color: var(--clr-text-muted);
    max-width: 680px; margin: 0 auto 2.5rem; line-height: 1.75; font-weight: 400;
}
.hero-buttons { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 5rem; flex-wrap: wrap; }

.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 0; max-width: 820px; margin: 0 auto;
    padding: 1.5rem 2.5rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
}
.stat-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.25rem; flex: 1; padding: 0.4rem 0;
}
.stat-number {
    font-size: 2rem; font-weight: 400; letter-spacing: -1.5px;
    color: #ffffff; line-height: 1.1;
    font-family: var(--font-main);
}
.stat-unit {
    font-size: 0.55em; font-weight: 400; color: var(--clr-text-muted); opacity: 0.85;
}
.stat-label {
    font-size: 0.75rem; color: var(--clr-text-dim); font-weight: 400;
    font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
}
.stat-divider {
    width: 1px; height: 36px;
    background: var(--clr-border);
    flex-shrink: 0; margin: 0 0.5rem;
}

.section-header { margin-bottom: 4rem; text-align: center; }
.section-eyebrow {
    color: var(--clr-text); font-family: var(--font-mono);
    font-size: 0.75rem; font-weight: 400; margin-bottom: 1rem;
    letter-spacing: 1.4px; text-transform: uppercase; opacity: 0.6;
}
.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem); font-weight: 400;
    margin-bottom: 1rem; letter-spacing: -0.04em; color: #ffffff;
}
.section-subtitle { color: var(--clr-text-muted); font-size: 1rem; max-width: 640px; margin: 0 auto; font-weight: 400; }

/* ========== 功能卡片 ========== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; border: 1px solid var(--clr-border); border-radius: 8px; overflow: hidden; }
.feature-card {
    background: var(--clr-bg-elev);
    border: none; border-right: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border);
    padding: 1.75rem; border-radius: 0;
    transition: var(--transition); position: relative;
}
.feature-card:last-child { border-right: none; }
/* 流光伪元素（初始隐藏） */
.feature-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 0;
    background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%),
        rgba(139, 92, 246, 0.12) 0%,
        transparent 60%
    );
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none; z-index: 0;
}
.feature-card:hover {
    background: rgba(255,255,255,0.025);
}
.feature-card:hover::before {
    display: block;
    opacity: 1;
}
.feature-card:hover .feature-icon {
    border-color: rgba(139, 92, 246, 0.5); color: #c4b5fd;
    background: rgba(139, 92, 246, 0.08);
}
.feature-corner { display: none; }
.feature-icon {
    width: 44px; height: 44px;
    background: transparent; color: var(--clr-text-muted);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1.25rem;
    border: 1px solid var(--clr-border); transition: var(--transition);
}
.feature-title { font-size: 1rem; font-weight: 400; margin-bottom: 0.65rem; color: #ffffff; }
.feature-desc { color: var(--clr-text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ========== 演示 Tabs ========== */
.demo-tabs {
    display: flex; gap: 0; margin-bottom: 0;
    border-bottom: 1px solid var(--clr-border);
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch; padding-bottom: 0;
    scrollbar-width: none;
}
.demo-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
    background: transparent; border: none; color: var(--clr-text-dim); font-size: 0.875rem;
    padding: 0.85rem 1.25rem; cursor: pointer; white-space: nowrap; font-weight: 400;
    transition: var(--transition); position: relative;
}
.tab-btn:hover {
    color: var(--clr-text);
}
.tab-btn:hover::after { display: none; }
.tab-btn.active {
    color: var(--clr-text);
    font-weight: 400;
}
.tab-btn.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px;
    background: #ffffff;
    border-radius: 0;
}

.tab-pane {
    display: none;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-top: none;
    border-radius: 0 0 8px 8px; padding: 2rem;
}
.tab-pane.active { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.demo-desc { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.data-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.table-scroll {
    overflow-x: auto; border: 1px solid var(--clr-border); border-radius: 8px;
    scrollbar-width: thin; scrollbar-color: var(--clr-border-light) transparent;
}
.table-scroll::-webkit-scrollbar { height: 4px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--clr-border-light); border-radius: 2px; }

.data-table th, .data-table td {
    padding: 0.875rem 1.25rem; text-align: left; border-bottom: 1px solid var(--clr-border);
}
.data-table tbody tr { transition: background 0.15s; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table th {
    color: var(--clr-text-dim); font-weight: 400; background: rgba(255,255,255,0.02);
    font-size: 0.75rem; letter-spacing: 1.2px; text-transform: uppercase;
    font-family: var(--font-mono);
}
.data-table td a { color: var(--clr-text); font-family: var(--font-mono); font-size: 0.875rem; opacity: 0.8; }
.data-table td a:hover { opacity: 1; text-decoration: underline; }
.data-table td { color: var(--clr-text-muted); font-size: 0.875rem; }

.info-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border);
    padding: 1.25rem 1.5rem; border-radius: 8px; margin-top: 1.5rem;
}
.info-box h4 {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin: 0 0 0.85rem; color: var(--clr-text); font-size: 0.9rem; font-weight: 400;
}
.info-box h4::before {
    content: ''; display: inline-block;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--clr-text-dim);
}
.info-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem 1.5rem;
}
.info-list li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.7;
}
.info-list li i {
    color: var(--clr-accent); font-size: 0.85rem;
    margin-top: 0.32rem; flex-shrink: 0;
}
.info-list li b { color: var(--clr-text); font-weight: 600; margin-right: 0.2rem; }


/* ========== Pricing Cards (重构版) ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: visible; /* 允许角标溢出 */
}

/* 每张卡 */
.pc-card {
    position: relative;          /* 为 .pc-badge 提供定位基准 */
    background: var(--clr-bg-elev);
    border-right: 1px solid var(--clr-border);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.pc-card:first-child { border-radius: 8px 0 0 8px; }
.pc-card:last-child  { border-right: none; border-radius: 0 8px 8px 0; }
.pc-card:hover { background: rgba(255,255,255,0.025); }

/* featured 卡（至尊版） */
.pc-featured {
    background: rgba(255,255,255,0.04);
    border-color: rgba(139, 92, 246, 0.35);
    overflow: hidden;            /* 裁剪顶部光晕，但 badge 已用伪元素在外层 */
}
.pc-featured::after {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90%; height: 200px;
    background: radial-gradient(ellipse at top,
        rgba(109, 40, 217, 0.32) 0%,
        rgba(139, 92, 246, 0.15) 40%,
        transparent 70%
    );
    filter: blur(20px);
    pointer-events: none; z-index: 0;
    animation: orbDrift3 16s ease-in-out infinite;
}
.pc-featured > * { position: relative; z-index: 1; }
.pc-featured:hover { background: rgba(255,255,255,0.06); }


.pc-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 10;
}

.pc-badge::before {
    content: '推荐';
    position: absolute;
    top: 16px;
    right: -36px;
    width: 130px;
    text-align: center;
    transform: rotate(45deg);
    transform-origin: center center;
    padding: 0.3rem 0;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
    color: #faf5ff;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    box-shadow:
        0 4px 14px rgba(124, 58, 237, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -1px 0 rgba(0,0,0,0.2);
}


/* ---- 卡片头部 ---- */
.pc-head {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-border);
}

/* eyebrow：GeistMono uppercase，对应 DESIGN caption-mono */
.pc-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--clr-text-dim);
    border: 1px solid var(--clr-border);
    border-radius: 9999px;
    padding: 0.18rem 0.65rem;
    margin-bottom: 0.9rem;
}
.pc-eyebrow--light {
    color: #0a0a0a;
    background: #ffffff;
    border-color: #ffffff;
}

.pc-name {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--clr-text);
    margin-bottom: 0.75rem;
}

/* 价格 */
.pc-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.pc-currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    align-self: flex-start;
    margin-top: 0.45rem;
}
.pc-unit {
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    align-self: flex-end;
    margin-bottom: 0.35rem;
}
.pc-price--featured { color: #ffffff; }

.pc-meta {
    font-size: 0.77rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.pc-meta::before {
    content: '';
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--clr-border-light);
    flex-shrink: 0;
}

/* ---- 功能列表 ---- */
.pc-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
    list-style: none;
}
.pc-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    line-height: 1.45;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
    transition: background-color 0.15s ease;
}
.pc-features li:last-child { border-bottom: none; }
.pc-features li:hover { background: rgba(255,255,255,0.02); }
.pc-features li > i {
    flex-shrink: 0;
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.62rem;
}
.pc-features li > span {
    flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* 有值时 span 不截断 */
.pcf-has-val > span { white-space: normal; }

/* 勾（含） */
.pcf-yes { color: var(--clr-text); }
.pcf-yes > i {
    color: #c4b5fd;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.35);
    box-shadow: 0 0 8px rgba(139,92,246,0.18);
}

/* 叉（不含） */
.pcf-no { color: var(--clr-text-dim); }
.pcf-no > span {
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,0.15);
    text-decoration-thickness: 1px;
    opacity: 0.5;
}
.pcf-no > i {
    color: var(--clr-text-dim);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-border);
    opacity: 0.65;
}

/* 数值徽章 */
.pc-features li > em {
    flex-shrink: 0;
    font-style: normal;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    letter-spacing: 0.2px;
    color: #c4b5fd;
    background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(99,102,241,0.08) 100%);
    border: 1px solid rgba(139,92,246,0.28);
    padding: 0.15rem 0.55rem;
    border-radius: 9999px;
    white-space: nowrap;
    line-height: 1.35;
    margin-left: auto;
}
.pc-featured .pc-features li > em {
    color: #ddd6fe;
    background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(99,102,241,0.14) 100%);
    border-color: rgba(167,139,250,0.45);
}

/* ---- CTA 按钮区 ---- */
.pc-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* 版本说明 */
.version-note {
    margin: 1.5rem auto 0;
    padding: 0; max-width: 900px;
    font-size: 0.82rem; color: var(--clr-text-dim);
    text-align: center; line-height: 1.7;
}
.version-note i { color: var(--clr-text-dim); margin-right: 0.35rem; opacity: 0.7; }

.promo-banner {
    position: relative; overflow: hidden;
    margin-top: 1.5rem; padding: 2rem 2.25rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-border);
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 2fr auto;
    align-items: center;
    gap: 2rem;
}
.promo-banner::before { display: none; }
.promo-bg { display: none; }

.promo-head { position: relative; z-index: 1; }
.promo-tag {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 400;
    padding: 0.25rem 0.75rem;
    color: var(--clr-text-dim); background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 9999px; letter-spacing: 1.2px;
    margin-bottom: 0.85rem;
}
.tag-blink {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--clr-accent);
    animation: pulse 1.6s infinite;
}
.promo-headline {
    font-size: 1.5rem; font-weight: 400; line-height: 1.25; letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0;
}
.promo-headline .hl {
    color: var(--clr-accent);
}
.promo-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr;
    gap: 0.7rem; position: relative; z-index: 1;
}
.promo-list li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    color: var(--clr-text); font-size: 0.95rem; line-height: 1.65;
}
.li-icon {
    flex-shrink: 0; color: var(--clr-accent); font-size: 1rem;
    margin-top: 0.18rem;
}
.li-text { flex: 1; min-width: 0; }
.promo-cta { flex-shrink: 0; position: relative; z-index: 1; align-self: center; }

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
    max-width: 1320px; margin: 0 auto;
}
@media (max-width: 1180px) {
    .credentials-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .credentials-grid .credential-card.cred-extra { display: none; }
}
@media (max-width: 900px) {
    .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .credentials-grid .credential-card.cred-extra { display: block; }
}
@media (max-width: 520px) {
    .credentials-grid { grid-template-columns: 1fr; }
}
.credential-card {
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    padding: 1.25rem; transition: var(--transition);
    display: flex; flex-direction: column; gap: 1rem; cursor: pointer;
    position: relative;
}
.credential-card::after { display: none; }
.credential-card:hover { border-color: var(--clr-border-light); background: rgba(255,255,255,0.03); }
.credential-card:hover::after { display: none; }
.credential-img-wrap {
    position: relative; border-radius: 10px; overflow: hidden;
    background: #fff; aspect-ratio: 3 / 4;
    border: 1px solid var(--clr-border);
}
.credential-img-wrap img {
    width: 100%; height: 100%; object-fit: contain; object-position: center;
    transition: transform 0.4s;
}
.credential-card:hover .credential-img-wrap img { transform: scale(1.04); }
.credential-overlay {
    position: absolute; inset: 0; background: rgba(7,9,15,0.7);
    color: #fff; display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; font-size: 0.9rem; opacity: 0;
    transition: opacity 0.3s; backdrop-filter: blur(4px);
}
.credential-card:hover .credential-overlay { opacity: 1; }
.credential-info { padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.credential-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.22rem 0.65rem; border-radius: 100px;
    font-size: 0.72rem; font-weight: 600; align-self: flex-start;
}
.credential-tag.tag-soft {
    background: transparent; color: var(--clr-text-dim);
    border: 1px solid var(--clr-border);
}
.credential-tag.tag-mark {
    background: transparent; color: var(--clr-text-dim);
    border: 1px solid var(--clr-border);
}
.credential-info h3 {
    font-size: 1.02rem; font-weight: 700; line-height: 1.4;
    color: var(--clr-text);
}
.reg-mark {
    display: inline-block; font-size: 0.7em;
    color: var(--clr-accent); vertical-align: super;
    margin: 0 1px; font-weight: 600;
}
.credential-info p {
    color: var(--clr-text-muted); font-size: 0.84rem; line-height: 1.65;
    flex: 1;
}
.credential-no {
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 0.25rem; padding-top: 0.65rem;
    border-top: 1px dashed var(--clr-border);
    font-size: 0.78rem;
}
.credential-no span { color: var(--clr-text-muted); }
.credential-no code {
    font-family: var(--font-mono); color: var(--clr-text-dim);
    background: transparent; padding: 0.1rem 0.45rem;
    border-radius: 4px; border: 1px solid var(--clr-border);
    font-size: 0.78rem; letter-spacing: 0.5px;
}

/* ========== Lightbox ========== */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(7,9,15,0.92); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    padding: 4rem 2rem;
}
.lightbox.active { display: flex; animation: fadeIn 0.25s ease; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; box-shadow: 0 12px 60px rgba(0,0,0,0.6); }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
    background: rgba(255,255,255,0.08); border: 1px solid var(--clr-border-light);
    color: #fff; border-radius: 50%; font-size: 1rem; cursor: pointer;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--clr-primary); border-color: var(--clr-primary); }

/* ========== 联系区 ========== */
.ct-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    overflow: hidden; position: relative;
}
.ct-panel::before {
    content: '';
    position: absolute; top: -50%; left: 20%;
    width: 600px; height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(88, 28, 235, 0.4) 0%,
        rgba(109, 40, 217, 0.22) 40%,
        transparent 68%
    );
    filter: blur(55px);
    pointer-events: none; z-index: 0;
    animation: orbDrift2 22s ease-in-out infinite;
}
.ct-left {
    padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
    /* border-right: 1px solid var(--clr-border); */
    position: relative; z-index: 1;
}
.ct-heading {
    font-size: 1.5rem; font-weight: 400; line-height: 1.3;
    margin: 0 0 0.85rem; letter-spacing: -0.03em; color: #ffffff;
}
.ct-desc {
    color: var(--clr-text-muted); font-size: 0.9rem; line-height: 1.75;
    margin: 0 0 1.5rem;
}
.ct-rows { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.ct-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: transparent; border: 1px solid var(--clr-border);
    border-radius: 8px; transition: var(--transition);
}
.ct-row:hover { border-color: var(--clr-border-light); background: rgba(255,255,255,0.02); }
.ct-row > i {
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--clr-text-muted);
    border-radius: 6px; font-size: 0.85rem;
    border: 1px solid var(--clr-border);
}
.ct-row div { display: flex; flex-direction: column; }
.ct-row span { font-size: 0.7rem; color: var(--clr-text-dim); letter-spacing: 1px; margin-bottom: 1px; font-family: var(--font-mono); text-transform: uppercase; }
.ct-row strong {
    font-family: var(--font-mono); font-size: 0.95rem; color: var(--clr-text); font-weight: 400;
    letter-spacing: 0;
}
.ct-cta { align-self: flex-start; }

.ct-right {
    display: flex; align-items: center; justify-content: center; gap: 2rem;
    padding: 2.5rem;
    position: relative; z-index: 1;
}
.ct-qr {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem;
}
.ct-qr-img {
    padding: 5px; background: #fff; border-radius: 10px;
    border: 1px solid var(--clr-border-light);
    position: relative;
    transition: var(--transition);
}
.ct-qr-img::before, .ct-qr-img::after {
    content: ''; position: absolute; width: 12px; height: 12px;
}
.ct-qr-img::before {
    top: -1px; left: -1px;
    border-top: 2px solid var(--clr-accent); border-left: 2px solid var(--clr-accent);
    border-top-left-radius: 8px;
}
.ct-qr-img::after {
    bottom: -1px; right: -1px;
    border-bottom: 2px solid var(--clr-accent); border-right: 2px solid var(--clr-accent);
    border-bottom-right-radius: 8px;
}
.ct-qr:hover .ct-qr-img { transform: translateY(-3px); box-shadow: 0 8px 24px -8px rgba(34,211,238,0.3); }
.ct-qr-img img { width: 108px; height: 108px; border-radius: 6px; display: block; }
.ct-qr strong { font-size: 0.88rem; color: var(--clr-text); font-weight: 600; }
.ct-qr span { font-size: 0.74rem; color: var(--clr-text-muted); }
.contact-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid var(--clr-border); border-radius: 8px;
    transition: var(--transition);
}
.contact-row:hover { border-color: var(--clr-border-light); background: rgba(255,255,255,0.02); }
.contact-row-icon {
    flex-shrink: 0; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--clr-text-muted);
    border-radius: 8px; font-size: 1rem;
    border: 1px solid var(--clr-border);
}
.contact-row-text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.contact-row-text span { font-size: 0.78rem; color: var(--clr-text-muted); letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-row-text strong {
    font-family: var(--font-mono); font-size: 1.15rem;
    color: var(--clr-text); font-weight: 700;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    letter-spacing: 0.3px;
}

/* 双二维码 */
.qr-row {
    display: flex; gap: 1rem; flex-shrink: 0;
}
.qr-card {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: center;
    padding: 1.25rem 1rem 1rem;
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 8px; position: relative;
    transition: var(--transition);
    min-width: 170px;
}
.qr-card:hover { border-color: var(--clr-border-light); background: rgba(255,255,255,0.02); }
.qr-card-head {
    font-size: 0.72rem; font-weight: 400;
    margin: 0 0 0.85rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    background: transparent; color: var(--clr-text-dim);
    border-radius: 9999px; border: 1px solid var(--clr-border);
    align-self: center; font-family: var(--font-mono); letter-spacing: 0.8px; text-transform: uppercase;
}
.qr-card-head i { font-size: 0.75rem; }
.qr-frame {
    padding: 5px; background: #fff;
    border: 1px solid var(--clr-border); border-radius: 6px;
    margin-bottom: 0.75rem; position: relative;
    display: block; align-self: center;
}
.qr-frame::before, .qr-frame::after { display: none; }
.qr-frame img {
    width: 136px; height: 136px; border-radius: 3px; display: block;
}
.qr-card-foot { font-size: 0.75rem; color: var(--clr-text-dim); margin: 0; align-self: center; font-family: var(--font-mono); }

/* ========== 页脚 ========== */
/* ========== 核心能力 · 平台价值 ========== */
.capabilities-section { position: relative; }
.cap-tabs {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.35rem; margin: 0 auto 2.25rem; max-width: 1100px;
    padding: 0.4rem;
    background: rgba(255,255,255,0.02); border: 1px solid var(--clr-border);
    border-radius: 9999px;
}
.cap-tab {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    background: transparent; border: 1px solid transparent; cursor: pointer;
    color: var(--clr-text-dim); font-size: 0.8rem; font-weight: 400;
    border-radius: 9999px; transition: var(--transition);
    white-space: nowrap;
}
.cap-tab i { font-size: 0.8rem; }
.cap-tab:hover { color: var(--clr-text); }
.cap-tab.active {
    background: rgba(255,255,255,0.08); color: var(--clr-text);
    border-color: rgba(255,255,255,0.2);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.cap-card {
    padding: 1.5rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.cap-card::before { display: none; }
.cap-card:hover {
    background: rgba(255,255,255,0.03); border-color: var(--clr-border-light);
}
.cap-card:hover::before { display: none; }
.cap-card.cap-hidden { display: none; }
.cap-group-title {
    grid-column: 1 / -1;
    margin: 0.25rem 0 0.1rem;
    padding: 0.55rem 0 0.65rem;
    font-size: 1rem; font-weight: 400; color: var(--clr-text);
    border-bottom: 1px dashed var(--clr-border-light);
    display: flex; align-items: center; gap: 0.55rem;
}
.cap-group-title i { color: var(--clr-text-dim); font-size: 1rem; }
.cap-group-title small {
    font-weight: 400; font-size: 0.82rem; color: var(--clr-text-muted);
    margin-left: 0.4rem;
}
.cap-group-title.cap-hidden { display: none; }
@media(max-width:600px){
    .cap-group-title { flex-wrap: wrap; gap: 0.35rem 0.45rem; }
    .cap-group-title small { margin-left: 0; width: 100%; }
}
.cap-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: 8px; font-size: 1rem; margin-bottom: 0.95rem;
}
.cap-card h3,
.cap-card h4 {
    font-size: 0.95rem; font-weight: 400; margin: 0 0 0.5rem; color: var(--clr-text);
}
.cap-card p { color: var(--clr-text-muted); font-size: 0.85rem; line-height: 1.7; margin: 0; }
.cap-card p strong { color: var(--clr-text); font-weight: 400; }
.cap-foot {
    margin-top: 1.75rem; text-align: center;
    color: var(--clr-text-muted); font-size: 0.88rem;
}
.cap-foot i { color: var(--clr-text-dim); margin-right: 0.4rem; }
.cap-foot a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }

/* ========== 通用权益卡（不限域名 / 独立部署 等） ========== */
.universal-rights {
    margin-top: 2rem;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem;
}
.ur-item {
    display: flex; align-items: center; gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    transition: var(--transition);
}
.ur-item:hover { border-color: var(--clr-border-light); }
.ur-icon {
    flex-shrink: 0; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: 8px; font-size: 0.95rem;
}
.ur-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ur-text strong { font-size: 0.92rem; color: var(--clr-text); font-weight: 600; }
.ur-text span { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.4; }

/* promo-banner 增强 */
.promo-sub {
    color: var(--clr-text-muted); font-size: 0.88rem;
    margin: 0.5rem 0 0; letter-spacing: 0.3px;
}
.li-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
    padding: 0.18rem 0.55rem; margin-right: 0.4rem;
    color: #fbbf24; background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.35); border-radius: 4px;
    letter-spacing: 1px; vertical-align: 1px;
}
.li-tag .tag-blink { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

/* ========== 开源底蕴（HotGo） ========== */
.opensource-section {
    position: relative;
}
.os-wrapper {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 3rem; align-items: center;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    padding: 3rem; position: relative;
}
.os-wrapper::before { display: none; }
.os-title {
    text-align: left;
    font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 400;
    margin: 0.4rem 0 1rem;
    line-height: 1.3; letter-spacing: -0.03em;
}
.grad-text {
    color: #ffffff;
    -webkit-text-fill-color: unset;
    font-family: var(--font-main); font-weight: 400; letter-spacing: -0.03em;
}
.os-lead {
    color: var(--clr-text-muted); font-size: 1rem; line-height: 1.85;
    margin-bottom: 1.5rem;
}
.os-lead a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.os-points {
    list-style: none; padding: 0; margin: 0 0 1.75rem;
    display: grid; gap: 0.55rem;
}
.os-points li {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--clr-text-muted); font-size: 0.9rem;
}
.os-points i { color: var(--clr-text-dim); font-size: 0.9rem; flex-shrink: 0; }
.os-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.os-cta .btn { font-size: 0.9rem; padding: 0.65rem 1.2rem; }

.os-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem; margin-bottom: 1.25rem;
}
.os-stat {
    padding: 1rem;
    background: transparent; border: 1px solid var(--clr-border);
    border-radius: 8px; text-align: center;
    transition: var(--transition);
}
.os-stat:hover { border-color: var(--clr-border-light); background: rgba(255,255,255,0.02); }
.stat-value {
    font-family: var(--font-main); font-size: 1.75rem; font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.05em; margin-bottom: 0.3rem;
}
.stat-label {
    font-size: 0.78rem; color: var(--clr-text-muted);
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.stat-label i { color: var(--clr-text-dim); }
.os-stack {
    display: flex; flex-wrap: wrap; gap: 0.45rem;
    padding: 1rem; border-radius: 12px;
    background: rgba(13,17,26,0.4); border: 1px dashed var(--clr-border);
}
.os-chip {
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 400;
    padding: 0.25rem 0.6rem; color: var(--clr-text-dim);
    background: transparent; border: 1px solid var(--clr-border);
    border-radius: 9999px; letter-spacing: 0.5px;
}

/* ========== 授权商 · 合作特权 ========== */
.partner-section { }
.partner-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px; margin-top: 0.5rem;
    border: 1px solid var(--clr-border); border-radius: 8px; overflow: hidden;
}
.partner-card {
    padding: 1.75rem 1.5rem;
    background: var(--clr-bg-elev);
    border: none; border-right: 1px solid var(--clr-border);
    transition: var(--transition); position: relative;
}
.partner-card:last-child { border-right: none; }
.partner-card::before { display: none; }
.partner-card:hover {
    background: rgba(255,255,255,0.02);
}
.partner-card:hover::before { display: none; }
.partner-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    border-radius: 8px; font-size: 1.1rem; margin-bottom: 1rem;
}
.partner-card h3 {
    font-size: 1rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--clr-text);
}
.partner-card p { color: var(--clr-text-muted); font-size: 0.875rem; line-height: 1.7; margin: 0; }
.partner-cta {
    margin-top: 2rem; padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border); border-radius: 8px;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
    flex-wrap: wrap;
}
.partner-cta p { margin: 0; color: var(--clr-text-muted); font-size: 0.9rem; }

/* ========== Footer ========== */
.footer {
    position: relative;
    border-top: 1px solid var(--clr-border);
    background: var(--clr-bg);
    color: var(--clr-text-muted); font-size: 0.875rem;
    padding: 4rem 0 1.5rem;
    overflow: hidden; 
}
.footer-glow { display: none; }
.footer::before { display: none; }
.footer .container { position: relative; z-index: 1; }

/* 页脚动态光晕 */
.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.footer-orb-1 {
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 1000px; height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(88, 28, 235, 0.5) 0%,
        rgba(67, 56, 202, 0.3) 35%,
        rgba(109, 40, 217, 0.12) 60%,
        transparent 75%
    );
    animation: orbDrift1 18s ease-in-out infinite;
}
.footer-orb-2 {
    bottom: 20%; right: 0%;
    width: 500px; height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(79, 70, 229, 0.35) 0%,
        rgba(139, 92, 246, 0.18) 45%,
        transparent 70%
    );
    animation: orbDrift2 25s ease-in-out infinite;
}

.footer-top {
    display: grid; grid-template-columns: 1.3fr 2.5fr;
    gap: 3rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--clr-border);
}
.footer-brand { max-width: 380px; }
.footer-brand .footer-logo img { height: 36px; filter: none; opacity: 1; margin-bottom: 1rem; }
.footer-tagline {
    font-size: 1.05rem; font-weight: 600; color: var(--clr-text);
    margin: 0 0 0.6rem;
}
.footer-desc {
    font-size: 0.95rem; line-height: 1.8; color: var(--clr-text-muted);
    margin: 0 0 1.25rem;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-border-light); border-radius: 100px;
    font-size: 0.82rem; color: var(--clr-text-muted); letter-spacing: 0.3px;
}
.footer-badge i { color: var(--clr-text-dim); font-size: 0.85rem; }

.footer-cols {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.75rem;
}
.footer-col h4 {
    font-size: 0.75rem; font-weight: 400; color: var(--clr-text);
    margin: 0 0 1rem; letter-spacing: 1.2px;
    position: relative; padding-bottom: 0;
    font-family: var(--font-mono); text-transform: uppercase; opacity: 0.5;
}
.footer-col h4::after { display: none; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-col a {
    color: var(--clr-text-muted); font-size: 0.875rem;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 0.35rem;
    opacity: 0.75;
}
.footer-col a:hover { color: var(--clr-text); opacity: 1; transform: none; }
.footer-contact li {
    color: var(--clr-text-muted); font-size: 0.875rem;
    display: inline-flex; align-items: center; gap: 0.55rem; opacity: 0.75;
}
.footer-contact i { color: var(--clr-text-dim); width: 14px; flex-shrink: 0; }
.footer-cta {
    margin-top: 0.6rem;
    padding: 0.42rem 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(167, 139, 250, 0.35); border-radius: 9999px;
    color: var(--clr-text) !important; font-weight: 500; font-size: 0.82rem; opacity: 1;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.footer-cta i { font-size: 0.72rem; transition: transform 0.25s ease; color: #a78bfa; }
.footer-cta:hover {
    background: rgba(124, 58, 237, 0.18);
    border-color: rgba(167, 139, 250, 0.6);
    color: #fff !important; opacity: 1; transform: none;
    box-shadow: 0 6px 20px -10px rgba(124, 58, 237, 0.7);
}
.footer-cta:hover i { transform: translateX(3px); color: #c4b5fd; }

.footer-bottom {
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.8rem; color: var(--clr-text-dim);
}
.footer-meta { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.footer-meta sup { color: var(--clr-text-dim); font-size: 0.6em; vertical-align: super; }
.footer-sep { color: var(--clr-border-light); }
.footer a { color: var(--clr-text-muted); opacity: 0.65; }
.footer a:hover { color: var(--clr-text); opacity: 1; }

/* ========== 法律协议页 ========== */
.legal-main { padding-top: var(--page-top-offset); padding-bottom: 6rem; position: relative; }
.legal-article {
    max-width: 880px;
}
.legal-header {
    text-align: center; margin-bottom: 3.5rem; padding-bottom: 2rem;
    border-bottom: 1px solid var(--clr-border);
    position: relative; overflow: hidden; padding-top: 1rem;
}
.legal-header::before {
    content: '';
    position: absolute; bottom: -60%; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(88, 28, 235, 0.35) 0%,
        rgba(109, 40, 217, 0.18) 45%,
        transparent 72%
    );
    border-radius: 50%; filter: blur(50px);
    animation: orbDrift1 20s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.legal-header > * { position: relative; z-index: 1; }
.legal-header h1 {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 400; letter-spacing: -0.03em;
    margin: 0.6rem 0 1rem;
    color: #ffffff;
}
.legal-meta { color: var(--clr-text-muted); font-size: 0.9rem; font-family: var(--font-mono); }

.legal-toc {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border);
    border-radius: 8px; padding: 1.5rem 1.75rem; margin-bottom: 3rem;
}
.toc-title {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
    color: var(--clr-text-muted); margin-bottom: 1rem;
    font-family: var(--font-mono); text-transform: uppercase;
}
.toc-title::before {
    content: ''; display: inline-block;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--clr-text-dim);
}
.toc-title i { display: none; }
.legal-toc ol {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem 1.25rem;
    counter-reset: toc;
}
.legal-toc ol li {
    counter-increment: toc;
    margin: 0; font-size: 0.9rem;
    display: flex; align-items: baseline; gap: 0.55rem;
}
.legal-toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--clr-text-dim); flex-shrink: 0;
    min-width: 22px;
}
.legal-toc ol a { color: var(--clr-text-muted); transition: var(--transition); }
.legal-toc ol a:hover { color: var(--clr-text); }

.legal-section { margin-bottom: 3rem; scroll-margin-top: 90px; }
.legal-section h2 {
    font-size: 1.25rem; font-weight: 400; color: var(--clr-text);
    margin: 0 0 1.5rem; padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--clr-border);
    letter-spacing: -0.02em;
}
.legal-section h3 {
    font-size: 1rem; font-weight: 400; color: var(--clr-text);
    margin: 1.75rem 0 0.85rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.legal-section h3::before {
    content: ''; display: inline-block;
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--clr-text-dim);
}
.legal-section p { color: var(--clr-text-muted); margin-bottom: 1rem; line-height: 1.85; font-size: 0.96rem; }
.legal-section p strong, .legal-section li strong { color: var(--clr-text); font-weight: 600; }
.legal-section ul, .legal-section ol {
    color: var(--clr-text-muted); padding-left: 1.5rem; margin-bottom: 1rem;
    font-size: 0.95rem; line-height: 1.85;
}
.legal-section ul { list-style: disc; }
.legal-section ol { list-style: decimal; }
.legal-section li { margin-bottom: 0.5rem; }
.legal-section a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { text-decoration: underline; }
.legal-section code {
    font-family: var(--font-mono); font-size: 0.88em;
    background: var(--clr-accent-light); color: var(--clr-accent);
    padding: 0.1rem 0.45rem; border-radius: 4px;
    border: 1px solid rgba(34,211,238,0.2);
}

.legal-callout {
    display: flex; gap: 0.85rem; align-items: flex-start;
    background: rgba(13,17,26,0.5);
    border: 1px solid var(--clr-border);
    padding: 1.1rem 1.25rem; border-radius: 12px; margin: 1.25rem 0;
    color: var(--clr-text); font-size: 0.93rem; line-height: 1.75;
    position: relative;
}
.legal-callout i {
    flex-shrink: 0; width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--clr-accent); background: var(--clr-accent-light);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 8px; font-size: 0.88rem; margin-top: 1px;
}
.legal-callout.warning { border-color: rgba(245,158,11,0.25); background: rgba(245,158,11,0.04); }
.legal-callout.warning i { color: var(--clr-warning); background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); }

.legal-footer-note {
    margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-dim); font-family: var(--font-mono); font-size: 0.88rem;
    text-align: center;
}

/* ========== 进入动画 ========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pc-card:first-child { border-radius: 8px 0 0 0; }
    .pc-card:nth-child(2) { border-right: none; border-radius: 0 8px 0 0; }
    .pc-card:nth-child(3) { border-top: 1px solid var(--clr-border); border-radius: 0 0 0 8px; }
    .pc-card:last-child  { border-top: 1px solid var(--clr-border); border-radius: 0 0 8px 0; }
}

/* 默认隐藏移动端菜单按钮 */
.mobile-menu-btn { display: none; }

@media (max-width: 1024px) {
    .nav-links { gap: 1.25rem; }
    .nav-link { font-size: 0.88rem; }
    .universal-rights { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .cap-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { grid-template-columns: 1fr; gap: 1.25rem; }
    .promo-cta { justify-self: start; }
    .os-wrapper { grid-template-columns: 1fr; padding: 2rem; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn {
        display: inline-flex !important; align-items: center; justify-content: center;
        width: 36px; height: 36px; background: transparent;
        border: 1px solid rgba(255,255,255,0.25) !important; border-radius: 8px;
        color: var(--clr-text); font-size: 1rem; cursor: pointer;
        flex-shrink: 0; transition: var(--transition);
    }
    .mobile-menu-btn:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.05); }

    /* Hero */
    .hero-section { padding-top: 120px; padding-bottom: 60px; }
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 0.98rem; }
    .hero-buttons { flex-direction: column; padding: 0 1rem; }
    .hero-rings { width: 320px; height: 320px; opacity: 0.3; }
    .hero-floats { display: none; }

    /* 价值标移动端 */
    .hero-stats {
        flex-wrap: wrap; gap: 0.5rem 0; padding: 1.2rem 1rem; border-radius: 8px;
    }
    .stat-item { flex: 0 0 45%; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-divider { display: none; }

    /* Demo Tabs：滚动+渐隐+捏紧 */
    .demo-tabs {
        gap: 0.25rem;
        mask-image: linear-gradient(90deg, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
    }
    .tab-btn { padding: 0.7rem 0.95rem; font-size: 0.85rem; }
    .tab-pane { padding: 1.25rem 1rem; }

    /* 数据表格转卡片 */
    .table-scroll { border: none; overflow: visible; }
    .data-table, .data-table thead, .data-table tbody, .data-table tr, .data-table th, .data-table td {
        display: block; width: 100%; min-width: 0;
    }
    .data-table thead { display: none; }
    .data-table tr {
        margin-bottom: 0.85rem; padding: 0.85rem 1rem;
        background: var(--clr-bg-elev);
        border: 1px solid var(--clr-border); border-radius: 8px;
        position: relative;
    }
    .data-table tr:last-child { margin-bottom: 0; }
    .data-table tr:hover { background: rgba(255,255,255,0.02); }
    .data-table td {
        padding: 0.5rem 0; border-bottom: 1px dashed var(--clr-border);
        display: flex; align-items: center; justify-content: space-between;
        gap: 1rem; font-size: 0.88rem; line-height: 1.5;
    }
    .data-table td:last-child { border-bottom: none; }
    .data-table td::before {
        content: attr(data-label); flex-shrink: 0;
        color: var(--clr-text-muted); font-size: 0.74rem;
        font-weight: 500; letter-spacing: 0.5px;
    }
    .data-table td a {
        text-align: right; word-break: break-all; font-size: 0.82rem;
        max-width: 70%;
    }
    .demo-desc { font-size: 0.92rem; }

    /* 价格表 */
    .section-title { font-size: 1.55rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pc-card { border-right: none; border-bottom: 1px solid var(--clr-border); border-radius: 0 !important; }
    .pc-card:first-child { border-radius: 8px 8px 0 0 !important; }
    .pc-card:last-child  { border-bottom: none; border-radius: 0 0 8px 8px !important; }

    /* 服务费优惠条 */
    .promo-banner {
        grid-template-columns: 1fr; gap: 1.25rem;
        padding: 1.5rem 1.25rem; text-align: center;
    }
    .promo-bg { display: none; }
    .promo-headline { font-size: 1.3rem; }
    .promo-list li { text-align: left; }
    .promo-cta { justify-self: center; }

    /* 联系区 */
    .ct-panel { grid-template-columns: 1fr; }
    .ct-left { border-right: none; border-bottom: 1px solid var(--clr-border); padding: 2rem 1.5rem; align-items: center; text-align: center; }
    .ct-heading { font-size: 1.3rem; }
    .ct-cta { align-self: center; }
    .ct-right { padding: 1.75rem 1.25rem; gap: 1rem; flex-wrap: wrap; }
    .ct-qr-img img { width: 100px; height: 100px; }

    /* 核心能力 */
    .cap-tabs {
        flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
        gap: 0.3rem; padding: 0.35rem; border-radius: 9999px;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .cap-tabs::-webkit-scrollbar { display: none; }
    .cap-tab { flex-shrink: 0; padding: 0.35rem 0.8rem; font-size: 0.78rem; border-radius: 9999px; }
    .cap-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .cap-card { padding: 1.25rem 1.15rem; }

    /* 通用权益卡 */
    .universal-rights { grid-template-columns: 1fr; gap: 0.75rem; }
    .ur-item { padding: 0.85rem 1rem; }

    /* 开源底蕴 */
    .os-wrapper { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem 1.25rem; }
    .os-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 1.5rem; }
    .os-cta .btn { font-size: 0.85rem; padding: 0.6rem 1rem; }

    /* 授权商 */
    .partner-grid { grid-template-columns: 1fr; gap: 1px; }
    .partner-card { padding: 1.35rem 1.15rem; }
    .partner-cta { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; gap: 1rem; }

    /* Footer 移动端 */
    .footer { padding: 3rem 0 1rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
    .footer-meta { justify-content: center; }

    /* 功能卡片：移动端单列 */
    .features-grid { grid-template-columns: 1fr; border-radius: 8px; }
    .feature-card { border-right: none; }
    .feature-card:not(:last-child) { border-bottom: 1px solid var(--clr-border); }

    /* 截图区 */
    .ss-tabs { gap: 0.35rem; }
    .ss-tab { padding: 0.35rem 0.75rem; font-size: 0.78rem; }
    .ss-gallery { grid-template-columns: 1fr; }

    /* 子页面 hero */
    .page-hero-mini { padding: 6.5rem 0 2.5rem; }
    .page-hero-title { font-size: 1.7rem; }
    .page-hero-desc { font-size: 0.95rem; padding: 0 0.5rem; }

    /* 法律/文章页 */
    .legal-main { padding: 1rem 0; }
    .legal-article { padding: 0 1rem; }
    .article-headline { padding: 1.5rem 1rem 1.2rem; }
    .article-title { font-size: 1.35rem; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { display: none; }
    .article-content { font-size: 0.95rem; }

    /* 光晕在移动端缩小避免溢出 */
    .hero-section::before { width: 500px; height: 350px; filter: blur(45px); }
    .hero-section .hero-orb-2 { width: 300px; height: 250px; }
    .hero-section .hero-orb-3 { display: none; }
    .page-hero-mini::before { width: 450px; height: 280px; }
    .page-hero-mini::after { display: none; }
    .footer-orb-1 { width: 500px; height: 280px; }
    .footer-orb-2 { display: none; }

    /* news 列表 */
    .news-list-grid { grid-template-columns: 1fr !important; }
    .news-page-header .section-title { font-size: 1.5rem; }

    /* 截图 tabs 溢出滚动 */
    .ss-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
        -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.25rem; }
    .ss-tabs::-webkit-scrollbar { display: none; }
    .ss-tab { flex-shrink: 0; }

    /* section 标题 */
    .section-header { margin-bottom: 2rem; }
    .section-title { font-size: 1.5rem; letter-spacing: -0.02em; }
    .section-subtitle { font-size: 0.9rem; }

    /* 评价区 */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { break-inside: unset; }

    /* 资讯卡片 */
    .news-card { padding: 1rem; }
}

@media (max-width: 480px) {
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 1.8rem; letter-spacing: -0.02em; }
    .hero-stats { padding: 1rem 0.75rem; }
    .stat-item { flex: 0 0 48%; }
    .stat-number { font-size: 1.4rem; }
    /* 按钮全宽 */
    .hero-buttons .btn { width: 100%; justify-content: center; }
    /* 价格卡片字号 */
    .card-price { font-size: 2.2rem; }
    .card-price-unit { font-size: 0.95rem; }
    /* 联系区 QR */
    .ct-qr-img img { width: 90px; height: 90px; }
    .qr-card { min-width: unset; width: 100%; }
    /* 授权商 */
    .partner-cta .btn { width: 100%; justify-content: center; }
}

/* ── Screenshots Section ── */
.screenshots-section { background: var(--clr-bg-alt); }

.ss-tabs {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-bottom: 2.5rem; flex-wrap: wrap;
}
.ss-tab {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-text-dim); padding: 0.4rem 1rem; border-radius: 9999px;
    font-size: 0.8rem; cursor: pointer; transition: var(--transition); font-weight: 400;
}
.ss-tab:hover { color: var(--clr-text); border-color: rgba(255,255,255,0.35); }
.ss-tab.active {
    background: rgba(255,255,255,0.08);
    color: var(--clr-text); border-color: rgba(255,255,255,0.25);
}
.ss-tab i { margin-right: 0.4rem; }

.ss-panel { display: none; }
.ss-panel.active { display: block; animation: ssFadeIn 0.35s ease; }
@keyframes ssFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.ss-grid {
    display: grid; gap: 1.25rem;
}
.ss-grid--pc { grid-template-columns: repeat(2, 1fr); }
.ss-grid--mobile { grid-template-columns: repeat(3, 1fr); }

.ss-item {
    margin: 0; border-radius: 8px; overflow: hidden;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    transition: border-color 0.2s;
}
.ss-item:hover {
    border-color: var(--clr-border-light);
}
.ss-item img {
    width: 100%; height: auto; display: block;
    cursor: pointer;
}
.ss-item figcaption {
    padding: 0.7rem 1rem; text-align: center;
    font-size: 0.9rem; color: var(--clr-text-muted);
}

@media (max-width: 768px) {
    .ss-grid--pc { grid-template-columns: 1fr; }
    .ss-grid--mobile { grid-template-columns: repeat(2, 1fr); }
    .ss-tabs { gap: 0.35rem; }
    .ss-tab { padding: 0.5rem 0.9rem; font-size: 0.82rem; }
}
@media (max-width: 480px) {
    .ss-grid--mobile { grid-template-columns: 1fr; }
}

/* ================================================================
   平台资讯 — 首页模块 & 列表页
   ================================================================ */
.news-section { background: var(--clr-bg-alt); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
}

.news-card {
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    transition: border-color .2s;
    overflow: hidden;
}
.news-card:hover {
    border-color: var(--clr-border-light);
}
.news-card-link { display: block; text-decoration: none; }
.news-card-body { padding: 1.25rem 1.4rem; }

/* 资讯封面图 */
.news-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0c0c0c;
}
.news-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.news-card:hover .news-card-cover img { transform: scale(1.04); }

.news-card-title {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: .65rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card:hover .news-card-title { color: var(--clr-text); }

.news-card-summary {
    font-size: .95rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: .9rem;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .88rem;
    color: var(--clr-text-dim);
}
.news-date { display: flex; align-items: center; gap: .3rem; }
.news-more { color: var(--clr-text-muted); display: flex; align-items: center; gap: .3rem; font-weight: 400; }
.news-card:hover .news-more { gap: .5rem; }

.news-more-wrap {
    text-align: center;
    margin-top: 2rem;
}

/* 资讯列表页 */
.news-page { padding-top: var(--page-top-offset) !important; padding-bottom: 4rem !important; }
.news-page-header {
    margin-bottom: 2rem !important;
    position: relative; 
    /* overflow: hidden; */
    padding-top: 1rem; padding-bottom: 1rem;
}
.news-page-header::before {
    content: '';
    position: absolute; top: -80%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(109, 40, 217, 0.4) 0%,
        rgba(79, 70, 229, 0.2) 45%,
        transparent 72%
    );
    border-radius: 50%; filter: blur(50px);
    animation: orbPulse 10s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.news-page-header > * { position: relative; z-index: 1; }
.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (max-width: 640px) { .news-list-grid { grid-template-columns: 1fr; } }

.news-list-grid .news-card-title { font-size: 1.1rem; }

.news-empty {
    text-align: center;
    padding: 5rem 1rem;
    color: #555;
}
.news-empty i { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* 分页 */
.pagination {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.page-btn {
    padding: .4rem 0.9rem;
    border-radius: 9999px;
    font-size: .8rem;
    background: transparent;
    color: var(--clr-text-dim);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: var(--clr-text);
}

/* ================================================================
   文章详情页
   ================================================================ */
.article-page {
    padding-top: var(--page-top-offset) !important;
    padding-bottom: 5rem !important;
}

/* 面包屑 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--clr-text); }
.breadcrumb i { font-size: .65rem; color: var(--clr-text-dim); }
.breadcrumb span { color: var(--clr-text); }

/* 布局：左侧内容 + 右侧侧边栏 */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}
@media (max-width: 860px) {
    .article-layout { grid-template-columns: 1fr; }
}

/* 文章主体 */
.article-main {
    min-width: 0;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}

/* 标题区 */
.article-headline {
    padding: 2rem 2.5rem 1.6rem;
    background: transparent;
    border-bottom: 1px solid var(--clr-border);
    position: relative; 
    /* overflow: hidden; */
}
.article-headline::before {
    content: '';
    position: absolute; bottom: -80%; left: 30%;
    width: 500px; height: 350px;
    background: radial-gradient(ellipse at center,
        rgba(88, 28, 235, 0.3) 0%,
        rgba(109, 40, 217, 0.15) 45%,
        transparent 72%
    );
    border-radius: 50%; filter: blur(50px);
    animation: orbPulse 12s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.article-headline > * { position: relative; z-index: 1; }

.article-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

/* meta 信息横排 */
.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.4rem;
    font-size: .92rem;
}
.article-meta-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--clr-text-muted);
}
.article-meta-item i { color: var(--clr-text-dim); font-size: .9rem; }

/* 摘要 */
.article-summary {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    padding: 1rem 1.5rem 1rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    position: relative;
    margin: 1.6rem 2.5rem 0;
}
.article-summary::before {
    content: '\201C';
    font-size: 2.2rem;
    color: rgba(255,255,255,.15);
    line-height: 1;
    position: absolute;
    top: .3rem;
    left: .7rem;
    font-family: Georgia, serif;
}

/* 分割线 */
.article-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 1.6rem 2.5rem 0;
}

/* 文章内容区域 */
.article-content-wrap {
    padding: 1.6rem 2.5rem 2rem;
}

/* 文章内容排版 */
.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d6d6e0;
    padding: 1.6rem 2.5rem 0;
}
.article-content h2 { font-size: 1.35rem; color: #fff; margin: 2rem 0 .9rem; font-weight: 400; letter-spacing: -0.02em; }
.article-content h3 { font-size: 1.1rem; color: #e5e5e5; margin: 1.5rem 0 .7rem; font-weight: 400; }
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content li { margin-bottom: .4rem; }
.article-content a { color: var(--clr-text); text-decoration: underline; text-underline-offset: 2px; opacity: 0.8; }
.article-content a:hover { opacity: 1; }
.article-content strong { color: #fff; font-weight: 500; }
.article-content em { color: var(--clr-text-muted); font-style: italic; }
.article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    margin: 1.2rem auto;
    cursor: zoom-in;
    transition: opacity .2s ease, transform .2s ease;
}
.article-content img:hover { opacity: .92; transform: translateY(-1px); }
.article-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.5rem 0; }
.article-content blockquote {
    border-left: 2px solid var(--clr-border-light);
    padding: .8rem 1.2rem;
    margin: 1rem 0;
    background: rgba(255,255,255,0.02);
    border-radius: 0 6px 6px 0;
    color: var(--clr-text-muted);
}
.article-content pre {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
    font-size: .92rem;
    line-height: 1.7;
}
.article-content code {
    background: rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    padding: .1em .4em;
    border-radius: 4px;
    font-size: .88em;
    border: 1px solid var(--clr-border);
}
.article-content pre code {
    background: none;
    color: #e5e5e5;
    padding: 0;
    border: none;
}
.article-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .95rem; }
.article-content th { background: var(--clr-bg); color: #fff; padding: .65rem .85rem; border: 1px solid var(--clr-border); }
.article-content td { padding: .6rem .85rem; border: 1px solid var(--clr-border); }

.article-source {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin: 1.8rem 2.5rem 0;
    padding: .8rem 1.1rem;
    background: rgba(255,255,255,.02);
    border-radius: 8px;
    border: 1px solid var(--clr-border);
}
.article-source i { color: #555; }
.article-source a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.article-source a:hover { color: var(--clr-text); }

.article-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.8rem 2.5rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

/* 上一篇 / 下一篇 导航 */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.8rem 2.5rem 0;
}
.article-nav-item > a,
.article-nav-item > .article-nav-disabled {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: .9rem 1.1rem;
    background: rgba(255,255,255,.02);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .2s;
    height: 100%;
}
.article-nav-item > a:hover {
    border-color: var(--clr-border-light);
    background: rgba(255,255,255,0.02);
}
.article-nav-label {
    font-size: .82rem;
    color: var(--clr-text-dim);
    display: flex;
    align-items: center;
    gap: .35rem;
}
.article-nav-title {
    font-size: .9rem;
    color: var(--clr-text);
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-nav-item > a:hover .article-nav-title { color: var(--clr-text); }
.article-nav-next { text-align: right; }
.article-nav-next .article-nav-label { justify-content: flex-end; }
.article-nav-disabled { opacity: .5; cursor: not-allowed; }

@media (max-width: 600px) {
    .article-headline { padding: 1.5rem 1.2rem 1.2rem; }
    .article-summary { margin: 1.2rem 1.2rem 0; padding: .9rem 1rem .9rem 2.4rem; }
    .article-divider { margin: 1.2rem 1.2rem 0; }
    .article-content { padding: 1.2rem 1.2rem 0; }
    .article-source { margin: 1.2rem 1.2rem 0; }
    .article-footer { margin: 1.2rem 1.2rem 1.5rem; }
    .article-nav { grid-template-columns: 1fr; margin: 1.2rem 1.2rem 0; }
    .article-nav-next { text-align: left; }
    .article-nav-next .article-nav-label { justify-content: flex-start; }
}

/* 侧边栏 */
.article-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-widget {
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1.25rem;
}

.sidebar-title {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--clr-text-dim);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1.2px;
}
.sidebar-title i { color: var(--clr-text-dim); }

.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-item { margin-bottom: .1rem; }
.sidebar-item a {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .55rem .5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s;
}
.sidebar-item a:hover { background: rgba(255,255,255,0.04); }
.sidebar-item.active a { background: rgba(255,255,255,0.04); }

.sidebar-item-title {
    font-size: .875rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-item a:hover .sidebar-item-title,
.sidebar-item.active .sidebar-item-title { color: var(--clr-text); }

.sidebar-item-meta {
    font-size: .82rem;
    color: var(--clr-text-dim);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.sidebar-cta p { font-size: .95rem; color: var(--clr-text-muted); margin-bottom: .85rem; line-height: 1.7; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* ========== 404 错误页 ========== */
.error-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--page-top-offset)  !important;
    padding-bottom: 5rem !important;
    gap: 3rem;
}
.error-content { text-align: center; max-width: 600px; }
.error-code {
    font-family: var(--font-main);
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 400;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    letter-spacing: -.04em;
    margin-bottom: .5rem;
}
.error-title { font-size: 1.8rem; color: var(--clr-text); margin-bottom: 1rem; }
.error-desc { color: var(--clr-text-muted); line-height: 1.8; margin-bottom: 2rem; }
.error-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

.error-recommend { width: 100%; max-width: 700px; }
.error-recommend-title {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.error-recommend-title .fa-fire { color: #f97316; }
.error-recommend-list { display: flex; flex-direction: column; gap: .5rem; }
.error-recommend-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: .6rem;
    transition: var(--transition);
}
.error-recommend-list li a:hover { border-color: var(--clr-border-glow); background: var(--clr-primary-light); }
.err-item-title {
    color: var(--clr-text);
    font-size: .95rem;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.err-item-date { font-size: .82rem; color: var(--clr-text-dim); white-space: nowrap; display: flex; align-items: center; gap: .3rem; }
.err-item-date .fas { color: var(--clr-accent); }
.error-recommend-list li a:hover .err-item-title { color: var(--clr-accent); }

@media (max-width: 600px) {
    .error-page { padding-top: var(--page-top-offset) !important; padding-bottom: 3rem !important; }
    .error-actions { flex-direction: column; align-items: center; }
    .error-recommend-list li a { flex-direction: column; align-items: flex-start; gap: .3rem; }
}

/* ============================================================
 * 资讯列表搜索框 / 分类导航
 * ============================================================ */
.news-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem;
}
.news-search-form {
    display: flex;
    gap: .75rem;
    align-items: stretch;
    flex-wrap: wrap;
}
.news-search-form .btn { flex: 0 0 auto; }
.news-search-input-wrap {
    position: relative;
    flex: 1 1 320px;
    min-width: 0;
}
.news-search-input-wrap > .fas.fa-search {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-dim);
    pointer-events: none;
}
.news-search-input-wrap input[type="search"] {
    width: 100%;
    height: 46px;
    padding: 0 2.6rem 0 2.6rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border-light);
    border-radius: 10px;
    color: var(--clr-text);
    font-size: .95rem;
    outline: none;
    transition: var(--transition);
}
.news-search-input-wrap input[type="search"]:focus {
    border-color: var(--clr-border-glow);
    box-shadow: 0 0 0 3px var(--clr-primary-light);
}
.news-search-clear {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-dim);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.news-search-clear:hover {
    background: var(--clr-bg-alt);
    color: var(--clr-text);
}

/* 首页内联紧凑版本 */
.news-search-form--inline {
    max-width: 720px;
    margin: 0 auto 2rem;
}

.news-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.news-cat {
    display: inline-flex;
    align-items: center;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text-muted);
    font-size: .88rem;
    transition: var(--transition);
}
.news-cat:hover {
    color: var(--clr-text);
    border-color: var(--clr-border-glow);
}
.news-cat.active {
    background: var(--clr-primary-light);
    border-color: var(--clr-border-glow);
    color: var(--clr-text);
}

/* ============================================================
 * 文章标签 / About / Contact 信息页
 * ============================================================ */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1.6rem 2.5rem 0;
    color: var(--clr-text-dim);
}
.article-tag-item {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: 6px;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border-light);
    color: var(--clr-text-muted);
    font-size: .82rem;
    transition: var(--transition);
}
.article-tag-item:hover {
    color: var(--clr-text);
    border-color: var(--clr-border-glow);
    background: var(--clr-primary-light);
}

.info-page { padding-top: var(--page-top-offset) !important; padding-bottom: 5rem !important; max-width: 980px; }
.info-page .breadcrumb { margin-bottom: 1.5rem !important; }
.info-hero { margin: 0 0 2.5rem !important; }

/* About 页 hero 两栏布局 */
.about-page { max-width: 1080px !important; }
.about-hero {
    display: grid; grid-template-columns: 1.2fr .9fr; align-items: center; gap: 3rem;
    margin: 5rem 0 3.5rem; padding: 2.2rem 2.4rem;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border); border-radius: 8px;
    position: relative;
}
.about-hero::before { display: none; }
.about-hero-text { position: relative; z-index: 1; }
.about-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .25rem .8rem; border-radius: 9999px;
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-text-dim); font-size: .72rem; margin-bottom: 1rem;
    font-family: var(--font-mono); letter-spacing: 1px; text-transform: uppercase;
}
.about-eyebrow i { color: var(--clr-text-dim); }
.about-hero h1 { font-size: 2.2rem; margin: 0 0 .9rem; font-weight: 400; letter-spacing: -0.03em; }
.about-stats { display: flex; gap: 2.2rem; margin-top: 1.6rem; flex-wrap: wrap; }
.about-stat strong {
    display: block; font-size: 1.75rem; font-weight: 400;
    color: #ffffff;
    line-height: 1.1; letter-spacing: -0.04em;
}
.about-stat strong span { font-size: 1.1rem; margin-left: .15rem; }
.about-stat em { font-style: normal; color: var(--clr-text-muted); font-size: .88rem; }
.about-hero-img {
    position: relative; z-index: 1; text-align: center;
}
.about-hero-img img {
    max-width: 100%; max-height: 280px; width: auto;border-radius: 8px;
}
@media (max-width: 820px) {
    .about-hero { grid-template-columns: 1fr; padding: 1.6rem; gap: 1.5rem; text-align: center; }
    .about-stats { justify-content: center; gap: 1.5rem; }
    .about-hero h1 { font-size: 1.9rem; }
    .about-hero-img img { max-height: 200px;border-radius: 16px; }
}
.info-hero h1 {
    font-size: 2rem; font-weight: 400;
    margin-bottom: .75rem;
    color: #ffffff;
    letter-spacing: -0.03em;
}
.info-lead { color: var(--clr-text-muted); font-size: 1.05rem; line-height: 1.8; }
/* ── About 页通用节 ── */
.ab-section { margin: 4rem 0; }
.ab-section-hd { text-align: center; margin-bottom: 2.5rem; }
.ab-section-hd h2 {
    font-size: 1.5rem; margin-bottom: .5rem; font-weight: 400;
    color: #ffffff; letter-spacing: -0.02em;
}
.ab-section-hd p { color: var(--clr-text-muted); font-size: .97rem; }
.ab-log-link { color: var(--clr-text-muted); font-weight: 400; text-decoration: underline; text-underline-offset: 2px; }
.ab-log-link:hover { opacity: .8; }

/* ── 背景四格卡片 ── */
.ab-bg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.ab-bg-card {
    padding: 1.5rem 1.5rem; border-radius: 8px;
    background: var(--clr-bg-elev); border: 1px solid var(--clr-border);
    transition: border-color .2s;
}
.ab-bg-card:hover { border-color: var(--clr-border-light); }
.ab-bg-card i { font-size: 1.25rem; color: var(--clr-text-muted); margin-bottom: .9rem; display: block; }
.ab-bg-card h3 { font-size: 1rem; margin-bottom: .55rem; color: var(--clr-text); font-weight: 400; }
.ab-bg-card p { font-size: .875rem; color: var(--clr-text-muted); line-height: 1.8; margin: 0; }

/* ── 时间线 ── */
.ab-timeline { position: relative; padding-left: 3rem; }
.ab-timeline::before {
    content: ''; position: absolute; left: 52px; top: 0; bottom: 0;
    width: 2px; background: var(--clr-border-light);
}
.ab-tl-item { display: flex; gap: 1.6rem; margin-bottom: 2rem; align-items: flex-start; }
.ab-tl-year {
    flex: 0 0 auto; width: 56px; text-align: right;
    font-size: .75rem; font-weight: 400; color: var(--clr-text-dim);
    padding-top: .2rem; line-height: 1.4; font-family: var(--font-mono);
}
.ab-tl-body {
    flex: 1; padding: 1rem 1.25rem; border-radius: 8px;
    background: var(--clr-bg-elev); border: 1px solid var(--clr-border);
    position: relative;
}
.ab-tl-body::before {
    content: ''; position: absolute; left: -6px; top: 14px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--clr-border-light); border: 2px solid var(--clr-bg);
}
.ab-tl-body h4 { font-size: .9rem; margin-bottom: .4rem; color: var(--clr-text); font-weight: 400; }
.ab-tl-body p { font-size: .85rem; color: var(--clr-text-muted); line-height: 1.75; margin: 0; }
.ab-tl-future .ab-tl-year { color: var(--clr-text-dim); }
.ab-tl-future .ab-tl-body { border-style: dashed; opacity: .65; }
.ab-tl-future .ab-tl-body::before { background: var(--clr-border); border-color: var(--clr-border); }

/* ── 产品六格 ── */
.ab-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.ab-prod-card {
    display: block; padding: 1.25rem 1.5rem; border-radius: 8px;
    background: var(--clr-bg-elev); border: 1px solid var(--clr-border);
    text-decoration: none; transition: border-color .2s;
}
.ab-prod-card:hover { border-color: var(--clr-border-light); text-decoration: none; }
.ab-prod-card i { font-size: 1.2rem; color: var(--clr-text-muted); margin-bottom: .8rem; display: block; }
.ab-prod-card h3 { font-size: .9rem; margin-bottom: .4rem; color: var(--clr-text); font-weight: 400; }
.ab-prod-card p { font-size: .85rem; color: var(--clr-text-muted); line-height: 1.7; margin: 0; }

/* ── 联系 CTA ── */
.ab-contact { margin: 4rem 0 2rem; }
.ab-contact-inner {
    text-align: center; padding: 2.5rem 2rem; border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border);
}
.ab-contact-inner h2 { font-size: 1.5rem; margin-bottom: .9rem; color: var(--clr-text); font-weight: 400; letter-spacing: -0.02em; }
.ab-contact-inner p { color: var(--clr-text-muted); margin-bottom: 1.6rem; font-size: .9rem; }
.ab-contact-inner a:not(.btn) { color: var(--clr-text-muted); text-decoration: underline; }

/* ── 响应式 ── */
@media (max-width: 820px) {
    .ab-bg-grid { grid-template-columns: 1fr; }
    .ab-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-timeline { padding-left: 0; }
    .ab-timeline::before { display: none; }
    .ab-tl-item { flex-direction: column; gap: .6rem; }
    .ab-tl-year { text-align: left; }
    .ab-tl-body::before { display: none; }
}
@media (max-width: 500px) {
    .ab-prod-grid { grid-template-columns: 1fr; }
}

/* ============================================================
 * 客户评价
 * ============================================================ */
.testimonials-summary {
    text-align: center;
    margin: 1rem 0 2.5rem;
}
.rating-big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}
.rating-score {
    font-family: 'NumberFont', var(--font-main);
    font-size: 3rem;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
}
.rating-out { color: var(--clr-text-dim); font-size: .9rem; margin-top: -.4rem; }
.rating-stars { color: #facc15; font-size: 1.15rem; letter-spacing: .15rem; }
.rating-count { color: var(--clr-text-muted); font-size: .88rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}
.testimonial-card {
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    border-color: var(--clr-border-light);
}
.testimonial-rating {
    color: #facc15;
    letter-spacing: .12rem;
    font-size: .92rem;
    margin-bottom: .8rem;
}
.testimonial-text {
    color: var(--clr-text);
    line-height: 1.75;
    font-size: .95rem;
    margin-bottom: 1.1rem;
}
.testimonial-meta {
    color: var(--clr-text-muted);
    font-size: .85rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}
.testimonial-meta strong { color: var(--clr-text); font-size: .95rem; }
.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .news-search-form { flex-direction: column; }
    .news-search-form .btn { width: 100%; }
    .news-search-input-wrap { flex: none; width: 100%; }
    .info-page { padding-bottom: 3rem; }
    .info-hero h1 { font-size: 1.7rem; }
    .rating-score { font-size: 2.4rem; }
}



/* ========================================================
 * 全局 Toast 通知（window.GMToast）
 * ====================================================== */
.gm-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 4000;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem 1.25rem;
    min-width: 220px;
    max-width: min(90vw, 480px);
    background: rgba(25,25,25,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: var(--clr-text);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity .2s ease, transform .25s ease;
    pointer-events: none;
    white-space: normal;
    word-break: break-all;
}
.gm-toast.show { opacity: 1; transform: translate(-50%, 0); }
.gm-toast-icon { font-size: 1.15rem; flex-shrink: 0; line-height: 1; }
.gm-toast-text { flex: 1; min-width: 0; }
.gm-toast--success { border-color: rgba(34,197,94,0.55); }
.gm-toast--success .gm-toast-icon { color: #22c55e; }
.gm-toast--error   { border-color: rgba(239,68,68,0.6); }
.gm-toast--error   .gm-toast-icon { color: #ef4444; }
.gm-toast--info    { border-color: rgba(59,130,246,0.55); }
.gm-toast--info    .gm-toast-icon { color: #60a5fa; }
.gm-toast--warn    { border-color: rgba(251,191,36,0.6); }
.gm-toast--warn    .gm-toast-icon { color: #fbbf24; }

@media (max-width: 600px) {
    .gm-toast { top: 16px; padding: .85rem 1.15rem; font-size: .94rem; min-width: 0; }
}

/* ========================================================
 * 系统演示独立页 (demo.html) — v3 头部融合 + 列表
 * ====================================================== */

/* ---------- 头部欢迎区 ---------- */
.demo-head {
    position: relative;
    padding-top: 64px;
    clip-path: inset(0 0 -250px 0);
}
.demo-head-glow {
    display: none;
}
/* demo-head 光晕 */
.demo-head::before {
    content: '';
    position: absolute; bottom: -30%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 450px;
    background: radial-gradient(ellipse at center,
        rgba(109, 40, 217, 0.45) 0%,
        rgba(79, 70, 229, 0.25) 38%,
        transparent 72%
    );
    border-radius: 50%; filter: blur(55px);
    animation: orbDrift1 18s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.demo-head::after {
    content: '';
    position: absolute; top: 20%; right: -5%;
    width: 450px; height: 350px;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.3) 0%,
        transparent 68%
    );
    border-radius: 50%; filter: blur(60px);
    animation: orbDrift3 22s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.demo-head-inner {
    padding: 2.5rem 0 2.2rem !important;
    position: relative; z-index: 1;
}
.demo-breadcrumb {
    margin-bottom: .75rem;
    color: var(--clr-text-muted);
    font-size: .85rem;
    display: flex; gap: .5rem; align-items: center;
}
.demo-breadcrumb a { color: var(--clr-text-muted); transition: color .2s; }
.demo-breadcrumb a:hover { color: var(--clr-primary); }
.demo-breadcrumb i { font-size: .65rem; opacity: .6; }
.demo-breadcrumb span { color: var(--clr-text); }

.demo-head-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    margin: 0;
    padding-top: .05em; color: #ffffff;
}
.demo-head-title .grad-text {
    color: #ffffff;
    -webkit-text-fill-color: unset;
    display: inline-block;
}

/* ---------- 目录吸顶导航条 ---------- */
.demo-toc-bar {
    position: sticky;
    top: 64px;
    z-index: 80;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color .3s ease, border-color .3s ease;
}
.demo-toc-bar.is-stuck {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--clr-border);
}
.demo-toc-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: .7rem 0 !important;
}
.toc-bar-label {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--clr-text-dim);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .3px;
    flex-shrink: 0;
    padding-right: 1rem;
    border-right: 1px solid var(--clr-border);
}
.toc-bar-label i { color: var(--clr-text-dim); font-size: .9rem; }

.demo-toc-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: .35rem;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.demo-toc-nav::-webkit-scrollbar { display: none; }

.toc-link {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem .85rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9999px;
    color: var(--clr-text-dim);
    font-size: .8rem;
    font-weight: 400;
    white-space: nowrap;
    transition: color .15s;
    position: relative;
}
.toc-link i { font-size: .8rem; color: var(--clr-text-dim); }
.toc-link:hover {
    color: var(--clr-text);
}
.toc-link:hover i { color: var(--clr-text-muted); }
.toc-link.active {
    color: var(--clr-text);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.toc-link.active i { color: var(--clr-text-muted); }
.toc-count {
    font-style: normal;
    font-size: .72rem;
    padding: .05rem .45rem;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    color: var(--clr-text-dim);
    font-weight: 600;
    line-height: 1.4;
}
.toc-link.active .toc-count {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* ---------- 主体 ---------- */
.demo-body { padding: 2.5rem 0 4rem !important; }

.demo-section { scroll-margin-top: 220px; }
.demo-section + .demo-section { margin-top: 3rem; }

.ds-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--clr-border);
}
.ds-head-left { display: flex; gap: 1rem; align-items: flex-start; flex: 1; min-width: 0; }
.ds-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--clr-border);
}
.ds-title {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--clr-text);
    display: flex; align-items: center; gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: .35rem;
    letter-spacing: -0.02em;
}
.ds-badge {
    font-size: .68rem;
    padding: .15rem .55rem;
    border-radius: 9999px;
    background: transparent;
    color: var(--clr-text-dim);
    border: 1px solid var(--clr-border);
    font-weight: 400;
    letter-spacing: .5px;
    font-family: var(--font-mono); text-transform: uppercase;
}
.ds-badge--accent {
    background: transparent;
    color: var(--clr-text-dim);
    border-color: var(--clr-border);
}
.ds-desc {
    color: var(--clr-text-muted);
    font-size: .96rem;
    line-height: 1.75;
    margin: 0;
    max-width: 900px;
}

/* ---------- 列表 ---------- */
.demo-list {
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    overflow: hidden;
}
.dl-header {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(280px, 2fr) minmax(150px, 1fr) minmax(130px, 1fr) 180px;
    gap: 1.25rem;
    padding: .85rem 1.4rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--clr-border);
    font-size: .72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-dim);
}
.dl-header--roles {
    grid-template-columns: minmax(180px, 1fr) minmax(150px, 1fr) minmax(130px, 1fr) minmax(260px, 2fr);
}
.dl-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(280px, 2fr) minmax(150px, 1fr) minmax(130px, 1fr) 180px;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--clr-border);
    transition: background .2s;
}
.dl-row:last-child { border-bottom: none; }
.dl-row:hover { background: rgba(255,255,255,0.02); }
.dl-row--role {
    grid-template-columns: minmax(180px, 1fr) minmax(150px, 1fr) minmax(130px, 1fr) minmax(260px, 2fr);
    align-items: flex-start;
}

.dl-cell { display: flex; align-items: center; gap: .55rem; min-width: 0; }
.dl-cell-label {
    display: none;
    font-size: .72rem;
    color: var(--clr-text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: .35rem;
}

.dl-name { gap: .75rem; }
.dl-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--clr-border);
}
.demo-row--pc .dl-icon {
    background: transparent;
    border-color: var(--clr-border);
    color: var(--clr-text-muted);
}
.dl-name-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.dl-name-title {
    font-size: .9rem;
    font-weight: 400;
    color: var(--clr-text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dl-name-device {
    font-size: .76rem;
    color: var(--clr-text-dim);
    display: inline-flex; align-items: center; gap: .3rem;
}

.dl-url {
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: .4rem .65rem;
    font-size: .82rem;
}
.dl-url-text {
    flex: 1;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    color: var(--clr-text-muted);
    font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
}

.dl-mono {
    flex: 1;
    color: var(--clr-text);
    font-size: .92rem;
    font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
    background: transparent;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    min-width: 0;
}

.dl-act { gap: .45rem; justify-content: flex-end; flex-wrap: wrap; }
.dl-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .85rem;
    border-radius: 9999px;
    font-size: .78rem;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    background: transparent; color: var(--clr-text);
}
.dl-btn i { font-size: .75rem; }
.dl-btn--primary {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}
.dl-btn--primary:hover { background: #fafaf7; }
.dl-btn--ghost {
    background: transparent;
    color: var(--clr-text);
    border-color: rgba(255,255,255,0.25);
}
.dl-btn--ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    color: var(--clr-text);
}

.dl-role { gap: .75rem; align-items: center; }
.dl-icon--role { background: transparent; color: var(--clr-text-muted); border: 1px solid var(--clr-border); }
.dl-role-name { font-size: .9rem; font-weight: 400; color: var(--clr-text); }
.dl-role-desc {
    color: var(--clr-text-muted);
    font-size: .88rem;
    line-height: 1.65;
    display: block;
    min-width: 0;
    word-break: break-word;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    width: 30px; height: 30px;
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: .82rem;
}
.copy-btn:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
    background: var(--clr-accent-light);
}
.copy-btn--mini { width: 26px; height: 26px; font-size: .74rem; }

/* ---------- 提示 + CTA ---------- */
.demo-notice-box {
    margin-top: 2.5rem;
    background: rgba(34,211,238,0.06);
    border: 1px solid rgba(34,211,238,0.25);
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    display: flex; gap: 1rem;
    align-items: flex-start;
}
.dn-icon {
    color: var(--clr-text-dim);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.dn-text strong { display: block; color: var(--clr-text); margin-bottom: .35rem; font-size: .9rem; font-weight: 400; }
.dn-text p { color: var(--clr-text-muted); font-size: .875rem; line-height: 1.7; margin: 0; }
.dn-text a { color: var(--clr-text-muted); text-decoration: underline; text-underline-offset: 2px; }

.demo-cta-bar {
    margin-top: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
    flex-wrap: wrap;
}
.dcb-text h3 { font-size: 1.2rem; font-weight: 400; color: var(--clr-text); margin-bottom: .35rem; letter-spacing: -0.02em; }
.dcb-text p { color: var(--clr-text-muted); font-size: .875rem; margin: 0; }
.dcb-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- 二维码弹窗（仅 PC 触发） ---------- */
.qr-modal {
    position: fixed; inset: 0;
    z-index: 2000;
    display: none;
    align-items: center; justify-content: center;
    padding: 1rem;
}
.qr-modal.show { display: flex; animation: fadeIn .2s ease; }
.qr-modal-mask {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.qr-modal-body {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    animation: qrPop .2s ease;
}
@keyframes qrPop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.qr-modal-close {
    position: absolute; top: .85rem; right: .85rem;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: var(--clr-text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.qr-modal-close:hover { color: var(--clr-text); background: rgba(255,255,255,0.1); }
.qr-modal-head {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    margin-bottom: .35rem;
}
.qr-modal-head i { color: var(--clr-text-dim); font-size: 1.1rem; }
.qr-modal-head h3 { font-size: 1rem; font-weight: 400; color: var(--clr-text); margin: 0; }
.qr-modal-name {
    color: var(--clr-text-muted);
    font-size: .875rem;
    margin: .15rem 0 1.1rem;
    font-weight: 400;
}
.qr-modal-qr {
    width: 220px; height: 220px;
    margin: 0 auto 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    display: flex; align-items: center; justify-content: center;
}
.qr-modal-qr svg { width: 100%; height: 100%; display: block; }
.qr-modal-url {
    font-size: .75rem;
    color: var(--clr-text-dim);
    word-break: break-all;
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: .5rem .65rem;
    margin: 0 0 .9rem;
    font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
}
.qr-modal-cred {
    display: flex; flex-direction: column; gap: 8px;
    width: 100%; padding: 10px 14px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--clr-border);
    border-radius: 10px; margin: 10px 0 4px;
}
.qr-modal-cred-item {
    display: flex; align-items: center; gap: 8px; font-size: .88rem;
}
.qr-modal-cred-label {
    flex-shrink: 0; color: var(--clr-text-muted); min-width: 2.6em; text-align: right;
}
.qr-modal-cred-val {
    font-family: var(--font-mono); font-size: .92em;
    color: rgba(255,255,255,0.85); word-break: break-all;
}
.qr-modal-cred-item .copy-btn--mini {
    flex-shrink: 0; margin-left: auto;
}
.qr-modal-tips {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    display: inline-flex; align-items: center; gap: .35rem;
}
.qr-modal-tips i { color: #fbbf24; }
.qr-modal-copy { width: 100%; padding: .65rem; font-size: .9rem; }

/* ---------- 响应式 ---------- */
@media (max-width: 1100px) {
    .dl-header,
    .dl-row {
        grid-template-columns: minmax(180px, 1.1fr) minmax(220px, 1.6fr) 1fr 1fr 150px;
        gap: 1rem;
        padding: .9rem 1.1rem;
    }
    .dl-header--roles,
    .dl-row--role {
        grid-template-columns: minmax(160px, .9fr) minmax(140px, 1fr) minmax(120px, 1fr) minmax(220px, 1.8fr);
    }
    .ds-title { font-size: 1.35rem; }
}

@media (max-width: 900px) {
    .demo-head { padding-top: 64px; }
    .demo-head-inner { padding: 1.8rem 0 1.5rem !important; }
    .demo-head-title { font-size: 1.45rem; }
    .demo-toc-inner { gap: .5rem; padding: .55rem 0 !important; }
    .toc-bar-label { display: none; }
    .toc-link { padding: .45rem .75rem; font-size: .85rem; }
    .demo-head-title { font-size: 1.5rem; }
    .demo-toc-nav { justify-content: flex-start; width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .25rem; scrollbar-width: none; }
    .demo-toc-nav::-webkit-scrollbar { display: none; }
    .toc-link { padding: .5rem .85rem; font-size: .87rem; }

    /* 移动端隐藏扫码按钮 + 二维码弹窗（直接在手机上就好） */
    .dl-btn--ghost[data-qr-url] { display: none !important; }

    /* 列表降级为卡片式行 */
    .dl-header { display: none; }
    .dl-row,
    .dl-row--role {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        padding: 1.15rem 1.15rem;
        border-bottom: 1px solid var(--clr-border);
    }
    .dl-cell { width: 100%; }
    .dl-cell-label { display: inline-block; }

    .dl-url, .dl-acc, .dl-pwd {
        background: rgba(7,9,15,0.5);
        border: 1px solid var(--clr-border);
        border-radius: 8px;
        padding: .55rem .7rem;
    }
    .dl-act { justify-content: flex-start; }
    .dl-act .dl-btn { flex: 1; justify-content: center; }
    .dl-role-desc {
        padding-top: .25rem;
        border-top: 1px dashed var(--clr-border);
    }

    .demo-cta-bar { flex-direction: column; align-items: flex-start; padding: 1.4rem 1.4rem; }
    .dcb-actions { width: 100%; }
    .dcb-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 600px) {
    .demo-head-title { font-size: 1.3rem; }
    .ds-head { gap: 1rem; }
    .ds-icon { width: 40px; height: 40px; font-size: 1.05rem; }
    .ds-title { font-size: 1.2rem; }
    .ds-desc { font-size: .9rem; }
    .demo-notice-box { flex-direction: column; gap: .65rem; padding: 1.1rem 1.15rem; }
    .qr-modal-body { padding: 1.5rem 1.15rem 1.25rem; }
    .qr-modal-qr { width: 200px; height: 200px; }
}

/* ========== Pricing Summary (首页摘要卡片) ========== */
.pricing-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pricing-summary-card {
    position: relative;
    background: var(--clr-bg-elev);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.pricing-summary-card:hover {
    border-color: var(--clr-border-light);
}
.pricing-summary-card.highlight {
    background: rgba(255,255,255,0.04);
    overflow: hidden;
}
.pricing-summary-card h3 { font-size: 1.1rem; margin-bottom: .25rem; font-weight: 400; }
.pricing-summary-card .card-tagline { color: var(--clr-text-dim); font-size: .78rem; margin-bottom: 1rem; }
.pricing-summary-card .card-price { font-size: 2rem; font-weight: 400; color: #ffffff; letter-spacing: -0.05em; }
.pricing-summary-card .card-price::before { content: '¥'; font-size: 1rem; font-weight: 400; vertical-align: super; margin-right: 2px; color: var(--clr-text-muted); }
.pricing-summary-desc { color: var(--clr-text-muted); font-size: .9rem; margin-top: .75rem; line-height: 1.5; }
.pricing-more-wrap { text-align: center; margin-top: 2.5rem; }
@media(max-width:900px) {
    .pricing-summary-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media(max-width:600px) {
    .pricing-summary-grid { grid-template-columns: 1fr; }
    .pricing-summary-card .card-price { font-size: 1.8rem; }
}

/* ========== Page Hero Mini (子页面顶部) ========== */
.page-hero-mini {
    padding: 8rem 0 5rem;
    text-align: center;
    border-bottom: none;
    position: relative;
    clip-path: inset(0 0 -250px 0);
}


/* 子页面 hero 光晕 */
.page-hero-mini::before {
    content: '';
    position: absolute;
    bottom: -40%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse at center,
        rgba(109, 40, 217, 0.5) 0%,
        rgba(79, 70, 229, 0.3) 35%,
        rgba(67, 56, 202, 0.12) 60%,
        transparent 78%
    );
    border-radius: 50%;
    filter: blur(55px);
    animation: orbDrift1 16s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.page-hero-mini::after {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.35) 0%,
        rgba(99, 102, 241, 0.15) 45%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    animation: orbDrift2 22s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.page-hero-mini .container { position: relative; z-index: 1; }
.page-hero-title {
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: .5rem;
}
.page-hero-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
@media(max-width:600px) {
    .page-hero-mini { padding: 6rem 0 2rem; }
    .page-hero-title { font-size: 1.6rem; }
    .page-hero-desc { font-size: .95rem; }
}

/* ========== 编辑页两栏布局（admin/edit.php） ========== */
.edit-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 1.25rem;
    align-items: start;
}
.edit-main { min-width: 0; }
.edit-aside { min-width: 0; position: sticky; top: 1rem; }
@media (max-width: 1200px) {
    .edit-layout { grid-template-columns: 1fr; }
    .edit-aside { position: static; }
}

/* ========== AI 一键生成面板（admin/edit.php） ========== */
.btn-ai {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
}
.btn-ai:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.btn-ai:disabled { opacity: .55; cursor: not-allowed; }

.ai-panel { margin-top: 0; }
.ai-panel-header {
    padding: .9rem 1.1rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--primary, #4f46e5);
    border-bottom: 1px solid var(--border, #e5e7eb);
    background: linear-gradient(135deg, rgba(124,58,237,.06), rgba(79,70,229,.06));
}
.ai-panel-body { padding: 1rem; }
.ai-panel-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .25rem;
}
.ai-hint {
    font-size: .8rem;
    color: var(--muted, #9ca3af);
}

/* 进度条 */
.ai-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: .75rem 1rem;
    background: rgba(79,70,229,.06);
    border-radius: var(--radius, 8px);
    border: 1px solid rgba(79,70,229,.18);
}
.ai-progress-bar {
    flex-shrink: 0;
    width: 120px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #7c3aed 0%, #4f46e5 40%, #a78bfa 70%, #7c3aed 100%);
    background-size: 200% 100%;
    animation: ai-bar-move 1.5s linear infinite paused;
}
@keyframes ai-bar-move {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
#ai-progress-text {
    font-size: .85rem;
    color: var(--primary, #4f46e5);
}
