

/* ==== from products/index.html ==== */

/* ==================== Design Tokens (from product V7) ==================== */
:root {
  --bg: #f7f8fa;
  --panel: #ffffff;
  --text: #17171b;
  --muted: #6f7078;
  --muted-2: #9a9aa3;
  --border: #e5e5eb;
  --soft: #f2f1f7;
  --purple: #5b2ee6;
  --purple-dark: #4320bd;
  --purple-soft: #eee9ff;
  --green: #29a96b;
  --green-soft: #e9f8f1;
  --green-text: #168653;
  --red: #df3c54;
  --red-soft: #fdecef;
  --red-text: #c92b44;
  --orange: #ee8c20;
  --orange-soft: #fff3e4;
  --orange-text: #cc6d07;
  --yellow: #f2b71d;
  --shadow: 0 8px 24px rgba(36, 24, 70, .08);
  --shadow-lg: 0 16px 48px rgba(36, 24, 70, .12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --transition: .22s cubic-bezier(.4, 0, .2, 1);
  --max-w: 1280px;
  --gradient: linear-gradient(135deg, #5b2ee6, #9a6cff);
  --gradient-hover: linear-gradient(135deg, #4320bd, #7b4fff);
  /* Vanta-inspired tokens */
  --hero-bg: #f0edff;
  --dark: #181822;
  --dark-2: #21222f;
  --footer-bg: #17142a;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.65;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ==================== Navbar ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 12px rgba(36,24,70,.04); }
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 800; letter-spacing: -.3px; }
.nav-logo .logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--gradient);
  color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 15px;
  box-shadow: 0 6px 18px rgba(91,46,230,.26);
}
.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu a { color: #4d4e56; font-size: 15px; font-weight: 550; transition: var(--transition); }
.nav-menu a:hover { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-ghost {
  padding: 9px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: #393a41; border: 1px solid var(--border); background: #fff; transition: var(--transition);
}
.btn-ghost:hover { box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.btn-primary {
  padding: 9px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: var(--purple); color: #fff; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(91,46,230,.22); display: inline-flex; align-items: center;
}
.btn-primary:hover { background: var(--purple-dark); box-shadow: 0 6px 20px rgba(91,46,230,.36); }
.btn-gradient {
  padding: 11px 26px; border-radius: 999px; font-size: 15px; font-weight: 700;
  background: var(--gradient); color: #fff; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(91,46,230,.28); display: inline-flex; align-items: center; gap: 8px;
}
.btn-gradient:hover { background: var(--gradient-hover); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(91,46,230,.4); }
.btn-outline {
  padding: 11px 26px; border-radius: 999px; font-size: 15px; font-weight: 600;
  color: var(--text); border: 1.5px solid var(--border); background: #fff; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ==================== Hero (Vanta-style: light-purple full-width band, left copy + right product UI) ==================== */
.hero { padding: 140px 0 96px; background: linear-gradient(180deg, #e7dfff 0%, #f1ecff 55%, #f7f8fa 100%); width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  background: rgba(255,255,255,.75); border: 1px solid #ddd5f7; border-radius: 100px; font-size: 13px;
  font-weight: 600; color: var(--purple); margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }
.hero h1 {
  font-family: Georgia, "Times New Roman", Inter, "PingFang SC", "Microsoft YaHei", serif;
  font-size: clamp(34px, 3.8vw, 52px); font-weight: 700; line-height: 1.15;
  letter-spacing: -.8px; margin-bottom: 20px; max-width: 560px;
}
.hero h1 .grad { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: #4d4e56; max-width: 520px; margin-bottom: 32px; line-height: 1.65; }
.hero-form {
  display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; padding: 6px; max-width: 500px; box-shadow: var(--shadow);
}
.hero-form input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font: inherit; font-size: 15px; padding: 0 18px; color: var(--text); }
.hero-form input::placeholder { color: var(--muted-2); }
.hero-form .btn-form {
  flex-shrink: 0; padding: 12px 26px; border-radius: 999px; font-size: 15px; font-weight: 700;
  background: var(--purple); color: #fff; box-shadow: 0 6px 18px rgba(91,46,230,.3);
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); white-space: nowrap;
}
.hero-form .btn-form:hover { background: var(--purple-dark); }
.hero-form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.hero-trust-mini { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; font-size: 14px; color: #4d4e56; }
.hero-trust-mini .check { color: var(--green); font-weight: 700; }
.hero-grid .hero-dashboard { margin-top: 0; }

/* ==================== Hero Compliance Dashboard ==================== */
.hero-dashboard {
  margin-top: 56px; background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.dash-header { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: #fbfbfc; }
.dash-header .dots { display: flex; gap: 6px; }
.dash-header .dots span { width: 11px; height: 11px; border-radius: 50%; }
.dash-header .dots span:nth-child(1) { background: #ff5f57; }
.dash-header .dots span:nth-child(2) { background: #ffbd2e; }
.dash-header .dots span:nth-child(3) { background: #28c941; }
.dash-header .dash-title { font-size: 13px; color: var(--muted); margin-left: 10px; font-weight: 500; }
.dash-header .dash-badge { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--green-text); background: var(--green-soft); padding: 4px 10px; border-radius: 100px; display: flex; align-items: center; gap: 6px; }
.dash-header .dash-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.dash-body { display: grid; grid-template-columns: 280px 1fr; }
.dash-sidebar { border-right: 1px solid var(--border); padding: 16px; }
.dash-sidebar-title { font-size: 12px; font-weight: 700; color: var(--muted-2); letter-spacing: .06em; margin-bottom: 12px; padding: 0 8px; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; height: 38px; padding: 0 10px; border-radius: var(--radius-xs); font-size: 14px; color: #4d4e56; transition: var(--transition); cursor: pointer; }
.dash-nav-item:hover { background: #f6f4ff; color: var(--purple); }
.dash-nav-item.active { background: var(--purple-soft); color: var(--purple); font-weight: 700; }
.dash-nav-icon { width: 18px; text-align: center; font-size: 14px; }
.dash-nav-badge { margin-left: auto; font-size: 11px; padding: 1px 7px; border-radius: 100px; font-weight: 700; }
.dash-nav-badge.ok { color: var(--green-text); background: var(--green-soft); }
.dash-nav-badge.warn { color: var(--orange-text); background: var(--orange-soft); }
.dash-nav-badge.bad { color: var(--red-text); background: var(--red-soft); }
.dash-main { padding: 24px; }
.dash-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.dash-stat { padding: 18px; border: 1px solid var(--border); border-radius: 12px; }
.dash-stat .label { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.dash-stat .value { font-size: 26px; font-weight: 800; letter-spacing: -.5px; }
.dash-stat .foot { font-size: 12px; color: var(--muted); margin-top: 6px; }
.dash-stat .foot .up { color: var(--green-text); font-weight: 600; }
.dash-stat .foot .warn { color: var(--orange-text); font-weight: 600; }
.dash-frameworks-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.dash-framework { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.dash-framework:last-child { border-bottom: none; }
.dash-fw-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--purple-soft); color: var(--purple); display: grid; place-items: center; font-weight: 900; font-size: 13px; flex-shrink: 0; }
.dash-fw-name { font-size: 15px; font-weight: 650; }
.dash-fw-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.dash-fw-pct { font-size: 22px; font-weight: 800; margin-left: auto; }
.dash-fw-progress { width: 120px; height: 8px; background: #e6e7eb; border-radius: 100px; overflow: hidden; }
.dash-fw-progress > span { height: 100%; display: block; border-radius: inherit; }
.dash-fw-progress .p-green { background: linear-gradient(90deg, #22a763, #49c481); }
.dash-fw-progress .p-purple { background: linear-gradient(90deg, #5b2ee6, #9e7cff); }
.dash-fw-progress .p-orange { background: linear-gradient(90deg, #f0a21b, #f5c85d); }

/* ==================== Trust Strip ==================== */
.trust-strip { padding: 56px 0; background: var(--bg); }
.trust-strip .container { text-align: center; }
.trust-label { font-size: 14px; color: var(--muted); margin-bottom: 28px; font-weight: 500; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-logo { font-size: 16px; font-weight: 650; color: var(--muted-2); opacity: .65; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.trust-logo:hover { color: var(--text); opacity: 1; }
.trust-logo .tl-icon { font-size: 20px; }

/* ==================== Section Common ==================== */
.section { padding: 96px 0; width: 100%; }
.section#products { background: #fff; }
.section-eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.8px; margin-bottom: 14px; line-height: 1.2; }
.section-head p { font-size: 18px; color: var(--muted); line-height: 1.55; }

/* ==================== Product Overview Cards (Vanta-style: UI preview + title + link) ==================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; overflow: hidden; transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: #c9bcff; box-shadow: 0 8px 28px rgba(91,46,230,.07); transform: translateY(-3px); }
.product-card-visual { position: relative; height: 118px; padding: 14px 16px; background: linear-gradient(150deg, #efeaff 0%, #f5f3fb 100%); border-bottom: 1px solid var(--border); overflow: hidden; }
.pv-bar { height: 10px; width: 42%; border-radius: 999px; background: rgba(91,46,230,.22); margin-bottom: 10px; }
.pv-row { height: 8px; border-radius: 999px; background: rgba(23,23,27,.08); margin-bottom: 8px; }
.pv-row.w70 { width: 70%; } .pv-row.w90 { width: 90%; } .pv-row.w50 { width: 50%; }
.pv-row.pv-ok { background: rgba(41,169,107,.35); }
.pv-chip { position: absolute; right: 14px; bottom: 12px; width: 74px; height: 24px; border-radius: 7px; background: #fff; border: 1px solid var(--border); box-shadow: 0 2px 6px rgba(36,24,70,.06); }
.pv-chip::after { content: ''; position: absolute; left: 7px; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pv-pill { position: absolute; right: 16px; top: 14px; font-size: 10px; font-weight: 700; color: var(--purple); background: #fff; border: 1px solid #ddd5f7; border-radius: 999px; padding: 2px 8px; }
.product-card-body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--purple-soft); display: grid; place-items: center; margin-bottom: 14px; font-size: 19px; }
.product-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.product-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.product-card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 650; color: var(--purple); transition: var(--transition); }
.product-card-link:hover { gap: 10px; }
.product-card .pc-badge { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.product-card .pc-badge.warn { color: var(--orange-text); background: var(--orange-soft); }
.product-card .pc-badge.ok { color: var(--green-text); background: var(--green-soft); }

/* ==================== Product Architecture (4 stages) ==================== */
.architecture { background: var(--bg); }
.arch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.arch-card { padding: 32px 24px; position: relative; }
.arch-card:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 40px; font-size: 24px; color: var(--purple); opacity: .3; z-index: 2; background: var(--bg); width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; }
.arch-no { font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: .06em; margin-bottom: 8px; }
.arch-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.arch-sub { margin-bottom: 14px; }
.arch-sub b { font-size: 14px; font-weight: 650; display: block; margin-bottom: 4px; }
.arch-sub span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.arch-formula { background: var(--purple-soft); border-radius: var(--radius-xs); padding: 14px 16px; margin-top: 14px; font-size: 13px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.arch-formula span { font-weight: 600; color: var(--purple); }
.arch-formula b { color: var(--purple); font-size: 16px; }

/* ==================== Automation Highlight ==================== */
.automation { background: var(--bg); }
.automation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.automation-text .section-eyebrow { margin-bottom: 14px; }
.automation-text h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 20px; line-height: 1.2; }
.automation-text > p { font-size: 17px; color: var(--muted); margin-bottom: 28px; line-height: 1.55; }
.automation-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.auto-stat { padding: 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--panel); }
.auto-stat .as-value { font-size: 28px; font-weight: 800; }
.auto-stat .as-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.auto-stat .as-foot { font-size: 12px; color: var(--muted); margin-top: 6px; }
.automation-features { list-style: none; }
.automation-features li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.automation-features li:last-child { border-bottom: none; }
.automation-features .check { width: 24px; height: 24px; border-radius: 7px; background: var(--green-soft); color: var(--green-text); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.automation-features h4 { font-size: 16px; font-weight: 650; margin-bottom: 3px; }
.automation-features p { font-size: 14px; color: var(--muted); }
.automation-visual { position: relative; }
.automation-mock {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.automation-mock-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.automation-mock-head .tag-dot { width: 8px; height: 8px; border-radius: 50%; }
.automation-mock-head .tag-dot.green { background: var(--green); }
.automation-mock-head .tag-dot.orange { background: var(--orange); }
.automation-mock-head .tag-dot.red { background: var(--red); }
.automation-mock-head .tag-label { font-size: 13px; font-weight: 600; color: #4d4e56; }
.automation-mock-head .tag-auto { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--purple); background: var(--purple-soft); padding: 3px 8px; border-radius: 100px; }
.automation-mock-body { padding: 12px; }
.automation-test-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-xs); transition: var(--transition); cursor: pointer; }
.automation-test-row:hover { background: var(--soft); }
.automation-test-row .test-icon { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.automation-test-row .test-icon.ok { background: var(--green-soft); color: var(--green-text); }
.automation-test-row .test-icon.warn { background: var(--orange-soft); color: var(--orange-text); }
.automation-test-row .test-icon.bad { background: var(--red-soft); color: var(--red-text); }
.automation-test-row .test-name { font-size: 14px; font-weight: 550; flex: 1; }
.automation-test-row .test-framework { font-size: 12px; color: var(--muted); }
.automation-test-row .test-status { font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 100px; white-space: nowrap; }
.automation-test-row .test-status.ok { background: var(--green-soft); color: var(--green-text); }
.automation-test-row .test-status.warn { background: var(--orange-soft); color: var(--orange-text); }
.automation-test-row .test-status.bad { background: var(--red-soft); color: var(--red-text); }
.automation-test-row .test-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ==================== Testimonial Quote ==================== */
.testimonial-quote { padding: 80px 0; text-align: center; }
.testimonial-quote .container { max-width: 760px; }
.testimonial-mark { font-size: 48px; color: var(--purple); opacity: .25; line-height: 1; margin-bottom: 8px; }
.testimonial-quote blockquote { font-size: clamp(22px, 2.5vw, 28px); font-weight: 700; line-height: 1.45; letter-spacing: -.4px; margin-bottom: 24px; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.testimonial-author .name { font-size: 16px; font-weight: 700; }
.testimonial-author .role { font-size: 14px; color: var(--muted); }

/* ==================== Frameworks ==================== */
.frameworks-section { background: #fff; }
.frameworks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.framework-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: var(--transition); cursor: pointer; position: relative;
}
.framework-card:hover { border-color: #c9bcff; box-shadow: 0 8px 28px rgba(91,46,230,.07); transform: translateY(-3px); }
.framework-card .new-badge { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 700; color: var(--purple); background: var(--purple-soft); padding: 3px 8px; border-radius: 100px; }
.framework-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 13px; box-shadow: 0 6px 18px rgba(91,46,230,.22); margin-bottom: 18px; }
.framework-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; min-height: 46px; }
.framework-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.framework-card .framework-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.framework-tag { font-size: 12px; padding: 3px 9px; border-radius: 100px; background: var(--soft); border: 1px solid var(--border); color: #55565f; }
.framework-stat { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.framework-stat .stat-pct { font-size: 24px; font-weight: 800; }
.framework-stat .stat-detail { font-size: 12px; color: var(--muted); line-height: 1.4; }
.framework-card .progress { width: 100%; height: 8px; background: #e6e7eb; border-radius: 100px; overflow: hidden; margin-top: 14px; }
.framework-card .progress > span { height: 100%; display: block; border-radius: inherit; }

/* ==================== Industry Solutions ==================== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.industry-card:hover { border-color: #c9bcff; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.industry-header { padding: 28px 28px 20px; background: linear-gradient(135deg, var(--purple-soft), #fff); border-bottom: 1px solid var(--border); }
.industry-header .industry-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--purple); color: #fff; display: grid; place-items: center; font-size: 20px; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(91,46,230,.2); }
.industry-header h3 { font-size: 20px; font-weight: 800; }
.industry-header p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.industry-body { padding: 24px 28px; flex: 1; }
.industry-body .framework-label { font-size: 13px; font-weight: 700; color: var(--muted-2); margin-bottom: 12px; letter-spacing: .04em; }
.industry-body ul { list-style: none; }
.industry-body li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.industry-body li:last-child { border-bottom: none; }
.industry-body li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); margin-top: 8px; flex-shrink: 0; }
.industry-body li .li-text { flex: 1; }
.industry-body li .li-text b { font-weight: 650; }
.industry-body li .li-text span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.industry-footer { padding: 16px 28px 24px; }
.industry-footer a { font-size: 14px; font-weight: 650; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.industry-footer a:hover { gap: 10px; }

/* ==================== Integrations ==================== */
.integrations-section { background: var(--bg); }
.integrations-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.integration-chip { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition); }
.integration-chip:hover { border-color: #c9bcff; box-shadow: 0 4px 16px rgba(91,46,230,.06); }
.integration-chip .ic-icon { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center; font-size: 14px; font-weight: 700; color: #fff; }
.integration-chip .ic-name { font-size: 14px; font-weight: 600; }
.integration-chip .ic-status { font-size: 11px; font-weight: 700; color: var(--green-text); background: var(--green-soft); padding: 2px 7px; border-radius: 100px; }

/* ==================== Customer Testimonials (dark band: big quote + metrics + supporting quotes) ==================== */
.testimonials-section { background: #181822; color: #fff; }
.tst-featured { text-align: center; max-width: 860px; margin: 0 auto 52px; }
.tst-featured .testimonial-mark { font-size: 64px; color: #7b5cff; opacity: .55; line-height: 1; margin-bottom: 4px; }
.tst-featured blockquote { font-size: clamp(20px, 2.3vw, 27px); font-weight: 700; line-height: 1.5; letter-spacing: -.3px; color: #fff; margin-bottom: 20px; }
.tst-featured .tst-name { font-size: 16px; font-weight: 700; }
.tst-featured .tst-role { font-size: 13.5px; color: #a0a0b0; margin-top: 3px; }
.tst-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.tst-metric { background: #21222f; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.tst-metric .tm-value { font-size: 32px; font-weight: 800; color: #a78bfa; letter-spacing: -.5px; }
.tst-metric .tm-label { font-size: 13.5px; color: #a0a0b0; margin-top: 6px; line-height: 1.5; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: #1e1e2e; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.25); }
.testimonial-card .quote-mark { font-size: 32px; color: #7b5cff; opacity: .6; line-height: 1; margin-bottom: 8px; }
.testimonial-card blockquote { font-size: 16px; font-weight: 600; line-height: 1.55; margin-bottom: 20px; color: #fff; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--purple); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.testimonial-card .author-name { font-size: 14px; font-weight: 700; }
.testimonial-card .author-role { font-size: 13px; color: #a0a0b0; }

/* ==================== Company Intro ==================== */
.company-intro { background: var(--bg); }
.company-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.company-story h3 { font-size: 24px; font-weight: 800; margin-bottom: 18px; letter-spacing: -.5px; }
.company-story > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.company-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.c-stat { padding: 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; }
.c-value { font-size: 24px; font-weight: 800; color: var(--purple); margin-bottom: 4px; }
.c-label { font-size: 13px; color: var(--muted); }
.company-credentials h4 { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.cred-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.cred-gallery img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition); }
.cred-gallery img:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cred-note { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ==================== Core Scenarios (light, prominent — most important content) ==================== */
.core-scenarios { background: #fff; width: 100%; }
.scenario-comparison, .scenario-approach, .scenario-case { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 72px; }
.sc-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.sc-text p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.sc-text ul { list-style: none; margin: 16px 0; }
.sc-text li { padding: 10px 0; padding-left: 28px; position: relative; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--border); }
.sc-text li:last-child { border-bottom: none; }
.sc-text li::before { content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }
.sc-image img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.sc-image .scenario-svg { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--panel); }
.sc-image .scenario-svg.hub-svg { background: var(--panel); }

/* ---- 自绘示意图（替代 PDF 截图，避免敏感词） ---- */
.sc-visual { display: flex; align-items: stretch; gap: 14px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.scv-panel { flex: 1; border: 1px solid var(--border); border-radius: 12px; padding: 22px 16px; text-align: center; background: #fbfbfd; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scv-panel.highlight { background: var(--purple-soft, #f3efff); border-color: #d9ccff; }
.scv-panel .scv-icon { font-size: 34px; line-height: 1; }
.scv-panel h5 { font-size: 15px; font-weight: 750; }
.scv-panel p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }
.scv-tag { font-size: 12px; font-weight: 700; color: var(--purple, #5b2ee6); background: rgba(91,46,230,.08); border-radius: 999px; padding: 4px 12px; margin-top: 2px; }
.scv-vs { align-self: center; font-size: 13px; font-weight: 800; color: var(--muted); letter-spacing: .05em; }
.sc-visual.hub { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; }
.scv-hub-center { border: 2px solid var(--purple, #5b2ee6); background: var(--purple-soft, #f3efff); border-radius: 14px; padding: 20px 26px; text-align: center; }
.scv-hub-center .scv-icon { font-size: 30px; }
.scv-hub-center h5 { font-size: 16px; font-weight: 800; color: var(--purple, #5b2ee6); margin: 6px 0 4px; line-height: 1.4; }
.scv-hub-center p { font-size: 12.5px; color: var(--muted); margin: 0; }
.scv-hub-chips { display: flex; flex-direction: column; gap: 10px; }
.scv-chip { font-size: 13.5px; font-weight: 650; border: 1px solid var(--border); background: #fbfbfd; border-radius: 999px; padding: 8px 18px; }
@media (max-width: 560px) { .sc-visual { flex-direction: column; } .scv-hub-chips { flex-direction: row; } }

/* ---- 核心场景：全宽堆叠布局（内容更大更透气） ---- */
.scenario-comparison.stacked, .scenario-approach.stacked { display: block; }
.scenario-comparison.stacked .sc-text { max-width: 900px; margin-bottom: 40px; }
.scenario-approach.stacked .sc-text { max-width: 900px; margin: 40px auto 0; }
.scenario-comparison.stacked .sc-text h3, .scenario-approach.stacked .sc-text h3 { font-size: 28px; }
.scenario-comparison.stacked .sc-text li, .scenario-approach.stacked .sc-text p { font-size: 16.5px; }

/* ---- VS 对比卡 ---- */
.vs-wrap { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: stretch; }
.vs-badge { display: flex; align-items: center; justify-content: center; }
.vs-badge span { width: 42px; height: 42px; border-radius: 50%; background: var(--panel); border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--purple, #5b2ee6); letter-spacing: .02em; }
.vs-card { border: 1px solid var(--border); border-radius: var(--radius); background: #fbfbfd; padding: 30px 28px; display: flex; flex-direction: column; gap: 20px; }
.vs-card.is-new { background: linear-gradient(165deg, #fbfaff 0%, #f4f0ff 100%); border-color: #d9ccff; box-shadow: var(--shadow); }
.vs-title { font-size: 20px; font-weight: 800; letter-spacing: -.3px; }
.vs-sub { font-size: 14.5px; color: var(--muted); margin-top: 4px; }
.vs-items { display: flex; flex-direction: column; gap: 14px; }
.vs-item { display: flex; gap: 14px; align-items: flex-start; background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.vs-card.is-new .vs-item { border-color: #e5dcff; }
.vs-ico { flex: none; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 750; background: #f2f1f7; border: 1px solid #e5e5eb; color: var(--muted); }
.vs-card.is-new .vs-ico { background: var(--purple-soft, #f3efff); border-color: #d9ccff; color: var(--purple, #5b2ee6); }
.vs-item b { display: block; font-size: 15.5px; margin-bottom: 4px; }
.vs-item span { font-size: 14px; color: var(--muted); line-height: 1.6; }
.vs-flow { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; border: 1.5px dashed #d9ccff; border-radius: 14px; padding: 16px 14px; background: rgba(91,46,230,.03); }
.vs-flow .step { display: inline-flex; align-items: center; gap: 7px; background: var(--panel); border: 1px solid #d9ccff; border-radius: 999px; padding: 8px 15px; font-size: 14px; font-weight: 650; color: var(--text); }
.vs-flow .step em { font-style: normal; font-size: 11px; font-weight: 800; color: #fff; background: var(--purple, #5b2ee6); border-radius: 5px; padding: 2px 7px; letter-spacing: .03em; }
.vs-flow .step em.copy { background: #9a6cff; }
.vs-flow .arr { color: var(--purple, #5b2ee6); font-weight: 800; font-size: 15px; }
.vs-answer { margin-top: auto; text-align: center; font-size: 15.5px; font-weight: 750; border-radius: 12px; padding: 14px 16px; letter-spacing: .01em; }
.vs-card.old .vs-answer { color: #df3c54; background: rgba(223,60,84,.07); }
.vs-card.is-new .vs-answer { color: #168653; background: rgba(22,134,83,.08); }

/* ---- 核心枢纽图（HTML 版） ---- */
.hub-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 36px 30px; }
.hub-head { text-align: center; margin-bottom: 32px; }
.hub-head h4 { font-size: 21px; font-weight: 800; letter-spacing: -.3px; }
.hub-head p { font-size: 15px; color: var(--muted); margin-top: 6px; }
.hub-grid { display: grid; grid-template-columns: 1fr minmax(240px, 300px) 1fr; gap: 30px; align-items: stretch; }
.hub-side { display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.hub-chip { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: 15px; padding: 18px 16px; text-align: center; box-shadow: var(--shadow); }
.hub-chip b { font-size: 16px; display: block; letter-spacing: -.2px; }
.hub-chip span { font-size: 13.5px; color: var(--muted); display: block; margin-top: 3px; }
.hub-side.left .hub-chip::after, .hub-side.right .hub-chip::before { content: ''; position: absolute; top: 50%; width: 30px; border-top: 2px dashed #c9bcff; }
.hub-side.left .hub-chip::after { right: -31px; }
.hub-side.right .hub-chip::before { left: -31px; }
.hub-core { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 22px; padding: 34px 26px; background: linear-gradient(160deg, #9a6cff 0%, #5b2ee6 100%); color: #fff; box-shadow: 0 16px 38px rgba(91,46,230,.30); }
.hub-core .hc-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.hub-core h5 { font-size: 20px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.3px; }
.hub-core .hc-four { font-size: 13.5px; font-weight: 700; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 7px 16px; display: inline-block; letter-spacing: .02em; }
.hub-core p { font-size: 13px; color: #e5d9ff; margin: 12px 0 0; }
.hub-note { text-align: center; margin-top: 28px; font-size: 15px; color: var(--muted); font-weight: 650; }

@media (max-width: 900px) {
  .vs-wrap { grid-template-columns: 1fr; gap: 14px; }
  .vs-badge { padding: 2px 0; }
  .vs-card { padding: 24px 20px; }
  .hub-grid { grid-template-columns: 1fr; gap: 22px; }
  .hub-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .hub-side.left .hub-chip::after, .hub-side.right .hub-chip::before { display: none; }
  .hub-core { order: -1; }
}
@media (max-width: 560px) {
  .hub-side { grid-template-columns: 1fr; }
}

.four-capabilities { background: linear-gradient(165deg, #faf8ff 0%, #f4f0fb 100%); border: 1px solid #e8e4f5; border-radius: var(--radius); padding: 48px; margin-bottom: 72px; }
.four-capabilities h3 { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.four-sub { text-align: center; font-size: 16px; color: var(--muted); margin-bottom: 40px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cap-card { padding: 28px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); text-align: center; transition: var(--transition); }
.cap-card:hover { border-color: #c9bcff; transform: translateY(-3px); box-shadow: var(--shadow); }
.cap-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient); color: #fff; display: grid; place-items: center; font-size: 22px; font-weight: 800; margin: 0 auto 16px; box-shadow: 0 6px 18px rgba(91,46,230,.22); }
.cap-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.cap-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.scenario-case { background: var(--purple-soft); border: 1px solid #ddd5f7; border-radius: var(--radius); padding: 56px 48px; margin-bottom: 0; display: block; }
.case-header { text-align: center; max-width: 780px; margin: 0 auto 36px; }
.case-tag { display: inline-block; font-size: 13px; font-weight: 700; color: var(--purple); background: #fff; border: 1px solid #ddd5f7; border-radius: 999px; padding: 4px 14px; margin-bottom: 14px; }
.case-header h3 { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.5px; }
.case-header p { font-size: 16px; color: var(--muted); line-height: 1.75; }
.case-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.case-step { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px 22px; transition: var(--transition); }
.case-step:hover { border-color: #c9bcff; transform: translateY(-3px); box-shadow: var(--shadow); }
.step-no { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 800; font-size: 15px; display: grid; place-items: center; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(91,46,230,.28); }
.case-step h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.case-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.case-figure img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.case-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ==================== Resources ==================== */
.resources-section { padding: 96px 0; background: var(--bg); width: 100%; }
.res-stats { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 56px; box-shadow: var(--shadow); }
.res-stat { text-align: center; }
.res-stat .rs-value { font-size: 30px; font-weight: 800; color: var(--purple); letter-spacing: -.5px; }
.res-stat .rs-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.res-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: var(--transition); }
.res-card:hover { border-color: #c9bcff; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.res-card-banner { height: 6px; background: var(--gradient); }
.res-card-body { padding: 28px; flex: 1; }
.res-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--purple-soft); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
.res-card-body h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.res-card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.res-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.res-tag { padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 500; background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
.res-card-footer { padding: 14px 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.res-card-link { font-size: 14px; font-weight: 700; color: var(--purple); }
.res-card-count { font-size: 13px; color: var(--muted); }
.res-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.res-feature { text-align: center; padding: 20px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.res-feature .rf-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--panel); border: 1px solid var(--border); display: grid; place-items: center; font-size: 22px; margin: 0 auto 10px; }
.res-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.res-feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.res-note { text-align: center; font-size: 14px; color: var(--muted); background: var(--purple-soft); border: 1px solid #ddd5f7; border-radius: var(--radius-sm); padding: 16px 24px; max-width: 760px; margin: 0 auto; }
.res-note a { color: var(--purple); font-weight: 700; }

/* ==================== Final CTA (Vanta-style light band) ==================== */
.final-cta { padding: 100px 0; background: #ece7ff; width: 100%; }
.cta-box { background: transparent; padding: 0; text-align: center; position: relative; }
.cta-box::before { display: none; }
.cta-box h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 14px; position: relative; color: var(--text); }
.cta-box p { font-size: 18px; margin-bottom: 32px; position: relative; color: #4d4e56; }
.cta-box .btn-white {
  padding: 14px 36px; border-radius: 999px; font-size: 16px; font-weight: 700;
  background: var(--purple); color: #fff; border: none; transition: var(--transition); position: relative;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 20px rgba(91,46,230,.28);
}
.cta-box .btn-white:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(91,46,230,.4); }

/* Dark section overrides for testimonials */
.testimonials-section .section-head h2 { color: #fff; }
.testimonials-section .section-head .section-eyebrow { color: #a78bfa; }

/* ==================== Footer ==================== */
.footer { background: var(--footer-bg); color: #c9c9d4; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #8a8b94; max-width: 280px; line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: #8a8b94; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: #6a6b74; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); display: grid; place-items: center; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: rgba(91,46,230,.2); }

/* ==================== Scroll Reveal ==================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== Responsive ==================== */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.active { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 20px 24px; gap: 8px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-form { max-width: 100%; }
  .tst-metrics { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { border-right: none; border-bottom: 1px solid var(--border); }
  .dash-overview { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .arch-grid { grid-template-columns: 1fr; }
  .arch-card:not(:last-child)::after { display: none; }
  .automation-grid { grid-template-columns: 1fr; gap: 40px; }
  .frameworks-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .res-features { grid-template-columns: 1fr 1fr; }
  .res-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { padding: 40px 24px; }
  .company-grid, .scenario-comparison, .scenario-approach { grid-template-columns: 1fr; gap: 36px; }
  .company-stats { grid-template-columns: repeat(2, 1fr); }
  .cred-gallery { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .four-capabilities { padding: 32px 24px; }
  .scenario-case { padding: 32px 24px; }
  .case-steps { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 500px) {
  .dash-overview { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .res-features { grid-template-columns: 1fr; }
  .res-stats { gap: 20px; }
  .res-stat .rs-value { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-logos { gap: 16px; }
  .trust-logo { font-size: 14px; }
  .company-stats, .capability-grid { grid-template-columns: 1fr; }
}

/* ===== 解决方案 Mega Menu（仿 Vanta 下拉） ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-trigger .caret { font-size: 10px; opacity: .7; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-trigger .caret { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 720px;
  max-width: 92vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(23,23,27,.16), 0 0 0 1px rgba(23,23,27,.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1000;
}
/* 透明桥接，避免光标从触发词移到面板时 hover 中断 */
.mega-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner { display: flex; min-height: 372px; }

/* 左侧分类 Tabs */
.mega-tabs {
  width: 172px; flex-shrink: 0;
  padding: 16px 12px;
  background: #f7f7fb;
  border-radius: 16px 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.mega-tab {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 14px;
  border: none; border-radius: 10px; background: transparent;
  color: #4d4e56; font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background .15s, color .15s; text-align: left;
}
.mega-tab:hover { background: rgba(91,46,230,.07); color: var(--purple); }
.mega-tab.active { background: var(--gradient); color: #fff; box-shadow: 0 4px 12px rgba(91,46,230,.28); }
.mega-tab .tab-arrow { font-size: 12px; opacity: .55; }

/* 右侧内容 */
.mega-content { flex: 1; padding: 24px 26px; position: relative; }
.mega-panel { display: none; }
.mega-panel.active { display: flex; flex-direction: column; height: 100%; }
.mega-panel-head h4 { font-size: 16px; font-weight: 700; color: var(--purple); margin: 0 0 6px; }
.mega-panel-head p { font-size: 13px; color: #6b6c75; margin: 0 0 18px; line-height: 1.5; }
.mega-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mega-item {
  display: flex; gap: 12px; padding: 13px 14px;
  border-radius: 12px; background: #f7f7fb; border: 1px solid #ececf2;
  text-decoration: none; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.mega-item:hover { border-color: #c7b8ff; box-shadow: 0 4px 14px rgba(91,46,230,.1); transform: translateY(-1px); }
.mega-item-wide { grid-column: 1 / -1; }
.mega-item-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.mega-item-body h5 { font-size: 13px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.mega-item-body p { font-size: 12px; color: #6b6c75; margin: 0; line-height: 1.45; }
.mega-footer-link {
  margin-top: auto; padding-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--purple); text-decoration: none;
}
.mega-footer-link:hover { text-decoration: underline; }

/* 合作伙伴下拉专用 */
.mega-menu-partners { width: 660px; }
.mega-menu-partners .mega-tabs { width: 200px; }
.mega-menu-partners .mega-tab .tab-label { white-space: nowrap; }
.mega-items-1col { grid-template-columns: 1fr; }
.mega-testimonial {
  margin-top: 16px; padding: 15px 16px;
  background: #f7f7fb; border: 1px solid #ececf2; border-radius: 12px;
}
.mega-testimonial p {
  font-size: 13px; color: #475569; margin: 0 0 10px; line-height: 1.55; font-style: italic;
}
.mega-testimonial-author { font-size: 12px; font-weight: 600; color: var(--text); }

/* 公司下拉专用 */
.mega-menu-company { width: 560px; }
.mega-menu-company .mega-tabs { width: 140px; }
.mega-menu-company .mega-content { max-height: 470px; overflow-y: auto; }
.mega-subhead {
  margin: 18px 0 10px; padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}

@media (max-width: 991px) { .mega-menu { display: none; } }
/* ===== 能力架构 mega-menu（金字塔原理：先总览、后分述） ===== */
.mega-menu-arch { width: 800px; }
.mega-menu-arch .mega-tabs { width: 196px; }
.mega-menu-arch .mega-tab .tab-label { white-space: normal; line-height: 1.25; text-align: left; }
.mega-arch-tag { display: inline-block; font-size: 11px; font-weight: 700; color: #fff; background: #7b4fff; border-radius: 100px; padding: 2px 9px; margin-left: 8px; vertical-align: middle; }
.mega-arch-effect { font-size: 12px; color: var(--purple); background: var(--purple-soft, #f3efff); border: 1px solid #e3ddf5; border-radius: 8px; padding: 8px 10px; margin: 10px 0 14px; line-height: 1.45; }
.mega-menu-arch .mega-panel-head h4 { font-size: 15px; }

/* —— 金字塔顶：能力架构总览区 —— */
.arch-overview {
  background: linear-gradient(135deg, #241063 0%, #5b2ee6 60%, #7b4fff 100%);
  color: #fff;
  padding: 16px 24px 14px;
  border-radius: 16px 16px 0 0;
}
.arch-ov-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.arch-ov-title { font-size: 15px; font-weight: 700; line-height: 1.45; }
.arch-ov-title .ov-gold { color: #ffe08a; font-weight: 800; }
.arch-ov-sum { font-size: 12px; opacity: .88; line-height: 1.55; max-width: 360px; text-align: right; margin-top: 2px; }
.arch-ov-flow { display: flex; align-items: stretch; gap: 4px; }
.arch-ov-step {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 8px 9px 9px;
  text-align: center;
}
.arch-ov-step .aos-no { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; opacity: .72; }
.arch-ov-step .aos-name { display: block; font-size: 12.5px; font-weight: 700; line-height: 1.35; margin: 3px 0 3px; }
.arch-ov-step .aos-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #241063; background: #ffe08a; border-radius: 100px; padding: 1.5px 9px;
}
.arch-ov-step .aos-out { display: block; font-size: 10.5px; opacity: .82; line-height: 1.4; margin-top: 4px; }
.arch-ov-arrow { display: flex; align-items: center; font-size: 16px; color: #d9c9ff; flex-shrink: 0; }
.arch-ov-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 11px; flex-wrap: wrap; }
.arch-ov-loop { font-size: 11.5px; font-weight: 600; color: #ffe08a; }
.arch-ov-base { font-size: 11.5px; opacity: .92; }
.arch-ov-base b { color: #fff; }

/* tab 副标题（阶段总结词） */
.mega-menu-arch .mega-tab .tab-label em {
  display: block; font-style: normal; font-size: 10.5px; font-weight: 500;
  opacity: .6; margin-top: 2px; line-height: 1.3;
}
.mega-menu-arch .mega-tab.active .tab-label em { opacity: .78; }




.product-journey{background:linear-gradient(180deg,#fff 0%,var(--bg) 100%)}
.journey-head{display:grid;grid-template-columns:1fr 72px 1fr 72px 1fr;align-items:center;margin:0 0 28px;padding:18px 22px;border:1px solid var(--border);border-radius:var(--radius);background:#fff}
.journey-head>div{display:grid;grid-template-columns:34px 1fr;column-gap:12px;align-items:center}.journey-head>div>span{grid-row:1/3;display:grid;width:34px;height:34px;place-items:center;border-radius:999px;background:var(--purple);color:#fff;font-size:12px;font-weight:800}.journey-head b{font-size:14px}.journey-head small{color:var(--muted);font-size:12px}.journey-head>i{height:1px;background:var(--border);position:relative}.journey-head>i:after{content:"";position:absolute;right:0;top:-3px;width:6px;height:6px;border-top:1px solid var(--muted-2);border-right:1px solid var(--muted-2);transform:rotate(45deg)}
.journey-grid{display:grid;grid-template-columns:1fr 1.12fr 1fr;gap:20px;align-items:stretch}.journey-column{display:flex;min-width:0;flex-direction:column;gap:14px}.journey-column-title{display:flex;align-items:center;gap:10px;min-height:42px;padding:0 4px}.journey-column-title>span{color:var(--purple);font-size:12px;font-weight:800}.journey-column-title div{display:grid}.journey-column-title b{font-size:14px}.journey-column-title small{color:var(--muted);font-size:11px}
.capability-card{position:relative;display:flex;min-height:0;flex:1;flex-direction:column;padding:18px;border:1px solid var(--border);border-radius:var(--radius);background:#fff;transition:border-color var(--transition),background var(--transition),transform var(--transition)}.capability-card:hover{border-color:#cfc3f7;background:#fdfcff;transform:translateY(-2px)}.capability-card:focus-visible{outline:3px solid rgba(91,46,230,.22);outline-offset:2px}.capability-card.compact{flex:0 0 auto;min-height:132px}.capability-card.feature{border-color:#cfc3f7;background:linear-gradient(180deg,#fbfaff,#fff)}
.capability-preview{height:96px;margin:-18px -18px 18px;padding:16px;border-radius:var(--radius) var(--radius) 0 0;background:var(--purple-soft);border-bottom:1px solid #ddd4ff}.preview-compliance{display:grid;align-content:center;gap:8px}.preview-compliance .preview-label{position:absolute;top:14px;right:14px;padding:3px 8px;border:1px solid #d7cbff;border-radius:999px;background:#fff;color:var(--purple);font-size:11px;font-weight:700}.preview-compliance i{display:block;height:8px;border-radius:999px;background:#d8cff2}.preview-compliance i:nth-of-type(1){width:72%;background:#c5b5ff}.preview-compliance i:nth-of-type(2){width:88%;background:#a9dec9}.preview-compliance i:nth-of-type(3){width:56%}
.capability-copy{display:flex;align-items:flex-start;gap:12px}.capability-icon{display:grid;flex:0 0 38px;height:38px;place-items:center;border-radius:10px;background:var(--purple-soft);color:var(--purple);font-weight:800}.capability-copy h3{margin:1px 0 6px;font-size:18px;line-height:1.35}.capability-copy p{color:var(--muted);font-size:13px;line-height:1.7}.capability-copy ul{display:flex;flex-wrap:wrap;gap:6px 12px;margin:12px 0 0;list-style:none}.capability-copy li{position:relative;padding-left:10px;color:#555660;font-size:12px}.capability-copy li:before{content:"";position:absolute;left:0;top:8px;width:4px;height:4px;border-radius:999px;background:var(--purple)}.capability-link{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:16px;color:var(--purple);font-size:13px;font-weight:700}.capability-link b{display:grid;width:26px;height:26px;place-items:center;border-radius:999px;background:var(--purple-soft);transition:background var(--transition),color var(--transition)}.capability-card:hover .capability-link b{background:var(--purple);color:#fff}
.feature-kicker{display:flex;align-items:center;gap:8px;margin-bottom:16px;color:var(--purple);font-size:12px;font-weight:750}.feature-kicker span{width:7px;height:7px;border-radius:999px;background:var(--purple)}.identity-flow{display:grid;grid-template-columns:repeat(7,auto);align-items:center;justify-content:space-between;gap:5px;margin:24px 0;padding:14px;border:1px solid #ddd4ff;border-radius:10px;background:var(--purple-soft)}.identity-flow div{display:grid;gap:2px;text-align:center}.identity-flow b{color:var(--purple);font-size:11px}.identity-flow span{white-space:nowrap;font-size:11px;font-weight:700}.identity-flow i{color:#9b8fc4;font-style:normal}.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0;list-style:none}.feature-list li{padding:10px;border-radius:8px;background:var(--soft);color:#4d4e56;font-size:12px}
.preview-risk{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.preview-risk div{display:flex;flex-direction:column;justify-content:center;padding:10px;border:1px solid #ded7f2;border-radius:8px;background:#fff}.preview-risk span{color:var(--muted);font-size:10px}.preview-risk b{margin-top:3px;color:var(--purple);font-size:12px}.preview-evidence{display:flex;align-items:center;gap:0}.preview-evidence span{display:block;width:12px;height:12px;border:3px solid #bba9ff;border-radius:999px}.preview-evidence span+span:before{content:"";display:block;width:42px;height:2px;margin:2px 9px 0 -51px;background:#cfc3eb}.preview-evidence b{margin-left:auto;padding:6px 10px;border-radius:999px;background:var(--green-soft);color:var(--green-text);font-size:11px}
.product-demo-note{display:flex;align-items:center;justify-content:center;gap:8px;margin:20px 0 0;color:var(--muted);font-size:12px}.product-demo-note span{width:6px;height:6px;border-radius:999px;background:var(--green)}
@media(max-width:1050px){.journey-head{grid-template-columns:1fr 40px 1fr 40px 1fr}.journey-grid{grid-template-columns:1fr 1fr}.journey-column.core{grid-column:span 2;order:-1}.capability-card.feature{min-height:360px}.feature-list{grid-template-columns:repeat(4,1fr)}}
@media(max-width:720px){.journey-head{grid-template-columns:1fr;gap:10px}.journey-head>i{width:1px;height:18px;margin-left:16px}.journey-head>i:after{right:-3px;top:auto;bottom:0;transform:rotate(135deg)}.journey-grid{grid-template-columns:1fr}.journey-column.core{grid-column:auto;order:0}.identity-flow{grid-template-columns:1fr}.identity-flow i{transform:rotate(90deg)}.feature-list{grid-template-columns:1fr 1fr}.capability-card,.capability-card.compact{min-height:auto}}



.journey-grid.product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;align-items:stretch}
.product-tile{height:100%;min-height:416px;padding:0;overflow:hidden;transform:none}
.product-tile:hover{transform:none}.product-tile.feature{min-height:416px;background:#fff;border-color:#cfc3f7}
.product-tile .mock-preview{height:120px;margin:0;padding:12px 14px;border-radius:0;background:#f6f3ff}
.preview-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px;color:var(--muted);font-size:10px}.preview-head b{padding:3px 7px;border:1px solid #d8cefa;border-radius:999px;background:#fff;color:var(--purple);font-size:10px}
.preview-rows{display:grid;gap:5px}.preview-rows i{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:8px;height:23px;padding:0 8px;border:1px solid var(--border);border-radius:7px;background:#fff;font-style:normal}.preview-rows b{overflow:hidden;color:#3e3f47;font-size:10px;font-weight:650;text-overflow:ellipsis;white-space:nowrap}.preview-rows em{color:var(--green-text);font-size:9px;font-style:normal}.preview-rows.coded i{grid-template-columns:32px minmax(0,1fr) auto}.preview-rows small{color:var(--purple);font-size:9px;font-weight:750}
.product-card-content{display:flex;flex:1;flex-direction:column;padding:18px}.product-card-content .feature-kicker{min-height:18px;margin-bottom:12px}.product-card-content .capability-copy{min-height:102px}.product-card-content .capability-copy h3{font-size:18px}.product-card-content .capability-copy p{display:-webkit-box;overflow:hidden;margin:0;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.keyword-list{display:flex;flex-wrap:wrap;gap:6px;margin:12px 0 0;padding:0;list-style:none}.keyword-list li{padding:4px 8px;border-radius:999px;background:var(--soft);color:#555660;font-size:11px}.keyword-list li:before{display:none}
.mini-chain{display:grid;grid-template-columns:repeat(4,1fr);gap:5px}.mini-chain i{position:relative;display:grid;gap:1px;padding:9px 5px;border:1px solid var(--border);border-radius:7px;background:#fff;font-style:normal;text-align:center}.mini-chain i:not(:last-child):after{content:"";position:absolute;right:-6px;top:50%;z-index:2;width:7px;height:1px;background:#bdb5d3}.mini-chain b{color:var(--purple);font-size:9px}.mini-chain span{font-size:9px;font-weight:650;white-space:nowrap}
@media(max-width:1200px){.journey-grid.product-grid{gap:16px}.product-card-content{padding:16px}.product-tile .mock-preview{padding:12px}.product-card-content .capability-copy{min-height:112px}}
@media(max-width:900px){.journey-grid.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-tile,.product-tile.feature{min-height:408px}}
@media(max-width:620px){.journey-grid.product-grid{grid-template-columns:1fr}.product-tile,.product-tile.feature{min-height:auto}.journey-head{padding:16px}.product-card-content .capability-copy{min-height:auto}}



.product-journey{background:#f8f8fb}.product-journey .section-head{max-width:760px}.journey-head{margin-bottom:32px;border-color:#ddd5f8;background:linear-gradient(90deg,#fff 0%,#fbf9ff 50%,#fff 100%)}
.journey-grid.product-grid{gap:24px}.product-tile{min-height:438px;border-color:#dedee8;border-radius:16px;background:#fff;box-shadow:0 1px 2px rgba(25,18,52,.03);transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}.product-tile:hover{border-color:#bfaef4;background:#fff;box-shadow:0 12px 30px rgba(67,32,189,.09);transform:translateY(-3px)}
.product-tile:before{content:"0" counter(product-card);position:absolute;right:18px;top:154px;color:#d8d2e9;font-size:11px;font-weight:800;letter-spacing:.08em}.product-grid{counter-reset:product-card}.product-tile{counter-increment:product-card}.product-tile:before{content:"0" counter(product-card)}
.product-tile .mock-preview{position:relative;height:136px;padding:14px 16px;border-bottom-color:#ded7f5;background:linear-gradient(145deg,#f5f1ff,#fbfaff);overflow:hidden}.product-tile .mock-preview:after{content:"";position:absolute;right:-28px;bottom:-45px;width:120px;height:120px;border:22px solid rgba(91,46,230,.045);border-radius:50%}.preview-head{position:relative;z-index:1;margin-bottom:10px}.preview-head span{color:#585964;font-weight:650}.preview-head b{border-color:#d5c9fb;background:rgba(255,255,255,.92)}
.preview-rows{position:relative;z-index:1;gap:6px}.preview-rows i{height:25px;border-color:#e6e2ef;background:rgba(255,255,255,.92)}.preview-rows em{display:flex;align-items:center;gap:4px}.preview-rows em:before{content:"";width:5px;height:5px;border-radius:50%;background:var(--green)}
.product-card-content{padding:22px}.product-card-content .feature-kicker{width:max-content;margin-bottom:14px;padding:4px 9px;border-radius:999px;background:var(--purple-soft);font-size:11px}.product-card-content .capability-copy{min-height:108px}.product-card-content .capability-icon{width:42px;flex-basis:42px;height:42px;border:1px solid #ddd4fa;background:#f4f0ff}.product-card-content .capability-copy h3{margin-top:0;font-size:19px}.product-card-content .capability-copy p{color:#666873;line-height:1.65}.keyword-list{gap:8px;margin-top:14px}.keyword-list li{padding:5px 9px;border:1px solid #e8e6ee;background:#fafafd;color:#60616a}.capability-link{margin-top:auto;border-top:1px solid #eceaf1;padding-top:14px}.capability-link b{width:30px;height:30px}.product-tile.feature{border-color:#c8baf4}.product-tile.feature .mock-preview{background:linear-gradient(145deg,#eee8ff,#f8f5ff)}
@media(max-width:1200px){.journey-grid.product-grid{gap:18px}.product-tile{min-height:432px}.product-card-content{padding:18px}.product-tile:before{top:151px}}
@media(max-width:900px){.journey-grid.product-grid{gap:20px}.product-tile,.product-tile.feature{min-height:430px}}
@media(max-width:620px){.journey-grid.product-grid{gap:16px}.product-tile,.product-tile.feature{min-height:auto}.product-tile:before{top:152px}.product-card-content{padding:20px}}
.product-tile .scene-preview{position:relative;height:150px;margin:0;padding:16px 18px;border-radius:0;border-bottom:1px solid #ddd5f6;background:linear-gradient(145deg,#f4f0ff,#fbfaff);overflow:hidden}.product-tile:before{top:168px}.scene-caption{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;color:#555660;font-size:10px;font-weight:650}.scene-caption b{padding:4px 8px;border:1px solid #d7cbff;border-radius:999px;background:#fff;color:var(--purple);font-size:9px}.scene-map,.scene-steps{display:flex;align-items:center;justify-content:center;gap:6px}.scene-map i,.scene-steps i{display:grid;min-width:48px;height:42px;place-items:center;border:1px solid #ddd6f2;border-radius:9px;background:#fff;color:#555660;font-size:10px;font-style:normal;font-weight:700;transition:.18s ease}.scene-map i.source{border-color:#bcaaf7;background:var(--purple);color:#fff}.scene-map>span,.scene-steps>span{width:16px;height:1px;background:#c2b8df;transition:background .18s ease}.scene-foot{display:flex;justify-content:center;gap:6px;margin-top:10px}.scene-foot em{padding:3px 7px;border-radius:999px;background:rgba(255,255,255,.85);color:#71698a;font-size:8px;font-style:normal}.scene-steps i{min-width:54px;gap:1px}.scene-steps i b{color:var(--purple);font-size:8px}.scene-progress{height:3px;margin:13px 12px 0;border-radius:999px;background:#dfdaf0;overflow:hidden}.scene-progress span{display:block;width:76%;height:100%;border-radius:inherit;background:var(--purple)}
.control-bars{display:grid;gap:8px}.control-bars i{display:grid;grid-template-columns:30px 1fr 42px;gap:8px;align-items:center;font-style:normal}.control-bars b,.control-bars small{font-size:9px}.control-bars b{color:var(--purple)}.control-bars small{color:#696a72}.control-bars>i>span{height:6px;border-radius:999px;background:#e1ddec;overflow:hidden}.control-bars em{display:block;width:var(--fill);height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--purple),#8e6cff)}
.document-motion{position:relative;display:grid;grid-template-columns:76px 1fr 84px;align-items:center;gap:8px}.doc-card{display:grid;gap:4px;padding:10px;border:1px solid #cfc3f7;border-radius:10px;background:#fff}.doc-card i{height:3px;border-radius:9px;background:#ded9eb}.doc-card i:nth-child(2){width:78%}.doc-card b{margin-top:3px;color:var(--purple);font-size:9px}.document-motion svg{width:100%;overflow:visible}.document-motion path{fill:none;stroke:#9e88e8;stroke-width:1.5;stroke-dasharray:5 5}.document-motion circle{fill:var(--purple)}.motion-result{display:grid;gap:5px}.motion-result span{padding:5px 6px;border:1px solid #e0dbea;border-radius:7px;background:#fff;font-size:8px;font-weight:700}.scene-embedded .doc-card{animation:docPulse 4.8s ease-in-out infinite}.scene-embedded path{animation:pathFlow 5s linear infinite}.scene-embedded .motion-result span{animation:resultGlow 4.8s ease-in-out infinite}.scene-embedded .motion-result span:nth-child(2){animation-delay:.5s}.scene-embedded .motion-result span:nth-child(3){animation-delay:1s}
.risk-orbit{display:grid;grid-template-columns:1.5fr repeat(3,.7fr);gap:7px;align-items:center}.risk-orbit div,.risk-orbit i{display:grid;height:52px;place-items:center;border:1px solid #ddd6f2;border-radius:9px;background:#fff;font-style:normal}.risk-orbit div{justify-items:start;padding:8px 11px}.risk-orbit div b{font-size:11px}.risk-orbit div span{color:#7a7b84;font-size:8px}.risk-orbit i{color:var(--purple);font-size:9px;font-weight:700}.risk-line{display:flex;align-items:center;margin:10px 8px 0}.risk-line span{width:70%;height:3px;border-radius:999px;background:var(--purple)}.risk-line em{width:8px;height:8px;margin-left:-2px;border:2px solid #fff;border-radius:50%;background:var(--green);box-shadow:0 0 0 2px #b9e5cf}
.evidence-converge{display:grid;grid-template-columns:74px 1fr 92px;align-items:center;gap:4px}.evidence-converge>div{display:grid;gap:5px}.evidence-converge i{padding:5px;border:1px solid #ddd6f2;border-radius:7px;background:#fff;font-size:8px;font-style:normal;text-align:center}.evidence-converge svg{width:100%;height:62px;overflow:visible}.evidence-converge path{fill:none;stroke:#ad9be9;stroke-width:1.5}.evidence-converge>b{display:grid;gap:3px;place-items:center;padding:10px 5px;border:1px solid #c4e7d4;border-radius:10px;background:#f2fbf6;color:#167b4e;font-size:9px}.evidence-converge>b span{display:grid;width:20px;height:20px;place-items:center;border-radius:50%;background:var(--green);color:#fff}
.product-tile:not(.feature):hover .scene-map i,.product-tile:not(.feature):hover .scene-steps i,.product-tile:not(.feature):hover .risk-orbit i{border-color:#bcaaf7;background:#faf8ff;color:var(--purple)}.product-tile:hover .scene-map>span,.product-tile:hover .scene-steps>span{background:var(--purple)}
@keyframes docPulse{0%,100%{transform:translateX(0)}50%{transform:translateX(5px)}}@keyframes pathFlow{to{stroke-dashoffset:-30}}@keyframes resultGlow{0%,35%,100%{border-color:#e0dbea;background:#fff}50%,70%{border-color:#bcaaf7;background:#f6f2ff}}
@media(prefers-reduced-motion:reduce){.scene-embedded .doc-card,.scene-embedded path,.scene-embedded .motion-result span{animation:none!important}.product-tile{transition:none!important}}
@media(max-width:1200px){.product-tile .scene-preview{padding:14px}.scene-map,.scene-steps{gap:4px}.scene-map i,.scene-steps i{min-width:42px}.scene-map>span,.scene-steps>span{width:10px}.product-tile:before{top:166px}}
