/* ============================================================
   AeroCore 首页设计样式（由 index.html 设计稿整合而来）
   说明：
   - 首页内容样式统一作用在 body.is-home 范围内，避免影响主题其它页面
   - 页脚（site-footer）样式已迁移至 style.css（全站共用）
   ============================================================ */

/* ===== 设计变量（命名与主题变量不冲突，全局生效） ===== */
:root {
    --page-bg: #f7faff;
    --surface: rgba(255,255,255,0.74);
    --surface-strong: rgba(255,255,255,0.92);
    --line: rgba(148,163,184,0.2);
    --line-strong: rgba(96,165,250,0.3);
    --text: #0f172a;
    --muted: #475569;
    --soft: #64748b;
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --accent: #7c3aed;
    --green: #10b981;
    --orange: #f59e0b;
    --footer-bg: #09111f;
    --shadow-lg: 0 24px 64px rgba(15,23,42,0.1);
    --shadow-md: 0 16px 44px rgba(15,23,42,0.08);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
}

/* ===== 首页基础 ===== */
body.is-home {
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.6;
}

body.is-home h1,
body.is-home h2,
body.is-home h3 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* ===== BUTTONS ===== */
body.is-home .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.25s ease;
}
body.is-home .button--primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}
body.is-home .button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.36);
}
body.is-home .button--ghost {
    border: 1.5px solid rgba(148, 163, 184, 0.28);
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}
body.is-home .button--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}
body.is-home .button--lg {
    min-height: 52px;
    padding: 0 32px;
    font-size: 15px;
}

/* ===== SECTION COMMONS ===== */
body.is-home .section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
body.is-home .site-main {
    display: grid;
    gap: 96px;
    padding: 28px 0 24px;
}
body.is-home .reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
body.is-home .reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO ===== */
body.is-home .hero {
    position: relative;
    min-height: calc(100vh - 120px);
    padding: 72px 0 24px;
    overflow: hidden;
}
body.is-home .hero__bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center top, rgba(0, 0, 0, 0.95), transparent 80%);
}
body.is-home .hero__glow {
    position: absolute;
    top: 80px;
    left: 50%;
    width: 760px;
    height: 760px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.22) 0%, rgba(129, 140, 248, 0.16) 34%, rgba(16, 185, 129, 0.1) 52%, transparent 72%);
    filter: blur(72px);
    animation: breathe 10s ease-in-out infinite alternate;
}
@keyframes breathe {
    to { transform: translateX(-50%) scale(1.08); }
}
body.is-home .hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    justify-items: center;
    text-align: center;
}
body.is-home .hero__content h1 {
    font-size: clamp(40px, 5.5vw, 62px);
    font-weight: 800;
    letter-spacing: -0.045em;
    max-width: 900px;
}
body.is-home .hero__content h1 span {
    color: var(--primary);
}
body.is-home .hero__content .hero__sub {
    max-width: 680px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
}
body.is-home .hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
body.is-home .hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1040px;
}
body.is-home .hero__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(18px);
    transition: all 0.25s;
}
body.is-home .hero__tag.is-active {
    color: var(--primary-strong);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.1));
    border-color: rgba(96, 165, 250, 0.22);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}
body.is-home .hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: min(900px, 100%);
    margin-top: 4px;
}
body.is-home .hero__metric {
    display: grid;
    gap: 6px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
    text-align: center;
}
body.is-home .hero__metric strong {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
body.is-home .hero__metric span {
    font-size: 13px;
    color: var(--soft);
    font-weight: 600;
}
body.is-home .hero__demo {
    width: min(1100px, calc(100% - 24px));
    margin: 0 auto;
    padding: 16px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.12);
    backdrop-filter: blur(20px);
    overflow: hidden;
}
body.is-home .hero__demo-inner {
    display: grid;
    gap: 16px;
    padding: 12px;
    border-radius: 22px;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.16), transparent 26%), radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.12), transparent 32%), linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.92));
}
body.is-home .hero__demo-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 0;
}
body.is-home .hero__demo-header h2 {
    font-size: 22px;
}
body.is-home .hero__demo-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
body.is-home .hero__demo-platforms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
body.is-home .hero__demo-platforms span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}
body.is-home .hero__demo-body {
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    gap: 16px;
}
body.is-home .hero__demo-qa {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}
body.is-home .hero__demo-qa-title {
    grid-column: 1 / -1;
    color: var(--soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 2px 4px 6px;
}
body.is-home .hero__demo-qa-item {
    display: grid;
    gap: 5px;
    min-height: 90px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: all 0.3s;
    cursor: pointer;
}
body.is-home .hero__demo-qa-item:hover,
body.is-home .hero__demo-qa-item.is-active {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.08), inset 0 0 0 1px rgba(96, 165, 250, 0.16);
}
body.is-home .hero__demo-qa-scene {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
body.is-home .hero__demo-qa-item h3 {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.is-home .hero__demo-workspace {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.96), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
    overflow: hidden;
}
body.is-home .hero__demo-searchbar {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
}
body.is-home .hero__demo-search-label {
    color: var(--primary-strong);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
body.is-home .hero__demo-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
}
body.is-home .hero__demo-search-icon {
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
body.is-home .hero__demo-search-icon::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: -3px;
    width: 5px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: rotate(45deg);
}
body.is-home .hero__demo-input {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    min-width: 1ch;
}
body.is-home .hero__demo-hint {
    color: var(--soft);
    font-size: 12px;
    line-height: 1.6;
}
body.is-home .hero__demo-answer {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}
body.is-home .hero__demo-question-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-strong);
    font-size: 11px;
    font-weight: 700;
}
body.is-home .hero__demo-answer-text {
    color: #334155;
    font-size: 14px;
    line-height: 1.8;
}
body.is-home .hero__demo-source {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(148, 163, 184, 0.12);
}
body.is-home .hero__demo-source strong {
    font-size: 11px;
    color: var(--primary-strong);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
body.is-home .hero__demo-source span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}
body.is-home .hero__demo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
body.is-home .hero__demo-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #334155;
    font-size: 11px;
    font-weight: 600;
}

/* ===== SERVICES ===== */
body.is-home .services {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .services__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .services__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .services__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
body.is-home .service-card {
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
body.is-home .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(37, 99, 235, 0.1);
}
body.is-home .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 4px 4px;
}
body.is-home .service-card--oem::before {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
body.is-home .service-card--agent::before {
    background: linear-gradient(90deg, #10b981, #06b6d4);
}
body.is-home .service-card--enterprise::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}
body.is-home .service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
body.is-home .service-card--oem .service-card__icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}
body.is-home .service-card--agent .service-card__icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
body.is-home .service-card--enterprise .service-card__icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
body.is-home .service-card h3 {
    font-size: 22px;
}
body.is-home .service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}
body.is-home .service-card__list {
    display: grid;
    gap: 10px;
}
body.is-home .service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
}
body.is-home .service-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
body.is-home .service-card--oem .service-card__list li::before {
    background: var(--primary);
}
body.is-home .service-card--agent .service-card__list li::before {
    background: var(--green);
}
body.is-home .service-card--enterprise .service-card__list li::before {
    background: var(--orange);
}
body.is-home .service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    transition: gap 0.25s;
}
body.is-home .service-card__cta:hover {
    gap: 12px;
}

/* ===== PLATFORMS ===== */
body.is-home .platforms {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .platforms__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .platforms__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .platforms__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .platforms__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
body.is-home .platform-card {
    display: grid;
    gap: 10px;
    padding: 28px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    text-align: center;
    transition: all 0.3s;
    justify-items: center;
}
body.is-home .platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.1);
}
body.is-home .platform-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}
body.is-home .platform-card--deepseek .platform-card__icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}
body.is-home .platform-card--doubao .platform-card__icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
body.is-home .platform-card--wenxin .platform-card__icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
body.is-home .platform-card--kimi .platform-card__icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}
body.is-home .platform-card--qianwen .platform-card__icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
body.is-home .platform-card--yuanbao .platform-card__icon {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}
body.is-home .platform-card h3 {
    font-size: 16px;
}
body.is-home .platform-card span {
    font-size: 12px;
    color: var(--soft);
}

/* ===== CAPABILITIES ===== */
body.is-home .capabilities {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .capabilities__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .capabilities__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .capabilities__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .capabilities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
body.is-home .cap-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s;
}
body.is-home .cap-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(37, 99, 235, 0.08);
}
body.is-home .cap-card__num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
body.is-home .cap-card h3 {
    font-size: 20px;
}
body.is-home .cap-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}
body.is-home .cap-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
body.is-home .cap-card__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}
body.is-home .cap-card__highlight {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.04);
    border-left: 3px solid var(--primary);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== DASHBOARD PREVIEW ===== */
body.is-home .dashboard {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .dashboard__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .dashboard__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .dashboard__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .dashboard__preview {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
body.is-home .dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
body.is-home .dashboard__metric {
    display: grid;
    gap: 4px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}
body.is-home .dashboard__metric strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}
body.is-home .dashboard__metric span {
    font-size: 12px;
    color: var(--soft);
}
body.is-home .dashboard__engines {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 8px;
}
body.is-home .dashboard__engine {
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}
body.is-home .dashboard__engine strong {
    font-size: 14px;
    color: var(--text);
}
body.is-home .dashboard__engine span {
    font-size: 11px;
    color: var(--soft);
}
body.is-home .dashboard__engine .bar {
    height: 4px;
    border-radius: 2px;
    margin-top: 6px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
body.is-home .dashboard__insight {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.04);
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== TOOLS ===== */
body.is-home .tools {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .tools__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .tools__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .tools__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .tools__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
body.is-home .tool-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    transition: all 0.3s;
    text-align: center;
    justify-items: center;
}
body.is-home .tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.1);
}
body.is-home .tool-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
body.is-home .tool-card h4 {
    font-size: 15px;
    font-weight: 700;
}
body.is-home .tool-card p {
    font-size: 13px;
    color: var(--soft);
    line-height: 1.6;
}

/* ===== PROCESS ===== */
body.is-home .process {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .process__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 48px;
}
body.is-home .process__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .process__header p {
    max-width: 600px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
body.is-home .process__steps::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), rgba(124, 58, 237, 0.3), transparent);
    z-index: 0;
}
body.is-home .process-step {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
body.is-home .process-step__num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}
body.is-home .process-step h4 {
    font-size: 18px;
}
body.is-home .process-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
}

/* ===== PERSONAS ===== */
body.is-home .personas {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .personas__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .personas__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .personas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
body.is-home .persona-card {
    display: grid;
    gap: 20px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}
body.is-home .persona-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
}
body.is-home .persona-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
body.is-home .persona-card--provider .persona-card__icon {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}
body.is-home .persona-card--brand .persona-card__icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
body.is-home .persona-card h3 {
    font-size: 20px;
}
body.is-home .persona-card__scene {
    font-size: 13px;
    color: var(--soft);
    margin-bottom: 8px;
}
body.is-home .persona-card__benefits {
    display: grid;
    gap: 10px;
}
body.is-home .persona-card__benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.8);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
body.is-home .persona-card__benefit::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== MEDIA ===== */
body.is-home .media {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .media__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .media__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .media__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .media__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
body.is-home .media-card {
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
    text-align: center;
    transition: all 0.3s;
    justify-items: center;
}
body.is-home .media-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
body.is-home .media-card__icon {
    font-size: 28px;
}
body.is-home .media-card h4 {
    font-size: 15px;
}
body.is-home .media-card p {
    font-size: 12px;
    color: var(--soft);
}
body.is-home .media__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0 0 28px;
}
body.is-home .media-stat {
    display: grid;
    gap: 4px;
    padding: 22px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.12);
    text-align: center;
    justify-items: center;
}
body.is-home .media-stat strong {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
}
body.is-home .media-stat span {
    font-size: 13px;
    color: var(--soft);
}
body.is-home .media__cta {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-top: 36px;
}
body.is-home .media__cta p {
    max-width: 640px;
    font-size: 14px;
    color: var(--soft);
}

/* ===== AGENT ===== */
body.is-home .agent {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .agent__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .agent__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .agent__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .agent__preview {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 20px;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}
body.is-home .agent__analysis {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
body.is-home .agent__analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}
body.is-home .agent__analysis-steps {
    display: grid;
    gap: 8px;
}
body.is-home .agent__analysis-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
    font-size: 13px;
    color: var(--muted);
}
body.is-home .agent__analysis-step::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}
body.is-home .agent__output {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.12);
}
body.is-home .agent__output-steps {
    display: grid;
    gap: 8px;
}
body.is-home .agent__output-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
    font-size: 13px;
    color: var(--muted);
}
body.is-home .agent__output-step .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    animation: pulse 1.5s ease-out infinite;
    flex-shrink: 0;
}
body.is-home .agent__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
body.is-home .agent__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

/* ===== CTA ===== */
body.is-home .cta {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
    padding: 48px;
    border-radius: 36px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
body.is-home .cta__copy {
    display: grid;
    gap: 14px;
}
body.is-home .cta__copy h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: #fff;
}
body.is-home .cta__copy p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 560px;
}
body.is-home .cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
body.is-home .cta__points span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
}
body.is-home .cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}
body.is-home .button--ghost-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}
body.is-home .button--ghost-light:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== ARTICLES ===== */
body.is-home .articles {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .articles__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 44px;
}
body.is-home .articles__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .articles__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
body.is-home .post-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
    transition: all 0.35s;
}
body.is-home .post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.1);
}
body.is-home .post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
body.is-home .post-cat {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
body.is-home .post-cat:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}
body.is-home .post-date {
    font-size: 12px;
    color: var(--soft);
}
body.is-home .post-card h3 {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
}
body.is-home .post-card h3 a:hover {
    color: var(--primary);
}
body.is-home .post-card p {
    font-size: 13.5px;
    color: var(--muted);
    flex: 1;
    line-height: 1.6;
}
body.is-home .post-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.is-home .post-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.25s;
}
body.is-home .post-link:hover {
    gap: 8px;
}
body.is-home .articles__more {
    display: grid;
    justify-items: center;
    margin-top: 40px;
}

/* ===== FAQ ===== */
body.is-home .faq {
    width: min(820px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .faq__header {
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    margin-bottom: 46px;
}
body.is-home .faq__header h2 {
    font-size: clamp(34px, 4vw, 44px);
}
body.is-home .faq__header p {
    max-width: 700px;
    font-size: 15px;
    color: var(--soft);
}
body.is-home .faq-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s;
}
body.is-home .faq-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
}
body.is-home .faq-item.is-open {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}
body.is-home .faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}
body.is-home .faq-q .fq-icon {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.8);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}
body.is-home .faq-item.is-open .fq-icon {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    transform: rotate(45deg);
}
body.is-home .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body.is-home .faq-a p {
    padding: 0 26px 22px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
body.is-home .contact-form {
    width: min(1240px, calc(100% - 56px));
    margin: 0 auto;
}
body.is-home .contact-form__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: start;
}
body.is-home .contact-info h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.25;
}
body.is-home .contact-info p.contact-sub {
    font-size: 15px;
    color: var(--soft);
    margin-bottom: 30px;
    max-width: 560px;
    line-height: 1.7;
}
body.is-home .contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
body.is-home .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
body.is-home .contact-item .ci-ic {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
body.is-home .contact-item .ci-label {
    font-size: 13px;
    color: var(--soft);
    margin-bottom: 3px;
}
body.is-home .contact-item .ci-value {
    font-size: 15.5px;
    font-weight: 700;
}
body.is-home .wx-card {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.04));
    border: 1px dashed rgba(37, 99, 235, 0.3);
}
body.is-home .wx-qr {
    flex: none;
    width: 100px;
    height: 100px;
    padding: 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.2);
}
body.is-home .wx-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
body.is-home .wx-info strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
body.is-home .wx-tag {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 2px 9px;
    border-radius: 999px;
    letter-spacing: 1px;
}
body.is-home .wx-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}
body.is-home .form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 36px 34px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}
body.is-home .form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}
body.is-home .form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 800;
}
body.is-home .form-card .fc-sub {
    font-size: 14px;
    color: var(--soft);
    margin-bottom: 28px;
}
body.is-home .form-group {
    margin-bottom: 18px;
}
body.is-home .form-group label {
    display: block;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 500;
}
body.is-home .form-group label .req {
    color: #f43f5e;
}
body.is-home .form-group input,
body.is-home .form-group select,
body.is-home .form-group textarea {
    width: 100%;
    background: rgba(248, 250, 252, 0.8);
    border: 1.5px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-size: 14.5px;
    font-family: inherit;
    transition: all 0.2s;
    outline: none;
}
body.is-home .form-group input:focus,
body.is-home .form-group select:focus,
body.is-home .form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
body.is-home .form-group input::placeholder,
body.is-home .form-group textarea::placeholder {
    color: var(--soft);
}
body.is-home .form-group textarea {
    min-height: 100px;
    resize: vertical;
}
body.is-home .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
body.is-home .form-card .button {
    width: 100%;
    font-size: 16px;
    padding: 15px;
    margin-top: 4px;
}
body.is-home .form-note {
    font-size: 12.5px;
    color: var(--soft);
    text-align: center;
    margin-top: 14px;
}
body.is-home .form-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}
body.is-home .form-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--muted);
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    padding: 6px 13px;
}
body.is-home .form-trust svg {
    color: var(--green);
    flex: none;
}
body.is-home .form-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed rgba(148, 163, 184, 0.2);
}
body.is-home .form-cover span {
    font-size: 12px;
    color: var(--muted);
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 4px 10px;
}
body.is-home .form-cover b {
    font-size: 12px;
    color: var(--primary);
    margin-left: auto;
    white-space: nowrap;
}
/* 服务端提交后提示（成功/错误） */
body.is-home .form-card .form-msg {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
body.is-home .form-card .form-msg--success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #047857;
}
body.is-home .form-card .form-msg--error {
    background: rgba(244, 63, 94, 0.06);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #e11d48;
}

/* ===== ANIMATIONS ===== */
@keyframes jumpText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    body.is-home .site-main {
        gap: 56px;
    }
    body.is-home .services__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .platforms__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    body.is-home .capabilities__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .tools__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .personas__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .media__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .media__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .hero__metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    body.is-home .hero__demo-body {
        grid-template-columns: 1fr;
    }
    body.is-home .hero__demo-qa {
        grid-template-columns: 1fr;
    }
    body.is-home .dashboard__engines {
        grid-template-columns: repeat(3, 1fr);
    }
    body.is-home .agent__preview {
        grid-template-columns: 1fr;
    }
    body.is-home .process__steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    body.is-home .process__steps::before {
        display: none;
    }
    body.is-home .cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
    }
    body.is-home .cta__actions {
        align-items: center;
    }
    body.is-home .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .contact-form__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .hero {
        min-height: auto;
        padding: 48px 0 16px;
    }
    body.is-home .hero__content h1 {
        font-size: clamp(32px, 5vw, 44px);
    }
    body.is-home .hero__metric strong {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    body.is-home .site-main {
        gap: 40px;
    }
    body.is-home .hero {
        padding: 36px 0 12px;
    }
    body.is-home .hero__content h1 {
        font-size: 28px;
    }
    body.is-home .hero__content .hero__sub {
        font-size: 14px;
    }
    body.is-home .hero__metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    body.is-home .hero__metric {
        padding: 14px 8px;
        border-radius: 16px;
    }
    body.is-home .hero__metric strong {
        font-size: 24px;
    }
    body.is-home .hero__metric span {
        font-size: 11px;
    }
    body.is-home .hero__demo {
        width: calc(100% - 12px);
        padding: 10px;
        border-radius: 24px;
    }
    body.is-home .hero__demo-qa {
        padding: 10px;
        gap: 6px;
    }
    body.is-home .hero__demo-qa-item {
        min-height: 70px;
        padding: 10px;
    }
    body.is-home .hero__demo-qa-item h3 {
        font-size: 12px;
    }
    body.is-home .hero__demo-workspace {
        padding: 12px;
    }
    body.is-home .hero__demo-answer {
        padding: 12px;
    }
    body.is-home .hero__demo-answer-text {
        font-size: 13px;
    }
    body.is-home .hero__demo-platforms {
        gap: 4px;
    }
    body.is-home .hero__demo-platforms span {
        font-size: 10px;
        padding: 0 8px;
        min-height: 26px;
    }
    body.is-home .services,
    body.is-home .platforms,
    body.is-home .capabilities,
    body.is-home .dashboard,
    body.is-home .tools,
    body.is-home .process,
    body.is-home .personas,
    body.is-home .media,
    body.is-home .agent,
    body.is-home .cta,
    body.is-home .articles,
    body.is-home .faq,
    body.is-home .contact-form {
        width: calc(100% - 24px);
    }
    body.is-home .services__header h2,
    body.is-home .platforms__header h2,
    body.is-home .capabilities__header h2,
    body.is-home .dashboard__header h2,
    body.is-home .tools__header h2,
    body.is-home .process__header h2,
    body.is-home .personas__header h2,
    body.is-home .media__header h2,
    body.is-home .agent__header h2 {
        font-size: 26px;
    }
    body.is-home .services__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .platforms__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    body.is-home .platform-card {
        padding: 18px 10px;
        border-radius: 18px;
    }
    body.is-home .platform-card__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }
    body.is-home .platform-card h3 {
        font-size: 14px;
    }
    body.is-home .tools__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    body.is-home .tool-card {
        padding: 18px 12px;
        border-radius: 18px;
    }
    body.is-home .media__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    body.is-home .media__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    body.is-home .media-stat {
        padding: 16px 8px;
    }
    body.is-home .media-stat strong {
        font-size: 22px;
    }
    body.is-home .media-stat span {
        font-size: 12px;
    }
    body.is-home .dashboard__metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    body.is-home .dashboard__metric {
        padding: 14px 8px;
        border-radius: 14px;
    }
    body.is-home .dashboard__metric strong {
        font-size: 24px;
    }
    body.is-home .dashboard__engines {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    body.is-home .dashboard__engine {
        padding: 10px 6px;
        border-radius: 12px;
    }
    body.is-home .dashboard__engine strong {
        font-size: 12px;
    }
    body.is-home .process__steps {
        gap: 24px;
    }
    body.is-home .process-step {
        padding: 0 12px;
    }
    body.is-home .cta {
        padding: 28px 20px;
        border-radius: 28px;
    }
    body.is-home .cta__copy h2 {
        font-size: 24px;
    }
    body.is-home .service-card {
        padding: 24px;
        border-radius: 22px;
    }
    body.is-home .cap-card {
        padding: 20px;
        border-radius: 22px;
    }
    body.is-home .persona-card {
        padding: 20px;
        border-radius: 22px;
    }
    body.is-home .agent__preview {
        padding: 16px;
        border-radius: 22px;
    }
    body.is-home .hero__demo-header {
        flex-direction: column;
        gap: 12px;
    }
    body.is-home .hero__demo-header h2 {
        font-size: 18px;
    }
    body.is-home .hero__demo-body {
        gap: 12px;
    }
    body.is-home .hero__tags {
        gap: 6px;
    }
    body.is-home .hero__tag {
        font-size: 10px;
        padding: 0 10px;
        min-height: 28px;
    }
    body.is-home .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    body.is-home .hero__actions .button {
        width: 100%;
        justify-content: center;
    }
    body.is-home .post-grid {
        grid-template-columns: 1fr;
    }
    body.is-home .form-row {
        grid-template-columns: 1fr;
    }
    body.is-home .form-card {
        padding: 28px 22px;
    }
    body.is-home .wx-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== 小屏手机（≤480px）精细适配 ===== */
@media (max-width: 480px) {
    body.is-home .hero__metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    body.is-home .hero__metric {
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-items: start;
        text-align: left;
        padding: 12px 16px;
    }
    body.is-home .hero__metric strong {
        font-size: 26px;
    }
    body.is-home .hero__metric span {
        font-size: 12px;
    }
    body.is-home .hero__demo-header h2 {
        font-size: 16px;
    }
    body.is-home .hero__demo-qa-item {
        min-height: 62px;
    }
    body.is-home .tools__grid {
        grid-template-columns: 1fr;
    }
    body.is-home .dashboard__engines {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .media__stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    body.is-home .media-stat strong {
        font-size: 20px;
    }
    body.is-home .platforms__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.is-home .contact-list {
        gap: 12px;
    }
    body.is-home .faq-wrap {
        gap: 10px;
    }
    body.is-home .faq-q {
        padding: 14px 14px;
        font-size: 13px;
    }
}
