/* 微信/小程序二维码展示 */
.qr-code-box {
    min-width: 11rem;
    min-height: 11rem;
}

.qr-code-box img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 卡片悬停效果 */
.avatar-default {
    box-shadow: 0 2px 8px rgba(22, 93, 255, 0.2);
    letter-spacing: 0.02em;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 93, 255, 0.12);
}

/* 站点导航栏（不依赖 Tailwind space-x，避免构建遗漏） */
.site-navbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    height: 4rem;
    min-width: 0;
}

.site-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
}

.site-navbar-nav {
    display: none;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 0.15rem;
    min-width: 0;
    padding: 0 0.5rem;
}

.site-navbar-link {
    display: inline-block;
    padding: 0.45rem 0.55rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1d2129;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-navbar-link:hover {
    color: #165DFF;
    background-color: rgba(22, 93, 255, 0.08);
}

.site-navbar-link.is-active {
    color: #165DFF;
    background-color: rgba(22, 93, 255, 0.1);
}

.site-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-navbar-cta {
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: #165DFF;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.site-navbar-cta:hover {
    background: rgba(22, 93, 255, 0.9);
}

.site-navbar-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    color: #1d2129;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-navbar-menu-btn:hover {
    background: #f2f3f5;
    color: #165DFF;
}

.site-mobile-menu {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.site-mobile-link {
    display: block;
    padding: 0.65rem 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1d2129;
    text-decoration: none;
    border-bottom: 1px solid #f2f3f5;
}

.site-mobile-link:hover {
    color: #165DFF;
}

.site-mobile-cta {
    display: block;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    background: #165DFF;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.site-mobile-cta:hover {
    background: rgba(22, 93, 255, 0.9);
}

@media (min-width: 1280px) {
    .site-navbar-nav {
        display: flex;
    }

    .site-navbar-link {
        padding: 0.5rem 0.65rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1536px) {
    .site-navbar-nav {
        gap: 0.25rem;
    }

    .site-navbar-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9375rem;
    }
}

/* 文本截断 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 骨架屏动画 */
@keyframes skeleton-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.skeleton {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    background: linear-gradient(90deg, #f2f3f5 25%, #e8eaed 50%, #f2f3f5 75%);
    background-size: 200% 100%;
}

.skeleton-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
}

/* 行业标签 */
.industry-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(22, 93, 255, 0.08);
    color: #165DFF;
}

/* 新闻卡片顶部装饰条 */
.news-card-accent {
    height: 4px;
    background: linear-gradient(90deg, #165DFF, #36CFC9);
}

/* FAQ 展开动画 */
.faq-content {
    transition: all 0.25s ease;
}

.faq-toggle i {
    transition: transform 0.25s ease;
}

.faq-toggle i.rotate-180 {
    transform: rotate(180deg);
}

/* 空状态 */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    color: #86909c;
}

/* 详情页正文 */
.detail-page-main {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .detail-page-main {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }
}

.detail-content {
    font-size: 1.0625rem;
    line-height: 1.85;
}

.detail-content p + p {
    margin-top: 1rem;
}

.detail-content .detail-h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1d2129;
}

.detail-content .detail-h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d2129;
}

.detail-content .detail-ul,
.detail-content .detail-ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.detail-content .detail-ul {
    list-style: disc;
}

.detail-content .detail-ol {
    list-style: decimal;
}

.detail-content .detail-ul li + li,
.detail-content .detail-ol li + li {
    margin-top: 0.5rem;
}

.detail-content strong {
    font-weight: 600;
    color: #1d2129;
}

.detail-content .detail-hr {
    margin: 1.5rem 0;
    border: 0;
    border-top: 1px solid #e5e6eb;
}

.detail-content a {
    color: #165DFF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.detail-content a:hover {
    opacity: 0.85;
}

/* 组件加载完成后隐藏静态 SEO 正文（保留 DOM 供爬虫读取） */
body.components-loaded .seo-static-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* AIGEO 诊断弹窗 */
body.aigeo-modal-open {
    overflow: hidden;
}

.aigeo-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.aigeo-modal.hidden {
    display: none;
}

.aigeo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.aigeo-modal-panel {
    position: relative;
    width: 100%;
    max-width: 42rem;
    max-height: min(90vh, 720px);
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(22, 93, 255, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: max-width 0.25s ease, max-height 0.25s ease, width 0.25s ease;
}

.aigeo-modal-panel.is-expanded {
    max-width: min(1100px, 96vw);
    width: min(1100px, 96vw);
    max-height: min(94vh, 900px);
}

.aigeo-modal-panel.is-report-mode {
    max-width: min(1100px, 96vw);
    width: min(1100px, 96vw);
    max-height: 94vh;
}

.aigeo-modal-panel.is-report-mode.is-expanded {
    max-width: 98vw;
    width: 98vw;
    max-height: 96vh;
}

.aigeo-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f2f3f5;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.06), rgba(54, 207, 201, 0.06));
}

.aigeo-modal-header-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.aigeo-icon-btn,
.aigeo-modal-close {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    color: #86909c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.aigeo-icon-btn:hover,
.aigeo-modal-close:hover {
    background: #f2f3f5;
    color: #1d2129;
}

.aigeo-icon-btn[aria-pressed="true"] {
    background: rgba(22, 93, 255, 0.12);
    color: #165DFF;
}

.aigeo-modal-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
    max-height: 360px;
    background: #fafbfc;
}

.aigeo-modal-panel.is-report-mode .aigeo-modal-messages {
    max-height: none;
    min-height: 0;
    padding: 0.75rem 1rem 1rem;
}

.aigeo-modal-panel.is-report-mode #aigeo-diagnosis-progress {
    display: none !important;
}

.aigeo-msg {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.aigeo-msg-user {
    flex-direction: row-reverse;
}

.aigeo-msg-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.aigeo-msg-bot .aigeo-msg-avatar {
    background: linear-gradient(135deg, #165DFF, #36CFC9);
    color: #fff;
}

.aigeo-msg-user .aigeo-msg-avatar {
    background: #e8eaed;
    color: #4e5969;
}

.aigeo-msg-bubble {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1d2129;
}

.aigeo-msg-bot .aigeo-msg-bubble {
    background: #fff;
    border: 1px solid #e8eaed;
    border-top-left-radius: 0.25rem;
}

.aigeo-msg-bot.has-report {
    width: 100%;
}

.aigeo-msg-bot.has-report .aigeo-msg-avatar {
    display: none;
}

.aigeo-msg-bot.has-report .aigeo-msg-bubble {
    max-width: 100%;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.aigeo-msg-user.is-compact .aigeo-msg-bubble {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
}

.aigeo-msg-user .aigeo-msg-bubble {
    background: #165DFF;
    color: #fff;
    border-top-right-radius: 0.25rem;
}

.aigeo-user-summary {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    opacity: 0.95;
}

.aigeo-user-summary li + li {
    margin-top: 0.25rem;
}

.aigeo-modal-form-wrap {
    padding: 1rem 1.25rem 0.5rem;
    border-top: 1px solid #f2f3f5;
}

.aigeo-diagnosis-form .aigeo-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: #4e5969;
}

.aigeo-diagnosis-form .aigeo-field em {
    color: #f53f3f;
    font-style: normal;
}

.aigeo-diagnosis-form input {
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aigeo-diagnosis-form input:focus {
    border-color: #165DFF;
    box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.12);
}

.aigeo-submit-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: #165DFF;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, opacity 0.2s;
}

.aigeo-submit-btn:hover:not(:disabled) {
    background: rgba(22, 93, 255, 0.9);
}

.aigeo-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.aigeo-submit-btn-secondary {
    width: auto;
    margin-top: 0;
    background: #f2f3f5;
    color: #4e5969;
}

.aigeo-submit-btn-secondary:hover {
    background: #e8eaed;
}

.aigeo-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid #f2f3f5;
}

.aigeo-typing {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.aigeo-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #165DFF;
    animation: aigeo-bounce 1.2s infinite ease-in-out;
}

.aigeo-typing span:nth-child(2) { animation-delay: 0.15s; }
.aigeo-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes aigeo-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-4px); opacity: 1; }
}

.aigeo-report-shell {
    width: 100%;
}

.aigeo-report-document {
    background: #fff;
    border: 1px solid #e5e6eb;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    max-height: min(62vh, 560px);
    overflow-x: auto;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(22, 93, 255, 0.06);
    scroll-behavior: smooth;
}

.aigeo-modal-panel.is-expanded .aigeo-report-document,
.aigeo-modal-panel.is-report-mode .aigeo-report-document {
    max-height: min(calc(94vh - 200px), 720px);
}

.aigeo-modal-panel.is-report-mode.is-expanded .aigeo-report-document {
    max-height: min(calc(96vh - 180px), 820px);
}

.aigeo-diagnosis-result {
    font-size: 0.9375rem;
    color: #1d2129;
}

.aigeo-report-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.08), rgba(54, 207, 201, 0.1));
    border-radius: 0.75rem;
    border: 1px solid rgba(22, 93, 255, 0.15);
}

.aigeo-score-badge {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    flex-shrink: 0;
}

.aigeo-score-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #165DFF;
    font-variant-numeric: tabular-nums;
}

.aigeo-score-value.is-high { color: #00b42a; }
.aigeo-score-value.is-mid { color: #165DFF; }
.aigeo-score-value.is-low { color: #f77234; }

.aigeo-score-max {
    font-size: 1rem;
    font-weight: 600;
    color: #86909c;
}

.aigeo-report-hero-meta {
    flex: 1;
    min-width: 12rem;
}

.aigeo-report-hero-title {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d2129;
}

.aigeo-report-hero-summary {
    color: #4e5969;
    font-weight: 400;
}

.aigeo-report-hero-sub {
    margin: 0;
    font-size: 0.875rem;
    color: #4e5969;
    line-height: 1.5;
}

.aigeo-report-action {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #165DFF;
    background: rgba(22, 93, 255, 0.08);
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.aigeo-report-action:hover {
    background: rgba(22, 93, 255, 0.14);
}

.aigeo-report-action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.aigeo-pdf-export-root {
    width: 714px;
    max-width: 714px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #1d2129;
    padding: 0;
    box-sizing: border-box;
}

.aigeo-pdf-export-root .aigeo-pdf-body,
.aigeo-pdf-export-root .aigeo-pdf-report-body,
.aigeo-pdf-export-root .geo-brand-report {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.aigeo-pdf-export-root .aigeo-report-document {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.aigeo-pdf-export-root .geo-report-header {
    padding: 0.75rem 0 1rem;
    margin-bottom: 0.75rem;
}

.aigeo-pdf-export-root .geo-report-title {
    color: #4f46e5 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    background: none !important;
}

.aigeo-pdf-export-root .geo-overview-grid {
    grid-template-columns: repeat(3, 1fr);
}

.aigeo-pdf-export-root .geo-website-grid {
    grid-template-columns: repeat(2, 1fr);
}

.aigeo-pdf-export-root .geo-cell-q,
.aigeo-pdf-export-root .geo-cell-brands,
.aigeo-pdf-export-root .geo-cell-excerpt,
.aigeo-pdf-export-root .geo-cell-theme,
.aigeo-pdf-export-root .geo-cell-reason {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    max-width: none !important;
    word-break: break-word;
}

.aigeo-pdf-export-root .geo-bar-list .geo-bar-name {
    flex: 0 0 6.5rem;
    max-width: 6.5rem;
    white-space: normal;
    overflow: visible;
}

.aigeo-pdf-export-root .geo-table-queries {
    font-size: 0.75rem;
}

.aigeo-pdf-export-root .geo-table-queries th:nth-child(1) { width: 26%; }
.aigeo-pdf-export-root .geo-table-queries th:nth-child(2) { width: 8%; }
.aigeo-pdf-export-root .geo-table-queries th:nth-child(3) { width: 22%; }
.aigeo-pdf-export-root .geo-table-queries th:nth-child(4) { width: 44%; }

.aigeo-pdf-export-root .aigeo-pdf-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #165DFF;
}

/* PDF 封面：独占首页、居中高端版式 */
.aigeo-pdf-cover {
    position: relative;
    min-height: 1016px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
}

.aigeo-pdf-page.is-cover-page {
    min-height: 1016px;
}

.aigeo-pdf-cover-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #f8faff 0%, #eef2ff 38%, #f0fdfa 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 1rem;
}

.aigeo-pdf-cover-glow {
    position: absolute;
    top: 12%;
    left: 50%;
    width: 420px;
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 70%);
    pointer-events: none;
}

.aigeo-pdf-cover-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aigeo-pdf-cover-brand-block {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aigeo-pdf-cover-logo {
    display: block;
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    border-radius: 0.85rem;
    margin: 0 auto 1.1rem;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.14);
    background: #fff;
}

.aigeo-pdf-cover-brand {
    margin: 0;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 45%, #165DFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.aigeo-pdf-cover-company-pill {
    margin: 0.75rem 0 0;
    display: inline-block;
    max-width: 100%;
    padding: 0.5rem 1.15rem;
    border: 1px solid rgba(79, 70, 229, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: #4e5969;
    text-align: center;
    box-sizing: border-box;
}

.aigeo-pdf-cover-brand-en {
    display: none;
}

.aigeo-pdf-cover-divider {
    width: 4.5rem;
    height: 3px;
    margin: 0 0 1.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f46e5, #36cfc9);
}

.aigeo-pdf-cover-title {
    margin: 0 0 2.25rem;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.04em;
    color: #1d2129;
}

.aigeo-pdf-cover-company {
    display: none;
}

.aigeo-pdf-cover-score-block {
    width: 100%;
    margin: 0 auto 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.aigeo-pdf-cover-score-label {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #86909c;
}

.aigeo-pdf-cover-score-ring-wrap {
    position: relative;
    width: 11.5rem;
    height: 11.5rem;
    margin: 0 auto;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 24px rgba(79, 70, 229, 0.12));
}

.aigeo-pdf-cover-score-ring {
    display: block;
    width: 100%;
    height: 100%;
}

.aigeo-pdf-cover-score-center {
    display: none;
}

.aigeo-pdf-cover-score-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}

.aigeo-pdf-cover-score-denom {
    display: none;
}

.aigeo-pdf-cover-rating {
    display: inline-block;
    height: 2.125rem;
    line-height: 2.125rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}

.aigeo-pdf-cover-rating > span {
    display: inline;
    line-height: inherit;
    vertical-align: baseline;
}

.aigeo-pdf-cover-rating.is-good {
    background: #e8ffea;
    color: #00b42a;
    border: 1px solid #7be188;
}

.aigeo-pdf-cover-rating.is-mid {
    background: rgba(22, 93, 255, 0.08);
    color: #165DFF;
    border: 1px solid rgba(22, 93, 255, 0.25);
}

.aigeo-pdf-cover-rating.is-warn {
    background: #fff7e8;
    color: #f59e0b;
    border: 1px solid #ffcf8b;
}

.aigeo-pdf-cover-rating.is-bad {
    background: #ffece8;
    color: #f77234;
    border: 1px solid #ffb89a;
}

.aigeo-pdf-cover-date {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #86909c;
}

.aigeo-pdf-cover-tagline,
.aigeo-pdf-cover-note {
    display: none;
}

.aigeo-pdf-cover-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.55rem 0.65rem;
    width: 100%;
    max-width: 100%;
}

.aigeo-pdf-cover-features li {
    display: inline-block;
    height: 2.125rem;
    line-height: 2.125rem;
    padding: 0 0.85rem 0 0.55rem;
    font-size: 0;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    box-sizing: border-box;
    vertical-align: middle;
    text-align: center;
}

.aigeo-pdf-cover-feat-text {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1;
    vertical-align: middle;
}

.aigeo-pdf-cover-feat-icon {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin: 0 0.35rem 0 0;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.25rem;
    text-align: center;
    vertical-align: middle;
}

.aigeo-pdf-cover-features .is-platform {
    color: #312e81;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.14), rgba(22, 93, 255, 0.1));
    border: 1px solid rgba(79, 70, 229, 0.22);
}

.aigeo-pdf-cover-features .is-platform .aigeo-pdf-cover-feat-icon {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #165DFF);
}

.aigeo-pdf-cover-features .is-competitor {
    color: #5b21b6;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.22);
}

.aigeo-pdf-cover-features .is-competitor .aigeo-pdf-cover-feat-icon {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    font-size: 0.5rem;
}

.aigeo-pdf-cover-features .is-index {
    color: #0f766e;
    background: linear-gradient(135deg, rgba(54, 207, 201, 0.16), rgba(20, 184, 166, 0.08));
    border: 1px solid rgba(20, 184, 166, 0.25);
}

.aigeo-pdf-cover-features .is-index .aigeo-pdf-cover-feat-icon {
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #36cfc9);
}

.aigeo-pdf-cover-features .is-advice {
    color: #b45309;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.aigeo-pdf-cover-features .is-advice .aigeo-pdf-cover-feat-icon {
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* PDF 文字版附录：与正文 geo-section 同宽同字号 */
.aigeo-pdf-export-root .geo-md-appendix-section,
.aigeo-pdf-export-root .geo-md-appendix-section .geo-md-appendix-body,
.aigeo-pdf-export-root .aigeo-pdf-md-body,
.aigeo-pdf-export-root .geo-pdf-flat-section.geo-md-appendix .geo-pdf-flat-body {
    width: 100%;
    max-width: 100%;
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
    color: #1d2129 !important;
}

.aigeo-pdf-export-root .geo-md-appendix-section .aigeo-md-h2,
.aigeo-pdf-export-root .aigeo-pdf-md-body .aigeo-md-h2 {
    font-size: 1rem !important;
    font-weight: 700;
    margin: 1rem 0 0.65rem;
    color: #1d2129;
}

.aigeo-pdf-export-root .geo-md-appendix-section .aigeo-md-h3,
.aigeo-pdf-export-root .aigeo-pdf-md-body .aigeo-md-h3 {
    font-size: 0.9375rem !important;
    font-weight: 700;
    margin: 0.85rem 0 0.45rem;
    color: #1d2129;
}

.aigeo-pdf-export-root .geo-md-appendix-section .aigeo-md-p,
.aigeo-pdf-export-root .geo-md-appendix-section .aigeo-md-ul,
.aigeo-pdf-export-root .geo-md-appendix-section .aigeo-md-ol,
.aigeo-pdf-export-root .aigeo-pdf-md-body .aigeo-md-p,
.aigeo-pdf-export-root .aigeo-pdf-md-body .aigeo-md-ul,
.aigeo-pdf-export-root .aigeo-pdf-md-body .aigeo-md-ol {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
}

.aigeo-pdf-export-root .geo-pdf-flat-section.geo-md-appendix .geo-pdf-flat-title {
    font-size: 1rem;
    font-weight: 700;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.06);
}

.aigeo-pdf-export-root .aigeo-pdf-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.aigeo-pdf-export-root .aigeo-pdf-header p {
    margin: 0;
    font-size: 0.75rem;
    color: #86909c;
}

.aigeo-pdf-export-root .aigeo-pdf-note {
    margin-top: 0.35rem !important;
    font-size: 0.6875rem !important;
    color: #4e5969 !important;
}

/* PDF 导出：展平折叠块、避免 html2canvas 叠字与截断 */
.aigeo-pdf-capture {
    box-sizing: border-box;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.aigeo-pdf-capture .aigeo-report-document,
.aigeo-pdf-capture .aigeo-pdf-report-body,
.aigeo-pdf-capture [data-structured-panel] {
    max-height: none !important;
    overflow: visible !important;
    height: auto !important;
    box-shadow: none !important;
}

.aigeo-pdf-sandbox {
    position: fixed;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.aigeo-pdf-sandbox .aigeo-pdf-export-root {
    width: 714px;
    max-width: 714px;
}

.aigeo-pdf-veil {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #4e5969;
    font-size: 0.9375rem;
    pointer-events: none;
}

.aigeo-pdf-capture .aigeo-pdf-cover-brand {
    color: #4f46e5 !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    background: none !important;
}

.aigeo-pdf-capture .geo-brand-report {
    width: 100%;
    max-width: 100%;
}

.aigeo-pdf-capture .geo-section {
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 1rem;
    clear: both;
}

.aigeo-pdf-capture .geo-score-block {
    display: block;
    clear: both;
    overflow: visible;
}

.aigeo-pdf-capture .geo-score-ring-wrap {
    display: block;
    margin: 0 auto 1rem;
    overflow: visible;
}

.aigeo-pdf-capture .geo-score-meta {
    display: block;
    clear: both;
    margin-top: 0.5rem;
}

.aigeo-pdf-capture .geo-website-audit,
.aigeo-pdf-capture .geo-score-breakdown {
    clear: both;
    overflow: visible;
    page-break-inside: avoid;
}

.aigeo-pdf-capture .geo-pdf-flat-section {
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    margin-bottom: 0.65rem;
    overflow: visible;
    page-break-inside: avoid;
    break-inside: avoid;
    background: #fff;
}

.aigeo-pdf-page {
    overflow: visible;
}

.aigeo-pdf-sub-block {
    margin-bottom: 0.65rem;
}

.aigeo-pdf-sub-block .geo-section-title {
    margin-bottom: 0.5rem;
}

.aigeo-pdf-sub-block .geo-sub-title {
    margin: 0.5rem 0;
}

.aigeo-pdf-capture .geo-pdf-flat-title {
    padding: 0.55rem 0.75rem;
    background: #f7f8fa;
    border-bottom: 1px solid #e5e6eb;
    font-weight: 600;
    font-size: 0.875rem;
    color: #1d2129;
}

.aigeo-pdf-capture .geo-pdf-flat-body {
    padding: 0.65rem 0.75rem;
    overflow: visible;
}

.aigeo-pdf-capture .geo-pdf-flat-section.geo-md-appendix .geo-pdf-flat-body {
    font-size: 0.875rem;
    color: #1d2129;
}

.aigeo-pdf-capture .geo-website-candidates ul,
.aigeo-pdf-capture .geo-pdf-flat-body ul {
    margin: 0.35rem 0 0;
    padding-left: 1.1rem;
    word-break: break-all;
}

.aigeo-pdf-capture .geo-table-wrap {
    overflow: visible;
    width: 100%;
}

.aigeo-pdf-capture .geo-table {
    width: 100%;
    table-layout: fixed;
    font-size: 0.75rem;
}

.aigeo-pdf-capture .geo-cell-q,
.aigeo-pdf-capture .geo-cell-brands,
.aigeo-pdf-capture .geo-cell-excerpt {
    word-break: break-word;
    white-space: normal;
}

.aigeo-report-cta-title {
    margin-top: 1.5rem !important;
    padding: 0.85rem 1rem 0.5rem !important;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.1), rgba(54, 207, 201, 0.12));
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-bottom: none;
    border-radius: 0.5rem 0.5rem 0 0;
    color: #165DFF !important;
}

.aigeo-report-cta-title + .aigeo-md-p,
.aigeo-report-cta-title + .aigeo-md-ul {
    margin-top: 0 !important;
    padding: 0.5rem 1rem 1rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.05), rgba(54, 207, 201, 0.06));
    border: 1px solid rgba(22, 93, 255, 0.2);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.aigeo-report-cta-title + .aigeo-md-ul a {
    color: #165DFF;
    font-weight: 600;
    text-decoration: none;
}

.aigeo-report-cta-title + .aigeo-md-ul a:hover {
    text-decoration: underline;
}

.aigeo-progress-wrap {
    margin-top: 0.75rem;
}

.aigeo-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #4e5969;
    margin-bottom: 0.35rem;
}

.aigeo-progress-status {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aigeo-progress-timer {
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    color: #165DFF;
    font-weight: 600;
}

.aigeo-progress-track {
    height: 4px;
    background: #e8eaed;
    border-radius: 9999px;
    overflow: hidden;
}

.aigeo-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #165DFF, #36CFC9);
    border-radius: 9999px;
    transition: width 0.4s ease;
}

.aigeo-progress-steps {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.6875rem;
    color: #c9cdd4;
    gap: 0.25rem;
}

.aigeo-progress-steps li {
    flex: 1;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.aigeo-progress-steps li::before {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    margin: 0 auto 0.3rem;
    border-radius: 9999px;
    background: #e8eaed;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e8eaed;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.aigeo-progress-steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0.22rem;
    left: calc(50% + 0.35rem);
    width: calc(100% - 0.7rem);
    height: 2px;
    background: #e8eaed;
    z-index: 0;
}

.aigeo-progress-steps li.is-active {
    color: #165DFF;
    font-weight: 600;
}

.aigeo-progress-steps li.is-active::before {
    background: #165DFF;
    box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.15);
}

.aigeo-progress-steps li.is-done {
    color: #36CFC9;
}

.aigeo-progress-steps li.is-done::before {
    background: #36CFC9;
    box-shadow: none;
}

.aigeo-progress-steps li.is-done:not(:last-child)::after {
    background: linear-gradient(90deg, #36CFC9, #e8eaed);
}

.aigeo-msg-streaming {
    width: 100%;
}

.aigeo-msg-streaming .aigeo-msg-bubble {
    max-width: 100%;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.aigeo-msg-streaming .aigeo-msg-avatar {
    margin-top: 0.25rem;
}

.aigeo-stream-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 55%, #f3f8ff 100%);
    border: 1px solid rgba(22, 93, 255, 0.12);
    border-radius: 1rem;
    padding: 1.125rem 1.25rem 1rem;
    box-shadow: 0 10px 32px rgba(22, 93, 255, 0.07);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.aigeo-stream-panel-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #165DFF, #36CFC9, #165DFF);
    background-size: 200% 100%;
    animation: aigeo-accent-flow 2.8s linear infinite;
}

@keyframes aigeo-accent-flow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.aigeo-stream-panel.is-fading {
    opacity: 0;
    transform: translateY(-6px);
}

.aigeo-stream-panel-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
    padding-top: 0.25rem;
}

.aigeo-stream-panel-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #165DFF, #36CFC9);
    box-shadow: 0 6px 18px rgba(22, 93, 255, 0.28);
    position: relative;
}

.aigeo-stream-ring {
    position: absolute;
    inset: -4px;
    border-radius: 1rem;
    border: 2px solid rgba(22, 93, 255, 0.25);
    border-top-color: #165DFF;
    animation: aigeo-spin 1.1s linear infinite;
}

@keyframes aigeo-spin {
    to { transform: rotate(360deg); }
}

.aigeo-stream-panel-copy {
    flex: 1;
    min-width: 0;
}

.aigeo-stream-panel-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1d2129;
    letter-spacing: -0.01em;
}

.aigeo-stream-live {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.aigeo-stream-status {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: #4e5969;
    line-height: 1.45;
    padding: 0.25rem 0.55rem 0.25rem 0.35rem;
    background: rgba(22, 93, 255, 0.06);
    border-radius: 9999px;
    max-width: 100%;
}

.aigeo-stream-status-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 9999px;
    background: #165DFF;
    flex-shrink: 0;
    animation: aigeo-pulse-dot 1.2s ease-in-out infinite;
}

.aigeo-stream-section {
    margin-bottom: 0.875rem;
}

.aigeo-stream-section-label {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #86909c;
}

.aigeo-stream-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.aigeo-stream-checklist li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: #86909c;
    line-height: 1.4;
    padding: 0.45rem 0.625rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.aigeo-stream-check-text {
    flex: 1;
    min-width: 0;
}

.aigeo-stream-check-icon {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 9999px;
    border: 1.5px solid #d9dce1;
    flex-shrink: 0;
    position: relative;
    background: #fff;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.aigeo-stream-checklist li.is-active {
    color: #165DFF;
    font-weight: 600;
    background: rgba(22, 93, 255, 0.06);
    border-color: rgba(22, 93, 255, 0.12);
}

.aigeo-stream-checklist li.is-active .aigeo-stream-check-icon {
    border-color: #165DFF;
    background: rgba(22, 93, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.08);
}

.aigeo-stream-checklist li.is-active .aigeo-stream-check-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 9999px;
    background: #165DFF;
    animation: aigeo-pulse-dot 1.2s ease-in-out infinite;
}

.aigeo-stream-checklist li.is-done {
    color: #4e5969;
}

.aigeo-stream-checklist li.is-done .aigeo-stream-check-icon {
    border-color: #36CFC9;
    background: #36CFC9;
}

.aigeo-stream-checklist li.is-done .aigeo-stream-check-icon::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 4px;
    height: 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.aigeo-stream-preview .aigeo-stream-skeleton {
    margin-bottom: 0;
}

.aigeo-stream-skeleton {
    display: grid;
    gap: 0.55rem;
    padding: 0.875rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(22, 93, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.aigeo-skel {
    border-radius: 0.375rem;
    background: linear-gradient(90deg, #eef2f8 0%, #f8fafc 45%, #eef2f8 90%);
    background-size: 200% 100%;
    animation: aigeo-skel-shimmer 1.4s ease-in-out infinite;
}

.aigeo-skel-title {
    height: 0.875rem;
    width: 42%;
}

.aigeo-skel-line {
    height: 0.625rem;
    width: 88%;
}

.aigeo-skel-line.is-short {
    width: 62%;
}

.aigeo-skel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.aigeo-skel-block {
    height: 2.85rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.35rem;
}

.aigeo-skel-block span {
    font-size: 0.625rem;
    color: rgba(78, 89, 105, 0.55);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.aigeo-stream-hint {
    margin: 0;
    font-size: 0.75rem;
    color: #4e5969;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    background: rgba(22, 93, 255, 0.04);
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 93, 255, 0.08);
}

.aigeo-stream-hint i {
    color: #165DFF;
    font-size: 0.8125rem;
}

@keyframes aigeo-skel-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@keyframes aigeo-pulse-dot {
    0%, 100% { opacity: 0.45; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1); }
}

.aigeo-stream-dots {
    display: flex;
    gap: 3px;
}

.aigeo-stream-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #165DFF;
    animation: aigeo-bounce 1.2s infinite ease-in-out;
}

.aigeo-stream-dots span:nth-child(2) { animation-delay: 0.15s; }
.aigeo-stream-dots span:nth-child(3) { animation-delay: 0.3s; }

.aigeo-stream-cursor {
    display: inline;
    color: #165DFF;
    animation: aigeo-blink 0.8s step-end infinite;
    font-weight: 300;
}

@keyframes aigeo-blink {
    50% { opacity: 0; }
}

.aigeo-md-h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
    padding-bottom: 0.35rem;
    color: #165DFF;
    border-bottom: 2px solid rgba(22, 93, 255, 0.15);
}

.aigeo-md-h2:first-child {
    margin-top: 0;
}

.aigeo-md-h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0.4rem;
    color: #1d2129;
}

.aigeo-md-h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0.75rem 0 0.3rem;
    color: #4e5969;
}

.aigeo-md-p {
    margin: 0.35rem 0;
    line-height: 1.75;
    color: #4e5969;
}

.aigeo-md-ul,
.aigeo-md-ol {
    margin: 0.5rem 0 0.75rem;
    padding-left: 1.35rem;
}

.aigeo-md-ul li,
.aigeo-md-ol li {
    margin: 0.35rem 0;
    line-height: 1.65;
}

.aigeo-md-blockquote {
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    background: #f7f8fa;
    border-left: 4px solid #36CFC9;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #4e5969;
    font-size: 0.9rem;
    line-height: 1.65;
}

.aigeo-md-hr {
    border: none;
    border-top: 1px dashed #e5e6eb;
    margin: 1.25rem 0;
}

.aigeo-md-table-wrap {
    overflow-x: auto;
    margin: 0.75rem 0 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e8eaed;
}

.aigeo-md-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.aigeo-md-table th,
.aigeo-md-table td {
    padding: 0.5rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid #f2f3f5;
    vertical-align: top;
}

.aigeo-md-table th {
    background: #f7f8fa;
    font-weight: 600;
    color: #1d2129;
    white-space: nowrap;
}

.aigeo-md-table tr:last-child td {
    border-bottom: none;
}

.aigeo-md-check {
    list-style: none;
    padding-left: 0;
}

.aigeo-md-check li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.4rem 0;
}

.aigeo-md-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 0.875rem;
    height: 0.875rem;
    border: 2px solid #c9cdd4;
    border-radius: 0.2rem;
}

.aigeo-md-check li.is-done::before {
    border-color: #165DFF;
    background: #165DFF;
}

.aigeo-diagnosis-result code {
    font-size: 0.85em;
    background: #f2f3f5;
    padding: 0.1em 0.35em;
    border-radius: 0.25rem;
}

.aigeo-diagnosis-result strong {
    color: #1d2129;
    font-weight: 600;
}

.aigeo-msg-streaming .aigeo-msg-bubble {
    border-color: transparent;
    box-shadow: none;
}

.aigeo-intro-list {
    margin: 0.5rem 0 0;
    padding-left: 1.15rem;
    font-size: 0.8125rem;
    color: #4e5969;
    line-height: 1.55;
}

.aigeo-intro-list li + li {
    margin-top: 0.25rem;
}

.aigeo-form-hint {
    font-size: 0.75rem;
    color: #86909c;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.45;
}

.aigeo-summary-strip {
    background: linear-gradient(135deg, #f0f5ff 0%, #f7f8fa 100%);
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #4e5969;
    line-height: 1.5;
}

.aigeo-summary-strip strong {
    color: #1d2129;
}

.aigeo-rec-section {
    margin-bottom: 1.25rem;
}

.aigeo-rec-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.aigeo-rec-heading h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1d2129;
    margin: 0;
}

.aigeo-rec-legend {
    font-size: 0.75rem;
    color: #86909c;
}

.aigeo-rec-legend .dot-related {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #00b42a;
    margin-right: 0.25rem;
    vertical-align: middle;
}

.aigeo-rec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aigeo-rec-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.65rem 0.75rem;
    background: #f7f8fa;
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    transition: border-color 0.2s, background 0.2s;
}

.aigeo-rec-item.is-related {
    background: #e8ffea;
    border-color: #7be188;
}

.aigeo-rec-rank {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #e5e6eb;
    color: #4e5969;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aigeo-rec-item.is-related .aigeo-rec-rank {
    background: #00b42a;
    color: #fff;
}

.aigeo-rec-body {
    flex: 1;
    min-width: 0;
}

.aigeo-rec-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1d2129;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.aigeo-rec-item.is-related .aigeo-rec-name {
    color: #009a29;
}

.aigeo-rec-badge {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    background: #00b42a;
    color: #fff;
}

.aigeo-rec-snippet {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: #4e5969;
    line-height: 1.45;
}

/* ========== GEO 品牌 AI 诊断报告 ========== */
.geo-brand-report {
    font-size: 0.875rem;
    color: #1d2129;
    line-height: 1.55;
}

.geo-report-header {
    text-align: center;
    padding: 1rem 0 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
    border-radius: 0.75rem;
}

.geo-report-title {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 0.35rem;
}

.geo-report-subtitle {
    color: #64748b;
    font-size: 0.9375rem;
    margin: 0;
}

.geo-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e6eb;
}

.geo-section:last-child {
    border-bottom: none;
}

.geo-section-title,
.geo-main-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.geo-section-title::before {
    content: '';
    width: 3px;
    height: 1rem;
    border-radius: 2px;
    background: linear-gradient(180deg, #4f46e5, #7c3aed);
}

.geo-title-positive em { color: #00b42a; font-style: normal; }
.geo-title-negative em { color: #f53f3f; font-style: normal; }

.geo-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.65rem;
}

.geo-overview-card {
    background: #f7f8fa;
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
}

.geo-overview-card span {
    display: block;
    font-size: 0.75rem;
    color: #86909c;
    margin-bottom: 0.25rem;
}

.geo-overview-card strong { font-size: 0.875rem; }
.geo-rating-good { color: #00b42a; }
.geo-rating-mid { color: #165DFF; }
.geo-rating-warn { color: #f59e0b; }
.geo-rating-bad { color: #f53f3f; }

.geo-score-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
}

.geo-score-ring-wrap {
    position: relative;
    width: 9rem;
    height: 9rem;
    flex-shrink: 0;
}

.geo-score-ring { width: 100%; height: 100%; }

.geo-score-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.geo-score-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.geo-score-max { font-size: 0.75rem; color: #86909c; }

.geo-score-meta h3 { font-size: 1rem; margin: 0 0 0.35rem; }
.geo-score-meta p { margin: 0.25rem 0; color: #4e5969; font-size: 0.8125rem; }
.geo-summary-line { color: #1d2129; }

.geo-plat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.geo-plat-card {
    text-align: center;
    padding: 0.55rem 0.35rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e6eb;
    background: #f7f8fa;
}

.geo-plat-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.15rem;
}

.geo-plat-logo {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.geo-plat-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5e6eb;
    color: #4e5969;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.geo-plat-name { font-size: 0.6875rem; font-weight: 600; margin: 0; line-height: 1.25; }
.geo-plat-rate { font-size: 1.125rem; font-weight: 800; margin: 0; }
.geo-plat-label { font-size: 0.625rem; color: #86909c; margin: 0.15rem 0 0; }
.geo-plat-stats { font-size: 0.5625rem; color: #86909c; margin: 0.2rem 0 0; line-height: 1.3; }
.geo-plat-zero .geo-plat-rate { color: #86909c !important; }

.geo-zero-banner {
    margin: 0.75rem 0 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    background: #f2f3f5;
    border: 1px solid #c9cdd4;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #4e5969;
}

.geo-plat-deepseek .geo-plat-rate { color: #4f46e5; }
.geo-plat-doubao .geo-plat-rate { color: #f53f3f; }
.geo-plat-yuanbao .geo-plat-rate { color: #1fc14b; }
.geo-plat-tongyi .geo-plat-rate { color: #f59e0b; }
.geo-plat-wenxin .geo-plat-rate { color: #10b981; }
.geo-plat-nami .geo-plat-rate { color: #fc5d31; }
.geo-plat-kimi .geo-plat-rate { color: #8b5cf6; }
.geo-plat-zhipu .geo-plat-rate { color: #1677ff; }

.geo-bar-list { margin: 0.5rem 0 1rem; }
.geo-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.geo-bar-name {
    width: 7rem;
    flex-shrink: 0;
    text-align: right;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.geo-bar-track {
    flex: 1;
    height: 1.25rem;
    background: #e5e6eb;
    border-radius: 0.25rem;
    overflow: hidden;
}

.geo-bar-fill { height: 100%; border-radius: 0.25rem; transition: width 0.4s; }
.geo-bar-fill.geo-bar-pos { background: linear-gradient(168deg, #1cac10, #baffa7); }
.geo-bar-fill.geo-bar-neg { background: linear-gradient(168deg, #b61717, #faafaf); }
.geo-bar-val { width: 2.5rem; font-size: 0.75rem; font-weight: 700; }

.geo-table-wrap { overflow-x: auto; margin: 0.75rem 0; }
.geo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.geo-table th,
.geo-table td {
    border: 1px solid #e5e6eb;
    padding: 0.45rem 0.5rem;
    text-align: center;
}

.geo-table th { background: #f2f3f5; font-weight: 600; }
.geo-table-queries td:first-child { text-align: left; }
.geo-table-source td:nth-child(3),
.geo-table-source td:nth-child(5) { text-align: left; }
.geo-mentioned-yes { color: #00b42a; font-weight: 600; }
.geo-row-related { background: rgba(0, 180, 42, 0.04); }

.geo-section-desc {
    font-size: 0.8125rem;
    color: #64748b;
    margin: -0.35rem 0 0.75rem;
    line-height: 1.5;
}

.geo-kw-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.geo-kw-label {
    font-size: 0.75rem;
    color: #86909c;
    flex-shrink: 0;
}

.geo-kw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.geo-kw-tag {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    border-radius: 999px;
    border: 1px solid rgba(79, 70, 229, 0.15);
}

.geo-assoc-card {
    border-radius: 0.5rem;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e5e6eb;
    background: #f7f8fa;
}

.geo-assoc-card.geo-assoc-strong {
    background: #e8ffea;
    border-color: #7be188;
}

.geo-assoc-card.geo-assoc-partial {
    background: #e8f3ff;
    border-color: #94bfff;
}

.geo-assoc-card.geo-assoc-weak {
    background: #fff7e8;
    border-color: #ffcf8b;
}

.geo-assoc-card.geo-assoc-none {
    background: #fff1f0;
    border-color: #ffccc7;
}

.geo-assoc-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.geo-assoc-level { font-size: 0.875rem; }
.geo-assoc-score { font-size: 0.75rem; color: #86909c; }
.geo-assoc-summary,
.geo-assoc-gap,
.geo-assoc-co {
    font-size: 0.8125rem;
    margin: 0.35rem 0 0;
    line-height: 1.5;
}

.geo-score-hint {
    font-size: 0.8125rem;
    color: #86909c;
    margin: 0.25rem 0 0.5rem;
}

.geo-sub-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0.75rem 0 0.35rem;
    color: #4e5969;
}

.geo-cell-theme { max-width: 12rem; }
.geo-cell-reason { max-width: 14rem; font-size: 0.75rem; color: #64748b; }

.geo-rec-list { list-style: none; margin: 0; padding: 0; }
.geo-rec-item {
    display: flex;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.4rem;
    background: #f7f8fa;
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
}

.geo-rec-item.is-related { background: #e8ffea; border-color: #7be188; }
.geo-rec-rank {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #e5e6eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.geo-rec-item.is-related .geo-rec-rank { background: #00b42a; color: #fff; }
.geo-rec-badge {
    font-size: 0.625rem;
    background: #00b42a;
    color: #fff;
    padding: 0.05rem 0.35rem;
    border-radius: 0.2rem;
    margin-left: 0.35rem;
}

.geo-legend { font-size: 0.75rem; color: #86909c; margin: -0.25rem 0 0.5rem; }
.geo-dot-related {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #00b42a;
    margin-right: 0.2rem;
}

.geo-model-block {
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.geo-model-block summary {
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    font-weight: 600;
    background: #f7f8fa;
}

.geo-model-inner { padding: 0.75rem; }
.geo-model-tag {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0.5rem 0 0.35rem;
}

.geo-model-tag.positive { color: #00b42a; }
.geo-model-tag.negative { color: #f53f3f; }

/* GEO 官网收录审计 */
.geo-website-audit {
    border-radius: 0.5rem;
    padding: 0.75rem 0.85rem;
    margin: 0.75rem 0;
    border: 1px solid #e5e6eb;
    background: #f7f8fa;
}

.geo-website-audit.geo-web-match-full { background: #e8ffea; border-color: #7be188; }
.geo-website-audit.geo-web-match-partial { background: #e8f3ff; border-color: #94bfff; }
.geo-website-audit.geo-web-match-none { background: #fff1f0; border-color: #ffccc7; }

.geo-website-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.geo-website-label { font-weight: 700; font-size: 0.875rem; }
.geo-website-score { font-size: 0.75rem; color: #4e5969; }

.geo-website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.geo-website-grid span { display: block; font-size: 0.6875rem; color: #86909c; }

.geo-website-evidence,
.geo-website-note,
.geo-website-queries {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.geo-website-queries code {
    font-size: 0.75rem;
    background: rgba(79, 70, 229, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.geo-web-match-full { color: #00b42a; }
.geo-web-match-partial { color: #165DFF; }
.geo-web-match-none { color: #f53f3f; }

.geo-score-breakdown {
    background: #f7f8fa;
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin: 0.5rem 0;
    font-size: 0.8125rem;
}

.geo-score-breakdown ul { margin: 0.35rem 0; padding-left: 1.1rem; }
.geo-score-formula { margin: 0.25rem 0 0; color: #86909c; font-size: 0.75rem; }

.geo-table-checks .geo-check-pass td:nth-child(2) { color: #00b42a; font-weight: 600; }
.geo-table-checks .geo-check-warn td:nth-child(2) { color: #f59e0b; font-weight: 600; }
.geo-table-checks .geo-check-fail td:nth-child(2) { color: #f53f3f; font-weight: 600; }

.geo-probe-banner {
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.geo-probe-ok { background: #e8ffea; border: 1px solid #7be188; }
.geo-probe-warn { background: #fff7e8; border: 1px solid #ffcf8b; }

.geo-plat-skipped .geo-plat-rate { font-size: 0.75rem; color: #86909c; }
.geo-model-skipped { border-style: dashed; opacity: 0.85; }
.geo-sub-title { font-size: 0.8125rem; margin: 0.75rem 0 0.35rem; }

.geo-suggest-green,
.geo-suggest-blue {
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.geo-suggest-green {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(13, 148, 136, 0.02));
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.geo-suggest-blue {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), #fff);
    border: 1px solid #dbeafe;
}

.geo-suggest-desc { font-size: 0.8125rem; color: #64748b; margin: 0.25rem 0 0.65rem; }

.geo-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.geo-tag-green {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #0d9488;
    background: rgba(255, 255, 255, 0.85);
}

.geo-source-row { margin-bottom: 0.65rem; }
.geo-source-meta { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8125rem; font-weight: 600; }
.geo-source-rank {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #ff6600;
    color: #fff;
    font-size: 0.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.geo-source-pct { float: right; font-size: 0.8125rem; color: #4f46e5; font-weight: 700; }
.geo-source-track {
    clear: both;
    height: 0.35rem;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.geo-source-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #22d3ee);
    border-radius: 999px;
}

.geo-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.geo-tier {
    padding: 0.65rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

.geo-tier-1 { background: rgba(79, 70, 229, 0.06); border: 1px solid rgba(79, 70, 229, 0.15); }
.geo-tier-2 { background: rgba(124, 58, 237, 0.06); border: 1px solid rgba(124, 58, 237, 0.15); }
.geo-tier-3 { background: #ecfeff; border: 1px solid #a5f3fc; }
.geo-tier-level { font-weight: 700; margin: 0 0 0.25rem; }
.geo-tier-plats { color: #64748b; margin: 0; }

.geo-md-appendix {
    margin-top: 1rem;
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

/* 文字版附录：与上方 geo-section 同宽同字号 */
.geo-md-appendix-section {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 1rem;
    border-bottom: none;
}

.geo-md-appendix-section .geo-section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.geo-md-appendix-body,
.geo-md-appendix-section .aigeo-pdf-md-body {
    width: 100%;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #1d2129;
}

.geo-md-appendix-section .aigeo-md-h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0 0.65rem;
    padding: 0;
    color: #1d2129;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.geo-md-appendix-section .aigeo-md-h2::before {
    content: '';
    width: 3px;
    height: 1rem;
    border-radius: 2px;
    background: linear-gradient(180deg, #4f46e5, #7c3aed);
    flex-shrink: 0;
}

.geo-md-appendix-section .aigeo-md-h2:first-child {
    margin-top: 0;
}

.geo-md-appendix-section .aigeo-md-h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0.85rem 0 0.45rem;
    color: #1d2129;
}

.geo-md-appendix-section .aigeo-md-p,
.geo-md-appendix-section .aigeo-md-ul,
.geo-md-appendix-section .aigeo-md-ol {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #4e5969;
}

.geo-md-appendix-section .aigeo-md-ul,
.geo-md-appendix-section .aigeo-md-ol {
    padding-left: 1.25rem;
}

.geo-md-appendix-section .aigeo-report-hero,
.geo-md-appendix-section .aigeo-report-cta-title + .aigeo-md-p {
    max-width: none;
}

.geo-md-appendix-section .aigeo-report-cta-title {
    font-size: 1rem;
    margin-top: 1rem;
}

.geo-md-appendix summary { cursor: pointer; font-weight: 600; color: #4f46e5; }
.geo-empty { color: #86909c; font-size: 0.8125rem; margin: 0.5rem 0; }
.geo-disclaimer { text-align: right; font-size: 0.6875rem; color: #86909c; margin-top: 1rem; }

.aigeo-report-document .geo-brand-report {
    padding: 0.25rem 0;
}

@media (max-width: 640px) {
    .aigeo-modal-panel.is-expanded,
    .aigeo-modal-panel.is-report-mode {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    .aigeo-modal {
        padding: 0;
    }
    .aigeo-modal-messages {
        max-height: 280px;
    }
    .aigeo-modal-panel.is-report-mode .aigeo-modal-messages {
        max-height: none;
    }
    .aigeo-msg-bubble {
        max-width: 92%;
    }
    .aigeo-msg-streaming .aigeo-msg-bubble {
        max-width: 100%;
    }
    .aigeo-skel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .aigeo-stream-panel {
        padding: 0.875rem;
    }
    .aigeo-report-document {
        padding: 1rem;
        max-height: min(calc(100vh - 220px), 520px);
    }
    .aigeo-report-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 联系我们页 */
.contact-page {
    padding-top: 4rem;
    min-height: calc(100vh - 4rem);
    background: #fafbfc;
}

.contact-hero {
    padding: 3rem 0 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.contact-hero-tag {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #165DFF;
    background: rgba(22, 93, 255, 0.08);
    border-radius: 9999px;
}

.contact-hero-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1d2129;
    letter-spacing: -0.02em;
}

.contact-hero-desc {
    margin: 0 auto;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #86909c;
}

.contact-body {
    padding-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

a.contact-card:hover {
    border-color: rgba(22, 93, 255, 0.35);
    box-shadow: 0 12px 32px rgba(22, 93, 255, 0.1);
    transform: translateY(-2px);
}

.contact-card-featured {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.06) 0%, rgba(54, 207, 201, 0.08) 100%);
    border-color: rgba(22, 93, 255, 0.2);
}

.contact-card-featured .contact-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
    background: #165DFF;
    color: #fff;
    box-shadow: 0 8px 20px rgba(22, 93, 255, 0.25);
}

.contact-card-featured .contact-card-value {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.02em;
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: rgba(22, 93, 255, 0.1);
    color: #165DFF;
    font-size: 1.1rem;
}

.contact-card-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #86909c;
    margin-bottom: 0.35rem;
}

.contact-card-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1d2129;
    line-height: 1.4;
}

.contact-card-value-sm {
    font-size: 1rem;
    font-weight: 600;
}

.contact-card-hint {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #c9cdd4;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 10rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-btn-primary {
    background: #165DFF;
    color: #fff;
}

.contact-btn-primary:hover {
    background: rgba(22, 93, 255, 0.9);
}

.contact-btn-outline {
    background: #fff;
    color: #165DFF;
    border: 1px solid rgba(22, 93, 255, 0.35);
}

.contact-btn-outline:hover {
    background: rgba(22, 93, 255, 0.06);
    border-color: #165DFF;
}

/* AIGEO 主题专题导航 */
.topic-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.topic-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topic-pill:hover {
    color: #165DFF;
    border-color: rgba(22, 93, 255, 0.35);
    background: rgba(22, 93, 255, 0.06);
}

.topic-pill.is-active {
    color: #fff;
    background: #165DFF;
    border-color: #165DFF;
}

.topic-list-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.topic-list-item:last-child {
    border-bottom: none;
}

.topic-card:hover {
    border-color: rgba(22, 93, 255, 0.25);
}

/* GEO 报告 v2：企业信息首项 */
.geo-company-section {
    background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.125rem !important;
    margin-bottom: 1.25rem;
}

.geo-company-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.08), rgba(54, 207, 201, 0.06));
    border: 1px solid rgba(22, 93, 255, 0.12);
    border-radius: 0.625rem;
}

.geo-company-hero-label {
    margin: 0 0 0.2rem;
    font-size: 0.6875rem;
    color: #86909c;
    letter-spacing: 0.04em;
}

.geo-company-hero-name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: #1d2129;
    line-height: 1.35;
}

.geo-company-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.45rem;
}

.geo-company-tag {
    font-size: 0.6875rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e6eb;
    color: #4e5969;
}

.geo-company-hero-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.geo-company-rating {
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e6eb;
}

.geo-company-web-score {
    font-size: 0.6875rem;
    color: #86909c;
}

.geo-company-item-wide {
    grid-column: 1 / -1;
}

.geo-company-src {
    font-style: normal;
    font-size: 0.6875rem;
    color: #86909c;
    margin-left: 0.25rem;
}

.geo-company-match {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
}

.geo-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.geo-company-item {
    background: #fff;
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
}

.geo-company-item span {
    display: block;
    font-size: 0.75rem;
    color: #86909c;
    margin-bottom: 0.25rem;
}

.geo-company-item strong {
    font-size: 0.875rem;
    word-break: break-all;
}

.geo-overview-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f7f8fa;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
}

.geo-explainer {
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.55;
}

.geo-explainer p { margin: 0; }

.geo-explainer-positive {
    background: #e8ffea;
    border: 1px solid #7be188;
    color: #1d2129;
}

.geo-explainer-negative {
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #1d2129;
}

.geo-explainer-help {
    background: #e8f3ff;
    border: 1px solid #94bfff;
    color: #1d2129;
    margin-bottom: 1rem;
}

.geo-model-block {
    border: 1px solid #e5e6eb;
    border-radius: 0.5rem;
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.geo-model-block > summary {
    list-style: none;
    cursor: pointer;
}

.geo-model-block > summary::-webkit-details-marker {
    display: none;
}

.geo-model-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.75rem;
    background: #f7f8fa;
    border-bottom: 1px solid transparent;
    font-size: 0.875rem;
}

.geo-model-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.geo-model-brand .geo-plat-logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex-shrink: 0;
}

.geo-model-brand .geo-plat-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d2129;
}

.geo-model-block[open] .geo-model-head {
    border-bottom-color: #e5e6eb;
}

.geo-model-head::before {
    content: '▸';
    margin-right: 0.4rem;
    color: #86909c;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.geo-model-block[open] .geo-model-head::before {
    transform: rotate(90deg);
}

.geo-model-badge {
    font-size: 0.6875rem;
    color: #86909c;
    background: #fff;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1px solid #e5e6eb;
}

.geo-model-has-data .geo-model-badge {
    color: #00b42a;
    border-color: #7be188;
    background: #e8ffea;
}

.geo-model-inner {
    padding: 0.65rem 0.75rem 0.75rem;
}

.geo-model-tag {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.35rem 0 0.5rem;
}

.geo-model-tag.positive { color: #00b42a; }
.geo-model-tag.negative { color: #f53f3f; }

/* GEO 官网收录审计 */
.geo-website-audit {
    border-radius: 0.5rem;
    padding: 0.75rem 0.85rem;
    margin: 0.75rem 0;
    border: 1px solid #e5e6eb;
    background: #f7f8fa;
}

.geo-website-audit.geo-web-match-full { background: #e8ffea; border-color: #7be188; }
.geo-website-audit.geo-web-match-partial { background: #e8f3ff; border-color: #94bfff; }
.geo-website-audit.geo-web-match-none { background: #fff1f0; border-color: #ffccc7; }

.geo-website-head {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.geo-website-label { font-weight: 700; font-size: 0.875rem; }
.geo-website-score { font-size: 0.75rem; color: #4e5969; }

.geo-website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.geo-website-grid span { display: block; font-size: 0.6875rem; color: #86909c; }

.geo-website-evidence,
.geo-website-note,
.geo-website-queries {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.geo-website-queries code {
    font-size: 0.75rem;
    background: rgba(79, 70, 229, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.geo-web-match-full { color: #00b42a; }
.geo-web-match-partial { color: #165DFF; }
.geo-web-match-none { color: #f53f3f; }

.geo-score-breakdown {
    background: #f7f8fa;
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin: 0.5rem 0;
    font-size: 0.8125rem;
}

.geo-score-breakdown ul { margin: 0.35rem 0; padding-left: 1.1rem; }
.geo-score-formula { margin: 0.25rem 0 0; color: #86909c; font-size: 0.75rem; }

.geo-table-checks .geo-check-pass td:nth-child(2) { color: #00b42a; font-weight: 600; }
.geo-table-checks .geo-check-warn td:nth-child(2) { color: #f59e0b; font-weight: 600; }
.geo-table-checks .geo-check-fail td:nth-child(2) { color: #f53f3f; font-weight: 600; }

.geo-probe-banner {
    border-radius: 0.5rem;
    padding: 0.55rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.geo-probe-ok { background: #e8ffea; border: 1px solid #7be188; }
.geo-probe-warn { background: #fff7e8; border: 1px solid #ffcf8b; }

.geo-plat-skipped .geo-plat-rate { font-size: 0.75rem; color: #86909c; }
.geo-model-skipped { border-style: dashed; opacity: 0.85; }

/* GEO report v2 patch 20250616 */
.geo-table-queries { table-layout: fixed; width: 100%; font-size: 0.8125rem; }
.geo-table-queries th:nth-child(1) { width: 28%; }
.geo-table-queries th:nth-child(2) { width: 8%; }
.geo-table-queries th:nth-child(3) { width: 24%; }
.geo-table-queries th:nth-child(4) { width: 40%; }
.geo-cell-q, .geo-cell-brands, .geo-cell-excerpt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 0; }
.geo-cell-mention { text-align: center; font-weight: 600; }
.geo-query-details { margin-bottom: 0.65rem; }
.geo-query-summary { cursor: pointer; margin: 0.35rem 0 0.5rem; }
.geo-query-count { font-size: 0.6875rem; color: #86909c; font-weight: 400; margin-left: 0.35rem; }
.geo-table-citations .geo-cite-rank { display: inline-flex; align-items: center; justify-content: center; min-width: 1.35rem; height: 1.35rem; border-radius: 999px; background: rgba(22, 93, 255, 0.1); color: #165DFF; font-size: 0.75rem; font-weight: 700; }
.geo-bar-list .geo-bar-name { flex: 0 0 5.5rem; max-width: 5.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.75rem; }
.geo-md-appendix summary { cursor: pointer; font-weight: 600; color: #4f46e5; font-size: 0.9375rem; }
.geo-md-appendix-section .aigeo-md-h2 { font-size: 1rem; }
.geo-md-appendix-section .aigeo-md-p { font-size: 0.875rem; line-height: 1.55; }

.aigeo-inferred-panel {
    margin: 0.65rem 0 0.75rem;
    padding: 0.65rem 0.75rem;
    background: #f7faff;
    border: 1px solid rgba(22, 93, 255, 0.12);
    border-radius: 0.5rem;
}
.aigeo-inferred-title { margin: 0 0 0.45rem; font-size: 0.6875rem; color: #86909c; }
.aigeo-inferred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 0.75rem; font-size: 0.8125rem; }
.aigeo-inferred-grid span { display: block; font-size: 0.6875rem; color: #86909c; margin-bottom: 0.15rem; }
.aigeo-inferred-grid strong { color: #1d2129; font-weight: 600; }
.aigeo-inferred-wide { grid-column: 1 / -1; }
.aigeo-stream-cursor { display: none !important; }
