/* ═══════════════════════════════════════════════════════════
   芯芸达 GEO 福建服务中心 — Design System
   品牌体系沿用总部（南京）既定规范：深翡翠绿主色 + 青绿点缀 + 暖橙 CTA
   Anti-slop: 无渐变文字 / 无 em-dash / 圆角 ≤ 16px / 单一强调色
   ═══════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Paper / ink */
  --paper: oklch(0.99 0.003 180);
  --ink: oklch(0.18 0.02 200);

  /* Deep emerald — 主色 */
  --primary: oklch(0.36 0.07 165);
  --primary-foreground: oklch(0.99 0.003 180);
  --primary-soft: oklch(0.94 0.04 175);
  --primary-deep: oklch(0.28 0.08 165);

  /* Bright teal — 点缀（标签、下划线、描边） */
  --accent-teal: oklch(0.78 0.13 180);
  --accent-teal-soft: oklch(0.95 0.04 180);

  /* CTA — 暖橙（唯一行动强调色） */
  --cta: oklch(0.85 0.16 90);
  --cta-foreground: oklch(0.18 0.02 200);

  /* Cream — 分带背景 */
  --cream-soft: oklch(0.965 0.018 75);
  --cream: oklch(0.93 0.03 72);
  --cream-deep: oklch(0.82 0.05 68);

  /* Neutrals */
  --muted: oklch(0.965 0.005 200);
  --muted-foreground: oklch(0.45 0.012 200);
  --rule: oklch(0.9 0.008 200);
  --border: oklch(0.92 0.008 200);

  /* Radius 系统：卡片 16px / 内嵌 10px / 胶囊按钮 */
  --radius-card: 16px;
  --radius-inner: 10px;

  /* 阴影（不叠加宽泛外发光） */
  --shadow-card: 0 1px 3px oklch(0.18 0.02 200 / 0.05), 0 4px 16px oklch(0.18 0.02 200 / 0.06);
  --shadow-card-hover: 0 4px 12px oklch(0.18 0.02 200 / 0.06), 0 12px 32px oklch(0.18 0.02 200 / 0.08);

  --section-gap: clamp(3.5rem, 6vw, 5.5rem);
  --header-h: 68px;
}

/* ── 2. BASE ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; }

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--accent-teal); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Static news pages use a small Tailwind-like class subset from build.mjs. */
.mx-auto { margin-inline: auto; }
.max-w-4xl { max-width: 56rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-6 { padding-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: 0.75rem; }
.border-t { border-top: 1px solid var(--rule); }
.border-l-2 { border-left: 2px solid var(--rule); }
.border-primary\/30 { border-color: oklch(0.36 0.07 165 / 0.3); }
.hairline { border-color: var(--rule); }
.pl-4 { padding-left: 1rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.font-display-black { font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif; font-weight: 900; }
.uppercase { text-transform: uppercase; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-tight { letter-spacing: 0; }
.leading-\[1\.25\] { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.break-keep { word-break: keep-all; overflow-wrap: anywhere; }
.text-balance { text-wrap: balance; }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.transition-colors { transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; }
.hover\:text-primary:hover { color: var(--primary); }

@media (min-width: 768px) {
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

@media (min-width: 1024px) {
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
}

.section {
  padding-block: var(--section-gap);
}

.bg-cream { background: var(--cream-soft); }
.bg-paper { background: var(--paper); }
.bg-dark {
  background: var(--primary-deep);
  color: var(--primary-foreground);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 0.9rem; color: var(--muted-foreground); font-size: 1.02rem; max-width: 60ch; }
.section-head.center .lead { margin-inline: auto; }

/* 徽标式小标签（全站最多 2 处，避免模板化） */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: var(--accent-teal-soft);
  color: oklch(0.4 0.09 180);
  border: 1px solid oklch(0.78 0.13 180 / 0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

/* ── 4. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 3.25rem;
  padding: 0 1.75rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-cta {
  background: var(--cta);
  color: var(--cta-foreground);
  box-shadow: 0 8px 24px -12px oklch(0.85 0.16 90 / 0.7);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px oklch(0.85 0.16 90 / 0.8); }
.btn-cta .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--cta);
  font-size: 0.85rem;
  line-height: 1;
}

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-outline-teal {
  border: 1.5px solid var(--accent-teal);
  color: oklch(0.4 0.09 180);
  background: transparent;
}
.btn-outline-teal:hover { background: var(--accent-teal-soft); transform: translateY(-2px); }

.btn-lg { height: 3.6rem; padding-inline: 2.25rem; font-size: 1rem; }

/* ── 5. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.28 0.08 165 / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-foreground);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; background: var(--paper); object-fit: cover; }
.brand .brand-name { font-weight: 900; letter-spacing: -0.02em; font-size: 1.05rem; white-space: nowrap; }
.brand .brand-sub { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.06em; color: oklch(1 0 0 / 0.55); white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: oklch(1 0 0 / 0.82);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--cta); }
.site-nav a.active { color: var(--cta); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }
.hotline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cta);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hotline:hover { color: oklch(0.9 0.16 90); }

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.6rem;
  padding: 0 0.9rem 0 1.2rem;
  border-radius: 9999px;
  background: var(--cta);
  color: var(--cta-foreground);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-header:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -10px oklch(0.85 0.16 90 / 0.7); }
.btn-header .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--cta);
}

/* 移动端菜单 */
.nav-toggle { display: none; width: 2.6rem; height: 2.6rem; border-radius: 9999px; border: 1px solid oklch(1 0 0 / 0.25); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--primary-foreground); border-radius: 2px; position: relative; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

.mobile-nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: var(--header-h);
  background: var(--primary-deep);
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: oklch(1 0 0 / 0.9);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cta); background: oklch(1 0 0 / 0.06); }

/* ── 6. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
  color: var(--primary-foreground);
  border-bottom: 2px solid oklch(0.78 0.13 180 / 0.25);
  min-height: max(680px, 92dvh);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  will-change: transform;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 80% at 50% 45%, oklch(0.18 0.05 175 / 0.5) 0%, oklch(0.16 0.06 175 / 0.78) 55%, oklch(0.12 0.06 175 / 0.94) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.78 0.13 180 / 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.78 0.13 180 / 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 90%);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(4rem, 9vh, 6rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(1 0 0 / 0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(4px);
}
.hero-eyebrow .live-dot {
  width: 7px; height: 7px; border-radius: 9999px;
  background: var(--cta);
  box-shadow: 0 0 0 0 oklch(0.85 0.16 90 / 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  color: var(--primary-foreground);
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  line-height: 1.08;
}
.hero h1 .hl { color: var(--cta); }
.hero h1 .sub-line { display: block; margin-top: 0.15em; }

.hero-sub {
  margin-top: 1.5rem;
  max-width: 52ch;
  color: oklch(1 0 0 / 0.78);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
}
.hero-sub strong { color: var(--primary-foreground); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-ctas .btn-ghost-light {
  border-color: oklch(1 0 0 / 0.4);
  color: var(--primary-foreground);
}
.hero-ctas .btn-ghost-light:hover { background: oklch(1 0 0 / 0.1); border-color: oklch(1 0 0 / 0.6); transform: translateY(-2px); }

.hero-note {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: oklch(1 0 0 / 0.5);
  letter-spacing: 0.02em;
}

/* Hero 右侧：GEO 诊断卡（真实组件预览，非 div 假截图） */
.hero-panel {
  position: relative;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, oklch(0.78 0.13 180 / 0.35), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dash-card {
  position: relative;
  border-radius: 16px;
  background: oklch(0.99 0.003 180 / 0.96);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px oklch(0.1 0.05 180 / 0.6);
  animation: float-card 6s ease-in-out infinite;
}

.dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  background: var(--muted);
}
.dash-chrome i { width: 11px; height: 11px; border-radius: 9999px; display: block; }
.dash-chrome i:nth-child(1) { background: oklch(0.65 0.2 25); }
.dash-chrome i:nth-child(2) { background: var(--cta); }
.dash-chrome i:nth-child(3) { background: var(--accent-teal); }
.dash-chrome .t {
  margin-left: 0.6rem;
  font-size: 0.68rem;
  font-family: ui-monospace, "JetBrains Mono", monospace;
  color: var(--muted-foreground);
  letter-spacing: 0.04em;
}

.dash-body { padding: 1.4rem 1.4rem 1.6rem; }
.dash-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; }
.dash-head h3 { font-size: 1.05rem; font-weight: 800; }
.dash-head .tag { font-size: 0.65rem; font-weight: 700; color: var(--accent-teal); font-family: ui-monospace, monospace; letter-spacing: 0.1em; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.kpi {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: var(--paper);
}
.kpi .k-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted-foreground); text-transform: uppercase; display: flex; justify-content: space-between; }
.kpi .k-delta { color: var(--accent-teal); font-weight: 700; }
.kpi .k-value { font-size: 1.55rem; font-weight: 900; letter-spacing: -0.02em; color: var(--primary); font-variant-numeric: tabular-nums; margin-top: 0.2rem; }
.kpi .k-track { height: 5px; border-radius: 9999px; background: var(--muted); margin-top: 0.6rem; overflow: hidden; }
.kpi .k-track i { display: block; height: 100%; border-radius: 9999px; background: var(--primary); }

.dash-foot {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px dashed oklch(0.9 0.01 180);
  border-radius: 10px;
  background: var(--primary-soft);
  font-size: 0.8rem;
  color: oklch(0.3 0.05 175);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.dash-foot .mini-cta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cta-foreground);
  background: var(--cta);
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.dash-foot .mini-cta:hover { transform: translateY(-1px); }

.hero-float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 9999px;
  background: oklch(0.99 0.003 180 / 0.94);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 12px 28px -12px oklch(0.1 0.05 180 / 0.5);
  border: 1px solid var(--rule);
  animation: float-chip 5.5s ease-in-out infinite;
}
.hero-float-chip svg { width: 15px; height: 15px; color: var(--accent-teal); }
.hero-float-chip.chip-1 { top: -1.2rem; left: -1.4rem; animation-delay: 0.3s; }
.hero-float-chip.chip-2 { bottom: 1.2rem; right: -1rem; animation-delay: 1.2s; }

/* ── 7. MARQUEE（全站仅此一处）────────────────────────────── */
.marquee-band { background: var(--primary); color: var(--primary-foreground); padding-block: 1.1rem; overflow: hidden; border-bottom: 1px solid oklch(1 0 0 / 0.08); }
.marquee-track { display: flex; gap: 2.2rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; font-weight: 600; color: oklch(1 0 0 / 0.85); white-space: nowrap; }
.marquee-item svg { width: 15px; height: 15px; color: var(--cta); flex-shrink: 0; }
.marquee-item.sep { color: oklch(1 0 0 / 0.25); }

/* ── 8. STATS ──────────────────────────────────────────────── */
.stats { border-block: 1px solid var(--rule); background: var(--paper); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
  padding-block: 0.5rem;
}
.stat .num {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat .num .suffix { font-size: 0.6em; color: var(--accent-teal); }
.stat .label { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted-foreground); }
.stat + .stat { border-left: 1px solid var(--rule); }

/* ── 9. 为什么选择（编辑式双栏）───────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.why-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.why-aside h2 { margin-top: 0.2rem; }
.why-aside p { margin-top: 1.1rem; color: var(--muted-foreground); max-width: 46ch; }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--rule);
}
.why-item:last-child { border-bottom: 1px solid var(--rule); }
.why-item .idx {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-teal);
  padding-top: 0.15rem;
}
.why-item h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.why-item p { font-size: 0.95rem; color: var(--muted-foreground); max-width: 52ch; }

/* ── 10. 服务体系（非对称网格）───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.1rem;
}
.service-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 1.9rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: oklch(0.6 0.1 170 / 0.5); }
.service-card.wide { grid-column: span 2; }
.service-card .icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-card .icon svg { width: 1.4rem; height: 1.4rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted-foreground); }
.service-card .num-tag {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--border);
}
.service-card:hover .num-tag { color: var(--accent-teal); }
.service-card .points { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card .points li { display: flex; gap: 0.55rem; font-size: 0.85rem; color: oklch(0.35 0.02 200); align-items: flex-start; }
.service-card .points li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; }

/* ── 11. 方法论（深色带 + 真顺序编号）───────────────────── */
.method { background: var(--primary-deep); color: var(--primary-foreground); position: relative; overflow: hidden; }
.method .bg-grid { opacity: 0.12; }
.method .section-head h2 { color: var(--primary-foreground); }
.method .section-head .lead { color: oklch(1 0 0 / 0.65); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step {
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius-card);
  background: oklch(1 0 0 / 0.05);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}
.step:hover { background: oklch(1 0 0 / 0.09); transform: translateY(-3px); }
.step .step-no {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cta);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.step .step-no::after { content: ""; flex: 1; height: 1px; background: oklch(1 0 0 / 0.15); }
.step h3 { font-size: 1.1rem; margin: 1rem 0 0.55rem; color: var(--primary-foreground); }
.step p { font-size: 0.86rem; color: oklch(1 0 0 / 0.62); line-height: 1.65; }
.step .dur {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: oklch(1 0 0 / 0.45);
  letter-spacing: 0.04em;
}

/* ── 12. 福建本地化（图文分栏）───────────────────────────── */
.local-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}
.local-scene {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background:
    radial-gradient(ellipse 60% 50% at 70% 20%, oklch(0.5 0.12 170 / 0.35), transparent 60%),
    linear-gradient(160deg, var(--primary-deep), oklch(0.2 0.07 180));
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  border: 1px solid oklch(0.78 0.13 180 / 0.2);
}
.local-scene .scene-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: oklch(1 0 0 / 0.85);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.local-scene .scene-label svg { width: 1.1rem; height: 1.1rem; color: var(--cta); }
.local-features { display: flex; flex-direction: column; }
.local-feature {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--rule);
}
.local-feature:last-child { border-bottom: 1px solid var(--rule); }
.local-feature .f-icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: 10px;
  background: var(--accent-teal-soft);
  color: oklch(0.4 0.09 180);
  display: flex;
  align-items: center;
  justify-content: center;
}
.local-feature .f-icon svg { width: 1.2rem; height: 1.2rem; }
.local-feature h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.local-feature p { font-size: 0.9rem; color: var(--muted-foreground); max-width: 52ch; }

/* ── 13. 案例（横向行，非统一卡片）───────────────────────── */
.case-row {
  display: grid;
  grid-template-columns: 11rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 0.5rem;
  border-top: 1px solid var(--rule);
  transition: background 0.25s ease;
}
.case-row:hover { background: var(--primary-soft); }
.case-row:last-child { border-bottom: 1px solid var(--rule); }
.case-row .case-tag {
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}
.case-row .case-main h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.case-row .case-main p { font-size: 0.9rem; color: var(--muted-foreground); max-width: 56ch; }
.case-row .case-metrics { display: flex; gap: 1.8rem; }
.case-metric { text-align: right; }
.case-metric .v { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; color: var(--primary); font-variant-numeric: tabular-nums; }
.case-metric:nth-child(2) .v { color: var(--accent-teal); }
.case-metric .l { font-size: 0.72rem; color: var(--muted-foreground); margin-top: 0.15rem; white-space: nowrap; }

/* ── 14. FAQ ──────────────────────────────────────────────── */
.faq-wrap { max-width: 46rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0.4rem;
  text-align: left;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--primary); }
.faq-q .chev {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}
.faq-item.open .chev { transform: rotate(45deg); background: var(--primary-soft); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a .inner { overflow: hidden; }
.faq-a p { padding: 0 0.4rem 1.4rem; color: var(--muted-foreground); font-size: 0.95rem; max-width: 60ch; line-height: 1.8; }

/* ── 15. 资质条（E-E-A-T 信号）───────────────────────────── */
.cred-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cred {
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cred .c-icon { color: var(--primary); }
.cred .c-icon svg { width: 1.5rem; height: 1.5rem; }
.cred h3 { font-size: 1rem; }
.cred p { font-size: 0.82rem; color: var(--muted-foreground); line-height: 1.65; }

/* ── 16. CONTACT CTA ──────────────────────────────────────── */
.cta-band {
  background: var(--primary-deep);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}
.cta-band .bg-grid { opacity: 0.12; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; position: relative; }
.cta-band h2 { color: var(--primary-foreground); }
.cta-band .lead { color: oklch(1 0 0 / 0.7); margin-top: 1rem; max-width: 46ch; }
.cta-points { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cta-points li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.95rem; color: oklch(1 0 0 / 0.85); }
.cta-points li svg { width: 1.1rem; height: 1.1rem; color: var(--cta); flex-shrink: 0; }

.contact-card {
  border-radius: var(--radius-card);
  background: var(--paper);
  color: var(--ink);
  padding: 2rem;
  box-shadow: 0 30px 60px -24px oklch(0.1 0.05 180 / 0.7);
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 0.4rem; color: oklch(0.35 0.02 200); }
.field input {
  width: 100%;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 0.95rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: var(--muted-foreground); opacity: 0.75; }
.field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.36 0.07 165 / 0.15);
}
.form-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-status.ok { display: block; background: var(--primary-soft); color: var(--primary); }
.form-status.err { display: block; background: oklch(0.93 0.05 25 / 0.35); color: oklch(0.45 0.15 25); }
.btn-submit { width: 100%; margin-top: 0.4rem; }

.contact-info { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); display: flex; flex-direction: column; gap: 0.7rem; }
.contact-info .ci { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: oklch(0.4 0.02 200); }
.contact-info .ci svg { width: 1rem; height: 1rem; color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }
.contact-info .ci > span { min-width: 0; overflow-wrap: anywhere; }
.contact-info .ci a { font-weight: 700; color: var(--primary); }
.contact-info .ci a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-info .ci .todo-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cta-foreground);
  background: var(--cta);
  border-radius: 9999px;
  padding: 0.15rem 0.55rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ── 17. FOOTER ───────────────────────────────────────────── */
.site-footer { background: oklch(0.14 0.03 190); color: oklch(1 0 0 / 0.7); padding-top: 3.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; background: var(--paper); }
.footer-brand .fb-name { font-weight: 800; color: var(--primary-foreground); font-size: 1.05rem; margin-top: 0.9rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 0.6rem; max-width: 34ch; line-height: 1.7; color: oklch(1 0 0 / 0.55); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(1 0 0 / 0.45); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.88rem; color: oklch(1 0 0 / 0.7); padding-block: 0.3rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cta); }
.footer-bottom {
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: oklch(1 0 0 / 0.4);
}
.footer-bottom a { color: oklch(1 0 0 / 0.55); }
.footer-bottom a:hover { color: var(--cta); }
.footer-bottom .icp { display: inline-flex; gap: 0.3rem; align-items: center; }

/* ── 18. REVEAL / ANIMATION 系统 ───────────────────────────
   隐藏态仅在 .js 生效（由 main.js 在 html 上加 class），
   无 JS / 爬虫环境下内容始终可见，不阻塞 AI 抓取。 */
.js .reveal, .js .reveal-l, .js .reveal-r, .js .reveal-scale, .js .reveal-stagger > * {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}
.js .reveal { transform: translateY(32px); }
.js .reveal-l { transform: translateX(-32px); }
.js .reveal-r { transform: translateX(32px); }
.js .reveal-scale { transform: scale(0.94); }
.js .reveal-stagger > * { transform: translateY(24px); }
.reveal.in-view, .reveal-l.in-view, .reveal-r.in-view, .reveal-scale.in-view { opacity: 1; transform: none; filter: none; }
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 450ms; }

/* 数字滚动 */
.js .stat .num { opacity: 0; transform: translateY(14px); transition: opacity 0.4s ease, transform 0.4s ease; }
.stat .num.counted { opacity: 1; transform: none; }

/* 滚动进度条（默认隐藏，滚动后才显示，避免顶部多余条带） */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent-teal), var(--cta));
  z-index: 200;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.scroll-progress.visible { opacity: 1; }

/* 回到顶部 */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -12px oklch(0.1 0.05 180 / 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 90;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 1.1rem; height: 1.1rem; }

/* 3D tilt 卡片 */
.tilt-card { transform-style: preserve-3d; transition: transform 0.2s ease-out; }

/* Keyframes */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-chip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 oklch(0.85 0.16 90 / 0.55); }
  70% { box-shadow: 0 0 0 9px oklch(0.85 0.16 90 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.85 0.16 90 / 0); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.anim-rise { animation: rise-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-fade { animation: fade-in 1s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* ── 19. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 540px; }
  .hero-float-chip.chip-2 { right: auto; left: 0.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--rule); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .local-grid, .cta-grid { grid-template-columns: 1fr; }
  .why-aside { position: static; }
  .local-scene { max-width: 560px; }
  .cred-strip { grid-template-columns: repeat(2, 1fr); }
  .case-row { grid-template-columns: 1fr; gap: 0.8rem; padding-block: 1.5rem; }
  .case-row .case-metrics { justify-content: flex-start; }
  .case-metric { text-align: left; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .cred-strip { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .header-actions .btn-header span.label { display: none; }
  .header-actions .btn-header { padding-left: 1.1rem; }
  .hero-panel { margin-inline: auto; }
  .case-metrics { flex-wrap: wrap; gap: 1rem 1.6rem; }
}

@media (max-width: 520px) {
  .site-header .bar { gap: 0.75rem; }
  .header-actions { gap: 0.65rem; }
  .hotline { display: none; }
  .brand .brand-name { font-size: 1rem; }
}

/* ── 20. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal-l, .js .reveal-r, .js .reveal-scale, .js .reveal-stagger > *,
  .js .stat .num { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .dash-card, .hero-float-chip, .hero-eyebrow .live-dot { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ═══════════════════════════════════════════════════════════
   21. 信任背书 / 客户反馈 / GEO 流程详情 / 新闻与 FAQ
   ═══════════════════════════════════════════════════════════ */

/* ── 证书墙（首页 & 关于页） ──────────────────────────── */
.cert-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cert-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: zoom-in;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: oklch(0.6 0.1 170 / 0.5); }
.cert-card .cert-img {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.9rem;
  border: 1px solid oklch(0.95 0.005 180);
}
.cert-card .cert-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.cert-card:hover .cert-img img { transform: scale(1.04); }
.cert-card h3 { font-size: 0.92rem; line-height: 1.45; font-weight: 700; margin-bottom: 0.3rem; }
.cert-card p { font-size: 0.78rem; color: var(--muted-foreground); line-height: 1.65; }

/* 证书大图 lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: oklch(0.12 0.03 190 / 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 880px); max-height: 88dvh; border-radius: 12px; box-shadow: 0 30px 80px oklch(0 0 0 / 0.4); }
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.25);
  color: oklch(1 0 0 / 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: oklch(1 0 0 / 0.2); transform: rotate(90deg); }

/* ── 客户反馈（首页） ────────────────────────────────── */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feedback-card {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feedback-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.feedback-card .f-img {
  aspect-ratio: 1 / 1;
  background: var(--muted);
  border-radius: 10px;
  overflow: hidden;
}
.feedback-card .f-img img { width: 100%; height: 100%; object-fit: cover; }
.feedback-card .f-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.45rem;
}
.feedback-card .f-company { font-weight: 800; font-size: 0.95rem; }
.feedback-card .f-type {
  font-size: 0.7rem;
  font-weight: 700;
  color: oklch(0.4 0.09 180);
  background: var(--accent-teal-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.feedback-card p { font-size: 0.85rem; color: var(--muted-foreground); line-height: 1.65; }

/* ── GEO 十步登峰诀（geo 页） ────────────────────────── */
.geo-intro {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
}
.geo-intro .geo-num {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
}
.geo-intro h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.geo-intro p { color: var(--muted-foreground); max-width: 62ch; line-height: 1.8; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.summit-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 1.7rem 1.5rem;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.summit-card:hover { background: var(--primary-soft); border-color: oklch(0.6 0.1 170 / 0.5); transform: translateY(-3px); }
.summit-card.summit {
  grid-column: span 2;
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.summit-card .step-n {
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.summit-card.summit .step-n { color: var(--cta); }
.summit-card .step-n::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.2; }
.summit-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.summit-card .step-name { color: var(--primary); }
.summit-card.summit .step-name { color: var(--primary-foreground); }
.summit-card .step-deco { font-size: 0.95rem; font-weight: 500; color: var(--muted-foreground); }
.summit-card.summit .step-deco { color: oklch(1 0 0 / 0.7); }

.deliver-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  font-size: 0.92rem;
}
.deliver-table thead th {
  background: var(--cream-soft);
  text-align: left;
  font-weight: 700;
  padding: 1rem 1.1rem;
  color: oklch(0.3 0.02 200);
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.01em;
}
.deliver-table tbody td {
  padding: 1.1rem;
  border-top: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.65;
}
.deliver-table tbody tr:first-child td { border-top: 0; }
.deliver-table .d-step {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary);
  text-transform: uppercase;
}
.deliver-table .d-name { font-size: 1.1rem; font-weight: 800; margin-top: 0.2rem; }
.deliver-table .d-check { color: var(--muted-foreground); }
.deliver-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── 服务流程九步（services 页） ─────────────────────── */
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid var(--rule);
}
.process-row:last-child { border-bottom: 1px solid var(--rule); }
.process-row .p-n {
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-teal);
  text-transform: uppercase;
}
.process-row h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.process-row dl { display: flex; flex-direction: column; }
.process-row .p-item {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  gap: 1rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--rule);
}
.process-row .p-item:first-child { border-top: 0; padding-top: 0; }
.process-row dt { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.process-row dd { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.75; max-width: 60ch; }

/* ── 页面顶部的 PageHeader（替代单页版 page-shell.PageHeader） ─ */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--primary-deep);
  color: var(--primary-foreground);
  padding-block: clamp(4rem, 8vw, 5.5rem);
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.78 0.13 180 / 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.78 0.13 180 / 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 90%);
  opacity: 0.4;
}
.page-header .ph-inner {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  padding-inline: 1.25rem;
}
.page-header .ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(1 0 0 / 0.22);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: oklch(1 0 0 / 0.85);
}
.page-header h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--primary-foreground);
  text-wrap: balance;
}
.page-header h1 .hl { color: var(--cta); }
.page-header h1 .sub-line { display: block; margin-top: 0.2em; }
.page-header .ph-sub {
  margin-top: 1.2rem;
  color: oklch(1 0 0 / 0.78);
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  max-width: 60ch;
  margin-inline: auto;
}

/* ── 新闻与 FAQ 列表（共用） ──────────────────────────── */
.list-wrap { max-width: 52rem; margin-inline: auto; }
.list-row {
  display: block;
  padding: 1.6rem 0.5rem;
  border-top: 1px solid var(--rule);
  transition: background 0.25s ease, padding-left 0.25s ease, border-color 0.25s ease;
}
.list-row:first-child { border-top: 0; padding-top: 0.6rem; }
.list-row:hover {
  background: var(--primary-soft);
  padding-left: 1rem;
  border-color: oklch(0.6 0.1 170 / 0.5);
}
.list-row .lr-meta {
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.list-row h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.list-row p { color: var(--muted-foreground); font-size: 0.95rem; max-width: 60ch; }
.list-row.is-empty {
  color: var(--muted-foreground);
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--rule);
  border-radius: var(--radius-card);
  background: oklch(0.98 0.005 200 / 0.4);
}

/* 资讯分页（左侧/右侧文本按钮 + 中间数字徽章） */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  font-size: 0.92rem;
}
.pagination .pager-edge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 2.4rem;
  padding: 0 0.9rem;
  border-radius: 9999px;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: background 0.2s ease, color 0.2s ease;
}
.pagination .pager-edge:hover { background: var(--primary-soft); color: var(--primary); }
.pagination .pager-edge.disabled { opacity: 0.35; pointer-events: none; }
.pagination .pager-num {
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--muted-foreground);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pagination .pager-num:hover { background: var(--primary-soft); color: var(--primary); border-color: oklch(0.78 0.13 180 / 0.3); }
.pagination .pager-num.current {
  background: var(--primary);
  color: var(--primary-foreground);
  pointer-events: none;
  box-shadow: 0 4px 14px -6px oklch(0.36 0.07 165 / 0.5);
}
.pagination .pager-gap {
  width: 1.4rem;
  text-align: center;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  user-select: none;
}

/* 白皮书 / 红皮书：章节导航 + 分页阅读 */
.paper-reader {
  padding: 3rem 0 5rem;
}
.paper-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 17rem) minmax(0, 52rem);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.paper-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  max-height: calc(100vh - var(--header-h) - 2rem);
  overflow: auto;
  padding-right: 1rem;
  border-right: 1px solid var(--rule);
}
.paper-nav-title {
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}
.paper-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.paper-nav a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.7rem;
  border-radius: 8px;
  color: var(--muted-foreground);
  transition: background 0.2s ease, color 0.2s ease;
}
.paper-nav a:hover,
.paper-nav a.is-active {
  background: var(--primary-soft);
  color: var(--primary);
}
.paper-nav a span {
  padding-top: 0.08rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  color: var(--accent-teal);
}
.paper-nav a strong {
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.paper-main {
  min-width: 0;
}
.paper-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.paper-kicker {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}
.paper-toolbar strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: 0;
}
.paper-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  min-height: 2.2rem;
  padding: 0 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 8px;
  color: var(--muted-foreground);
  font-weight: 800;
}
.paper-content {
  max-width: none;
  padding: 0;
  overflow-x: clip;
}
.paper-page {
  display: block;
}
.paper-paged .paper-page {
  display: none;
}
.paper-paged .paper-page.is-active {
  display: block;
}
.paper-page > h2:first-child,
.paper-page > h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.paper-pagination {
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.paper-pagination .pager-edge.disabled {
  cursor: default;
}
.article-content .article-table-wrap {
  overflow-x: auto;
  margin: 1.4em 0;
}
.article-content .article-table-wrap table {
  min-width: 40rem;
  margin: 0;
}

/* 资讯说明 banner：左色块 + 文本，置于分页与 CTA 之间 */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 36rem;
  margin: 2rem auto 0;
  padding: 0.85rem 1.1rem;
  background: var(--accent-teal-soft);
  border-radius: 12px;
  border-left: 3px solid var(--accent-teal);
  font-size: 0.85rem;
  color: oklch(0.35 0.05 180);
  line-height: 1.65;
}
.info-banner .ib-icon { flex-shrink: 0; color: var(--accent-teal); margin-top: 0.1rem; }
.info-banner code {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: oklch(1 0 0 / 0.6);
  color: oklch(0.28 0.05 175);
  white-space: nowrap;
}

/* 新闻详情正文（CMS 内容是 HTML） */
.article-content img { margin: 1.4em auto; display: block; border-radius: 10px; max-width: 100%; max-height: clamp(280px, 50vh, 460px); height: auto; object-fit: contain; background: oklch(0.97 0.005 200); }
.article-content iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 10px; margin: 1.4em 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 0.92rem; }
.article-content th, .article-content td { border: 1px solid var(--rule); padding: 0.6rem 0.85rem; text-align: left; }
.article-content th { background: var(--muted); }

/* 详情页 article 容器：防御性防止子元素撑出视口 */
article { overflow-x: clip; }

/* ── 响应式补充 ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cert-wall { grid-template-columns: repeat(3, 1fr); }
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-card { grid-template-columns: 6rem 1fr; }
  .process-row { grid-template-columns: 4rem 1fr; gap: 1rem; }
  .process-row .p-item { grid-template-columns: 1fr; gap: 0.3rem; }
}
@media (max-width: 640px) {
  .cert-wall { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .cert-card { padding: 0.75rem; }
  .cert-card h3 { font-size: 0.82rem; }
  .cert-card p { font-size: 0.72rem; }
  .feedback-card { grid-template-columns: 1fr; }
  .feedback-card .f-img { aspect-ratio: 16 / 9; }
  .steps-grid { grid-template-columns: 1fr; }
  .summit-card.summit { grid-column: span 1; }
  .geo-intro { grid-template-columns: 1fr; gap: 0.6rem; }
  .geo-intro .geo-num { font-size: 0.7rem; }
  .process-row { grid-template-columns: 1fr; gap: 0.6rem; padding-block: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   22. 全局细节打磨
   ═══════════════════════════════════════════════════════════ */

/* 正文中链接：默认无下划线、hover 时实色 + 下划线浮现，避免"链接看起来像普通文字" */
.article-content a:not([class]) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: oklch(0.36 0.07 165 / 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease;
}
.article-content a:not([class]):hover {
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
}

/* 自定义滚动条（webkit） */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb {
  background: oklch(0.65 0.04 175);
  border-radius: 9999px;
  border: 2px solid var(--muted);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
* { scrollbar-color: oklch(0.65 0.04 175) var(--muted); scrollbar-width: thin; }

/* 自定义选区颜色 */
::selection { background: oklch(0.78 0.13 180 / 0.35); color: var(--ink); }

/* 滚动平滑到锚点 */
html { scroll-padding-top: calc(var(--header-h) + 16px); }

/* 链接可访问性：键盘聚焦明显 */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* 通用按钮按下反馈（更明显的触感） */
.btn:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
  transition: transform 0.08s ease;
}

/* 表单输入聚焦时蓝色光晕 */
.field input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.36 0.07 165 / 0.18);
}

/* 案例行 hover：左侧色块指示 */
.case-row {
  position: relative;
}
.case-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background: var(--primary);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.case-row:hover::before { opacity: 1; }
.case-row:hover { padding-left: 1rem; }

/* 服务体系卡片 hover 顶部色条 */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-teal));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card { position: relative; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); }

/* 方法论最后一步（进化）左侧加 "顶峰" 标记 */
.summit-card.summit {
  position: relative;
}
.summit-card.summit::before {
  content: "SUMMIT";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--cta);
  background: oklch(1 0 0 / 0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid oklch(0.85 0.16 90 / 0.4);
}

/* FAQ 折叠图标：+ 变 × 旋转更明显 */
.faq-q .chev {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, color 0.2s ease;
}
.faq-q:hover .chev { background: var(--primary-soft); color: var(--primary); }
.faq-item.open .chev { transform: rotate(45deg); background: var(--primary); color: var(--primary-foreground); }

/* 页面顶部 Hero 强调按钮 hover 提升 */
.hero-ctas .btn-cta {
  box-shadow: 0 8px 24px -12px oklch(0.85 0.16 90 / 0.7);
}
.hero-ctas .btn-cta:hover {
  box-shadow: 0 14px 32px -12px oklch(0.85 0.16 90 / 0.85);
}

/* 移动端 tap 高亮去除（更专业） */
* { -webkit-tap-highlight-color: transparent; }

/* 标题文字选择优化：粘性 */
h1, h2, h3, h4 { text-wrap: balance; }

/* hero 视觉微调：底部弱渐变过渡 */
.hero { background: var(--primary-deep); }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, oklch(0.22 0.07 180 / 0.4));
  pointer-events: none;
}

/* 案例行：左缩进与色块已通过 .case-row::before 实现；补充：metrics 数值加粗更明显 */
.case-metric .v { font-size: 1.55rem; font-weight: 900; letter-spacing: -0.02em; }
.case-metric:nth-child(2) .v { color: oklch(0.5 0.12 175); }

/* 服务流程小项 dt 加左侧序号圆点 */
.process-row .p-item {
  position: relative;
  padding-left: 1.4rem;
}
.process-row .p-item::before {
  content: "▸";
  position: absolute;
  left: 0.1rem;
  top: 0.92rem;
  color: var(--accent-teal);
  font-size: 0.9rem;
  font-weight: 700;
}
.process-row dt { padding-left: 0; }

/* 步骤卡片（method 页）的 step-n 数字加 emoji 装饰 */
.summit-card .step-n {
  font-feature-settings: "tnum";
  letter-spacing: 0.16em;
}

/* FAQ 选项中的列表项留适当间距 */
.faq-a ul, .faq-a ol { padding-left: 1.5rem; margin: 0.6rem 0 1rem; }
.faq-a ul li, .faq-a ol li { margin: 0.35rem 0; }

/* 排版细节：避免孤行 */
p { orphans: 3; widows: 3; }

/* 列表行 hover 时显示右侧箭头 */
.list-row::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.list-row:hover::after { opacity: 1; transform: translateY(-50%) translateX(4px); }
.list-row { position: relative; }

/* 证书卡 hover 加深 + 提升 */
.cert-card {
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px -10px oklch(0.36 0.07 165 / 0.18);
  border-color: var(--primary);
}

/* 客户反馈卡图片左上角 logo 浮层 */
.feedback-card .f-img {
  position: relative;
}
.feedback-card .f-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(1 0 0 / 0.18), transparent 60%);
  pointer-events: none;
}

/* 表单卡片微动效 */
.contact-card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 64px -24px oklch(0.1 0.05 180 / 0.6);
}

/* 移动端分页适配 */
@media (max-width: 640px) {
  .pagination { gap: 0.35rem; }
  .pagination .pager-edge { font-size: 0.85rem; padding: 0 0.7rem; height: 2.2rem; }
  .pagination .pager-num { min-width: 2.2rem; height: 2.2rem; font-size: 0.85rem; }
  .pagination .pager-gap { width: 1rem; }
}

@media (max-width: 900px) {
  .paper-reader { padding-top: 2.5rem; }
  .paper-layout { display: block; }
  .paper-nav {
    position: static;
    max-height: none;
    overflow: visible;
    margin-bottom: 1.5rem;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .paper-nav ol {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scroll-snap-type: x proximity;
  }
  .paper-nav li {
    flex: 0 0 min(16rem, 82vw);
    scroll-snap-align: start;
  }
  .paper-nav a {
    min-height: 4.1rem;
    border: 1px solid var(--rule);
  }
}

@media (max-width: 640px) {
  .paper-reader { padding-bottom: 4rem; }
  .paper-toolbar {
    display: grid;
    align-items: start;
  }
  .paper-count { justify-self: start; }
  .paper-pagination { justify-content: flex-start; }
  .article-content .article-table-wrap table { min-width: 34rem; }
}

/* 标题颜色渐变（首页 H1 第二行） */
.hero h1 .hl { color: var(--cta); }

/* 关键 CTA 在桌面更醒目 */
@media (min-width: 1024px) {
  .btn-cta.btn-lg { font-size: 1.02rem; padding-inline: 2.4rem; }
}

/* 强调色文本细节：副标题颜色更柔和 */
.hero-sub strong { font-weight: 700; }
.hero-sub strong + strong { color: var(--cta); }

/* 表单状态：成功后强调 */
.form-status.ok { border-left: 3px solid var(--primary); }

/* 详情页顶部返回链接增加左侧图标 */
.article a[href*="news.html"]::before {
  content: "← ";
  font-weight: 700;
}

/* 详情页正文标题层级清晰 */
.article-content h2 { margin: 2em 0 0.7em; padding-top: 0.6em; border-top: 1px solid oklch(0.94 0.005 200); font-size: clamp(1.4rem, 2.4vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; scroll-margin-top: calc(var(--header-h) + 12px); }
.article-content h2:first-child { border-top: 0; padding-top: 0; }
.article-content h3 { margin: 1.6em 0 0.5em; color: var(--primary); font-size: 1.1rem; font-weight: 700; }

/* 文章正文段落、列表与排版（之前缺失导致"样式裸"） */
.article-content p { margin: 1.1em 0; line-height: 1.85; }
.article-content p:first-child { margin-top: 0; }
.article-content strong { font-weight: 700; color: oklch(0.15 0.04 165); }
.article-content em { font-style: normal; color: oklch(0.35 0.02 200); border-bottom: 1px dotted var(--accent-teal); padding-bottom: 1px; }
.article-content code { background: var(--muted); padding: 0.12em 0.45em; border-radius: 4px; font-size: 0.88em; font-family: ui-monospace, monospace; color: oklch(0.2 0.05 165); border: 1px solid oklch(0.92 0.005 200); }
.article-content ul, .article-content ol { padding-left: 1.6rem; margin: 1em 0; }
.article-content ul li, .article-content ol li { margin: 0.5em 0; padding-left: 0.3em; line-height: 1.75; }
.article-content ul li::marker, .article-content ol li::marker { color: var(--primary); font-weight: 700; }
.article-content blockquote { border-left: 3px solid var(--accent-teal); background: var(--accent-teal-soft); padding: 1em 1.2em; margin: 1.4em 0; border-radius: 0 8px 8px 0; color: oklch(0.3 0.05 180); }
.article-content hr { border: 0; height: 1px; background: var(--rule); margin: 2.5em 0; }
.article-content h1 { font-size: clamp(1.5rem, 2.6vw, 1.85rem); margin: 2em 0 0.6em; font-weight: 800; }

/* footer 列标题间距 */
.footer-col h4 { letter-spacing: 0.14em; }

/* 所有页面加一种微妙的可访问性聚焦提示 */
[tabindex]:focus-visible, a:focus-visible, button:focus-visible {
  outline-offset: 4px;
}

/* 最终：动效一致性 */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* GEO / services page refresh */
.method-container,
.services-flow-container {
  max-width: 70rem;
}

#method .section-head {
  margin-bottom: 1.7rem;
}

.method-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0 2rem;
}

.method-overview-item {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent-teal);
  border-radius: var(--radius-inner);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.84), oklch(0.965 0.012 75 / 0.72)),
    var(--paper);
  padding: 1rem 1rem 1.05rem;
  min-height: 8.2rem;
}

.method-overview-item span,
.panel-kicker,
.service-flow-intro span {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-teal);
  text-transform: uppercase;
}

.method-overview-item strong {
  display: block;
  margin-top: 0.38rem;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.method-overview-item p {
  margin-top: 0.55rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.65;
}

.steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.summit-card {
  display: flex;
  min-height: 8.8rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.9), oklch(0.965 0.009 180 / 0.78)),
    var(--paper);
  padding: 1rem;
  box-shadow: 0 10px 26px oklch(0.18 0.02 200 / 0.04);
}

.summit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--accent-teal);
  opacity: 0.8;
}

.summit-card:hover {
  background:
    linear-gradient(180deg, oklch(0.96 0.035 175), oklch(0.985 0.004 180)),
    var(--paper);
  box-shadow: var(--shadow-card-hover);
}

.summit-card.summit {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--primary-deep), var(--primary)),
    var(--primary);
  border-color: oklch(0.45 0.08 165);
  box-shadow: 0 16px 38px oklch(0.28 0.08 165 / 0.18);
}

.summit-card.summit::before {
  background: var(--cta);
}

.summit-card .step-n {
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}

.summit-card h3 {
  display: grid;
  gap: 0.35rem;
  align-items: start;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.summit-card .step-deco {
  font-size: 0.86rem;
  line-height: 1.45;
}

.deliver-panel {
  margin-top: 3.8rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--rule);
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.deliver-head {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: 0.8rem 1.5rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.deliver-head h3 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.deliver-head p {
  grid-column: 2;
  max-width: 46rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.deliver-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}

.deliver-table {
  min-width: 820px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.deliver-table thead th {
  background: linear-gradient(180deg, var(--cream-soft), oklch(0.975 0.012 75));
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.deliver-table tbody td {
  background: oklch(1 0 0 / 0.58);
}

.deliver-table tbody tr:hover td {
  background: var(--primary-soft);
}

.deliver-table .d-name {
  color: var(--primary);
  letter-spacing: 0;
}

.services-flow-container {
  max-width: 72rem;
}

.service-flow-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.service-flow-intro a {
  display: block;
  min-height: 9rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-inner);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.92), oklch(0.965 0.006 180 / 0.82)),
    var(--paper);
  padding: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-flow-intro a:hover {
  transform: translateY(-2px);
  border-color: oklch(0.7 0.08 175);
  background: var(--accent-teal-soft);
}

.service-flow-intro strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.service-flow-intro p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.65;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 3.15rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-teal), var(--rule), var(--primary));
  opacity: 0.5;
}

.process-row {
  position: relative;
  z-index: 1;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 1.1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, oklch(1 0 0 / 0.9), oklch(0.975 0.004 180 / 0.82)),
    var(--paper);
  padding: 1.15rem 1.25rem 1.25rem;
  box-shadow: 0 12px 30px oklch(0.18 0.02 200 / 0.045);
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.process-row:hover {
  border-color: oklch(0.72 0.08 175);
  box-shadow: var(--shadow-card-hover);
}

.process-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.process-row .p-n {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  place-items: center;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: var(--radius-inner);
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 24px oklch(0.28 0.08 165 / 0.18);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0;
}

.process-row h3 {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.process-row h3::after {
  content: "";
  flex: 1;
  min-width: 2rem;
  height: 1px;
  background: var(--rule);
}

.process-row dl {
  display: grid;
  gap: 0;
}

.process-row .p-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding: 0.9rem 0 0.95rem 1.05rem;
}

.process-row .p-item:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.process-row .p-item::before {
  content: "";
  position: absolute;
  top: 1.45rem;
  left: 0.05rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--accent-teal);
}

.process-row .p-item:first-child::before {
  top: 0.75rem;
}

.process-row dt {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.55;
}

.process-row dd {
  max-width: none;
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.78;
}

.steps-grid.reveal-stagger > *,
.process-list.reveal-stagger > * {
  transition-delay: 0ms !important;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.2vw, 1.75rem);
  max-width: 58rem;
  margin-inline: auto;
  align-items: stretch;
}

.about-contact-grid .service-card {
  min-height: 14rem;
}

.local-grid {
  overflow: clip;
}

@supports not (overflow: clip) {
  .local-grid { overflow: hidden; }
}

@media (max-width: 980px) {
  .method-overview,
  .service-flow-intro {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summit-card.summit {
    grid-column: span 2;
  }

  .deliver-head {
    grid-template-columns: 1fr;
  }

  .deliver-head p {
    grid-column: auto;
  }

  .process-list::before {
    display: none;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .process-row .p-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  .method-container,
  .services-flow-container {
    max-width: calc(100vw - 1.25rem);
  }

  .method-overview-item,
  .service-flow-intro a,
  .summit-card,
  .process-row {
    border-radius: var(--radius-inner);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .summit-card.summit {
    grid-column: span 1;
  }

  .summit-card {
    min-height: 7.8rem;
  }

  .deliver-panel {
    margin-top: 2.6rem;
    padding-top: 1.8rem;
  }

  .deliver-table {
    min-width: 720px;
  }

  .deliver-table thead th,
  .deliver-table tbody td {
    padding: 0.85rem;
  }

  .process-row {
    padding: 1rem;
  }

  .process-row .p-n {
    width: 3.2rem;
    height: 3.2rem;
  }

  .process-row h3 {
    align-items: flex-start;
    font-size: 1.18rem;
  }

  .process-row h3::after {
    display: none;
  }

  .about-contact-grid {
    grid-template-columns: 1fr;
    max-width: 52rem;
  }

  .about-contact-grid .service-card {
    min-height: auto;
  }
}
/* ============================================================
   福建首页 2026 · 独立视觉与动效
   ============================================================ */
.fj-home {
  --fj-ink: #071712;
  --fj-deep: #08241b;
  --fj-green: #18b77a;
  --fj-mint: #4ce5ad;
  --fj-lime: #d8ff72;
  --fj-cream: #f3f2e9;
  --fj-line: rgba(7, 23, 18, .13);
  overflow: clip;
  color: var(--fj-ink);
  background: #f8f8f3;
}

.fj-hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: clamp(8.5rem, 14vh, 11.5rem) 0 7rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f7fff9;
  background:
    radial-gradient(circle at 12% 85%, rgba(23, 175, 116, .18), transparent 26rem),
    linear-gradient(135deg, #06130f 0%, #092a20 58%, #073226 100%);
}

.fj-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 90%);
}

.fj-hero-glow {
  position: absolute;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.fj-glow-a {
  right: -13rem;
  top: 6rem;
  background: radial-gradient(circle, rgba(63, 231, 170, .22), transparent 67%);
  animation: fj-breathe 6s ease-in-out infinite;
}

.fj-glow-b {
  left: 32%;
  bottom: -24rem;
  background: radial-gradient(circle, rgba(216, 255, 114, .12), transparent 66%);
  animation: fj-breathe 8s 1.2s ease-in-out infinite reverse;
}

.fj-coastline {
  position: absolute;
  width: min(43vw, 36rem);
  right: -4rem;
  top: 3rem;
  color: rgba(91, 241, 184, .12);
  transform: rotate(-8deg);
  pointer-events: none;
}

.fj-coastline circle {
  fill: rgba(216, 255, 114, .42);
  filter: drop-shadow(0 0 8px rgba(216,255,114,.55));
  animation: fj-node-pulse 2.6s ease-in-out infinite;
}

.fj-coastline circle:nth-of-type(2) { animation-delay: .4s; }
.fj-coastline circle:nth-of-type(3) { animation-delay: .8s; }
.fj-coastline circle:nth-of-type(4) { animation-delay: 1.2s; }
.fj-coastline circle:nth-of-type(5) { animation-delay: 1.6s; }

.fj-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(31rem, .88fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.fj-live-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .9rem;
  margin-bottom: 1.65rem;
  border: 1px solid rgba(141, 255, 211, .22);
  border-radius: 999px;
  color: rgba(235, 255, 246, .72);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
  font-size: .79rem;
  letter-spacing: .08em;
}

.fj-live-dot {
  width: .48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fj-lime);
  box-shadow: 0 0 0 .25rem rgba(216,255,114,.12), 0 0 14px rgba(216,255,114,.8);
  animation: fj-live 1.5s ease-out infinite;
}

.fj-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #f8fffa;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(3.15rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.065em;
}

.fj-hero h1 span {
  display: block;
  margin-top: .14em;
  color: transparent;
  background: linear-gradient(100deg, #d8ff72 0%, #70efbd 45%, #fff 98%);
  background-clip: text;
  -webkit-background-clip: text;
}

.fj-hero-lead {
  max-width: 42rem;
  margin: 1.8rem 0 0;
  color: rgba(236, 255, 245, .66);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.9;
}

.fj-hero-actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fj-hero .btn-cta,
.fj-contact .btn-cta {
  color: #0a2118;
  background: var(--fj-lime);
  border-color: var(--fj-lime);
  box-shadow: 0 15px 40px rgba(179, 232, 69, .16);
}

.fj-hero .btn-cta:hover,
.fj-contact .btn-cta:hover {
  background: #e4ff96;
  border-color: #e4ff96;
}

.fj-text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(245, 255, 249, .74);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.fj-text-link span { transition: transform .25s ease; }
.fj-text-link:hover span { transform: translate(.2rem, -.2rem); }
.fj-text-link.dark { color: #0a3d2d; }

.fj-hero-trust {
  margin-top: 2rem;
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  color: rgba(237,255,246,.54);
  font-size: .79rem;
}

.fj-hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.fj-hero-trust i {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fj-lime);
  background: rgba(216,255,114,.11);
  font-style: normal;
  font-size: .65rem;
}

.fj-answer-stage {
  position: relative;
  padding: 1.1rem;
  border: 1px solid rgba(128, 244, 199, .2);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: 0 40px 100px rgba(0,0,0,.36), inset 0 1px rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
}

.fj-answer-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(216,255,114,.22), transparent 30%, rgba(76,229,173,.18));
  opacity: .45;
}

.fj-stage-top,
.fj-stage-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fj-stage-top {
  padding: .35rem .35rem 1rem;
  color: rgba(240,255,248,.6);
  font-size: .71rem;
  letter-spacing: .08em;
}

.fj-stage-brand,
.fj-stage-status { display: flex; align-items: center; gap: .55rem; }
.fj-stage-mark {
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: .5rem;
  color: #062219;
  background: var(--fj-mint);
  font-weight: 900;
}
.fj-stage-status i {
  width: .38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--fj-lime);
  box-shadow: 0 0 8px var(--fj-lime);
}

.fj-query-box,
.fj-answer-box {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(1, 14, 10, .38);
}

.fj-query-box {
  padding: 1.1rem 1.2rem;
  border-radius: 1rem 1rem .35rem .35rem;
}

.fj-query-label,
.fj-answer-label {
  display: block;
  margin-bottom: .55rem;
  color: rgba(228, 255, 242, .42);
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.fj-query-line {
  min-height: 1.75rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #f5fff9;
  font-size: .92rem;
  font-weight: 650;
  transition: opacity .3s ease, transform .3s ease;
}

.fj-query-line.is-changing { opacity: .2; transform: translateY(5px); }
.fj-query-icon { color: var(--fj-lime); font-size: 1.35rem; }
.fj-caret {
  width: 1px;
  height: 1.1em;
  display: inline-block;
  background: var(--fj-lime);
  animation: fj-caret 1s steps(2, end) infinite;
}

.fj-answer-box {
  margin-top: .45rem;
  padding: 1.05rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
  border-radius: .35rem .35rem 1rem 1rem;
  transition: opacity .25s ease;
}

.fj-answer-box.is-thinking { opacity: .45; }
.fj-answer-box p {
  margin: 0;
  color: rgba(236,255,246,.76);
  font-size: .82rem;
  line-height: 1.55;
}

.fj-ai-orb {
  position: relative;
  width: 2.3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.fj-ai-orb span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(76,229,173,.6);
  border-radius: 40% 60% 55% 45%;
  animation: fj-orbit 5s linear infinite;
}
.fj-ai-orb span:nth-child(2) { inset: .25rem; animation-direction: reverse; animation-duration: 4s; }
.fj-ai-orb span:nth-child(3) { inset: .72rem; border-radius: 50%; background: var(--fj-lime); border: 0; box-shadow: 0 0 12px var(--fj-lime); animation: none; }

.fj-signal-map {
  position: relative;
  height: 13rem;
  margin: 1rem .25rem .3rem;
}

.fj-signal-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fj-signal-map path {
  fill: none;
  stroke: rgba(114, 239, 191, .2);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: fj-dash 5s linear infinite;
}

.fj-signal-core,
.fj-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
}

.fj-signal-core {
  width: 6rem;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(216,255,114,.5);
  color: #eaffad;
  background: radial-gradient(circle, rgba(216,255,114,.16), rgba(0,20,14,.76) 68%);
  box-shadow: 0 0 0 1rem rgba(76,229,173,.035), 0 0 2.5rem rgba(76,229,173,.12);
  font-size: .78rem;
  font-weight: 800;
}

.fj-signal-core::after {
  content: "";
  position: absolute;
  inset: -.75rem;
  border: 1px solid rgba(76,229,173,.15);
  border-radius: 50%;
  animation: fj-ring 2.8s ease-out infinite;
}

.fj-node {
  width: 4.1rem;
  height: 2rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(240,255,248,.63);
  background: #0b2c22;
  font-size: .64rem;
}
.fj-node.n1 { left: 2%; top: 10%; }
.fj-node.n2 { right: 1%; top: 9%; }
.fj-node.n3 { left: 1%; bottom: 8%; }
.fj-node.n4 { right: 0; bottom: 9%; }

.fj-stage-foot {
  padding: .85rem .35rem .2rem;
  color: rgba(235,255,245,.48);
  font-size: .7rem;
}
.fj-stage-foot b { color: #fff; font-size: .84rem; }
.fj-stage-foot .fj-up,
.fj-stage-foot .fj-up b { color: var(--fj-lime); }

.fj-scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.4);
  font-size: .56rem;
  letter-spacing: .2em;
  text-decoration: none;
  transform: translateX(-50%);
}
.fj-scroll-cue i {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--fj-lime), transparent);
  animation: fj-scroll 1.8s ease-in-out infinite;
}

.fj-platform-rail {
  overflow: hidden;
  border-bottom: 1px solid var(--fj-line);
  background: var(--fj-lime);
  color: #0a2118;
}
.fj-platform-track {
  width: max-content;
  padding: .92rem 0;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  animation: fj-marquee 32s linear infinite;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.fj-platform-track i { width: .25rem; aspect-ratio: 1; border-radius: 50%; background: rgba(7,23,18,.4); }

.fj-home .section { padding-block: clamp(5.5rem, 9vw, 9rem); }
.fj-section-intro {
  margin-bottom: clamp(2.6rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.08fr .7fr;
  gap: 4rem;
  align-items: end;
}
.fj-section-no {
  display: block;
  margin-bottom: 1rem;
  color: #178a61;
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.fj-section-intro h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--fj-ink);
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 1.13;
  letter-spacing: -.045em;
}
.fj-section-intro > p,
.fj-news-intro > p {
  max-width: 34rem;
  margin: 0;
  color: #5f6c66;
  font-size: .98rem;
  line-height: 1.9;
}
.fj-section-intro.light h2 { color: #f5fff9; }
.fj-section-intro.light > p { color: rgba(235,255,245,.56); }
.fj-section-intro.light .fj-section-no { color: var(--fj-lime); }

.fj-opportunity { background: #f7f7f1; }
.fj-compare-grid {
  display: grid;
  grid-template-columns: 1fr 9rem 1fr;
  align-items: center;
}
.fj-compare-card {
  min-height: 25rem;
  padding: clamp(1.7rem, 3vw, 3rem);
  border: 1px solid var(--fj-line);
  border-radius: 1.5rem;
  background: #fff;
}
.fj-compare-card.new {
  color: #ecfff6;
  border-color: rgba(69, 229, 170, .2);
  background: var(--fj-deep);
  box-shadow: 0 30px 70px rgba(7, 47, 35, .14);
}
.fj-card-kicker {
  margin-bottom: 4.2rem;
  color: #799087;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fj-compare-card.new .fj-card-kicker { color: var(--fj-mint); }
.fj-compare-card h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -.035em;
}
.fj-compare-card > p { margin: 1.5rem 0 0; color: #6c7872; line-height: 1.8; font-size: .91rem; }
.fj-compare-card.new > p { color: rgba(236,255,246,.55); }
.fj-serp-mock {
  display: grid;
  gap: .65rem;
  padding: 1.2rem;
  border: 1px solid #e4e8e5;
  border-radius: .85rem;
  background: #f7f8f7;
}
.fj-serp-mock span { height: .6rem; border-radius: 999px; background: #dfe5e2; }
.fj-serp-mock span:nth-child(1) { width: 72%; background: #b9c6c0; }
.fj-serp-mock span:nth-child(2) { width: 94%; }
.fj-serp-mock span:nth-child(3) { width: 86%; }
.fj-serp-mock span:nth-child(4) { width: 52%; }
.fj-ai-mock {
  min-height: 7rem;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(112,239,189,.16);
  border-radius: .85rem;
  background: rgba(255,255,255,.055);
}
.fj-ai-mock p { margin: 0; color: rgba(240,255,248,.78); font-size: .9rem; line-height: 1.75; }
.fj-mini-orb {
  flex: 0 0 auto;
  width: 1.55rem;
  aspect-ratio: 1;
  border: 1px solid var(--fj-mint);
  border-radius: 45% 55% 52% 48%;
  box-shadow: inset 0 0 10px rgba(76,229,173,.3), 0 0 14px rgba(76,229,173,.18);
  animation: fj-orbit 4s linear infinite;
}
.fj-compare-arrow {
  display: grid;
  justify-items: center;
  gap: .8rem;
  color: #1b7355;
  font-size: 1.8rem;
}
.fj-compare-arrow span {
  color: #809089;
  font-size: .62rem;
  letter-spacing: .1em;
  writing-mode: vertical-rl;
}
.fj-metric-strip {
  margin-top: 4.5rem;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fj-line);
}
.fj-metric-strip div { padding: 1rem 2rem; border-right: 1px solid var(--fj-line); }
.fj-metric-strip div:first-child { padding-left: 0; }
.fj-metric-strip div:last-child { border-right: 0; }
.fj-metric-strip strong { display: block; color: #0c8d62; font-size: clamp(2rem,4vw,3.7rem); line-height: 1; }
.fj-metric-strip span { display: block; margin-top: .7rem; color: #69756f; font-size: .78rem; }

.fj-industries {
  color: #effff7;
  background:
    radial-gradient(circle at 90% 20%, rgba(76,229,173,.11), transparent 28rem),
    #071b14;
}
.fj-industry-lab {
  display: grid;
  grid-template-columns: 14rem 1fr;
  border: 1px solid rgba(125, 241, 196, .16);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.fj-industry-tabs {
  padding: .8rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(125, 241, 196, .13);
  background: rgba(0,0,0,.12);
}
.fj-industry-tabs button {
  min-height: 4.3rem;
  padding: 0 1.2rem;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(237,255,246,.48);
  background: transparent;
  font: inherit;
  font-size: .86rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: .25s ease;
}
.fj-industry-tabs button::before { content: "○"; margin-right: .75rem; color: rgba(76,229,173,.4); }
.fj-industry-tabs button:hover { color: #fff; }
.fj-industry-tabs button.is-active {
  color: #0a261c;
  border-radius: .75rem;
  background: var(--fj-lime);
}
.fj-industry-tabs button.is-active::before { content: "●"; color: #0a7552; }
.fj-industry-panel {
  min-height: 26rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 4rem;
  align-items: center;
  transition: opacity .18s ease, transform .18s ease;
}
.fj-industry-panel.is-switching { opacity: .3; transform: translateY(5px); }
.fj-panel-city { color: var(--fj-mint); font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.fj-industry-panel h3 { max-width: 16ch; margin: .9rem 0 1.2rem; font-size: clamp(1.8rem,3.3vw,3.1rem); line-height: 1.2; letter-spacing: -.04em; }
.fj-industry-panel p { max-width: 37rem; margin: 0; color: rgba(235,255,245,.55); line-height: 1.9; }
.fj-industry-panel a { display: inline-flex; margin-top: 1.8rem; color: var(--fj-lime); font-size: .86rem; font-weight: 800; text-decoration: none; }
.fj-intent-cloud { position: relative; min-height: 16rem; display: grid; place-items: center; }
.fj-intent-cloud::before {
  content: "AI";
  position: absolute;
  width: 7rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,255,114,.45);
  border-radius: 50%;
  color: var(--fj-lime);
  background: rgba(216,255,114,.06);
  box-shadow: 0 0 3rem rgba(76,229,173,.09);
  font-size: 1.35rem;
  font-weight: 900;
}
.fj-intent-cloud span {
  position: absolute;
  padding: .65rem .9rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(240,255,248,.65);
  background: #0e2b22;
  font-size: .68rem;
  white-space: nowrap;
}
.fj-intent-cloud span:nth-child(1) { left: 0; top: 8%; }
.fj-intent-cloud span:nth-child(2) { right: 0; top: 20%; }
.fj-intent-cloud span:nth-child(3) { left: 2%; bottom: 15%; }
.fj-intent-cloud span:nth-child(4) { right: 3%; bottom: 4%; }

.fj-method { background: var(--fj-cream); }
.fj-method-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--fj-line);
  border-left: 1px solid var(--fj-line);
}
.fj-method-track article {
  min-height: 12.5rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--fj-line);
  border-bottom: 1px solid var(--fj-line);
  background: rgba(255,255,255,.2);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.fj-method-track article:hover { z-index: 2; color: #effff7; background: var(--fj-deep); transform: translateY(-.35rem); box-shadow: 0 20px 45px rgba(5,37,27,.12); }
.fj-method-track b { color: #18956a; font-size: .7rem; letter-spacing: .1em; }
.fj-method-track span { margin-top: auto; font-size: 1.55rem; font-weight: 900; }
.fj-method-track small { margin-top: .3rem; color: #718079; font-size: .68rem; }
.fj-method-track article:hover b,
.fj-method-track article:hover small { color: var(--fj-mint); }
.fj-method-action { margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.fj-method-action p { display: flex; gap: .55rem; align-items: center; color: #7b8882; font-size: .75rem; }
.fj-method-action p span { color: #194c3b; font-weight: 800; }

.fj-delivery { background: #fff; }
.fj-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.fj-service-grid article {
  min-height: 15rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  border: 1px solid var(--fj-line);
  border-radius: 1.2rem;
  background: #fbfbf7;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fj-service-grid article:hover { transform: translateY(-.35rem); border-color: rgba(24,183,122,.45); box-shadow: 0 20px 45px rgba(11,65,47,.08); }
.fj-service-icon { width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: .8rem; color: #0b6e4e; background: #e4f6ec; font-size: 1.3rem; }
.fj-service-grid small { color: #1aa171; font-size: .63rem; font-weight: 850; letter-spacing: .13em; }
.fj-service-grid h3 { margin: .6rem 0 .8rem; font-size: 1.35rem; }
.fj-service-grid p { max-width: 34rem; margin: 0; color: #68746e; font-size: .88rem; line-height: 1.8; }

.fj-proof {
  color: #effff7;
  background: #082219;
}
.fj-proof-layout { display: grid; grid-template-columns: 1.15fr .75fr; gap: 4rem; align-items: center; }
.fj-proof-chart { padding: 1.5rem; border: 1px solid rgba(125,241,196,.15); border-radius: 1.4rem; background: rgba(255,255,255,.035); }
.fj-chart-head { padding: .4rem .4rem 1.4rem; display: flex; justify-content: space-between; color: rgba(238,255,246,.58); font-size: .76rem; }
.fj-chart-head b { color: var(--fj-lime); }
.fj-chart-area { position: relative; height: 19rem; border-radius: .9rem; overflow: hidden; background: linear-gradient(rgba(255,255,255,.018),rgba(255,255,255,.04)); }
.fj-chart-area svg { position: absolute; inset: 2rem 1rem 3rem; width: calc(100% - 2rem); height: calc(100% - 5rem); overflow: visible; }
.fj-chart-gridline { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.fj-chart-fill { fill: url(#fjChartFill); }
.fj-chart-line { fill: none; stroke: var(--fj-mint); stroke-width: 3; vector-effect: non-scaling-stroke; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(76,229,173,.35)); stroke-dasharray: 1100; animation: fj-chart-draw 3s ease both; }
.fj-chart-area > span { position: absolute; color: rgba(235,255,245,.44); font-size: .61rem; transform: translate(-50%, -50%); }
.fj-chart-area > span::before { content: ""; display: block; width: .45rem; aspect-ratio: 1; margin: 0 auto .35rem; border: 2px solid #082219; border-radius: 50%; background: var(--fj-lime); box-shadow: 0 0 0 2px var(--fj-lime); }
.fj-proof-list { display: grid; gap: .7rem; }
.fj-proof-list article { padding: 1.4rem 0; display: grid; grid-template-columns: 2.7rem 1fr; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.fj-proof-list strong { color: var(--fj-mint); font-size: .68rem; }
.fj-proof-list h3 { margin: 0 0 .5rem; font-size: 1rem; }
.fj-proof-list p { margin: 0; color: rgba(235,255,245,.5); font-size: .8rem; line-height: 1.7; }

.fj-news { background: #f5f5ef; }
.fj-news-intro { display: grid; gap: 1.3rem; justify-items: start; }
.fj-cms-status { margin: -2rem 0 1.2rem; color: #718079; font-size: .72rem; }
.fj-cms-status::before { content: ""; width: .42rem; aspect-ratio: 1; display: inline-block; margin-right: .5rem; border-radius: 50%; background: #1eb27e; box-shadow: 0 0 0 .22rem rgba(30,178,126,.1); }
.fj-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fj-news-card > a {
  min-height: 24rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fj-line);
  border-radius: 1.15rem;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.fj-news-card > a:hover { color: #f3fff8; background: var(--fj-deep); transform: translateY(-.4rem); box-shadow: 0 22px 50px rgba(8,55,39,.12); }
.fj-news-card-top { display: flex; justify-content: space-between; align-items: center; }
.fj-news-card-top span { color: #17956a; font-size: 1.4rem; font-weight: 900; }
.fj-news-card-top time { color: #87918d; font-size: .65rem; }
.fj-news-card small { margin-top: 3.3rem; color: #19966a; font-size: .64rem; font-weight: 800; letter-spacing: .08em; }
.fj-news-card h3 { margin: .8rem 0 1rem; font-size: 1.27rem; line-height: 1.45; }
.fj-news-card p { margin: 0; color: #69756f; font-size: .81rem; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fj-news-card b { margin-top: auto; color: #0c7653; font-size: .76rem; }
.fj-news-card > a:hover p { color: rgba(237,255,246,.52); }
.fj-news-card > a:hover b,
.fj-news-card > a:hover small { color: var(--fj-lime); }
.fj-news-skeleton { min-height: 24rem; border-radius: 1.15rem; background: linear-gradient(100deg,#e7e9e4 25%,#f5f6f2 42%,#e7e9e4 62%); background-size: 300% 100%; animation: fj-skeleton 1.6s linear infinite; }
.fj-news-empty { grid-column: 1 / -1; padding: 4rem 2rem; border: 1px dashed #cbd3ce; border-radius: 1rem; text-align: center; }
.fj-news-empty strong { display: block; font-size: 1.2rem; }
.fj-news-empty p { max-width: 42rem; margin: .8rem auto 0; color: #718079; line-height: 1.7; }

.fj-faq { background: #fff; }
.fj-faq-layout { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(3rem,8vw,8rem); align-items: start; }
.fj-faq-layout h2 { margin: 0; font-size: clamp(2.2rem,4vw,3.9rem); line-height: 1.18; letter-spacing: -.045em; }
.fj-faq-layout > div:first-child > p { margin: 1.3rem 0 2rem; color: #66726c; line-height: 1.8; }
.fj-faq .faq-wrap { max-width: none; }

.fj-contact {
  position: relative;
  overflow: hidden;
  color: #effff6;
  background: #071a13;
}
.fj-contact::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 68px 68px; mask-image: radial-gradient(circle at 30% 50%,#000,transparent 70%); }
.fj-contact-ring { position: absolute; border: 1px solid rgba(76,229,173,.11); border-radius: 50%; }
.fj-contact-ring.ring-a { width: 36rem; aspect-ratio: 1; left: -17rem; top: -9rem; }
.fj-contact-ring.ring-b { width: 52rem; aspect-ratio: 1; left: -25rem; top: -17rem; }
.fj-contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr minmax(25rem,.72fr); gap: clamp(4rem,10vw,10rem); align-items: center; }
.fj-contact-kicker { color: var(--fj-lime); font-size: .67rem; font-weight: 850; letter-spacing: .15em; }
.fj-contact-copy h2 { margin: 1rem 0 1.4rem; font-size: clamp(2.8rem,5vw,5.2rem); line-height: 1.08; letter-spacing: -.055em; }
.fj-contact-copy > p { max-width: 38rem; margin: 0; color: rgba(237,255,246,.56); line-height: 1.9; }
.fj-contact-benefits { margin-top: 2rem; display: grid; gap: .85rem; }
.fj-contact-benefits span { display: flex; align-items: center; gap: .8rem; color: rgba(240,255,248,.72); font-size: .83rem; }
.fj-contact-benefits i { color: var(--fj-mint); font-style: normal; font-size: .63rem; }
.fj-hotline { margin-top: 2.5rem; display: inline-flex; flex-direction: column; color: #fff; text-decoration: none; }
.fj-hotline small { color: rgba(237,255,246,.42); font-size: .65rem; letter-spacing: .1em; }
.fj-hotline strong { margin-top: .25rem; color: var(--fj-lime); font-size: 1.65rem; letter-spacing: .03em; }
.fj-lead-card { padding: clamp(1.6rem,3vw,2.5rem); border: 1px solid rgba(255,255,255,.1); border-radius: 1.4rem; color: var(--fj-ink); background: #f8f8f2; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.fj-form-head { margin-bottom: 1.5rem; padding-bottom: 1.2rem; display: flex; justify-content: space-between; border-bottom: 1px solid #dfe4df; }
.fj-form-head span { color: #16875f; font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.fj-form-head h3 { margin: .35rem 0 0; font-size: 1.35rem; }
.fj-form-head > b { color: #dce4df; font-size: 2.7rem; line-height: 1; }
.fj-form-row { margin-bottom: 1rem; }
.fj-form-row label { display: block; margin-bottom: .45rem; color: #415049; font-size: .72rem; font-weight: 750; }
.fj-form-row em { color: #0c9c6b; font-style: normal; }
.fj-form-row input,
.fj-form-row textarea {
  width: 100%;
  padding: .82rem .9rem;
  border: 1px solid #d8ded9;
  border-radius: .65rem;
  outline: 0;
  color: #10251d;
  background: #fff;
  font: inherit;
  font-size: .86rem;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.fj-form-row input:focus,
.fj-form-row textarea:focus { border-color: #20a674; box-shadow: 0 0 0 3px rgba(32,166,116,.1); }
.fj-lead-card .btn-submit { width: 100%; margin-top: .3rem; justify-content: center; }
.fj-form-note { margin: .9rem 0 0; color: #88928d; font-size: .64rem; line-height: 1.6; text-align: center; }

.news-runtime-row { position: relative; }
.news-region-tag { color: #16875f !important; font-weight: 750; }
.news-read { display: inline-flex; margin-top: 1rem; color: #0d7d59; font-size: .75rem; font-weight: 800; }
.article-runtime-wrap { max-width: 62rem; margin-inline: auto; border: 0 !important; }
.runtime-article { padding: clamp(1.4rem,4vw,3.5rem); border: 1px solid var(--fj-line); border-radius: 1.2rem; background: #fff; }
.article-back { color: #117b58; font-size: .78rem; font-weight: 800; text-decoration: none; }
.article-meta { margin-top: 2.5rem; display: flex; gap: 1rem; color: #829089; font-size: .7rem; }
.runtime-article h1 { max-width: 21ch; margin: .9rem 0 1.2rem; font-size: clamp(2rem,4.5vw,3.8rem); line-height: 1.22; letter-spacing: -.04em; }
.article-lead { padding-left: 1rem; border-left: 3px solid #24ad7b; color: #5f6d66; font-size: 1.02rem; line-height: 1.8; }
.runtime-article .article-content { margin-top: 2.5rem; color: #293c34; line-height: 1.9; }
.runtime-article .article-content img { max-width: 100%; height: auto; border-radius: .8rem; }
.runtime-article .article-content h2 { margin-top: 2.5rem; font-size: 1.6rem; }
.runtime-article .article-content h3 { margin-top: 2rem; font-size: 1.25rem; }
.runtime-article .article-content a { color: #0b835b; }

@keyframes fj-breathe { 0%,100%{transform:scale(.92);opacity:.7} 50%{transform:scale(1.08);opacity:1} }
@keyframes fj-node-pulse { 0%,100%{opacity:.35} 50%{opacity:1} }
@keyframes fj-live { 0%{box-shadow:0 0 0 0 rgba(216,255,114,.4)} 100%{box-shadow:0 0 0 .5rem rgba(216,255,114,0)} }
@keyframes fj-caret { 50%{opacity:0} }
@keyframes fj-orbit { to{transform:rotate(360deg)} }
@keyframes fj-dash { to{stroke-dashoffset:-60} }
@keyframes fj-ring { 0%{transform:scale(.8);opacity:0} 35%{opacity:1} 100%{transform:scale(1.2);opacity:0} }
@keyframes fj-scroll { 0%,100%{transform:scaleY(.4);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} }
@keyframes fj-marquee { to{transform:translateX(-50%)} }
@keyframes fj-chart-draw { from{stroke-dashoffset:1100} to{stroke-dashoffset:0} }
@keyframes fj-skeleton { to{background-position:-300% 0} }

@media (max-width: 1100px) {
  .fj-hero-layout { grid-template-columns: 1fr 27rem; gap: 2.5rem; }
  .fj-hero h1 { font-size: clamp(3rem,6.5vw,5rem); }
  .fj-answer-stage { transform: none; }
  .fj-method-track { grid-template-columns: repeat(5,1fr); }
  .fj-method-track article { min-height: 10.5rem; }
  .fj-proof-layout { grid-template-columns: 1fr; }
  .fj-proof-list { grid-template-columns: repeat(3,1fr); }
  .fj-proof-list article { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .fj-hero { min-height: auto; padding-top: 8.4rem; }
  .fj-hero-layout { grid-template-columns: 1fr; }
  .fj-hero-copy { text-align: center; }
  .fj-live-pill { margin-inline: auto; }
  .fj-hero h1 { max-width: 15ch; margin-inline: auto; }
  .fj-hero-lead { margin-inline: auto; }
  .fj-hero-actions,
  .fj-hero-trust { justify-content: center; }
  .fj-answer-stage { width: min(100%,34rem); margin: 1rem auto 0; text-align: left; }
  .fj-coastline { width: 38rem; right: -17rem; opacity: .65; }
  .fj-scroll-cue { display: none; }
  .fj-section-intro { grid-template-columns: 1fr; gap: 1.3rem; }
  .fj-section-intro h2 { max-width: 19ch; }
  .fj-compare-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fj-compare-arrow { display: flex; justify-content: center; }
  .fj-compare-arrow span { writing-mode: initial; }
  .fj-compare-card { min-height: auto; }
  .fj-card-kicker { margin-bottom: 2rem; }
  .fj-metric-strip { grid-template-columns: repeat(2,1fr); }
  .fj-metric-strip div:nth-child(2) { border-right: 0; }
  .fj-industry-lab { grid-template-columns: 1fr; }
  .fj-industry-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(125,241,196,.13); }
  .fj-industry-tabs button { min-width: 8rem; text-align: center; }
  .fj-industry-panel { grid-template-columns: 1fr; gap: 2rem; }
  .fj-intent-cloud { min-height: 13rem; }
  .fj-method-track { grid-template-columns: repeat(2,1fr); }
  .fj-method-action { align-items: flex-start; flex-direction: column; }
  .fj-service-grid { grid-template-columns: 1fr; }
  .fj-proof-list { grid-template-columns: 1fr; }
  .fj-news-grid { grid-template-columns: 1fr; }
  .fj-news-card > a,
  .fj-news-skeleton { min-height: 18rem; }
  .fj-news-card small { margin-top: 2rem; }
  .fj-faq-layout,
  .fj-contact-layout { grid-template-columns: 1fr; }
  .fj-contact-layout { gap: 3rem; }
  .fj-lead-card { max-width: 36rem; width: 100%; }
}

@media (max-width: 560px) {
  .fj-hero { padding: 7.5rem 0 4.5rem; }
  .fj-hero-grid { background-size: 46px 46px; }
  .fj-live-pill { font-size: .65rem; }
  .fj-hero h1 { font-size: clamp(2.55rem,13vw,4rem); }
  .fj-hero-lead { font-size: .92rem; line-height: 1.75; }
  .fj-hero-actions { gap: 1rem; }
  .fj-hero-actions .btn { width: 100%; justify-content: center; }
  .fj-hero-trust { display: grid; grid-template-columns: 1fr 1fr; text-align: left; }
  .fj-answer-stage { padding: .75rem; border-radius: 1.1rem; }
  .fj-signal-map { height: 11rem; }
  .fj-node { width: 3.6rem; font-size: .56rem; }
  .fj-signal-core { width: 5rem; }
  .fj-stage-foot { gap: 1rem; }
  .fj-home .section { padding-block: 4.7rem; }
  .fj-section-intro { margin-bottom: 2.4rem; }
  .fj-section-intro h2,
  .fj-faq-layout h2 { font-size: clamp(2rem,10vw,3rem); }
  .fj-metric-strip div { padding: 1rem .7rem; }
  .fj-industry-panel { padding: 1.5rem; }
  .fj-industry-tabs button { padding: 0 .8rem; font-size: .72rem; }
  .fj-intent-cloud span { font-size: .57rem; padding: .55rem .65rem; }
  .fj-method-track article { min-height: 9rem; padding: 1rem; }
  .fj-method-action p { flex-wrap: wrap; }
  .fj-service-grid article { grid-template-columns: 1fr; }
  .fj-chart-area { height: 14rem; }
  .fj-contact-copy h2 { font-size: clamp(2.4rem,12vw,3.8rem); }
  .fj-lead-card { padding: 1.2rem; }
  .runtime-article { border-radius: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fj-home *,
  .fj-home *::before,
  .fj-home *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   福建首页 V2 · 紧凑首屏与实时答案路径
   ============================================================ */
.fj-v2-hero {
  position: relative;
  height: clamp(620px, calc(100svh - 68px), 780px);
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #092219;
  background:
    radial-gradient(circle at 78% 38%, rgba(75, 214, 160, .2), transparent 24rem),
    linear-gradient(115deg, #f5f2e8 0%, #f8f7f0 56%, #e8f1e8 100%);
}

.fj-v2-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(8, 51, 37, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 51, 37, .075) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 100%);
}

.fj-v2-orbit {
  position: absolute;
  border: 1px solid rgba(17, 137, 94, .12);
  border-radius: 50%;
  pointer-events: none;
}
.fj-v2-orbit::before,
.fj-v2-orbit::after {
  content: "";
  position: absolute;
  width: .55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #53d6a5;
  box-shadow: 0 0 0 .4rem rgba(83, 214, 165, .1), 0 0 1.5rem rgba(83, 214, 165, .5);
}
.fj-v2-orbit.orbit-a { width: 35rem; aspect-ratio: 1; right: -17rem; top: -15rem; animation: fj-v2-spin 28s linear infinite; }
.fj-v2-orbit.orbit-a::before { left: 2.7rem; bottom: 6.4rem; }
.fj-v2-orbit.orbit-a::after { right: 4.8rem; bottom: 4rem; }
.fj-v2-orbit.orbit-b { width: 18rem; aspect-ratio: 1; left: -10rem; bottom: -10rem; animation: fj-v2-spin 22s linear infinite reverse; }
.fj-v2-orbit.orbit-b::before { right: 1.15rem; top: 5rem; }
.fj-v2-orbit.orbit-b::after { display: none; }

.fj-v2-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(29rem, .82fr);
  gap: clamp(3.2rem, 7vw, 7rem);
  align-items: center;
}

.fj-v2-eyebrow {
  width: fit-content;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #477066;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.fj-v2-eyebrow .fj-live-dot { background: #0e9e69; box-shadow: 0 0 0 .25rem rgba(14, 158, 105, .1); }

.fj-v2-copy h1 {
  max-width: 10.5ch;
  margin: 0;
  color: #081d16;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(3.35rem, 4.65vw, 5.25rem);
  font-weight: 950;
  line-height: 1.03;
  letter-spacing: -.065em;
}
.fj-v2-copy h1 em {
  position: relative;
  z-index: 1;
  color: #08734f;
  font-style: normal;
  white-space: nowrap;
}
.fj-v2-copy h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: .26em;
  left: -.04em;
  right: -.06em;
  bottom: .07em;
  border-radius: 999px;
  background: #cfff64;
  transform: rotate(-1deg);
}
.fj-v2-copy > p {
  max-width: 37rem;
  margin: 1.35rem 0 0;
  color: #536b62;
  font-size: clamp(.94rem, 1.16vw, 1.08rem);
  line-height: 1.85;
}
.fj-v2-actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.45rem;
  flex-wrap: wrap;
}
.fj-v2-primary {
  color: #effff7;
  border-color: #0b4b37;
  background: #0b4b37;
  box-shadow: 0 15px 35px rgba(9, 74, 53, .16);
}
.fj-v2-primary:hover { color: #08251b; border-color: #cfff64; background: #cfff64; transform: translateY(-2px); }
.fj-v2-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: #144f3b;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.fj-v2-link span { transition: transform .2s ease; }
.fj-v2-link:hover span { transform: translate(.18rem, -.18rem); }
.fj-v2-facts {
  margin-top: 1.65rem;
  display: flex;
  gap: 1.3rem;
  color: #6f7d77;
  font-size: .72rem;
}
.fj-v2-facts span { display: flex; align-items: baseline; gap: .32rem; }
.fj-v2-facts b { color: #0a6547; font-size: 1rem; }

.fj-v2-console {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 31rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(99, 232, 180, .22);
  border-radius: 1.5rem;
  color: #effff7;
  background:
    radial-gradient(circle at 88% 3%, rgba(59, 217, 157, .16), transparent 14rem),
    #08271d;
  box-shadow: 0 35px 75px rgba(22, 74, 55, .22), inset 0 1px rgba(255,255,255,.08);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .16s ease, box-shadow .3s ease;
}
.fj-v2-console:hover { box-shadow: 0 42px 90px rgba(22, 74, 55, .28), inset 0 1px rgba(255,255,255,.09); }
.fj-v2-console::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
  pointer-events: none;
}
.fj-v2-scan {
  position: absolute;
  z-index: 1;
  height: 7rem;
  left: 0;
  right: 0;
  top: -8rem;
  opacity: .55;
  background: linear-gradient(to bottom, transparent, rgba(109, 249, 194, .1), rgba(109, 249, 194, .28), transparent);
  animation: fj-v2-scan 5.4s linear infinite;
  pointer-events: none;
}
.fj-v2-console > *:not(.fj-v2-scan) { position: relative; z-index: 2; }
.fj-v2-console-head,
.fj-v2-console-head > div,
.fj-v2-console-meta,
.fj-v2-question > div,
.fj-v2-city-line {
  display: flex;
  align-items: center;
}
.fj-v2-console-head { justify-content: space-between; padding: .2rem .2rem .9rem; }
.fj-v2-console-head > div { gap: .55rem; }
.fj-v2-console-head b { color: rgba(239, 255, 247, .7); font-size: .72rem; letter-spacing: .08em; }
.fj-v2-logo { width: 1.75rem; aspect-ratio: 1; display: grid; place-items: center; border-radius: .5rem; color: #07231a; background: #cfff64; font-size: .8rem; font-weight: 950; }
.fj-v2-online { display: flex; align-items: center; gap: .4rem; color: rgba(232,255,244,.48); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.fj-v2-online i { width: .38rem; aspect-ratio: 1; border-radius: 50%; background: #cfff64; box-shadow: 0 0 .7rem #cfff64; animation: fj-live 1.5s ease-out infinite; }
.fj-v2-console-meta {
  justify-content: space-between;
  padding: .72rem .85rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  color: rgba(235,255,245,.42);
  background: rgba(255,255,255,.025);
  font-size: .62rem;
}
.fj-v2-console-meta > span:first-child { color: #80e8bd; font-weight: 750; }
.fj-v2-console-meta b { color: rgba(239,255,247,.78); }
.fj-v2-question {
  margin-top: .65rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .9rem;
  background: #061c15;
}
.fj-v2-question small,
.fj-v2-answer small,
.fj-v2-result small { display: block; color: rgba(232,255,244,.38); font-size: .57rem; letter-spacing: .11em; }
.fj-v2-question > div { min-height: 2rem; gap: .75rem; margin-top: .52rem; }
.fj-v2-question > div > span { width: 1.55rem; aspect-ratio: 1; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #09261c; background: #cfff64; font-size: .66rem; font-weight: 950; }
.fj-v2-question strong { color: #f4fff9; font-size: .88rem; line-height: 1.5; transition: opacity .25s ease, transform .25s ease; }
.fj-v2-pipeline { margin: .65rem 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.fj-v2-pipeline span {
  position: relative;
  padding: .7rem .58rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .65rem;
  color: rgba(235,255,245,.34);
  background: rgba(255,255,255,.018);
  font-size: .61rem;
  text-align: center;
  transition: .25s ease;
}
.fj-v2-pipeline span::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: 0; background: #cfff64; transition: right 1s linear; }
.fj-v2-pipeline i { margin-right: .25rem; color: rgba(127,234,190,.45); font-style: normal; font-size: .52rem; }
.fj-v2-pipeline span.is-active { color: #effff7; border-color: rgba(207,255,100,.32); background: rgba(207,255,100,.07); }
.fj-v2-pipeline span.is-active::after { right: 0; }
.fj-v2-pipeline span.is-done { color: #79dcb5; }
.fj-v2-answer {
  min-height: 5.1rem;
  padding: .85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
  border: 1px solid rgba(99,232,180,.13);
  border-radius: .9rem;
  background: linear-gradient(110deg, rgba(55,191,139,.1), rgba(255,255,255,.015));
}
.fj-v2-answer p { margin: .42rem 0 0; color: rgba(239,255,247,.7); font-size: .74rem; line-height: 1.5; transition: opacity .25s ease, transform .25s ease; }
.fj-v2-answer-orb { position: relative; width: 2.5rem; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(91,238,181,.45); border-radius: 50%; animation: fj-v2-orb 3.5s ease-in-out infinite; }
.fj-v2-answer-orb::before,
.fj-v2-answer-orb::after { content: ""; position: absolute; border: 1px solid rgba(91,238,181,.2); border-radius: 44% 56% 62% 38%; animation: fj-v2-spin 5s linear infinite; }
.fj-v2-answer-orb::before { inset: .24rem; }
.fj-v2-answer-orb::after { inset: -.3rem; animation-direction: reverse; }
.fj-v2-answer-orb i { width: .55rem; aspect-ratio: 1; border-radius: 50%; background: #cfff64; box-shadow: 0 0 1rem #cfff64; }
.fj-v2-result { margin-top: .65rem; display: grid; grid-template-columns: 1.25fr .7fr .8fr; border: 1px solid rgba(255,255,255,.08); border-radius: .9rem; background: rgba(0,0,0,.12); transition: opacity .25s ease, transform .25s ease; }
.fj-v2-result > div { padding: .83rem .75rem; border-right: 1px solid rgba(255,255,255,.08); }
.fj-v2-result > div:last-child { border-right: 0; }
.fj-v2-result strong { display: block; margin-top: .38rem; color: #f5fff9; font-size: .8rem; }
.fj-v2-result strong.up { color: #cfff64; }
.fj-v2-result em { color: inherit; font-size: .56rem; font-style: normal; font-weight: 600; }
.fj-v2-city-line { justify-content: space-between; padding: .9rem .35rem .1rem; color: rgba(233,255,244,.31); font-size: .55rem; }
.fj-v2-city-line i { width: .23rem; aspect-ratio: 1; border-radius: 50%; background: rgba(116,224,181,.4); }
.fj-v2-console.is-changing .fj-v2-question strong,
.fj-v2-console.is-changing .fj-v2-answer p,
.fj-v2-console.is-changing .fj-v2-result { opacity: .08; transform: translateY(5px); }

.fj-v2-question-rail {
  overflow: hidden;
  border-top: 1px solid #abccbb;
  border-bottom: 1px solid #abccbb;
  color: #eafff4;
  background: #0b4b37;
}
.fj-v2-rail-track {
  width: max-content;
  padding: .9rem 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  animation: fj-v2-rail 34s linear infinite;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .02em;
}
.fj-v2-rail-track span::before { content: "AI 问答 · "; color: #cfff64; font-size: .56rem; letter-spacing: .08em; }
.fj-v2-rail-track i { width: .28rem; aspect-ratio: 1; border-radius: 50%; background: #cfff64; }

.fj-home .section { padding-block: clamp(5rem, 8vw, 8rem); }
.fj-delivery .fj-section-intro h2 { max-width: 19ch; font-size: clamp(2.25rem, 4vw, 4.05rem); }

@keyframes fj-v2-spin { to { transform: rotate(360deg); } }
@keyframes fj-v2-scan { 0% { transform: translateY(0); } 78%, 100% { transform: translateY(43rem); } }
@keyframes fj-v2-orb { 0%,100% { transform: scale(.92); } 50% { transform: scale(1.06); } }
@keyframes fj-v2-rail { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  .fj-v2-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(26rem, .82fr); gap: 2.4rem; }
  .fj-v2-copy h1 { font-size: clamp(3rem, 5.6vw, 4.35rem); }
  .fj-v2-console { min-height: 29rem; }
}

@media (max-width: 860px) {
  .fj-v2-hero { height: auto; min-height: calc(100svh - 64px); padding: 5rem 0; }
  .fj-v2-hero-layout { grid-template-columns: 1fr; gap: 3.2rem; }
  .fj-v2-copy { text-align: center; }
  .fj-v2-eyebrow { margin-inline: auto; }
  .fj-v2-copy h1,
  .fj-v2-copy > p { margin-inline: auto; }
  .fj-v2-actions,
  .fj-v2-facts { justify-content: center; }
  .fj-v2-console { width: min(100%, 34rem); margin-inline: auto; text-align: left; }
  .fj-v2-grid { mask-image: linear-gradient(to bottom, transparent, #000 36%, #000 100%); }
}

@media (max-width: 560px) {
  .fj-v2-hero { padding: 3.7rem 0 3.2rem; }
  .fj-v2-grid { background-size: 48px 48px; }
  .fj-v2-copy h1 { font-size: clamp(2.65rem, 13vw, 3.55rem); }
  .fj-v2-copy > p { margin-top: 1.1rem; font-size: .88rem; line-height: 1.75; }
  .fj-v2-actions { margin-top: 1.45rem; gap: 1rem; }
  .fj-v2-actions .btn { width: 100%; justify-content: center; }
  .fj-v2-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .fj-v2-facts span { display: block; padding: .65rem .25rem; border: 1px solid rgba(8, 76, 53, .1); border-radius: .6rem; background: rgba(255,255,255,.3); }
  .fj-v2-facts b { display: block; margin-bottom: .15rem; }
  .fj-v2-console { min-height: 0; padding: .75rem; border-radius: 1rem; }
  .fj-v2-console-meta { padding: .62rem .7rem; }
  .fj-v2-question { padding: .82rem; }
  .fj-v2-question strong { font-size: .78rem; }
  .fj-v2-pipeline { gap: .3rem; }
  .fj-v2-pipeline span { padding: .62rem .28rem; font-size: .54rem; }
  .fj-v2-pipeline i { display: none; }
  .fj-v2-answer { min-height: 4.7rem; padding: .75rem; gap: .65rem; }
  .fj-v2-answer-orb { width: 2rem; }
  .fj-v2-answer p { font-size: .67rem; }
  .fj-v2-result > div { padding: .7rem .48rem; }
  .fj-v2-result strong { font-size: .7rem; }
  .fj-v2-city-line { display: none; }
  .fj-v2-rail-track { padding: .78rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fj-v2-console { transform: none; }
}

/* ============================================================
   福建首页 V3 · 开放式品牌信号场（无右侧卡片）
   ============================================================ */
.fj-v3-hero {
  position: relative;
  height: calc(100svh - 69px);
  min-height: 650px;
  overflow: hidden;
  color: #092219;
  background:
    linear-gradient(90deg, rgba(247,245,235,.98) 0%, rgba(247,246,238,.92) 43%, rgba(230,245,236,.82) 100%),
    #f5f3e9;
}
.fj-v3-grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(9, 70, 49, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 70, 49, .07) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 72% 48%, #000, transparent 72%);
}
.fj-v3-wash {
  position: absolute;
  width: 62vw;
  aspect-ratio: 1;
  right: -23vw;
  top: -34vw;
  border: 1px solid rgba(13, 126, 84, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(44, 191, 135, .025), 0 0 0 17vw rgba(44, 191, 135, .018);
}
.fj-v3-hero-layout {
  position: relative;
  z-index: 2;
  height: calc(100% - 50px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(32rem, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.fj-v3-eyebrow {
  width: fit-content;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: #477066;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.fj-v3-eyebrow .fj-live-dot { background: #0e9e69; box-shadow: 0 0 0 .25rem rgba(14,158,105,.1); }
.fj-v3-copy h1 {
  max-width: 10ch;
  margin: 0;
  color: #081d16;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(3.35rem, 4.6vw, 5.2rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -.068em;
}
.fj-v3-copy h1 em {
  display: inline-block;
  color: #08734f;
  font-style: normal;
  background: linear-gradient(90deg, #08734f 0%, #16a06d 70%, #5dba4d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fj-v3-nowrap { white-space: nowrap; }
.fj-v3-copy h1 em::after {
  content: "";
  height: .08em;
  display: block;
  margin-top: .06em;
  border-radius: 999px;
  background: linear-gradient(90deg, #cfff64, transparent 88%);
  transform: skewX(-22deg);
}
.fj-v3-copy > p {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: #566f65;
  font-size: clamp(.93rem, 1.13vw, 1.07rem);
  line-height: 1.85;
}
.fj-v3-actions { margin-top: 1.75rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.fj-v3-primary { color: #effff7; border-color: #0b4b37; background: #0b4b37; box-shadow: 0 15px 35px rgba(9,74,53,.16); }
.fj-v3-primary:hover { color: #08251b; border-color: #cfff64; background: #cfff64; transform: translateY(-2px); }
.fj-v3-link { display: inline-flex; gap: .45rem; align-items: center; color: #144f3b; font-size: .88rem; font-weight: 800; text-decoration: none; }
.fj-v3-link span { transition: transform .2s ease; }
.fj-v3-link:hover span { transform: translate(.18rem,-.18rem); }
.fj-v3-facts { margin-top: 1.6rem; display: flex; gap: 1.55rem; }
.fj-v3-facts span { min-width: 6.6rem; padding-right: 1.3rem; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: .42rem; border-right: 1px solid rgba(8,66,46,.14); }
.fj-v3-facts span:last-child { border-right: 0; }
.fj-v3-facts b { color: #0a6547; font-size: 1.05rem; }
.fj-v3-facts small { max-width: 4.8rem; color: #75827d; font-size: .62rem; line-height: 1.3; }

.fj-v3-signal-field {
  --field-x: 0px;
  --field-y: 0px;
  position: relative;
  width: min(42vw, calc(100svh - 150px), 620px);
  min-width: 31rem;
  aspect-ratio: 1;
  justify-self: end;
  transform: translate(var(--field-x), var(--field-y));
  transition: transform .25s ease;
}
.fj-v3-signal-field::before {
  content: "";
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  left: 24%;
  top: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,213,160,.17), transparent 68%);
  filter: blur(7px);
  animation: fj-v3-breathe 4.5s ease-in-out infinite;
}
.fj-v3-radar { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fj-v3-radar .ring { stroke: rgba(12,105,73,.18); stroke-width: 1; vector-effect: non-scaling-stroke; }
.fj-v3-radar .ring-1 { stroke-dasharray: 4 7; animation: fj-v3-dash 16s linear infinite; }
.fj-v3-radar .ring-2 { stroke-dasharray: 2 8; animation: fj-v3-dash 23s linear infinite reverse; }
.fj-v3-radar .ring-3 { stroke: rgba(12,105,73,.11); stroke-dasharray: 14 10; animation: fj-v3-dash 30s linear infinite; }
.fj-v3-radar .arc { stroke: #62c69c; stroke-width: 2; stroke-linecap: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px rgba(45,190,132,.28)); }
.fj-v3-radar .arc-2 { stroke: #c2ed72; }
.fj-v3-radar .signal-line { stroke: rgba(10,119,81,.2); stroke-width: 1; stroke-dasharray: 5 8; vector-effect: non-scaling-stroke; animation: fj-v3-signal 2.8s linear infinite; }
.fj-v3-radar .l2 { animation-delay: -.6s; }
.fj-v3-radar .l3 { animation-delay: -1.2s; }
.fj-v3-radar .l4 { animation-delay: -1.8s; }
.fj-v3-sweep { fill: rgba(46,198,140,.065); stroke: none; opacity: .55; transform-origin: 310px 310px; animation: fj-v3-sweep 6s linear infinite; }
.fj-v3-core {
  position: absolute;
  width: 9.2rem;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(207,255,100,.72);
  border-radius: 50%;
  color: #effff7;
  background: radial-gradient(circle at 36% 28%, #176e50, #082d21 62%, #061e17);
  box-shadow: 0 0 0 1rem rgba(49,187,133,.04), 0 0 3rem rgba(29,158,109,.18);
  transform: translate(-50%,-50%);
}
.fj-v3-core::before,
.fj-v3-core::after { content: ""; position: absolute; border: 1px solid rgba(61,203,148,.23); border-radius: 50%; animation: fj-v3-ring 3s ease-out infinite; }
.fj-v3-core::before { inset: -.8rem; }
.fj-v3-core::after { inset: -1.7rem; animation-delay: 1.1s; }
.fj-v3-core i { width: .55rem; aspect-ratio: 1; margin-bottom: .5rem; border-radius: 50%; background: #cfff64; box-shadow: 0 0 1rem #cfff64; }
.fj-v3-core span { font-size: .9rem; font-weight: 900; }
.fj-v3-core small { margin-top: .28rem; color: rgba(239,255,247,.38); font-size: .48rem; letter-spacing: .1em; }
.fj-v3-node { position: absolute; display: flex; align-items: center; gap: .55rem; color: #5e796f; font-size: .64rem; font-weight: 780; transition: color .28s ease, transform .28s ease; }
.fj-v3-node i { width: .52rem; aspect-ratio: 1; border: 1px solid #58b991; border-radius: 50%; background: #eef8ef; transition: .28s ease; }
.fj-v3-node.is-active { color: #075a3e; transform: scale(1.08); }
.fj-v3-node.is-active i { border-color: #0f9c68; background: #cfff64; box-shadow: 0 0 0 .42rem rgba(95,202,134,.11), 0 0 1.2rem rgba(69,193,139,.45); }
.fj-v3-node.node-1 { left: 7%; top: 22%; }
.fj-v3-node.node-2 { right: 4%; top: 29%; }
.fj-v3-node.node-3 { right: 8%; bottom: 24%; }
.fj-v3-node.node-4 { left: 7%; bottom: 27%; }
.fj-v3-query-signal { position: absolute; width: 19rem; left: 15%; top: 2%; padding-left: .85rem; border-left: 2px solid #91cf50; transition: opacity .25s ease, transform .25s ease; }
.fj-v3-query-signal small { display: block; margin-bottom: .42rem; color: #4a7c68; font-size: .54rem; letter-spacing: .08em; }
.fj-v3-query-signal small b { color: #0a7954; }
.fj-v3-query-signal strong { display: block; color: #173e31; font-size: .8rem; line-height: 1.5; }
.fj-v3-answer-signal { position: absolute; width: 18rem; left: 10%; bottom: 4%; padding-left: .85rem; border-left: 2px solid #46bb8d; transition: opacity .25s ease, transform .25s ease; }
.fj-v3-answer-signal small { color: #0f9464; font-size: .5rem; font-weight: 850; letter-spacing: .12em; }
.fj-v3-answer-signal p { margin: .38rem 0 0; color: #5e756c; font-size: .66rem; line-height: 1.55; }
.fj-v3-score { position: absolute; right: 3%; top: 3%; text-align: right; transition: opacity .25s ease, transform .25s ease; }
.fj-v3-score small { display: block; color: #55756a; font-size: .56rem; letter-spacing: .08em; }
.fj-v3-score strong { color: #08734f; font-size: clamp(2.8rem, 4.1vw, 4.6rem); line-height: 1; letter-spacing: -.06em; }
.fj-v3-score em { font-size: .3em; font-style: normal; }
.fj-v3-evidence { position: absolute; right: 5%; bottom: 5%; display: flex; align-items: baseline; gap: .35rem; color: #6c8078; }
.fj-v3-evidence b { color: #0b7753; font-size: 1.65rem; }
.fj-v3-evidence span { font-size: .58rem; }
.fj-v3-signal-field.is-changing .fj-v3-query-signal,
.fj-v3-signal-field.is-changing .fj-v3-answer-signal,
.fj-v3-signal-field.is-changing .fj-v3-score,
.fj-v3-signal-field.is-changing .fj-v3-evidence { opacity: .08; transform: translateY(5px); }

.fj-v3-question-rail { position: absolute; z-index: 4; height: 50px; left: 0; right: 0; bottom: 0; overflow: hidden; border-top: 1px solid rgba(207,255,100,.28); color: #eafff4; background: #0b4b37; }
.fj-v3-rail-track { width: max-content; height: 100%; display: flex; align-items: center; gap: 1.6rem; animation: fj-v2-rail 34s linear infinite; font-size: .72rem; font-weight: 760; letter-spacing: .02em; }
.fj-v3-rail-track span::before { content: "AI 问答 · "; color: #cfff64; font-size: .56rem; letter-spacing: .08em; }
.fj-v3-rail-track i { width: .28rem; aspect-ratio: 1; border-radius: 50%; background: #cfff64; }

@keyframes fj-v3-dash { to { stroke-dashoffset: -100; } }
@keyframes fj-v3-signal { to { stroke-dashoffset: -52; } }
@keyframes fj-v3-sweep { to { transform: rotate(360deg); } }
@keyframes fj-v3-breathe { 0%,100% { transform: scale(.88); opacity: .55; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes fj-v3-ring { 0% { transform: scale(.82); opacity: 0; } 30% { opacity: .8; } 100% { transform: scale(1.18); opacity: 0; } }

@media (max-width: 1100px) {
  .fj-v3-hero-layout { grid-template-columns: minmax(0, .92fr) minmax(27rem, 1.08fr); gap: 1.5rem; }
  .fj-v3-copy h1 { font-size: clamp(3.1rem, 5.5vw, 4.5rem); }
  .fj-v3-signal-field { min-width: 27rem; }
  .fj-v3-query-signal { left: 10%; }
}

@media (max-width: 860px) {
  .fj-v3-hero { height: auto; min-height: calc(100svh - 64px); padding: 4.7rem 0 7rem; }
  .fj-v3-hero-layout { height: auto; grid-template-columns: 1fr; gap: 3.2rem; }
  .fj-v3-copy { text-align: center; }
  .fj-v3-eyebrow,
  .fj-v3-copy h1,
  .fj-v3-copy > p { margin-inline: auto; }
  .fj-v3-actions,
  .fj-v3-facts { justify-content: center; }
  .fj-v3-signal-field { width: min(100%, 34rem); min-width: 0; justify-self: center; }
}

@media (max-width: 560px) {
  .fj-v3-hero { padding: 3.6rem 0 6.2rem; }
  .fj-v3-grid { background-size: 48px 48px; }
  .fj-v3-copy h1 { font-size: clamp(2.65rem, 13vw, 3.5rem); }
  .fj-v3-nowrap { white-space: normal; }
  .fj-v3-copy > p { margin-top: 1.05rem; font-size: .88rem; line-height: 1.75; }
  .fj-v3-actions { margin-top: 1.4rem; gap: 1rem; }
  .fj-v3-actions .btn { width: 100%; justify-content: center; }
  .fj-v3-facts { gap: .3rem; }
  .fj-v3-facts span { min-width: 0; padding: .55rem; display: block; border: 1px solid rgba(8,66,46,.1); border-radius: .6rem; background: rgba(255,255,255,.28); }
  .fj-v3-facts b,
  .fj-v3-facts small { display: block; margin-inline: auto; }
  .fj-v3-facts small { margin-top: .15rem; }
  .fj-v3-signal-field { width: 108%; margin-left: -4%; }
  .fj-v3-core { width: 6.4rem; }
  .fj-v3-core span { font-size: .7rem; }
  .fj-v3-core small { font-size: .4rem; }
  .fj-v3-node { font-size: .53rem; }
  .fj-v3-query-signal { width: 12rem; left: 11%; top: 0; }
  .fj-v3-query-signal strong { font-size: .65rem; }
  .fj-v3-answer-signal { width: 11.5rem; left: 8%; bottom: 0; }
  .fj-v3-answer-signal p { font-size: .55rem; }
  .fj-v3-score { right: 4%; top: 1%; }
  .fj-v3-score strong { font-size: 2.65rem; }
  .fj-v3-evidence { right: 5%; bottom: 1%; }
  .fj-v3-evidence b { font-size: 1.25rem; }
  .fj-v3-question-rail { height: 46px; }
  .fj-v3-rail-track { font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fj-v3-signal-field { transform: none; }
}

/* ============================================================
   福建首页正文 V4 · 紧凑滚动节奏与文字分层显现
   ============================================================ */
.fj-home > .section { padding-block: clamp(3.8rem, 4.25vw, 4.5rem); }
.fj-home .fj-section-intro {
  margin-bottom: clamp(1.9rem, 2.5vw, 2.4rem);
  gap: clamp(2.2rem, 3.7vw, 3.7rem);
}
.fj-home .fj-section-intro h2 { font-size: clamp(2.2rem, 3.45vw, 3.65rem); }
.fj-home .fj-section-intro > p { line-height: 1.75; }

.fj-home .fj-compare-card { min-height: 19rem; padding: clamp(1.5rem, 2.1vw, 2.1rem); }
.fj-home .fj-card-kicker { margin-bottom: 2rem; }
.fj-home .fj-compare-card > p { margin-top: 1.2rem; }
.fj-home .fj-metric-strip { margin-top: 2.2rem; padding-top: 1.2rem; }
.fj-home .fj-metric-strip div { padding-block: .7rem; }

.fj-home .fj-industry-panel { min-height: 19.5rem; padding: clamp(1.7rem, 3vw, 2.8rem); gap: 2.6rem; }
.fj-home .fj-industry-tabs button { min-height: 3.85rem; }
.fj-home .fj-intent-cloud { min-height: 13.5rem; }
.fj-home .fj-industry-panel h3 { font-size: clamp(1.75rem, 2.75vw, 2.7rem); }
.fj-home .fj-industry-panel p { line-height: 1.75; }

.fj-home .fj-service-grid article { min-height: 10.8rem; padding: clamp(1.4rem, 2vw, 1.9rem); }
.fj-home .fj-service-grid p { line-height: 1.7; }
.fj-home .fj-delivery .text-center { margin-top: 1.4rem !important; }

.fj-home .fj-proof-layout { gap: 3rem; }
.fj-home .fj-chart-area { height: 14rem; }
.fj-home .fj-proof-list article { padding: 1.05rem 0; }
.fj-home .fj-faq-layout { gap: clamp(3rem, 5.5vw, 5.5rem); }
.fj-home .fj-faq-layout h2 { font-size: clamp(2.2rem, 3.6vw, 3.55rem); }
.fj-home .fj-faq-layout > div:first-child > p { margin: 1rem 0 1.5rem; }

.fj-home .fj-contact-layout { gap: clamp(3.5rem, 6vw, 6rem); }
.fj-home .fj-contact-copy h2 { font-size: clamp(2.7rem, 4.25vw, 4.6rem); }
.fj-home .fj-contact-copy > p { line-height: 1.75; }
.fj-home .fj-contact-benefits { margin-top: 1.5rem; gap: .7rem; }
.fj-home .fj-hotline { margin-top: 1.8rem; }
.fj-home .fj-lead-card { padding: clamp(1.45rem, 2.2vw, 2.1rem); }
.fj-home .fj-form-head { margin-bottom: 1.15rem; padding-bottom: .9rem; }
.fj-home .fj-form-row { margin-bottom: .78rem; }

.js .fj-home .fj-copy-heading,
.js .fj-home .fj-copy-reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(1.4rem);
  transition:
    opacity .7s cubic-bezier(.22,.7,.18,1),
    filter .7s cubic-bezier(.22,.7,.18,1),
    transform .8s cubic-bezier(.22,.7,.18,1);
  transition-delay: var(--copy-delay, 0ms);
  will-change: opacity, filter, transform;
}
.js .fj-home .fj-copy-heading {
  transform: translateY(1.8rem);
  transition:
    opacity .72s cubic-bezier(.22,.7,.18,1),
    filter .75s ease,
    transform .9s cubic-bezier(.22,.7,.18,1);
}
.js .fj-home .fj-copy-heading.is-copy-visible,
.js .fj-home .fj-copy-reveal.is-copy-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (min-width: 861px) {
  .fj-home > .fj-opportunity { padding-block: 3.4rem; }
  .fj-home .fj-opportunity .fj-compare-card { min-height: 18rem; }
  .fj-home .fj-opportunity .fj-metric-strip { margin-top: 1.8rem; }
}

@media (max-width: 860px) {
  .fj-home > .section { padding-block: 4rem; }
  .fj-home .fj-section-intro { margin-bottom: 2.2rem; gap: 1.1rem; }
  .fj-home .fj-compare-card { min-height: auto; }
  .fj-home .fj-industry-panel { min-height: 0; gap: 1.7rem; }
  .fj-home .fj-intent-cloud { min-height: 11.5rem; }
  .fj-home .fj-proof-layout { gap: 2rem; }
  .fj-home .fj-chart-area { height: 14rem; }
}

@media (max-width: 560px) {
  .fj-home > .section { padding-block: 3.6rem; }
  .fj-home .fj-section-intro { margin-bottom: 1.9rem; }
  .fj-home .fj-compare-card { padding: 1.35rem; }
  .fj-home .fj-metric-strip { margin-top: 2.2rem; }
  .fj-home .fj-industry-panel { padding: 1.25rem; }
  .fj-home .fj-service-grid article { min-height: 0; padding: 1.3rem; }
  .fj-home .fj-contact-layout { gap: 2.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .js .fj-home .fj-copy-heading,
  .js .fj-home .fj-copy-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   福建内页系统 V1 · 海峡信号 / 七页七种叙事
   ============================================================ */
.fji-page {
  --fji-deep: #062f23;
  --fji-green: #0d7854;
  --fji-mint: #55dbad;
  --fji-lime: #ceff62;
  --fji-paper: #f3f1e8;
  --fji-ink: #071e17;
  --fji-rule: rgba(7, 54, 39, .14);
  overflow: clip;
  color: var(--fji-ink);
}
.fji-kicker { display: inline-flex; align-items: center; gap: .65rem; color: inherit; font-size: .68rem; font-weight: 850; letter-spacing: .15em; }
.fji-kicker i { width: .45rem; aspect-ratio: 1; border-radius: 50%; background: var(--fji-lime); box-shadow: 0 0 0 .3rem rgba(206,255,98,.1); }
.fji-section-code { display: block; margin-bottom: .8rem; color: #17885f; font-size: .65rem; font-weight: 850; letter-spacing: .14em; }
.fji-hero { position: relative; min-height: 31rem; display: grid; align-items: center; overflow: hidden; }
.fji-hero-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(124,223,183,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(124,223,183,.1) 1px,transparent 1px); background-size: 58px 58px; }
.fji-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.96fr) minmax(24rem,1.04fr); gap: clamp(3rem,7vw,7rem); align-items: center; padding-block: 4.5rem; }
.fji-hero-copy h1 { margin: 1.25rem 0 1.2rem; font-size: clamp(3rem,5.1vw,5rem); line-height: .98; letter-spacing: -.065em; }
.fji-hero-copy h1 span { color: var(--fji-lime); }
.fji-hero-copy > p { max-width: 38rem; margin: 0; color: rgba(239,255,247,.65); font-size: 1rem; line-height: 1.9; }
.fji-hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.7rem; }
.fji-hero-tags span { padding: .46rem .75rem; border: 1px solid rgba(215,255,233,.18); border-radius: 999px; color: rgba(239,255,247,.68); font-size: .68rem; }

/* 方法论：一条十节点的证据路径 */
.fji-method-hero { color: #f2fff8; background: radial-gradient(circle at 82% 32%,rgba(44,178,127,.2),transparent 30%),var(--fji-deep); }
.fji-method-map { position: relative; min-height: 21rem; padding: 1.6rem 1.8rem; border-block: 1px solid rgba(206,255,98,.23); }
.fji-method-map::before { content: ""; position: absolute; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg,transparent,var(--fji-mint),var(--fji-lime),transparent); opacity: .45; }
.fji-method-map-head,.fji-method-map-foot { display: flex; justify-content: space-between; align-items: center; color: rgba(236,255,245,.38); font-size: .58rem; letter-spacing: .12em; }
.fji-method-map-head b { color: var(--fji-lime); font-size: .62rem; }
.fji-method-map ol { position: relative; display: grid; grid-template-columns: repeat(5,1fr); grid-template-rows: repeat(2,1fr); gap: 1.4rem .8rem; height: 15rem; margin: 1.2rem 0; padding: 0; list-style: none; }
.fji-method-map li { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .42rem; color: rgba(239,255,247,.72); font-size: .74rem; }
.fji-method-map li:nth-child(n+6) { grid-row: 2; }
.fji-method-map li:nth-child(6) { grid-column: 5; }.fji-method-map li:nth-child(7) { grid-column: 4; }.fji-method-map li:nth-child(8) { grid-column: 3; }.fji-method-map li:nth-child(9) { grid-column: 2; }.fji-method-map li:nth-child(10) { grid-column: 1; }
.fji-method-map li i { display: grid; place-items: center; width: 2.7rem; aspect-ratio: 1; border: 1px solid rgba(89,221,171,.45); border-radius: 50%; color: var(--fji-mint); font-size: .58rem; font-style: normal; font-weight: 800; background: var(--fji-deep); animation: fji-node-breathe 3.4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * .18s); }
.fji-method-map li:nth-child(2) i{animation-delay:.2s}.fji-method-map li:nth-child(3) i{animation-delay:.4s}.fji-method-map li:nth-child(4) i{animation-delay:.6s}.fji-method-map li:nth-child(5) i{animation-delay:.8s}.fji-method-map li:nth-child(6) i{animation-delay:1s}.fji-method-map li:nth-child(7) i{animation-delay:1.2s}.fji-method-map li:nth-child(8) i{animation-delay:1.4s}.fji-method-map li:nth-child(9) i{animation-delay:1.6s}.fji-method-map li:nth-child(10) i{animation-delay:1.8s}
.fji-method-map li:first-child i,.fji-method-map li:last-child i { color: #082e22; border-color: var(--fji-lime); background: var(--fji-lime); }
.fji-method-map-foot em { flex: 1; height: 1px; margin-inline: 1rem; background: rgba(95,218,172,.22); }
.fji-method-page #method { background: #f3f1e8; }
.fji-method-page .section-head { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(2rem,7vw,7rem); align-items: end; max-width: none; }
.fji-method-page .section-head h2 { font-size: clamp(2.8rem,4.5vw,4.7rem); letter-spacing: -.055em; }
.fji-method-page .section-head .lead { margin: 0; }
.fji-method-page .method-overview { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-block: 3rem; padding: 0; background: transparent; border: 0; border-block: 1px solid var(--fji-rule); border-radius: 0; box-shadow: none; }
.fji-method-page .method-overview-item { min-height: 9rem; padding: 1.4rem; border: 0; border-right: 1px solid var(--fji-rule); border-radius: 0; background: transparent; box-shadow: none; }
.fji-method-page .method-overview-item:last-child { border-right: 0; }
.fji-method-page .method-overview-item strong { font-size: 1.35rem; }
.fji-method-page .method-overview-item p { margin-top: .55rem; font-size: .72rem; line-height: 1.7; }
.fji-method-circuit { position: relative; grid-template-columns: repeat(5,1fr); gap: 0; padding: 1px; overflow: hidden; border-radius: 1.1rem; background: var(--fji-deep); }
.fji-method-circuit::after { content: ""; position: absolute; width: 32%; height: 150%; top: -25%; left: -35%; pointer-events: none; background: linear-gradient(90deg,transparent,rgba(206,255,98,.09),transparent); transform: skewX(-15deg); animation: fji-circuit-scan 7s linear infinite; }
.fji-method-circuit .summit-card { min-height: 9.5rem; padding: 1.25rem; border: 0; border-right: 1px solid rgba(223,255,237,.12); border-bottom: 1px solid rgba(223,255,237,.12); border-radius: 0; color: #effff7; background: transparent; box-shadow: none; }
.fji-method-circuit .summit-card:hover { color: var(--fji-deep); background: var(--fji-lime); transform: none; }
.fji-method-circuit .summit-card .step-n { color: var(--fji-mint); font-size: .58rem; }
.fji-method-circuit .summit-card h3 { display: grid; gap: .4rem; align-content: end; min-height: 5.5rem; }
.fji-method-circuit .summit-card .step-name { color: currentColor; font-size: 1.55rem; }
.fji-method-circuit .summit-card .step-deco { color: rgba(235,255,244,.48); font-size: .72rem; }
.fji-method-circuit .summit-card:hover .step-n,.fji-method-circuit .summit-card:hover .step-deco { color: rgba(6,47,35,.62); }
.fji-method-page .deliver-panel { margin-top: 3rem; }

/* 服务：纵向阶段轨道，不使用右侧卡片 */
.fji-services-hero { color: var(--fji-ink); background: linear-gradient(115deg,#f3f1e8 0%,#f3f1e8 55%,#dff1e5 100%); }
.fji-services-hero::before { content: "PROCESS"; position: absolute; right: -2vw; bottom: -5.5rem; color: rgba(6,70,49,.045); font-size: clamp(8rem,18vw,19rem); font-weight: 950; letter-spacing: -.1em; }
.fji-services-hero .fji-kicker { color: #0b7652; }
.fji-services-hero .fji-kicker i { background: #0b9264; box-shadow: none; }
.fji-services-hero .fji-hero-copy h1 span { color: #078057; }
.fji-services-hero .fji-hero-copy > p { color: #60716a; }
.fji-services-hero .fji-hero-tags span { color: #406156; border-color: rgba(6,76,53,.18); background: rgba(255,255,255,.35); }
.fji-phase-rail { position: relative; display: grid; gap: 0; padding-left: 3rem; }
.fji-phase-rail::before { content: ""; position: absolute; left: 1.15rem; top: 1.5rem; bottom: 1.5rem; width: 2px; background: linear-gradient(#0a8159,#6ad5ac,var(--fji-lime)); transform-origin: top; animation: fji-rail-grow 2s cubic-bezier(.22,.7,.18,1) both; }
.fji-phase-rail div { position: relative; display: grid; grid-template-columns: 4rem 1fr; align-items: center; min-height: 4.2rem; border-bottom: 1px solid rgba(6,68,47,.12); }
.fji-phase-rail div::before { content: ""; position: absolute; left: -2.18rem; width: .7rem; aspect-ratio: 1; border: 3px solid #e9f2e8; border-radius: 50%; background: #10885f; animation: fji-node-breathe 2.8s ease-in-out infinite; }
.fji-phase-rail div:nth-child(2)::before{animation-delay:.35s}.fji-phase-rail div:nth-child(3)::before{animation-delay:.7s}.fji-phase-rail div:nth-child(4)::before{animation-delay:1.05s}.fji-phase-rail div:nth-child(5)::before{animation-delay:1.4s;background:#a5cf3c}
.fji-phase-rail b { color: #4f7467; font-family: ui-monospace,monospace; font-size: .66rem; }
.fji-phase-rail span { font-size: 1.1rem; font-weight: 850; }
.fji-phase-rail small { display: inline; margin-left: .75rem; color: #7c928a; font-size: .52rem; letter-spacing: .12em; }
.fji-service-body { padding-block: 4.5rem; }
.fji-service-manifesto { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 4rem; border-block: 1px solid var(--fji-rule); }
.fji-service-manifesto p { display: grid; grid-template-columns: 2.2rem 1fr; gap: .3rem 1rem; min-height: 8rem; margin: 0; padding: 1.5rem; border-right: 1px solid var(--fji-rule); color: #64736d; font-size: .8rem; line-height: 1.7; }
.fji-service-manifesto p:last-child { border-right: 0; }
.fji-service-manifesto span { grid-row: 1/3; color: #0a8058; font-size: .58rem; font-weight: 850; }
.fji-service-manifesto strong { color: var(--fji-ink); font-size: 1.15rem; }
.fji-process-list { counter-reset: phase; }
.fji-process-list .process-row { grid-template-columns: minmax(9rem,13rem) minmax(0,1fr); gap: clamp(2rem,6vw,6rem); padding-block: 3.2rem; border-top: 1px solid var(--fji-rule); transition: background .3s ease,padding .3s ease; }
.fji-process-list .process-row:last-child { border-bottom: 1px solid var(--fji-rule); }
.fji-process-list .process-row:hover { padding-inline: 1.2rem; background: #edf4ec; }
.fji-process-list .p-n { display: flex; align-items: baseline; gap: .75rem; color: #0b7d57; font-size: 2.8rem; font-weight: 900; letter-spacing: -.06em; }
.fji-process-list .p-n span { color: #769087; font-size: .52rem; letter-spacing: .14em; }
.fji-process-list h2 { margin: 0; font-size: clamp(2rem,3.4vw,3.5rem); line-height: 1; letter-spacing: -.05em; }
.fji-phase-lead { max-width: 50rem; margin: 1rem 0 1.6rem; color: #617068; line-height: 1.8; }
.fji-process-list .process-row dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--fji-rule); }
.fji-process-list .process-row .p-item { display: block; padding: 1.25rem; border: 0; background: #fff; }
.fji-process-list .process-row .p-item::before { display: none; }
.fji-process-list .process-row dt { margin-bottom: .65rem; color: #0a7b56; font-size: .72rem; }
.fji-process-list .process-row dd { font-size: .78rem; line-height: 1.75; }

/* 资讯：CMS 实时信号流 */
.fji-news-hero { position: relative; min-height: 25rem; display: grid; align-items: center; overflow: hidden; color: #f1fff7; background: #063426; }
.fji-news-hero::before { content: ""; position: absolute; inset: 0; opacity: .25; background: repeating-linear-gradient(90deg,transparent 0,transparent 79px,rgba(99,222,176,.13) 80px); }
.fji-news-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding-block: 3.7rem 5.3rem; }
.fji-news-title h1 { margin: 1.2rem 0 0; font-size: clamp(3.2rem,5vw,5.2rem); line-height: .98; letter-spacing: -.065em; }
.fji-news-title h1 span { color: var(--fji-lime); }
.fji-news-live { align-self: center; }
.fji-live-label { display: block; margin-bottom: 1rem; color: rgba(239,255,247,.45); font-size: .58rem; letter-spacing: .14em; }
.fji-signal-wave { display: flex; align-items: center; gap: .55rem; height: 5.5rem; border-block: 1px solid rgba(204,255,98,.16); }
.fji-signal-wave i { flex: 1; height: 18%; background: linear-gradient(var(--fji-lime),#44c591); animation: fji-signal-bars 1.7s ease-in-out infinite; transform-origin: center; }
.fji-signal-wave i:nth-child(2){animation-delay:.15s}.fji-signal-wave i:nth-child(3){animation-delay:.3s}.fji-signal-wave i:nth-child(4){animation-delay:.45s}.fji-signal-wave i:nth-child(5){animation-delay:.6s}.fji-signal-wave i:nth-child(6){animation-delay:.75s}.fji-signal-wave i:nth-child(7){animation-delay:.9s}.fji-signal-wave i:nth-child(8){animation-delay:1.05s}.fji-signal-wave i:nth-child(9){animation-delay:1.2s}
.fji-news-live strong { display: block; margin-top: .8rem; text-align: right; color: var(--fji-mint); font-size: .65rem; letter-spacing: .12em; }
.fji-news-ticker { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 2.8rem; overflow: hidden; border-top: 1px solid rgba(206,255,98,.28); background: #0a4d38; }
.fji-news-ticker > div { width: max-content; height: 100%; display: flex; align-items: center; gap: 1.4rem; animation: fji-ticker 24s linear infinite; }
.fji-news-ticker span { font-size: .64rem; font-weight: 750; }
.fji-news-ticker i { width: .28rem; aspect-ratio: 1; border-radius: 50%; background: var(--fji-lime); }
.fji-news-stream { background: #f4f2ea; }
.fji-news-layout { display: grid; grid-template-columns: minmax(14rem,19rem) minmax(0,1fr); gap: clamp(3rem,7vw,7rem); align-items: start; }
.fji-news-aside { position: sticky; top: calc(var(--header-h) + 2rem); }
.fji-news-aside > span { color: #16855e; font-size: .62rem; font-weight: 850; letter-spacing: .13em; }
.fji-news-aside h2 { margin: 1rem 0; font-size: clamp(2.15rem,3.2vw,3.3rem); line-height: 1.12; letter-spacing: -.05em; }
.fji-news-aside > p { margin-top: 1.8rem; color: #78857f; font-size: .72rem; line-height: 1.7; }
.fji-news-lenses { display: flex; flex-wrap: wrap; gap: .45rem; }
.fji-news-lenses span { padding: .45rem .65rem; border: 1px solid var(--fji-rule); color: #426258; font-size: .63rem; }
.fji-news-list.list-wrap { max-width: none; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: var(--fji-rule); }
.fji-news-list .list-row { min-height: 15.5rem; padding: 1.5rem; border: 0; background: #fff; transition: color .3s ease,background .3s ease,transform .3s ease; }
.fji-news-list .list-row:first-child { padding-top: 1.5rem; }
.fji-news-list .list-row:hover { padding-left: 1.5rem; color: #f4fff9; background: var(--fji-deep); transform: translateY(-.25rem); }
.fji-news-list .list-row h3 { margin-top: 2.2rem; font-size: 1.3rem; line-height: 1.45; }
.fji-news-list .list-row p { font-size: .78rem; line-height: 1.75; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.fji-news-list .list-row:hover p { color: rgba(239,255,247,.55); }
.fji-news-list .list-row.is-empty { grid-column: 1/-1; min-height: 16rem; display: grid; place-content: center; }
.fji-news-list.article-runtime-wrap { display: block; background: transparent; }
.fji-news-list.article-runtime-wrap .runtime-article { background: #fff; }

/* FAQ：大问号 + 分组问题索引 */
.fji-faq-hero { min-height: 30rem; display: grid; align-items: center; background: linear-gradient(120deg,#f3f0e6,#e9efe5); }
.fji-faq-hero-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem,8vw,8rem); align-items: center; padding-block: 4rem; }
.fji-faq-symbol { position: relative; height: 21rem; display: grid; place-items: center; border: 1px solid rgba(5,78,52,.16); border-radius: 50%; }
.fji-faq-symbol::before,.fji-faq-symbol::after { content: ""; position: absolute; border: 1px solid rgba(12,128,88,.11); border-radius: 50%; animation: fji-orbit-pulse 4s ease-out infinite; }
.fji-faq-symbol::before { inset: 12%; }.fji-faq-symbol::after { inset: -7%; animation-delay: 1.2s; }
.fji-faq-symbol span { color: #0b7653; font-size: 12rem; font-weight: 950; line-height: 1; letter-spacing: -.12em; }
.fji-faq-symbol i { position: absolute; left: 1.4rem; top: 50%; color: #568173; font-size: .6rem; font-style: normal; letter-spacing: .14em; transform: rotate(-90deg); }
.fji-faq-symbol b { position: absolute; right: 1.2rem; bottom: 3rem; color: #0a8058; font-size: 2rem; }
.fji-faq-copy .fji-kicker { color: #0b7f59; }.fji-faq-copy .fji-kicker i { background: #0a8e62; box-shadow: none; }
.fji-faq-copy h1 { margin: 1.2rem 0; font-size: clamp(3rem,5vw,5rem); line-height: 1; letter-spacing: -.065em; }
.fji-faq-copy h1 span { color: #0b8058; }
.fji-faq-copy > p { max-width: 44rem; color: #63736b; line-height: 1.85; }
.fji-faq-jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.fji-faq-jump a { padding: .55rem .8rem; border: 1px solid rgba(5,77,52,.17); border-radius: 999px; color: #0a7451; font-size: .68rem; font-weight: 750; }
.fji-faq-body { background: #fff; }
.fji-faq-groups { display: grid; gap: 5rem; }
.fji-faq-group { display: grid; grid-template-columns: minmax(12rem,18rem) minmax(0,1fr); gap: clamp(2rem,7vw,7rem); align-items: start; scroll-margin-top: calc(var(--header-h) + 2rem); }
.fji-faq-group + .fji-faq-group { padding-top: 4rem; border-top: 1px solid var(--fji-rule); }
.fji-faq-group-title { position: sticky; top: calc(var(--header-h) + 2rem); }
.fji-faq-group-title span { color: #0b855c; font-size: .6rem; font-weight: 850; letter-spacing: .13em; }
.fji-faq-group-title h2 { margin: .7rem 0; font-size: clamp(2rem,3vw,3rem); letter-spacing: -.05em; }
.fji-faq-group-title p { color: #738078; font-size: .78rem; line-height: 1.7; }
.fji-faq-group .faq-wrap { max-width: none; }
.fji-faq-group .faq-item { border-color: var(--fji-rule); }
.fji-faq-group .faq-q { padding: 1.35rem 0; font-size: 1rem; }
.fji-faq-group .faq-q .chev { border-radius: 50%; }

/* 白皮书：实体档案；红皮书：风险边界 */
.fji-paper-hero { min-height: 31rem; display: grid; align-items: center; background: #e9e7df; }
.fji-paper-hero-layout { display: grid; grid-template-columns: minmax(14rem,.62fr) 1.38fr; gap: clamp(3rem,8vw,8rem); align-items: center; padding-block: 4rem; }
.fji-paper-cover { position: relative; width: min(100%,18rem); aspect-ratio: .76; overflow: hidden; color: #ecfff5; background: var(--fji-deep); box-shadow: 22px 24px 0 rgba(6,47,35,.1); transform: rotate(-2deg); }
.fji-paper-cover::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(transparent 0,transparent 47px,rgba(123,231,188,.15) 48px); }
.fji-paper-cover span { position: absolute; left: 1.5rem; top: 1.5rem; font-size: 2.7rem; font-weight: 950; line-height: .88; letter-spacing: -.08em; }
.fji-paper-cover b { position: absolute; right: 1.2rem; top: 1.5rem; color: var(--fji-lime); font-size: .72rem; }
.fji-paper-cover i { position: absolute; left: 1.5rem; bottom: 1.3rem; color: var(--fji-mint); font-size: .7rem; font-style: normal; letter-spacing: .2em; }
.fji-paper-copy .fji-kicker { color: #087953; }.fji-paper-copy .fji-kicker i { background: #087953; box-shadow: none; }
.fji-paper-copy h1 { margin: 1.3rem 0; font-size: clamp(3rem,5vw,5.1rem); line-height: .98; letter-spacing: -.065em; }
.fji-paper-copy h1 span { color: #087d57; }
.fji-paper-copy > p { max-width: 44rem; color: #5f6f68; line-height: 1.9; }
.fji-paper-meta { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 2rem; border-block: 1px solid var(--fji-rule); }
.fji-paper-meta span { padding: .85rem .5rem; border-right: 1px solid var(--fji-rule); color: #3a5c50; font-size: .66rem; text-align: center; }
.fji-paper-meta span:last-child { border-right: 0; }
.fji-paper-page .paper-reader { background: #faf9f5; }
.fji-paper-page .paper-nav { border-right-color: var(--fji-rule); }
.fji-paper-page .paper-toolbar { background: #fff; }
.fji-paper-page .paper-content { position: relative; max-height: min(72svh,52rem); overflow-y: auto; overscroll-behavior: contain; padding-right: .85rem; scrollbar-gutter: stable; scrollbar-width: thin; scrollbar-color: rgba(9,120,83,.35) transparent; }
.fji-paper-page .paper-content::-webkit-scrollbar { width: 6px; }
.fji-paper-page .paper-content::-webkit-scrollbar-thumb { border-radius: 999px; background: rgba(9,120,83,.35); }
.fji-paper-page .paper-main::after { content: "章节内可继续滚动阅读"; display: block; margin-top: .7rem; color: #78857f; font-size: .58rem; letter-spacing: .08em; }
.fji-red-hero { position: relative; min-height: 31rem; display: grid; align-items: center; overflow: hidden; color: #183129; background: #f1ede5; }
.fji-red-rule { position: absolute; left: 0; top: 0; bottom: 0; width: 33%; background: #194a3c; }
.fji-red-rule::after { content: "DO NOT CROSS"; position: absolute; left: 1.5rem; bottom: 1rem; color: rgba(243,239,228,.42); font-size: .55rem; letter-spacing: .2em; writing-mode: vertical-rl; }
.fji-red-layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem,8vw,8rem); align-items: center; padding-block: 4rem; }
.fji-red-index { position: relative; min-height: 21rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; color: #f6f2e8; border: 1px solid rgba(239,244,234,.3); }
.fji-red-index span { font-size: 2.2rem; font-weight: 950; line-height: .9; letter-spacing: -.06em; }
.fji-red-index strong { align-self: center; color: #d5c6ad; font-size: 7rem; font-weight: 300; animation: fji-warning 1.8s ease-in-out infinite; }
.fji-red-index small { font-size: .55rem; letter-spacing: .16em; }
.fji-red-copy .fji-kicker { color: #426d60; }.fji-red-copy .fji-kicker i { background: #ad6655; box-shadow: 0 0 0 .3rem rgba(173,102,85,.1); }
.fji-red-copy h1 { margin: 1.25rem 0; font-size: clamp(3.2rem,5vw,5.2rem); line-height: .98; letter-spacing: -.065em; }
.fji-red-copy h1 span { color: #256b53; }
.fji-red-copy > p { max-width: 42rem; color: #68766f; line-height: 1.85; }
.fji-risk-meter { display: flex; align-items: center; margin-top: 2rem; color: #3f6d5f; font-size: .67rem; font-weight: 800; }
.fji-risk-meter i { flex: 1; height: 1px; margin-inline: .55rem; background: repeating-linear-gradient(90deg,#6c9286 0,#6c9286 5px,transparent 5px,transparent 9px); animation: fji-risk-flow 8s linear infinite; }
.fji-redbook-page .paper-reader { background: #faf9f5; }
.fji-redbook-page .paper-nav a.is-active,.fji-redbook-page .paper-nav a:hover { color: #215f4b; background: #e8f0eb; }

/* 关于：福建九地市网络与透明服务边界 */
.fji-about-hero { position: relative; min-height: 34rem; display: grid; align-items: center; color: #f0fff7; background: radial-gradient(circle at 78% 42%,rgba(39,173,123,.23),transparent 28%),#052f22; }
.fji-about-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,7vw,7rem); align-items: center; padding-block: 4rem; }
.fji-about-copy h1 { margin: 1.25rem 0; font-size: clamp(3rem,5vw,5rem); line-height: 1; letter-spacing: -.065em; }
.fji-about-copy h1 span { color: var(--fji-lime); }
.fji-about-copy p { max-width: 42rem; color: rgba(238,255,246,.62); line-height: 1.9; }
.fji-city-field { position: relative; min-height: 26rem; }
.fji-city-field svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.fji-city-field .coast { fill: none; stroke: rgba(107,226,179,.2); stroke-width: 2; }
.fji-city-field .route { fill: none; stroke: rgba(206,255,98,.36); stroke-width: 1; stroke-dasharray: 7 9; animation: fji-route-move 9s linear infinite; }
.fji-city-field .city { position: absolute; padding: .42rem .65rem; border: 1px solid rgba(99,218,174,.28); border-radius: 999px; color: rgba(239,255,247,.7); font-size: .62rem; background: #07382a; }
.fji-city-field .city::before { content: ""; display: inline-block; width: .35rem; aspect-ratio: 1; margin-right: .4rem; border-radius: 50%; background: var(--fji-lime); box-shadow: 0 0 .8rem var(--fji-lime); animation: fji-node-breathe 2.7s ease-in-out infinite; }
.fji-city-field .c1{left:14%;top:18%}.fji-city-field .c2{left:62%;top:10%}.fji-city-field .c3{right:2%;top:31%}.fji-city-field .c4{left:8%;top:47%}.fji-city-field .c5{left:59%;top:48%}.fji-city-field .c6{right:0;top:68%}.fji-city-field .c7{left:29%;bottom:5%}.fji-city-field .c8{left:52%;bottom:13%}.fji-city-field .c9{right:1%;bottom:2%}
.fji-city-scan { position: absolute; width: 1px; top: 5%; bottom: 5%; left: 0; background: linear-gradient(transparent,var(--fji-lime),transparent); box-shadow: 0 0 2rem rgba(206,255,98,.35); animation: fji-city-scan 6s ease-in-out infinite; }
.fji-about-statement { background: #f3f1e8; }
.fji-about-lead { display: grid; grid-template-columns: .28fr 1fr .85fr; gap: clamp(2rem,5vw,5rem); align-items: end; }
.fji-about-lead > span { color: #0a835b; font-size: .62rem; font-weight: 850; letter-spacing: .14em; }
.fji-about-lead h2 { margin: 0; font-size: clamp(2.7rem,4.7vw,5rem); line-height: 1; letter-spacing: -.06em; }
.fji-about-lead h2 em { color: #0c8059; font-style: normal; }
.fji-about-lead p { margin: 0; color: #67746e; line-height: 1.85; }
.fji-about-facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 4rem; border-block: 1px solid var(--fji-rule); }
.fji-about-facts article { min-height: 13rem; padding: 1.5rem; border-right: 1px solid var(--fji-rule); }
.fji-about-facts article:last-child { border-right: 0; }
.fji-about-facts b { color: #0a865d; font-size: .62rem; }
.fji-about-facts h3 { margin: 2.5rem 0 .7rem; font-size: 1.25rem; }
.fji-about-facts p { color: #6f7c76; font-size: .78rem; line-height: 1.75; }
.fji-fujian-context { background: #fff; }
.fji-fujian-context .section-head { max-width: 55rem; }
.fji-industry-lanes { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 2.5rem; border-top: 1px solid var(--fji-rule); }
.fji-industry-lanes article { position: relative; min-height: 17rem; padding: 1.5rem; border-right: 1px solid var(--fji-rule); overflow: hidden; }
.fji-industry-lanes article:last-child { border-right: 0; }
.fji-industry-lanes article::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: .25rem; background: var(--fji-mint); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.fji-industry-lanes article:hover::after { transform: scaleX(1); }
.fji-industry-lanes span { color: #11845d; font-size: .62rem; font-weight: 850; }
.fji-industry-lanes h3 { margin: 3.2rem 0 1rem; font-size: 1.3rem; line-height: 1.4; }
.fji-industry-lanes p { color: #6f7c76; font-size: .78rem; line-height: 1.75; }
.fji-boundary { color: #effff7; background: var(--fji-deep); }
.fji-boundary-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,8rem); align-items: center; }
.fji-boundary h2 { margin: 1.2rem 0; font-size: clamp(2.5rem,4vw,4.2rem); line-height: 1.05; letter-spacing: -.055em; }
.fji-boundary .reveal > p { color: rgba(239,255,247,.58); line-height: 1.85; }
.fji-boundary-list { border-top: 1px solid rgba(230,255,241,.15); }
.fji-boundary-list p { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; margin: 0; padding: 1.2rem 0; border-bottom: 1px solid rgba(230,255,241,.15); color: rgba(239,255,247,.58); font-size: .78rem; }
.fji-boundary-list b { color: var(--fji-lime); font-size: 1.2rem; }.fji-boundary-list strong { display: inline-block; min-width: 5rem; color: #f2fff8; }
.fji-proof-section { background: #f3f1e8; }
.fji-proof-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 3rem; align-items: end; }
.fji-proof-heading h2 { margin: 0; font-size: clamp(2.3rem,4vw,4rem); letter-spacing: -.055em; }
.fji-proof-heading > p { color: #69766f; line-height: 1.8; }
.fji-cert-rail { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.fji-cert-rail .cert-card { aspect-ratio: auto; padding: .8rem; border: 1px solid var(--fji-rule); border-radius: 0; background: #fff; box-shadow: none; }
.fji-cert-rail .cert-card img { width: 100%; aspect-ratio: 1.45; object-fit: contain; background: #fafafa; }
.fji-cert-rail .cert-card span { display: block; margin-top: .7rem; color: #46645a; font-size: .65rem; }
.fji-proof-note { margin-top: 1rem; color: #79847f; font-size: .65rem; }

@keyframes fji-node-breathe { 0%,100%{box-shadow:0 0 0 0 rgba(206,255,98,0)}50%{box-shadow:0 0 0 .45rem rgba(206,255,98,.08)} }
@keyframes fji-circuit-scan { to{left:115%} }
@keyframes fji-rail-grow { from{transform:scaleY(0)}to{transform:scaleY(1)} }
@keyframes fji-signal-bars { 0%,100%{transform:scaleY(.25);opacity:.35}50%{transform:scaleY(1);opacity:1} }
@keyframes fji-ticker { to{transform:translateX(-50%)} }
@keyframes fji-orbit-pulse { 0%{transform:scale(.82);opacity:0}35%{opacity:1}100%{transform:scale(1.12);opacity:0} }
@keyframes fji-warning { 0%,100%{opacity:.28}50%{opacity:1} }
@keyframes fji-risk-flow { to{background-position:90px 0} }
@keyframes fji-route-move { to{stroke-dashoffset:-160} }
@keyframes fji-city-scan { 0%,100%{left:2%;opacity:0}15%{opacity:1}85%{opacity:1}50%{left:94%} }

@media (max-width: 980px) {
  .fji-hero-layout,.fji-news-hero-inner,.fji-about-hero-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fji-hero-copy h1,.fji-about-copy h1 { font-size: clamp(2.7rem,5.2vw,4rem); }
  .fji-process-list .process-row dl { grid-template-columns: 1fr; }
  .fji-news-layout { grid-template-columns: 14rem minmax(0,1fr); gap: 2.5rem; }
  .fji-news-list.list-wrap { grid-template-columns: 1fr; }
  .fji-about-lead { grid-template-columns: 1fr 2fr; }.fji-about-lead p { grid-column: 2; }
  .fji-industry-lanes { grid-template-columns: repeat(2,1fr); }.fji-industry-lanes article:nth-child(2){border-right:0}.fji-industry-lanes article:nth-child(n+3){border-top:1px solid var(--fji-rule)}
}

@media (max-width: 760px) {
  .fji-hero { min-height: 0; }
  .fji-hero-layout,.fji-news-hero-inner,.fji-faq-hero-layout,.fji-paper-hero-layout,.fji-red-layout,.fji-about-hero-layout,.fji-boundary-layout { grid-template-columns: 1fr; }
  .fji-hero-layout,.fji-about-hero-layout { padding-block: 3.5rem; }
  .fji-hero-copy h1,.fji-news-title h1,.fji-faq-copy h1,.fji-paper-copy h1,.fji-red-copy h1,.fji-about-copy h1 { font-size: clamp(2.7rem,11vw,4rem); }
  .fji-method-page .section-head { grid-template-columns: 1fr; gap: 1rem; }.fji-method-page .method-overview{grid-template-columns:1fr;margin-block:2rem}.fji-method-page .method-overview-item{min-height:0;border-right:0;border-bottom:1px solid var(--fji-rule)}.fji-method-page .method-overview-item:last-child{border-bottom:0}
  .fji-method-map { min-height: 18rem; padding-inline: .7rem; }.fji-method-map ol { height: 12rem; gap: .7rem .2rem; }.fji-method-map li { font-size: .58rem; }.fji-method-map li i { width: 2rem; }
  .fji-method-circuit { grid-template-columns: repeat(2,1fr); }.fji-method-circuit .summit-card { min-height: 8.5rem; }.fji-method-circuit .summit-card:nth-child(2n){border-right:0}
  .fji-service-manifesto { grid-template-columns: 1fr; }.fji-service-manifesto p { min-height: 0; border-right:0;border-bottom:1px solid var(--fji-rule)}.fji-service-manifesto p:last-child{border-bottom:0}
  .fji-process-list .process-row { grid-template-columns: 1fr; gap: 1rem; padding-block: 2.4rem; }.fji-process-list .process-row:hover{padding-inline:0;background:transparent}
  .fji-news-hero-inner { gap: 2.2rem; padding-block: 3.5rem 5rem; }.fji-news-layout { grid-template-columns:1fr; }.fji-news-aside { position:static; }
  .fji-faq-symbol { width: min(100%,20rem); height: 20rem; margin-inline:auto; }.fji-faq-group { grid-template-columns:1fr;gap:1.2rem}.fji-faq-group-title{position:static}
  .fji-paper-cover { width: 14rem; }.fji-paper-meta { grid-template-columns:repeat(2,1fr) }.fji-paper-meta span:nth-child(2){border-right:0}
  .fji-red-rule { width:100%;height:15rem;bottom:auto}.fji-red-index{width:min(100%,18rem);min-height:14rem}.fji-red-index strong{font-size:4rem}
  .fji-city-field { min-height: 23rem; }
  .fji-about-lead,.fji-proof-heading { grid-template-columns:1fr;gap:1.4rem}.fji-about-lead p{grid-column:auto}.fji-about-facts{grid-template-columns:1fr}.fji-about-facts article{min-height:0;border-right:0;border-bottom:1px solid var(--fji-rule)}.fji-about-facts article:last-child{border-bottom:0}.fji-about-facts h3{margin-top:1.4rem}
  .fji-cert-rail { grid-template-columns:repeat(2,1fr) }
}

@media (max-width: 500px) {
  .fji-kicker { font-size:.58rem }.fji-hero-copy > p,.fji-about-copy p { font-size:.88rem }
  .fji-phase-rail { padding-left:2.3rem }.fji-phase-rail div{grid-template-columns:3rem 1fr}.fji-phase-rail::before{left:.75rem}.fji-phase-rail div::before{left:-1.88rem}.fji-phase-rail small{display:block;margin:.2rem 0 0}
  .fji-method-circuit { grid-template-columns:1fr }.fji-method-circuit .summit-card{border-right:0}
  .fji-news-list.list-wrap { grid-template-columns:1fr }.fji-news-list .list-row{min-height:13.5rem}
  .fji-faq-symbol { height:17rem }.fji-faq-symbol span{font-size:9rem}
  .fji-industry-lanes { grid-template-columns:1fr }.fji-industry-lanes article{min-height:0;border-right:0!important;border-top:1px solid var(--fji-rule)}.fji-industry-lanes h3{margin-top:2rem}
  .fji-cert-rail { grid-template-columns:1fr 1fr;gap:.6rem }.fji-cert-rail .cert-card{padding:.5rem}
}

@media (prefers-reduced-motion: reduce) {
  .fji-method-map li i,.fji-method-circuit::after,.fji-phase-rail::before,.fji-phase-rail div::before,.fji-signal-wave i,.fji-news-ticker>div,.fji-faq-symbol::before,.fji-faq-symbol::after,.fji-red-index strong,.fji-city-field .route,.fji-city-field .city::before,.fji-city-scan { animation:none!important; }
}
