:root {
  --bg: #ffffff;
  --band: #f4f7fb;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e2ec;
  --blue: #1d4ed8;
  --blue-soft: #dbeafe;
  --green: #15803d;
  --green-soft: #dcfce7;
  --red: #b91c1c;
  --red-soft: #fee2e2;
  --amber: #b45309;
  --amber-soft: #fef3c7;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.72);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 850;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 420px;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  background: var(--amber-soft);
  color: #78350f;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(217, 226, 236, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 44px;
  height: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand strong span {
  color: var(--blue);
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #334155;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--blue);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-button {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.18);
}

.header-cta {
  padding: 0 16px;
}

.primary-button,
.secondary-button {
  padding: 0 18px;
}

.secondary-button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.section {
  scroll-margin-top: 92px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 22px;
}

.section-band {
  max-width: none;
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.5), transparent 32%),
    var(--band);
}

.hero {
  display: grid;
  min-height: calc(100vh - 67px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #334155;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.metric {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.metric dt {
  color: var(--ink);
  font-size: 23px;
  font-weight: 850;
  line-height: 1.1;
}

.metric dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-dashboard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dashboard-topline,
.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-topline span,
.detail-top span,
.section-heading span,
.section-copy span,
.contact-copy span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.hero-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  padding: 18px;
}

.intelligence-radar,
.business-board {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.intelligence-radar {
  background:
    radial-gradient(circle at 50% 48%, rgba(219, 234, 254, 0.82), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #ffffff, #f8fbff);
}

.radar-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 78, 216, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(29, 78, 216, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.radar-grid::before,
.radar-grid::after {
  position: absolute;
  content: "";
}

.radar-grid::before {
  left: 18%;
  top: 53%;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.48), rgba(29, 78, 216, 0.22), transparent);
  transform: rotate(-28deg);
  transform-origin: center;
}

.radar-grid::after {
  left: 43%;
  top: 43%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 83, 9, 0.45), transparent);
  transform: rotate(34deg);
  transform-origin: center;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(29, 78, 216, 0.32);
  border-radius: 999px;
  inset: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-outer {
  width: min(82%, 280px);
  height: min(82%, 190px);
}

.ring-middle {
  width: min(58%, 198px);
  height: min(58%, 132px);
}

.radar-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  display: grid;
  width: 108px;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(29, 78, 216, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.radar-core strong {
  font-size: 13px;
  line-height: 1.2;
}

.radar-core span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.source-node,
.risk-node {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  line-height: 1;
}

.source-node {
  border-radius: 999px;
  color: #334155;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 800;
}

.node-video {
  left: 7%;
  top: 12%;
}

.node-community {
  right: 8%;
  top: 14%;
}

.node-forum {
  left: 8%;
  bottom: 26%;
}

.node-news {
  right: 11%;
  bottom: 20%;
}

.node-local {
  left: 34%;
  bottom: 9%;
}

.risk-node {
  display: grid;
  gap: 4px;
  min-width: 78px;
  border-radius: var(--radius);
  padding: 9px;
  font-style: normal;
}

.risk-node strong {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.risk-node em {
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
}

.risk-hot {
  right: 6%;
  top: 26%;
}

.risk-hot strong {
  background: var(--red);
}

.risk-compare {
  left: 7%;
  top: 51%;
}

.risk-compare strong {
  background: var(--amber);
}

.risk-opportunity {
  right: 7%;
  bottom: 17%;
}

.risk-opportunity strong {
  background: var(--green);
}

.radar-legend {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(217, 226, 236, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 760;
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.dot.high {
  background: var(--red);
}

.dot.medium {
  background: var(--amber);
}

.dot.low {
  background: var(--green);
}

.business-board {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.82), #ffffff),
    #f8fafc;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.board-metrics div {
  border: 1px solid rgba(217, 226, 236, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 9px;
}

.board-metrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.board-metrics strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.opportunity-chart {
  position: relative;
  display: flex;
  min-height: 122px;
  align-items: end;
  gap: 8px;
  border: 1px solid rgba(217, 226, 236, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(29, 78, 216, 0.08) 1px, transparent 1px),
    #ffffff;
  background-size: 100% 32px;
  padding: 40px 12px 12px;
}

.opportunity-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue), #93c5fd);
}

.chart-event {
  position: absolute;
  max-width: 122px;
  border: 1px solid rgba(29, 78, 216, 0.16);
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.event-price {
  left: 12px;
  top: 11px;
}

.event-tender {
  right: 12px;
  top: 11px;
}

.deliverable-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.deliverable-strip span {
  border: 1px solid rgba(217, 226, 236, 0.86);
  border-radius: var(--radius);
  background: #ffffff;
  color: #334155;
  padding: 8px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 820;
}

.signal-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.signal-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.signal-row strong,
.board-row strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.signal-row small,
.board-row small {
  color: var(--muted);
  font-size: 12px;
}

.risk-level,
.board-row > span,
.demo-item > span {
  display: inline-flex;
  min-width: 34px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.risk-level.high {
  background: var(--red-soft);
  color: var(--red);
}

.risk-level.medium {
  background: var(--amber-soft);
  color: var(--amber);
}

.risk-level.low {
  background: var(--green-soft);
  color: var(--green);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-inline-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--blue);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 850;
}

.section-inline-link:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.section-heading h2,
.section-copy h2,
.contact-copy h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
}

.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.capability-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.capability-card,
.case-card,
.package-card,
.demo-shell,
.diagnostic-form,
.intelligence-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.capability-card,
.package-card {
  padding: 20px;
}

.capability-card span,
.industry-chip {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.capability-card h3,
.case-card h3,
.package-card h3,
.demo-detail h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.capability-card p,
.package-card p {
  color: var(--muted);
}

.capability-card strong {
  color: var(--green);
  font-size: 13px;
}

.source-workflow-section {
  padding-top: 28px;
}

.source-workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.source-panel,
.workflow-steps {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.source-panel {
  padding: 24px;
}

.source-panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.source-grid span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.source-panel p {
  margin: 20px 0 0;
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  counter-increment: workflow;
}

.workflow-steps li:last-child {
  border-bottom: 0;
}

.workflow-steps li::before {
  display: grid;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  align-self: start;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  content: counter(workflow);
  font-weight: 850;
}

.workflow-steps strong {
  display: block;
  grid-column: 2;
  min-width: 0;
  font-size: 17px;
}

.workflow-steps span {
  display: block;
  grid-column: 2;
  min-width: 0;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.industry-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-solution-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.industry-solution-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.industry-solution-card h3 {
  margin: 12px 0 0;
  font-size: 24px;
}

.industry-solution-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.industry-solution-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.industry-solution-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 14px;
}

.industry-solution-card li::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.industry-solution-card button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.industry-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  margin-top: auto;
}

.industry-actions a,
.industry-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.industry-actions a {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
}

.industry-actions button {
  margin-top: 0;
}

.industry-actions a:hover,
.industry-actions button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

.split-section,
.media-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.media-section {
  padding-top: 28px;
}

.media-copy span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.media-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
}

.media-copy p {
  color: var(--muted);
  font-size: 17px;
}

.report-link {
  margin-top: 14px;
}

.report-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.report-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.report-library-grid,
.deliverable-grid,
.trust-grid,
.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.report-sample-card,
.deliverable-card,
.process-card,
.trust-card,
.growth-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.report-sample-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 22px;
}

.report-sample-card > span,
.deliverable-card > span,
.process-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.report-sample-card h3,
.deliverable-card h3,
.process-card h3,
.trust-card h3,
.growth-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.report-sample-card p,
.deliverable-card p,
.process-card p,
.trust-card p,
.growth-card p {
  color: #334155;
}

.report-sample-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.report-sample-card li,
.deliverable-card em {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.report-sample-card li {
  padding: 5px 8px;
}

.report-sample-card strong {
  margin-top: auto;
  color: var(--green);
  font-size: 13px;
}

.report-sample-card button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.deliverable-card,
.trust-card,
.growth-card {
  padding: 20px;
}

.deliverable-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.deliverable-card em {
  padding: 5px 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.process-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 22px;
  box-shadow: none;
}

.process-card:last-child {
  border-right: 0;
}

.trust-section .section-heading {
  max-width: 920px;
}

.trust-card {
  min-height: 180px;
}

.trust-card h3::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 13px;
}

.growth-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 42px;
  align-items: start;
}

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

.brand-radar-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: clamp(20px, 3vw, 34px);
}

.radar-input-row {
  display: grid;
  grid-template-columns: 150px minmax(180px, 1fr) 92px minmax(150px, 0.6fr) auto;
  gap: 12px;
  align-items: center;
}

.radar-input-row label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.radar-input-row input,
.radar-input-row select {
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.radar-input-row select {
  cursor: pointer;
}

.radar-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.radar-preview div,
.procurement-grid article,
.mainland-checklist div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
}

.radar-preview span,
.mainland-checklist strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.radar-preview strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.procurement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.procurement-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.procurement-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.mainland-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mainland-checklist div {
  display: grid;
  gap: 8px;
}

.mainland-checklist span {
  color: var(--ink-soft);
  line-height: 1.55;
}

.intelligence-board {
  overflow: hidden;
}

.board-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 130px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row > span {
  background: var(--blue-soft);
  color: var(--blue);
}

.board-row em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter,
.tab {
  min-height: 38px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.filter {
  padding: 0 14px;
}

.filter.active,
.tab.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 20px;
}

.case-card dl,
.package-card dl,
.demo-detail dl {
  display: grid;
  gap: 13px;
  margin: 18px 0;
}

.case-card dt,
.package-card dt,
.demo-detail dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.case-card dd,
.package-card dd,
.demo-detail dd {
  margin: 3px 0 0;
  color: #334155;
  font-size: 14px;
}

.case-card > strong {
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
}

.case-card button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.case-card button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.case-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.case-more button {
  min-height: 42px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--blue);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
}

.case-more button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.case-more button[hidden] {
  display: none;
}

.case-modal[hidden] {
  display: none;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.case-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
}

.case-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.case-modal-panel h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.14;
}

.case-modal-panel dl {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.case-modal-panel dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.case-modal-panel dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.case-modal-panel dd {
  margin: 6px 0 0;
  color: #334155;
}

.case-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-shell {
  overflow: hidden;
}

.demo-scenarios {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px 16px 0;
  background: #f8fafc;
}

.scenario {
  min-height: 36px;
  flex: 0 0 auto;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 800;
}

.scenario.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.demo-tabs {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.tab {
  flex: 0 1 auto;
  padding: 0 16px;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  min-height: 520px;
}

.demo-list {
  overflow: auto;
  max-height: 620px;
  border-right: 1px solid var(--line);
}

.demo-item {
  display: grid;
  width: 100%;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 16px;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  text-align: left;
}

.demo-item:hover,
.demo-item.active {
  background: #eff6ff;
}

.demo-item > span {
  grid-row: span 3;
  background: var(--amber-soft);
  color: var(--amber);
}

.demo-item > div {
  min-width: 0;
}

.demo-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.demo-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.demo-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.demo-item-meta em {
  padding: 4px 7px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
  line-height: 1;
}

.demo-detail {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(219, 234, 254, 0.32), transparent 210px),
    #ffffff;
}

.detail-top {
  margin: -26px -26px 22px;
}

.detail-top strong {
  color: var(--red);
}

.detail-status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.detail-status-strip div {
  padding: 12px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: rgba(239, 246, 255, 0.72);
}

.detail-status-strip span,
.detail-status-strip strong {
  display: block;
}

.detail-status-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-status-strip strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.detail-summary {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: #f8fafc;
  color: #334155;
  line-height: 1.72;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-grid div:nth-child(3),
.detail-grid div:nth-child(4),
.detail-grid div:nth-child(5),
.detail-grid div:nth-child(6) {
  grid-column: 1 / -1;
}

.detail-report-link {
  margin-top: 4px;
}

.package-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
}

.package-card.recommended {
  border-color: rgba(29, 78, 216, 0.36);
  box-shadow: 0 18px 48px rgba(29, 78, 216, 0.13);
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.package-topline span,
.package-topline em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.package-topline span {
  background: var(--blue);
  color: #ffffff;
}

.package-topline em {
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #334155;
}

.package-hint {
  display: block;
  margin: 14px 0 4px;
  border-left: 3px solid var(--blue);
  background: #f8fafc;
  color: #334155;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.55;
}

.package-card button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  cursor: pointer;
  border: 0;
  border-radius: var(--radius);
  background: #f1f5f9;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-section .section-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.faq-list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--blue);
  content: "+";
  font-weight: 850;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #334155;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  padding: 12px 14px;
  border-left: 3px solid var(--blue);
  background: #f8fafc;
  color: #334155;
}

.diagnostic-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-reassurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.form-reassurance span {
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #334155;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 820;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.diagnostic-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-chips button {
  min-height: 34px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.interest-chips button:hover,
.interest-chips button.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

.diagnostic-form input,
.diagnostic-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 15px;
}

.diagnostic-form input {
  min-height: 44px;
  padding: 0 12px;
}

.diagnostic-form textarea {
  min-height: 108px;
  resize: vertical;
  padding: 12px;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
}

.mobile-action-bar a:first-child {
  background: var(--blue);
  color: #ffffff;
}

.mobile-action-bar a:last-child {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.form-status.error {
  color: var(--red);
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-note a,
.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

.legal-page {
  background: var(--band);
  padding: 70px 22px;
}

.legal-document {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.legal-document h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.legal-updated {
  margin: 14px 0 34px;
  color: var(--muted);
}

.legal-document section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.legal-document p {
  margin: 0;
  color: #334155;
}

.not-found-page {
  display: grid;
  min-height: calc(100vh - 160px);
  place-items: center;
  padding: 70px 22px;
  background:
    linear-gradient(90deg, rgba(219, 234, 254, 0.52), transparent 38%),
    var(--band);
}

.not-found-card {
  max-width: 720px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.not-found-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
}

.not-found-card span {
  display: block;
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.report-page {
  background: var(--band);
  padding: 54px 22px;
}

.report-document {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.report-cover {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  padding: 42px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(219, 234, 254, 0.7), transparent 56%),
    #ffffff;
}

.report-cover p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.report-cover h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.report-cover span,
.report-cover dd,
.report-section p {
  color: var(--muted);
}

.report-cover dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.report-cover dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.report-cover dt,
.report-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.report-cover dd {
  margin: 4px 0 0;
  font-size: 14px;
}

.report-section,
.report-cta {
  padding: 34px 42px;
  border-bottom: 1px solid var(--line);
}

.report-section h2,
.report-cta h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.report-summary-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.report-summary-grid strong,
.report-summary-grid span {
  display: block;
}

.report-summary-grid span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 850;
}

.report-summary-grid p {
  margin: 10px 0 0;
  font-size: 13px;
}

.report-table-wrap {
  overflow-x: auto;
}

.report-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.report-table th,
.report-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.two-column-report {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.report-trend {
  display: flex;
  height: 190px;
  align-items: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.report-trend span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--red), #fecaca);
}

.report-list,
.report-action-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #334155;
}

.report-cta {
  border-bottom: 0;
  text-align: center;
}

.report-cta p {
  margin: 0 auto 22px;
  max-width: 620px;
  color: var(--muted);
}

.industry-page {
  background: #ffffff;
}

.industry-hero {
  display: grid;
  min-height: 520px;
  align-content: center;
  gap: 20px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.industry-hero > span,
.industry-detail-grid article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.industry-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.industry-hero p {
  max-width: 760px;
  margin: 0;
  color: #334155;
  font-size: 19px;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.industry-detail-grid article,
.industry-scenario {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.industry-detail-grid article {
  padding: 28px;
}

.industry-detail-grid h2,
.industry-scenario h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
}

.industry-detail-grid ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #334155;
}

.industry-scenario {
  padding: 34px;
}

.industry-scenario h2 {
  margin-top: 0;
}

.industry-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.industry-scenario-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 18px;
}

.industry-scenario-grid strong,
.industry-scenario-grid span {
  display: block;
}

.industry-scenario-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.industry-scenario-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.big-screen-body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #08111f;
  color: #dbeafe;
}

html[data-big-screen="true"] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #08111f;
}

.big-screen {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 8%, rgba(37, 99, 235, 0.28), transparent 30%),
    radial-gradient(circle at 12% 34%, rgba(21, 128, 61, 0.16), transparent 24%),
    linear-gradient(180deg, #0b1424 0%, #08111f 58%, #050914 100%);
  padding: 20px;
}

.big-screen::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
}

.screen-header,
.screen-kpis,
.screen-grid,
.screen-footer {
  position: relative;
  z-index: 1;
}

.screen-header {
  display: grid;
  grid-template-columns: 260px 1fr 210px;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 14px;
  background: rgba(8, 17, 31, 0.78);
  padding: 14px 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.screen-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.screen-brand img {
  width: 42px;
  height: 42px;
}

.screen-brand strong,
.screen-brand small,
.screen-title span,
.screen-clock strong,
.screen-clock small {
  display: block;
}

.screen-brand strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.1;
}

.screen-brand small,
.screen-title span,
.screen-clock small {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
}

.screen-title {
  text-align: center;
}

.screen-title h1 {
  margin: 2px 0 0;
  color: #f8fafc;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.screen-clock {
  text-align: right;
}

.screen-clock strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
}

.screen-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.screen-kpis article,
.screen-panel {
  border: 1px solid rgba(96, 165, 250, 0.26);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(8, 17, 31, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 46px rgba(0, 0, 0, 0.22);
}

.screen-kpis article {
  border-radius: 12px;
  padding: 14px;
}

.screen-kpis span,
.screen-kpis em {
  display: block;
  color: #93c5fd;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.screen-kpis strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.screen-kpis em {
  margin-top: 7px;
  color: #86efac;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  grid-template-rows: minmax(430px, 56vh) minmax(230px, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.screen-panel {
  overflow: hidden;
  border-radius: 14px;
  padding: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.18);
  padding-bottom: 10px;
}

.panel-head span {
  color: #60a5fa;
  font-size: 12px;
  font-weight: 900;
}

.panel-head strong {
  color: #f8fafc;
  font-size: 15px;
}

.left-stack,
.command-map,
.right-stack {
  grid-row: 1;
}

.timeline-panel {
  grid-column: 1 / 2;
}

.live-feed-panel {
  grid-column: 2 / 4;
}

.source-orbit {
  position: relative;
  height: 255px;
  margin-top: 16px;
}

.orbit-core,
.orbit-node,
.orbit-ring {
  position: absolute;
}

.orbit-core {
  left: 50%;
  top: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.42);
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.28);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  inset: 50%;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 72%;
  height: 72%;
}

.ring-b {
  width: 96%;
  height: 96%;
}

.orbit-node {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #dbeafe;
  padding: 0 10px;
  font-size: 12px;
}

.n1 { left: 7%; top: 18%; }
.n2 { right: 6%; top: 14%; }
.n3 { left: 2%; bottom: 25%; }
.n4 { right: 3%; bottom: 26%; }
.n5 { left: 37%; bottom: 2%; }
.n6 { left: 40%; top: 2%; }

.heat-list {
  display: grid;
  gap: 8px;
}

.heat-list div,
.opportunity-feed div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.56);
  padding: 10px;
}

.heat-list span,
.opportunity-feed span {
  color: #bfdbfe;
  font-size: 12px;
}

.heat-list strong {
  color: #ffffff;
}

.map-stage {
  position: relative;
  min-height: calc(100% - 42px);
  margin-top: 14px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(37, 99, 235, 0.35), transparent 30%),
    radial-gradient(circle at 64% 58%, rgba(185, 28, 28, 0.2), transparent 18%),
    rgba(2, 6, 23, 0.46);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(96, 165, 250, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
}

.city-dot {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.city-dot::after {
  position: absolute;
  top: 48px;
  color: #bfdbfe;
  content: attr(data-city);
  font-size: 11px;
  white-space: nowrap;
}

.city-dot.high { left: 62%; top: 30%; background: #b91c1c; }
.city-dot.medium { left: 47%; top: 55%; background: #b45309; }
.city-dot.low { left: 28%; top: 44%; background: #15803d; }
.city-dot.second { left: 55%; top: 17%; }

.route-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.82), transparent);
  transform-origin: left center;
}

.r1 {
  left: 31%;
  top: 51%;
  width: 260px;
  transform: rotate(-18deg);
}

.r2 {
  left: 50%;
  top: 58%;
  width: 220px;
  transform: rotate(-42deg);
}

.map-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 330px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 12px;
  background: rgba(8, 17, 31, 0.88);
  padding: 16px;
}

.map-card span,
.map-card em {
  display: block;
  color: #93c5fd;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.map-card strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
}

.bar-race {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bar-race div {
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.bar-race span,
.bar-race strong {
  color: #dbeafe;
  font-size: 12px;
  font-weight: 900;
}

.bar-race b {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #60a5fa var(--value), rgba(30, 41, 59, 0.86) var(--value));
}

.opportunity-feed {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.opportunity-feed div {
  display: block;
}

.opportunity-feed strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
}

.screen-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.screen-timeline li {
  min-height: 140px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.58);
  padding: 14px;
}

.screen-timeline span,
.screen-timeline em {
  display: block;
  color: #60a5fa;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.screen-timeline strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.screen-timeline em {
  margin-top: 14px;
  color: #86efac;
}

.live-feed {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.live-feed article {
  min-height: 146px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.58);
  padding: 14px;
}

.live-feed article > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.live-feed .danger > span { background: #b91c1c; }
.live-feed .watch > span { background: #b45309; }
.live-feed .normal > span { background: #15803d; }

.live-feed strong,
.live-feed small,
.live-feed em {
  display: block;
}

.live-feed strong {
  margin-top: 12px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.live-feed small,
.live-feed em {
  color: #93c5fd;
  font-size: 12px;
}

.live-feed em {
  margin-top: 10px;
  color: #86efac;
  font-style: normal;
  font-weight: 900;
}

.screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  background: rgba(8, 17, 31, 0.78);
  padding: 14px 16px;
  color: #93c5fd;
  font-size: 13px;
}

.screen-footer a {
  color: #ffffff;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 820;
}

.footer-brand img {
  display: block;
  width: 28px;
  height: 28px;
}

.record-links {
  grid-column: 1 / -1;
  justify-self: center;
  width: auto;
  color: var(--muted);
  font-size: 13px;
}

.genghuo-powered-badge {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: fit-content;
  max-width: min(100%, 340px);
  min-height: 32px;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  justify-self: center;
  gap: 7px;
  margin: 2px auto 0;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  color: rgba(31, 41, 55, 0.84);
  padding: 0 13px 0 11px;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.genghuo-powered-badge span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.genghuo-powered-badge::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 12%, rgba(242, 106, 27, 0.16), transparent 46%);
  content: "";
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.genghuo-powered-badge:hover {
  border-color: rgba(242, 106, 27, 0.42);
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.07),
    0 0 0 3px rgba(242, 106, 27, 0.08);
  color: rgba(31, 41, 55, 0.94);
  transform: translateY(-1px);
}

.genghuo-powered-badge:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.genghuo-powered-badge:active {
  transform: translateY(0);
}

.genghuo-powered-badge:focus-visible {
  outline: 2px solid rgba(242, 106, 27, 0.76);
  outline-offset: 3px;
}

.genghuo-powered-flame {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #f26a1b;
  filter: drop-shadow(0 0 0 rgba(242, 106, 27, 0));
  transition:
    color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.genghuo-powered-badge:hover .genghuo-powered-flame {
  color: #c94a15;
  filter: drop-shadow(0 0 5px rgba(242, 106, 27, 0.44));
  transform: scale(1.04);
}

.site-footer.dark-footer .genghuo-powered-badge,
.dark-footer .genghuo-powered-badge,
.big-screen-body .genghuo-powered-badge {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(24, 24, 24, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.site-footer.dark-footer .genghuo-powered-badge:hover,
.dark-footer .genghuo-powered-badge:hover,
.big-screen-body .genghuo-powered-badge:hover {
  border-color: rgba(242, 106, 27, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.26),
    0 0 0 3px rgba(242, 106, 27, 0.12);
  color: #ffffff;
}

@media (max-width: 980px) {
  .screen-header {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .screen-title,
  .screen-clock {
    text-align: left;
  }

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

  .screen-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .left-stack,
  .command-map,
  .right-stack,
  .timeline-panel,
  .live-feed-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .live-feed,
  .screen-timeline {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split-section,
  .media-section,
  .contact-section,
  .faq-section,
  .growth-section {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

.capability-grid,
.package-grid,
.report-library-grid,
.deliverable-grid,
.industry-detail-grid,
.industry-scenario-grid,
.trust-grid,
.growth-grid,
.procurement-grid,
.mainland-checklist,
.radar-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

  .radar-input-row {
    grid-template-columns: 1fr 1fr;
  }

  .radar-input-row .primary-button {
    grid-column: 1 / -1;
  }

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

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

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .big-screen {
    padding: 12px;
  }

  .screen-title h1 {
    font-size: 26px;
  }

  .screen-kpis {
    grid-template-columns: 1fr;
  }

  .source-orbit {
    height: 235px;
  }

  .map-stage {
    min-height: 390px;
  }

  .map-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .r1,
  .r2 {
    width: 150px;
  }

  .screen-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .radar-input-row,
  .radar-preview,
  .procurement-grid,
  .mainland-checklist {
    grid-template-columns: 1fr;
  }

  .radar-input-row .primary-button {
    width: 100%;
  }

  html {
    scroll-padding-top: 124px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-cta {
    min-height: 36px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .industry-hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .industry-hero h1 {
    font-size: 40px;
  }

  .industry-hero p {
    font-size: 16px;
  }

  .hero-metrics,
  .hero-dashboard-grid,
    .source-workflow-layout,
    .capability-grid,
    .industry-detail-grid,
    .industry-scenario-grid,
    .industry-solution-grid,
    .case-grid,
    .package-grid,
    .demo-layout,
    .report-library-grid,
    .deliverable-grid,
    .trust-grid,
    .growth-grid,
    .process-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-dashboard {
    border-radius: var(--radius);
  }

  .intelligence-radar,
  .business-board {
    min-height: 218px;
  }

  .source-node {
    padding: 6px 8px;
    font-size: 10px;
  }

  .risk-node {
    min-width: 70px;
    padding: 8px;
  }

  .risk-node em {
    font-size: 11px;
  }

  .board-metrics strong {
    font-size: 18px;
  }

  .board-row {
    grid-template-columns: 54px 1fr;
  }

  .board-row em {
    grid-column: 2;
  }

  .case-card {
    min-height: auto;
  }

  .industry-detail-grid article,
  .industry-scenario {
    padding: 22px;
  }

  .industry-actions,
  .form-reassurance {
    grid-template-columns: 1fr;
  }

  .package-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-tabs {
    overflow-x: auto;
  }

  .demo-scenarios {
    padding-bottom: 2px;
  }

  .demo-list {
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-status-strip,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid div:nth-child(n) {
    grid-column: auto;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .legal-page {
    padding: 42px 18px;
  }

  .legal-document {
    padding: 28px 20px;
  }

  .not-found-card {
    padding: 34px 20px;
  }

  .report-cover,
  .two-column-report {
    grid-template-columns: 1fr;
  }

  .report-cover,
  .report-section,
  .report-cta {
    padding: 26px 20px;
  }

  .report-summary-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: grid;
  }
}

.big-screen-v2 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 8%, rgba(14, 165, 233, 0.42), transparent 22%),
    radial-gradient(circle at 50% 48%, rgba(37, 99, 235, 0.2), transparent 36%),
    radial-gradient(circle at 18% 22%, rgba(245, 158, 11, 0.12), transparent 22%),
    linear-gradient(180deg, #031837 0%, #051329 48%, #020713 100%);
  padding: clamp(10px, 1.2vw, 18px);
  color: #dff8ff;
}

.big-screen-v2::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(56, 189, 248, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 42% 56%, transparent 0 30%, rgba(14, 165, 233, 0.08) 31%, transparent 32%),
    repeating-linear-gradient(126deg, transparent 0 78px, rgba(125, 211, 252, 0.06) 79px 80px);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  content: "";
}

.big-screen-v2::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0 46%, rgba(1, 8, 22, 0.44) 82%),
    linear-gradient(90deg, rgba(3, 24, 55, 0.92), transparent 16% 84%, rgba(3, 24, 55, 0.92));
  content: "";
}

.big-frame {
  position: fixed;
  inset: 8px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 24px;
  box-shadow:
    inset 0 0 24px rgba(14, 165, 233, 0.28),
    0 0 36px rgba(14, 165, 233, 0.18);
}

.big-frame::before,
.big-frame::after {
  position: absolute;
  width: 280px;
  height: 74px;
  border-top: 4px solid rgba(56, 189, 248, 0.72);
  content: "";
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.65));
}

.big-frame::before {
  left: 26px;
  top: -1px;
  border-left: 4px solid rgba(56, 189, 248, 0.72);
  border-top-left-radius: 18px;
  clip-path: polygon(0 0, 100% 0, 82% 34%, 22% 34%, 0 78%);
}

.big-frame::after {
  right: 26px;
  top: -1px;
  border-right: 4px solid rgba(56, 189, 248, 0.72);
  border-top-right-radius: 18px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 34%, 18% 34%);
}

.wisdom-header,
.industry-switcher,
.wisdom-board,
.wisdom-footer {
  position: relative;
  z-index: 2;
}

.wisdom-header {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) auto minmax(360px, 1.4fr) minmax(190px, 0.7fr);
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 8px clamp(18px, 3vw, 52px);
}

.cutoff-time,
.wisdom-clock {
  color: rgba(219, 234, 254, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.wisdom-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 950;
}

.wisdom-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.28);
}

.wisdom-title {
  position: relative;
  min-width: 0;
  text-align: center;
}

.wisdom-title::before,
.wisdom-title::after {
  position: absolute;
  top: 50%;
  width: min(20vw, 310px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.88), transparent);
  content: "";
}

.wisdom-title::before {
  right: calc(100% + 20px);
}

.wisdom-title::after {
  left: calc(100% + 20px);
}

.wisdom-title span {
  display: block;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.68), 0 4px 0 rgba(2, 6, 23, 0.3);
}

.wisdom-title strong {
  display: block;
  margin-top: 8px;
  color: #67e8f9;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.wisdom-clock {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  text-align: right;
}

.wisdom-clock strong {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.wisdom-clock span {
  color: rgba(191, 219, 254, 0.84);
  font-size: 12px;
  line-height: 1.25;
}

.industry-switcher {
  display: flex;
  width: min(720px, 92vw);
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 10px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  background: rgba(3, 24, 55, 0.58);
  padding: 6px;
  box-shadow: inset 0 0 18px rgba(14, 165, 233, 0.08);
}

.industry-switcher button {
  min-height: 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(219, 234, 254, 0.78);
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.industry-switcher button.active,
.industry-switcher button[aria-pressed="true"] {
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.3), rgba(37, 99, 235, 0.34));
  color: #ffffff;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.28);
}

.wisdom-board {
  display: grid;
  grid-template-columns: minmax(310px, 25vw) minmax(520px, 1fr) minmax(310px, 25vw);
  grid-template-rows: clamp(330px, 30vh, 360px) clamp(300px, 28vh, 320px) clamp(270px, 25vh, 300px);
  gap: clamp(10px, 1vw, 16px);
  min-height: calc(100vh - 184px);
}

.hud-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 116, 144, 0.15), transparent 64px),
    rgba(5, 30, 67, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(147, 197, 253, 0.07),
    inset 0 0 34px rgba(14, 165, 233, 0.11),
    0 0 24px rgba(14, 165, 233, 0.12);
  backdrop-filter: blur(10px);
}

.hud-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.11), transparent 22% 78%, rgba(56, 189, 248, 0.1)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(56, 189, 248, 0.04) 17px 18px);
  content: "";
}

.hud-card::after {
  position: absolute;
  left: 12px;
  top: 0;
  width: 8px;
  height: 38px;
  background: linear-gradient(180deg, #f59e0b, transparent);
  content: "";
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.85));
  transform: skewX(-16deg);
}

.hud-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.74), rgba(37, 99, 235, 0.35), transparent);
  padding: 0 14px 0 28px;
}

.hud-title span {
  color: #e0faff;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 950;
  text-shadow: 0 0 12px rgba(103, 232, 249, 0.72);
}

.hud-title i,
.hud-title i::before,
.hud-title i::after {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.9);
  content: "";
}

.hud-title i {
  position: relative;
}

.hud-title i::before {
  position: absolute;
  right: 10px;
}

.hud-title i::after {
  position: absolute;
  right: 20px;
}

.hot-panel {
  grid-column: 1;
  grid-row: 1;
}

.search-panel {
  grid-column: 1;
  grid-row: 2;
}

.platform-panel {
  grid-column: 3;
  grid-row: 1;
}

.attitude-panel {
  grid-column: 3;
  grid-row: 2;
}

.model-panel {
  grid-column: 1 / 2;
  grid-row: 3;
}

.emotion-panel {
  grid-column: 2 / 3;
  grid-row: 3;
}

.word-panel {
  grid-column: 3 / 4;
  grid-row: 3;
}

.hot-events {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 9px 12px;
}

.hot-events article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 58px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px dashed rgba(125, 211, 252, 0.2);
  padding: 4px 0;
  cursor: pointer;
  outline: none;
}

.hot-events article.selected,
.hot-events article:focus-visible {
  border-bottom-color: rgba(34, 211, 238, 0.46);
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), transparent);
  box-shadow: inset 3px 0 0 rgba(34, 211, 238, 0.82);
}

.hot-events em {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.72), rgba(245, 158, 11, 0.14));
  color: #fff7ed;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.hot-events strong,
.hot-events small {
  display: block;
  min-width: 0;
}

.hot-events strong {
  overflow: hidden;
  color: #eafcff;
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-events small {
  margin-top: 3px;
  overflow: hidden;
  color: rgba(191, 219, 254, 0.78);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-events b {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background: rgba(15, 23, 42, 0.42);
  color: rgba(219, 234, 254, 0.78);
  font-size: 12px;
}

.hot-events .danger em {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.74), rgba(245, 158, 11, 0.2));
}

.search-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 12px 14px;
}

.search-table > div {
  display: grid;
  grid-template-columns: 42px 1fr 82px 38px;
  gap: 10px;
  align-items: center;
  min-height: 31px;
  color: rgba(219, 234, 254, 0.82);
  font-size: 12px;
}

.search-table .table-head {
  color: rgba(191, 219, 254, 0.72);
  font-weight: 900;
}

.search-table em {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.36);
  border-radius: 999px;
  color: #bae6fd;
  font-style: normal;
}

.search-table strong {
  overflow: hidden;
  color: #e0f2fe;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-table span {
  overflow: hidden;
  color: rgba(191, 219, 254, 0.76);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-table b {
  color: #fbbf24;
  text-align: right;
}

.center-stage {
  position: relative;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 0;
  border: 1px solid rgba(56, 189, 248, 0.08);
  border-radius: 12px;
}

.center-stage::before {
  position: absolute;
  inset: 16% 8% 2%;
  background:
    radial-gradient(circle at 50% 48%, rgba(14, 165, 233, 0.22), transparent 38%),
    linear-gradient(115deg, transparent 0 18%, rgba(56, 189, 248, 0.15) 19% 20%, transparent 21% 100%),
    linear-gradient(28deg, transparent 0 24%, rgba(59, 130, 246, 0.18) 25% 26%, transparent 27% 100%);
  content: "";
  filter: blur(0.2px);
}

.top-metrics {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 3vw, 52px);
  align-items: center;
}

.top-metrics div {
  position: relative;
  display: grid;
  min-height: 54px;
  align-content: center;
  padding-left: 64px;
}

.top-metrics div::before {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.2), rgba(37, 99, 235, 0.62)),
    linear-gradient(90deg, transparent 8px, rgba(125, 211, 252, 0.4) 9px 11px, transparent 12px);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.42);
  content: "";
  transform: translateY(-50%);
}

.top-metrics span {
  color: #22d3ee;
  font-size: 13px;
  font-weight: 900;
}

.top-metrics strong {
  color: #22d3ee;
  font-size: clamp(22px, 1.9vw, 36px);
  font-weight: 950;
  line-height: 1.04;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.66);
}

.china-map-panel {
  position: absolute;
  inset: 74px 2% 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.china-map-glow {
  position: absolute;
  width: min(72vw, 860px);
  aspect-ratio: 1.5;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 52%, rgba(56, 189, 248, 0.28), transparent 34%),
    radial-gradient(circle at 34% 62%, rgba(59, 130, 246, 0.28), transparent 28%);
  filter: blur(10px);
}

.china-shape {
  position: relative;
  width: min(64vw, 860px);
  max-width: 100%;
  aspect-ratio: 1.52;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 68% 52%, rgba(34, 211, 238, 0.14), transparent 38%),
    rgba(2, 12, 27, 0.32);
  clip-path: none;
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.9)) drop-shadow(0 0 42px rgba(37, 99, 235, 0.86));
}

.china-map-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) hue-rotate(170deg) saturate(2.1) brightness(1.08) contrast(1.08);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.china-shape::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 48%, rgba(34, 211, 238, 0.2), transparent 30%),
    linear-gradient(rgba(2, 132, 199, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.24) 1px, transparent 1px),
    repeating-linear-gradient(21deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px 20px);
  background-size: 100% 100%, 28px 28px, 28px 28px, 100% 100%;
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
}

.china-shape::after {
  display: none;
}

.province-label {
  position: absolute;
  z-index: 2;
  color: #dff8ff;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 950;
  text-shadow: 0 0 8px #0369a1, 0 1px 1px #020617;
}

.province-label.beijing { left: 63%; top: 32%; }
.province-label.shandong { left: 62%; top: 43%; }
.province-label.guangdong { left: 56%; top: 69%; }

.map-pin {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border: 3px solid #fde047;
  border-radius: 999px;
  background: #f97316;
  box-shadow: 0 0 0 8px rgba(250, 204, 21, 0.22), 0 0 22px rgba(250, 204, 21, 0.92);
}

.map-pin::after {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(250, 204, 21, 0.72);
  border-radius: 999px;
  animation: pulse-ring 1.8s linear infinite;
  content: "";
}

.pin-bj { left: 68%; top: 36%; }
.pin-sd { left: 65%; top: 47%; }
.pin-gd { left: 62%; top: 72%; }

.map-source-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 4;
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(2, 12, 27, 0.72);
  color: rgba(219, 234, 254, 0.88);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-caption {
  position: absolute;
  left: 50%;
  bottom: 78px;
  z-index: 4;
  width: min(520px, 72%);
  border-top: 1px solid rgba(125, 211, 252, 0.44);
  border-bottom: 1px solid rgba(125, 211, 252, 0.2);
  background: linear-gradient(90deg, transparent, rgba(14, 116, 144, 0.38), transparent);
  padding: 11px 16px;
  color: #dff8ff;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.78);
  transform: translateX(-50%);
}

.map-compliance-note {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 4;
  width: min(540px, 76%);
  color: rgba(191, 219, 254, 0.66);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  transform: translateX(-50%);
}

.incident-drawer {
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 5;
  width: min(280px, 34%);
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 8px;
  background: rgba(2, 12, 27, 0.78);
  box-shadow: 0 0 24px rgba(14, 165, 233, 0.18);
  padding: 12px;
  backdrop-filter: blur(8px);
}

.incident-drawer span,
.incident-drawer dt {
  display: block;
  color: #67e8f9;
  font-size: 11px;
  font-weight: 950;
}

.incident-drawer h2 {
  margin: 5px 0 8px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
}

.incident-drawer dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.incident-drawer div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px;
}

.incident-drawer dd {
  margin: 0;
  color: rgba(219, 234, 254, 0.84);
  font-size: 11px;
  line-height: 1.35;
}

.platform-rank {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.platform-rank div {
  display: grid;
  grid-template-columns: 52px 1fr 72px;
  gap: 10px;
  align-items: center;
  min-height: 28px;
}

.platform-rank em {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  border: 1px solid rgba(248, 113, 113, 0.34);
  color: #f87171;
  font-style: normal;
  font-weight: 950;
}

.platform-rank div:nth-child(2) em { color: #fb923c; }
.platform-rank div:nth-child(3) em { color: #facc15; }
.platform-rank div:nth-child(n + 4) em { color: #bfdbfe; }

.platform-rank span {
  position: relative;
  overflow: hidden;
  color: #dff8ff;
  font-size: 13px;
  white-space: nowrap;
}

.platform-rank b::before {
  position: absolute;
  left: calc(-100% - 82px);
  right: 0;
  bottom: -10px;
  height: 3px;
  background: linear-gradient(90deg, #22d3ee var(--value, 60%), rgba(15, 23, 42, 0.82) var(--value, 60%));
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.72);
  content: "";
}

.platform-rank b {
  position: relative;
  color: #fbbf24;
  font-size: 13px;
  text-align: right;
}

.attitude-panel p,
.attitude-panel small {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: rgba(219, 234, 254, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.attitude-panel p {
  padding: 18px 20px 0;
}

.attitude-panel small {
  padding: 12px 20px 18px;
  color: #93c5fd;
}

.model-question,
.model-tabs,
.model-bars,
.emotion-radar,
.word-cloud {
  position: relative;
  z-index: 1;
}

.model-question {
  margin: 12px 18px 8px;
  border-left: 3px solid #22d3ee;
  background: rgba(15, 23, 42, 0.36);
  padding: 6px 12px;
  color: #dff8ff;
  font-weight: 900;
}

.model-tabs {
  display: flex;
  gap: 8px;
  overflow: hidden;
  padding: 0 18px 7px;
}

.model-tabs span {
  flex: 0 0 auto;
  color: rgba(191, 219, 254, 0.78);
  font-size: 12px;
}

.model-bars {
  display: grid;
  gap: 5px;
  padding: 0 18px 16px;
}

.model-bars div {
  display: grid;
  grid-template-columns: 54px 52px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 20px;
}

.model-bars em {
  border: 1px solid rgba(34, 211, 238, 0.48);
  color: #67e8f9;
  font-size: 11px;
  font-style: normal;
  text-align: center;
}

.model-bars span {
  color: rgba(219, 234, 254, 0.84);
  font-size: 13px;
}

.model-bars b {
  display: block;
  height: 10px;
  background: linear-gradient(90deg, #22d3ee var(--value), rgba(30, 41, 59, 0.82) var(--value));
  color: #bfdbfe;
  font-size: 12px;
  line-height: 0;
  text-align: right;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.emotion-radar {
  min-height: 168px;
  padding: 6px 14px 10px;
}

.emotion-radar svg {
  display: block;
  width: min(42%, 220px);
  min-width: 170px;
  margin: 0 auto;
}

.radar-web {
  fill: rgba(2, 132, 199, 0.08);
  stroke: rgba(125, 211, 252, 0.36);
  stroke-width: 1.5;
}

.radar-fill {
  fill: rgba(14, 165, 233, 0.32);
}

.radar-line {
  fill: none;
  stroke: #22d3ee;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.8));
}

.emotion-radar span {
  position: absolute;
  color: rgba(219, 234, 254, 0.9);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.emotion-radar .e1 { left: 49%; top: 11%; }
.emotion-radar .e2 { left: 27%; top: 27%; }
.emotion-radar .e3 { left: 24%; top: 52%; }
.emotion-radar .e4 { left: 36%; bottom: 16%; }
.emotion-radar .e5 { left: 51%; bottom: 11%; }
.emotion-radar .e6 { right: 23%; bottom: 20%; }
.emotion-radar .e7 { right: 19%; top: 48%; }
.emotion-radar .e8 { right: 25%; top: 27%; }

.word-cloud {
  min-height: 188px;
  padding: 16px 18px 18px;
  text-align: center;
}

.word-cloud strong,
.word-cloud span,
.word-cloud em,
.word-cloud b,
.word-cloud small {
  display: inline-block;
  margin: 4px 7px;
  font-style: normal;
  line-height: 1.12;
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.38);
}

.word-cloud strong {
  color: #22d3ee;
  font-size: clamp(25px, 2.1vw, 38px);
  font-weight: 950;
}

.word-cloud em {
  color: #dbeafe;
  font-size: clamp(20px, 1.6vw, 28px);
}

.word-cloud b {
  color: #bae6fd;
  font-size: clamp(16px, 1.25vw, 22px);
}

.word-cloud span {
  color: rgba(191, 219, 254, 0.9);
  font-size: clamp(14px, 1vw, 18px);
}

.word-cloud small {
  color: #fbbf24;
  font-size: 13px;
}

.wisdom-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 56px;
  color: rgba(191, 219, 254, 0.76);
  font-size: 13px;
}

.wisdom-footer a,
.brand-radar-form button,
.report-generator button {
  border: 1px solid rgba(34, 211, 238, 0.42);
  background: rgba(14, 165, 233, 0.12);
  color: #e0faff;
  padding: 6px 12px;
  font-weight: 900;
  cursor: pointer;
}

.brand-radar-form,
.report-generator {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: rgba(3, 24, 55, 0.48);
  padding: 6px;
}

.brand-radar-form label {
  color: rgba(191, 219, 254, 0.74);
  font-weight: 900;
}

.brand-radar-form input {
  width: min(230px, 42vw);
  min-height: 30px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  background: rgba(2, 6, 23, 0.68);
  color: #ffffff;
  padding: 0 10px;
  font: inherit;
}

.brand-radar-form input::placeholder {
  color: rgba(191, 219, 254, 0.56);
}

.report-generator span {
  min-width: min(360px, 52vw);
  color: rgba(219, 234, 254, 0.84);
  font-weight: 800;
}

.report-generator i {
  display: block;
  width: 110px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.82);
}

.report-generator b {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22d3ee, #facc15);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.64);
  transition: width 0.22s ease;
}

.report-generator button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@keyframes pulse-ring {
  from {
    opacity: 0.9;
    transform: scale(0.6);
  }

  to {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (max-width: 1320px) {
  .wisdom-board {
    grid-template-columns: 300px minmax(480px, 1fr) 300px;
  }

  .hot-events article {
    grid-template-columns: 62px 1fr 54px;
  }

  .search-table > div {
    grid-template-columns: 36px 1fr 68px 32px;
  }
}

@media (max-width: 1100px) {
  .big-screen-v2 {
    overflow: visible;
  }

  .wisdom-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .wisdom-title {
    text-align: left;
  }

  .wisdom-title::before,
  .wisdom-title::after {
    display: none;
  }

  .wisdom-clock {
    justify-content: flex-start;
    text-align: left;
  }

  .industry-switcher {
    justify-content: flex-start;
    margin-left: 0;
    overflow-x: auto;
  }

  .wisdom-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hot-panel,
  .search-panel,
  .platform-panel,
  .attitude-panel,
  .model-panel,
  .emotion-panel,
  .word-panel,
  .center-stage {
    grid-column: auto;
    grid-row: auto;
  }

  .center-stage {
    min-height: 560px;
    order: -1;
  }

  .china-map-panel {
    inset: 96px 0 0;
  }

  .china-shape {
    width: min(94vw, 720px);
  }

  .incident-drawer {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .map-caption {
    bottom: 168px;
    width: min(640px, 86%);
  }

  .map-compliance-note {
    bottom: 142px;
    width: min(640px, 86%);
  }

  .wisdom-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4px 4px;
  }

  .brand-radar-form,
  .report-generator {
    width: 100%;
    flex-wrap: wrap;
  }

  .brand-radar-form input,
  .report-generator span {
    flex: 1 1 220px;
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .big-screen-v2 {
    max-width: 100vw;
    overflow-x: clip;
  }

  .big-frame {
    inset: 5px;
    border-radius: 16px;
  }

  .big-frame::before,
  .big-frame::after {
    width: 120px;
    height: 44px;
  }

  .wisdom-header {
    min-height: auto;
    padding: 12px 10px;
  }

  .wisdom-title span {
    font-size: 29px;
    line-height: 1.08;
  }

  .wisdom-title strong {
    letter-spacing: 0;
  }

  .industry-switcher {
    width: calc(100vw - 34px);
    padding: 5px;
  }

  .industry-switcher button {
    flex: 0 0 auto;
    padding: 0 12px;
  }

  .center-stage {
    min-height: 690px;
  }

  .top-metrics {
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .top-metrics div {
    min-height: 42px;
    padding-left: 50px;
  }

  .top-metrics div::before {
    width: 34px;
    height: 28px;
  }

  .top-metrics strong {
    font-size: 22px;
  }

  .china-map-panel {
    inset: 168px 0 0;
  }

  .china-shape {
    width: 100%;
    margin-top: -18px;
  }

  .province-label {
    font-size: 11px;
  }

  .map-caption {
    bottom: 244px;
    font-size: 13px;
  }

  .map-compliance-note {
    bottom: 214px;
    font-size: 10px;
  }

  .incident-drawer {
    left: 10px;
    right: 10px;
    bottom: 14px;
  }

  .incident-drawer div {
    grid-template-columns: 64px 1fr;
  }

  .hot-events article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hot-events strong,
  .hot-events small {
    white-space: normal;
  }

  .hot-events em,
  .hot-events b {
    justify-self: start;
    padding: 0 8px;
  }

  .search-table > div {
    grid-template-columns: 34px 1fr 34px;
  }

  .search-table > div span {
    display: none;
  }

  .emotion-radar {
    min-height: 260px;
  }

  .emotion-radar svg {
    width: 100%;
  }

  .emotion-radar .e1 { left: 45%; top: 18%; }
  .emotion-radar .e2 { left: 4%; top: 34%; }
  .emotion-radar .e3 { left: 4%; top: 58%; }
  .emotion-radar .e4 { left: 18%; bottom: 14%; }
  .emotion-radar .e5 { left: 44%; bottom: 8%; }
  .emotion-radar .e6 { right: 8%; bottom: 18%; }
  .emotion-radar .e7 { right: 4%; top: 58%; }
  .emotion-radar .e8 { right: 6%; top: 34%; }

  .brand-radar-form,
  .report-generator {
    display: grid;
    grid-template-columns: 1fr;
  }

  .brand-radar-form input,
  .brand-radar-form button,
  .report-generator button,
  .report-generator span,
  .report-generator i,
  .wisdom-footer a {
    width: 100%;
  }
}

@media (min-width: 681px) {
  .big-screen-body {
    overflow: hidden;
  }

  .big-screen-v2 {
    position: fixed;
    left: var(--screen-left, 0);
    top: var(--screen-top, 0);
    display: grid;
    width: 1920px;
    height: 1080px;
    min-height: 0;
    grid-template-rows: 82px 42px minmax(0, 1fr) 50px;
    gap: 10px;
    overflow: hidden;
    padding: 14px 18px;
    transform: scale(var(--screen-scale, 1));
    transform-origin: top left;
  }

  .big-frame {
    position: absolute;
  }

  .wisdom-header {
    min-height: 0;
    grid-template-columns: 300px 240px minmax(0, 1fr) 300px;
    padding: 0 58px;
  }

  .wisdom-title span {
    font-size: 50px;
    line-height: 0.92;
  }

  .wisdom-clock strong {
    font-size: 30px;
  }

  .industry-switcher {
    width: 690px;
    min-height: 40px;
    margin: 0 auto;
    padding: 4px;
  }

  .industry-switcher button {
    min-height: 30px;
    padding: 0 18px;
    font-size: 14px;
  }

  .wisdom-board {
    min-height: 0;
    grid-template-columns: 490px minmax(0, 1fr) 490px;
    grid-template-rows: minmax(0, 300px) minmax(0, 232px) minmax(0, 238px);
    gap: 12px;
  }

  .hud-card {
    min-height: 0;
  }

  .hud-title {
    min-height: 42px;
  }

  .hot-events {
    gap: 3px;
    padding: 6px 14px;
  }

  .hot-events article {
    grid-template-columns: 76px minmax(0, 1fr) 58px;
    min-height: 45px;
    gap: 9px;
  }

  .hot-events strong {
    font-size: 12px;
  }

  .hot-events small {
    font-size: 10px;
  }

  .hot-events em,
  .hot-events b {
    min-height: 19px;
    padding: 0 7px;
    font-size: 10px;
  }

  .search-table {
    gap: 3px;
    padding: 9px 16px;
  }

  .search-table > div {
    grid-template-columns: 48px minmax(0, 1fr) 96px 44px;
    min-height: 28px;
    font-size: 12px;
  }

  .search-table em {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .center-stage {
    grid-column: 2;
    grid-row: 1 / 3;
    overflow: hidden;
  }

  .top-metrics {
    left: 34px;
    right: 34px;
    top: 14px;
    gap: 12px;
    grid-template-columns: 0.78fr 1.38fr 0.94fr;
  }

  .top-metrics div {
    min-width: 0;
    min-height: 56px;
    overflow: hidden;
    padding-left: 44px;
  }

  .top-metrics div::before {
    left: 6px;
    width: 34px;
    height: 30px;
  }

  .top-metrics strong {
    overflow: hidden;
    max-width: 100%;
    font-size: 29px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-overflow: clip;
    white-space: nowrap;
  }

  .china-map-panel {
    inset: 78px 16px 8px;
  }

  .china-shape {
    width: min(920px, 100%);
    margin-top: -10px;
  }

  .map-caption {
    bottom: 50px;
    width: 520px;
    padding: 8px 12px;
    font-size: 16px;
  }

  .map-compliance-note {
    bottom: 29px;
    width: 560px;
    font-size: 10px;
  }

  .incident-drawer {
    right: 14px;
    bottom: 72px;
    width: 268px;
    padding: 10px;
  }

  .incident-drawer h2 {
    font-size: 15px;
  }

  .incident-drawer dd {
    font-size: 11px;
  }

  .platform-rank {
    gap: 12px;
    padding: 16px 18px;
  }

  .platform-rank div {
    grid-template-columns: 62px minmax(0, 1fr) 80px;
    min-height: 30px;
  }

  .attitude-panel p {
    padding: 18px 22px 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .attitude-panel small {
    padding: 10px 22px 14px;
    font-size: 13px;
  }

  .model-question {
    margin: 7px 16px 5px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .model-tabs {
    gap: 6px;
    padding: 0 16px 4px;
  }

  .model-tabs span {
    font-size: 10px;
  }

  .model-bars {
    gap: 4px;
    padding: 0 16px 7px;
  }

  .model-bars div {
    min-height: 16px;
  }

  .model-bars b {
    height: 7px;
  }

  .model-bars em,
  .model-bars span,
  .model-bars b {
    font-size: 10px;
  }

  .emotion-radar {
    min-height: 0;
    height: calc(100% - 42px);
    padding: 3px 14px 6px;
  }

  .emotion-radar svg {
    width: 218px;
    min-width: 218px;
  }

  .emotion-radar span {
    font-size: 11px;
  }

  .word-cloud {
    min-height: 0;
    height: calc(100% - 42px);
    padding: 12px 16px 9px;
  }

  .word-cloud strong {
    font-size: 28px;
  }

  .word-cloud em {
    font-size: 21px;
  }

  .word-cloud b {
    font-size: 17px;
  }

  .word-cloud span {
    font-size: 13px;
  }

  .wisdom-footer {
    min-height: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    padding: 0 34px;
  }

  .brand-radar-form,
  .report-generator {
    min-width: 0;
    height: 40px;
    flex-wrap: nowrap;
    padding: 4px 6px;
  }

  .brand-radar-form input {
    width: 196px;
  }

  .report-generator span {
    min-width: 260px;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .report-generator i {
    width: 100px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .report-cta {
    display: none;
  }

  body,
  .report-page {
    background: #ffffff;
  }

  .report-page {
    padding: 0;
  }

  .report-document {
    border: 0;
    box-shadow: none;
  }
}

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