/* ============================================================
   landing.css — SEO/GEO 关键词落地页 + 内页专属样式
   v2：明亮专业企业级 · mono-brand(#4f46e5) · 亮色优先
   全部用 style.css 的新 token，自动适配亮/暗主题。
   被 41 个内页共用（index 除外）。
   ============================================================ */

/* 子页 Hero */
.page-hero {
    position: relative;
    padding: 150px 0 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.page-hero-bg .hero-glow {
    position: absolute;
}
.page-hero-bg .hero-glow-1 {
    top: -120px;
    left: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.10), transparent 70%);
    filter: blur(48px);
}
.page-hero-bg .hero-glow-2 {
    top: -40px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.06), transparent 70%);
    filter: blur(48px);
}
.page-hero .container {
    position: relative;
    z-index: 1;
}

/* 面包屑 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--text-muted); opacity: 0.6; }
.breadcrumb [aria-current="page"] { color: var(--text); }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
    max-width: 18em;
}
.page-hero .lead {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    color: var(--text-secondary);
    max-width: 46em;
    line-height: 1.8;
    margin-bottom: 32px;
}
.page-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-meta {
    color: var(--text-muted);
    font-size: 0.84rem;
    margin: -6px 0 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-meta::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

/* 通用落地区段 */
.landing-section { padding: 84px 0; }
.landing-section.alt { background: var(--bg-subtle); }

/* GEO 定义块（"什么是 XX" — 便于 AI 引用） */
.def-block {
    max-width: 920px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 40px;
    box-shadow: var(--shadow-sm);
}
.def-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.def-block p {
    color: var(--text-secondary);
    line-height: 1.95;
    font-size: 1.02rem;
}
.def-block p + p { margin-top: 14px; }
.def-block strong { color: var(--text); font-weight: 600; }

/* KPI / 数字证据条（GEO 友好：带数据更易被引用） */
.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.kpi-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 16px;
    box-shadow: var(--shadow-sm);
}
.kpi-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.02em;
}
.kpi-label {
    display: block;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 适用场景列表 */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.scene-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.scene-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.scene-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.scene-card h3 .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    flex: none;
}
.scene-card p { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.75; }

/* 对比表 */
.compare-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    background: var(--surface);
}
.compare-table th,
.compare-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.96rem;
}
.compare-table thead th {
    color: var(--text);
    font-weight: 700;
    background: var(--bg-subtle);
}
.compare-table thead th.hl {
    background: var(--brand-tint);
    color: var(--brand);
}
.compare-table td { color: var(--text-secondary); }
.compare-table td.yes { color: var(--success); font-weight: 600; }
.compare-table td.no { color: var(--text-muted); }
.compare-table tr:last-child td { border-bottom: none; }

/* FAQ 手风琴（原生 details/summary，可被搜索引擎与 AI 抓取） */
.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 600;
    font-size: 1.04rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brand);
    transition: transform var(--transition);
    flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
    padding: 0 26px 24px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 0.98rem;
}

/* 内链卡（相关解决方案） */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.related-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    font-weight: 600;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.related-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.related-card svg { flex: none; color: var(--brand); }

/* ============ 知识中心 / 文章 ============ */

/* 文章 meta（日期 / 阅读时长 / 分类） */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
}
.article-meta .tag-pill {
    background: var(--brand-tint);
    color: var(--brand);
    border-radius: 999px;
    padding: 3px 12px;
    font-weight: 600;
}

/* 正文排版 */
.prose {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.04rem;
    line-height: 1.95;
}
.prose h2 {
    color: var(--text);
    font-size: 1.55rem;
    font-weight: 700;
    margin: 46px 0 18px;
    padding-top: 8px;
    scroll-margin-top: 100px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 12px;
}
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-hover); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose ol li { list-style: decimal; margin-bottom: 8px; }
.prose blockquote {
    margin: 22px 0;
    padding: 16px 22px;
    border-left: 3px solid var(--brand);
    background: var(--brand-tint);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-secondary);
}
.prose .lead-p {
    font-size: 1.12rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

/* 目录 TOC */
.toc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 0 auto 36px;
    max-width: 820px;
    box-shadow: var(--shadow-sm);
}
.toc-title { font-weight: 700; color: var(--text); margin-bottom: 10px; font-size: 0.95rem; }
.toc ul { display: flex; flex-direction: column; gap: 8px; }
.toc a { color: var(--text-secondary); font-size: 0.94rem; transition: color var(--transition); }
.toc a:hover { color: var(--brand); }

/* 文章内嵌 CTA / 引导卡 */
.inline-cta {
    margin: 36px auto;
    max-width: 820px;
    background: var(--brand-tint);
    border: 1px solid var(--brand-tint-2);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.inline-cta p { color: var(--text); font-weight: 600; margin: 0; }
.inline-cta .sub { color: var(--text-secondary); font-weight: 400; font-size: 0.9rem; margin-top: 4px; }

/* 发展历程时间线 */
.timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 34px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--brand);
    opacity: 0.35;
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--bg);
}
.timeline-year {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}
.timeline-item p { color: var(--text-secondary); line-height: 1.7; }

/* 资质荣誉徽章 */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.honor-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}
.honor-card svg { flex: none; color: var(--brand); }
.honor-card span { font-weight: 600; color: var(--text); }

/* 知识中心列表卡 */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.article-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.article-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.article-card .tag-pill {
    align-self: flex-start;
    background: var(--brand-tint);
    color: var(--brand);
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.article-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.article-card p { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.7; flex: 1; }
.article-card .read-more {
    margin-top: 16px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}
.article-card:hover .read-more { gap: 10px; }

/* ============ 行业页：软件特点图形（SVG/CSS，非图片） ============ */

/* 文字 + 图形 双栏 */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: center;
}
.split-row.reverse .split-text { order: 2; }
.split-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.split-text p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 14px; }
.split-text ul { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.split-text li {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.split-text li svg { flex: none; margin-top: 3px; color: var(--success); }
.split-text li strong { color: var(--text); }

/* 图形面板 —— 深色「数据面板」组件：图表 SVG 为深底设计的浅色文字，
   统一深色面板既保证可读性，又与首页深色大屏/代码块视觉语言一致（全站唯一刻意深色锚点的延伸） */
.feat-graphic {
    position: relative;
    background: linear-gradient(165deg, #111a2e, #0b1120);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.feat-graphic::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
    filter: blur(34px);
    pointer-events: none;
}
.feat-graphic .fg-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.feat-graphic .fg-bar i {
    width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; display: inline-block;
}
.feat-graphic .fg-bar i:nth-child(1){ background:#f87171; }
.feat-graphic .fg-bar i:nth-child(2){ background:#fbbf24; }
.feat-graphic .fg-bar i:nth-child(3){ background:#34d399; }
.feat-graphic .fg-title { margin-left: 8px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.feat-graphic svg.fg-svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.feat-graphic .fg-legend {
    display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px;
    font-size: 0.82rem; color: #cbd5e1; position: relative; z-index: 1;
}
.feat-graphic .fg-legend span { display: inline-flex; align-items: center; gap: 6px; }
.feat-graphic .fg-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* ============ 核心亮点功能：流程图（业务 / 功能 / 审批 / 盘点流程） ============ */
.flow-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 32px 34px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.flow-block:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.flow-block:last-child { margin-bottom: 0; }
.flow-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.flow-no {
    flex: none;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    background: var(--brand);
    border-radius: 10px;
    padding: 9px 12px;
    line-height: 1;
}
.flow-head-text { min-width: 0; }
.flow-head-text h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.flow-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-tint);
    border-radius: 999px;
    padding: 3px 11px;
}
.flow-head-text p { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }

/* 节点链 */
.flow { display: flex; align-items: stretch; flex-wrap: wrap; gap: 8px; }
.flow-node {
    flex: 1 1 0;
    min-width: 132px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-top: 2px solid var(--brand);
    border-radius: 12px;
    padding: 14px 15px 16px;
}
.flow-node.result {
    background: var(--brand-tint);
    border-top-color: var(--brand);
}
.fn-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--brand);
    background: var(--surface);
    border: 1px solid var(--brand);
    margin-bottom: 9px;
}
.fn-title { display: block; font-weight: 700; font-size: 0.96rem; color: var(--text); }
.fn-sub { display: block; margin-top: 4px; font-size: 0.79rem; color: var(--text-muted); line-height: 1.5; }
.flow-arrow { flex: none; display: flex; align-items: center; color: var(--text-muted); }

/* 审批分支 */
.flow-branches { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-left: 4px; }
.flow-branch { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.flow-branch .fb-arrow { flex: none; color: var(--text-muted); display: flex; }
.flow-branch .fb-label {
    flex: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 999px;
}
.flow-branch.pass .fb-label { color: var(--success); background: var(--success-bg); }
.flow-branch.reject .fb-label { color: var(--danger); background: var(--danger-bg); }
.flow-branch .fb-result { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.flow-branch .fb-result strong { color: var(--text); }

/* 模块内链条 */
.flow-modules {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
}
.flow-modules .fm-label { font-weight: 600; color: var(--text-secondary); }
.flow-modules a {
    color: var(--brand);
    font-weight: 600;
    transition: color var(--transition);
}
.flow-modules a:hover { color: var(--brand-hover); }
.flow-modules .sep { opacity: 0.4; }

@media (max-width: 768px) {
    .page-hero { padding: 120px 0 54px; }
    .kpi-row { grid-template-columns: repeat(2, 1fr); }
    .def-block { padding: 28px 22px; }
    .landing-section { padding: 60px 0; }
    .prose { font-size: 1rem; }
    .prose h2 { font-size: 1.32rem; }
    .inline-cta { padding: 22px; }
    .split-row { grid-template-columns: 1fr; gap: 28px; }
    .split-row.reverse .split-text { order: 0; }
    .flow-block { padding: 24px 20px 26px; }
    .flow { flex-direction: column; }
    .flow-node { width: 100%; min-width: 0; }
    .flow-arrow { align-self: center; transform: rotate(90deg); }
}

/* ============ 功能集合图（核心功能全景，单击弹出详情面板） ============ */
.atlas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}
.feat-node {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 2px solid var(--brand);
    border-radius: 14px;
    padding: 22px 14px 18px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feat-node:hover,
.feat-node:focus-visible {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    outline: none;
}
.feat-node .fni {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-tint);
    transition: transform var(--transition);
}
.feat-node:hover .fni { transform: scale(1.07); }
.feat-node .fni svg { width: 26px; height: 26px; }
.feat-node .fnt { font-size: 0.92rem; font-weight: 600; color: var(--text); line-height: 1.35; }
.feat-node .fnh {
    font-size: 0.72rem;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity var(--transition), transform var(--transition);
}
.feat-node:hover .fnh,
.feat-node:focus-visible .fnh { opacity: 1; transform: none; }

/* 详情弹窗 */
.feat-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.feat-modal.open { display: flex; }
.feat-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.feat-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 34px 30px;
    box-shadow: var(--shadow-lg);
    animation: fmIn 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fmIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
.fm-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}
.fm-close:hover { color: var(--text); border-color: var(--border-strong); }
.fm-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--brand-tint);
}
.fm-ico svg { width: 30px; height: 30px; }
.fm-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--brand);
    background: var(--brand-tint);
    border-radius: 999px;
    padding: 3px 11px;
    margin-bottom: 12px;
}
.fm-title { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.fm-desc { color: var(--text-secondary); line-height: 1.9; font-size: 0.98rem; margin-bottom: 24px; }
.fm-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fm-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 10px 16px;
    transition: border-color var(--transition), background var(--transition);
}
.fm-link:hover { border-color: var(--brand); background: var(--brand-tint); }
.fm-link svg { color: var(--text-secondary); }
.fm-try {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
    background: var(--brand);
    border-radius: 10px;
    padding: 10px 18px;
    transition: background var(--transition);
}
.fm-try:hover { background: var(--brand-hover); }

@media (max-width: 768px) {
    .atlas-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 10px; }
    .feat-node { padding: 18px 8px 14px; }
    .feat-node .fni { width: 42px; height: 42px; }
    .feat-modal-card { padding: 28px 22px 24px; }
    .fm-title { font-size: 1.24rem; }
}
