﻿:root {
  --ink: #172033;
  --muted: #667189;
  --line: #dfe6f5;
  --soft-line: #edf2fb;
  --blue: #5277f7;
  --blue-strong: #315eea;
  --blue-soft: #eaf1ff;
  --violet: #7a60f2;
  --violet-soft: #efebff;
  --cyan: #56c8df;
  --cyan-soft: #e8fbff;
  --rose: #ef7cab;
  --rose-soft: #fff0f6;
  --green: #41b883;
  --green-soft: #e9fbf2;
  --paper: #ffffff;
  --mist: #f6f8fd;
  --panel: #fbfcff;
  --shadow: 0 24px 70px rgba(47, 65, 118, 0.14);
  --panel-shadow: 0 10px 28px rgba(55, 72, 119, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  letter-spacing: 0;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(84, 120, 255, 0.3);
}
.brand strong { display: block; font-size: 16px; line-height: 1.1; }
.brand small { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--blue-strong); }

.section-band { padding: 96px max(40px, calc((100vw - 1480px) / 2 + 40px)); }
#dashboard, #framework, #report, .full-dashboard { scroll-margin-top: 92px; }
.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(680px, 1.08fr);
  align-items: center;
  gap: 34px;
  min-height: calc(100vh - 72px);
  padding-top: 54px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 56%, #eef4ff 100%);
  overflow: hidden;
}
.hero-copy { max-width: 640px; }
.eyebrow { margin: 0 0 14px; color: var(--blue-strong); font-size: 13px; font-weight: 800; }
h1, h2 { margin: 0; line-height: 1.15; letter-spacing: 0; word-break: keep-all; }
h1 { max-width: 660px; font-size: clamp(42px, 4.6vw, 68px); font-weight: 800; }
h2 { font-size: clamp(30px, 3.2vw, 48px); font-weight: 800; }
.hero-description { max-width: 590px; margin: 24px 0 0; color: #46536c; font-size: 18px; line-height: 1.75; word-break: keep-all; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 34px; }
.primary-button, .secondary-button, .ghost-button, .text-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
}
.primary-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; color: white; background: var(--blue-strong); box-shadow: 0 16px 30px rgba(47, 99, 246, 0.28); }
.primary-button:hover { background: #244fd2; }
.primary-button.light { color: var(--blue-strong); background: white; }
.secondary-button, .ghost-button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; color: var(--blue-strong); background: white; border: 1px solid #dbe5ff; }
.signal-strip { display: grid; gap: 10px; margin-top: 28px; }
.signal-strip span { display: flex; align-items: center; gap: 10px; width: fit-content; min-height: 38px; padding: 0 13px; color: #53617a; font-size: 13px; font-weight: 700; background: white; border: 1px solid var(--soft-line); border-radius: 8px; box-shadow: 0 8px 22px rgba(47, 65, 118, 0.06); }
.signal-strip b { color: var(--blue-strong); }

.hero-screen { min-width: 0; justify-self: center; width: 100%; }
.dashboard-window {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8e1f3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-dashboard { display: grid; grid-template-columns: 208px 1fr; width: min(940px, 100%); min-height: 650px; }
.full-dashboard { display: grid; grid-template-columns: 274px 1fr; max-width: 1420px; min-height: 890px; margin: 0 auto; }
.dash-sidebar { min-width: 0; padding: 22px; background: #fbfcff; border-right: 1px solid var(--line); }
.dash-sidebar.full { padding: 26px; }
.dash-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.dash-logo span { display: grid; place-items: center; width: 34px; height: 34px; color: white; font-size: 12px; font-weight: 800; background: var(--blue); border-radius: 8px; }
.dash-logo strong { font-size: 14px; }
.filter-group, .side-section { display: grid; gap: 10px; margin-top: 20px; }
.filter-group small, .side-section small, .dash-topbar small, .panel-head span, .panel small, .report-stack small { color: #8590a5; font-size: 12px; font-weight: 800; }
.search-box, .date-grid span, .range-button, .source-check {
  min-height: 40px;
  padding: 11px 12px;
  color: #33405a;
  font-size: 13px;
  font-weight: 700;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.search-box.muted { color: #748098; background: #f7f9ff; }
.date-grid { display: grid; gap: 8px; }
.filter-chip { min-height: 36px; color: #53617a; font-size: 13px; font-weight: 800; text-align: left; background: white; border: 1px solid var(--line); border-radius: 8px; }
.filter-chip.active { color: var(--blue-strong); background: var(--blue-soft); border-color: #c8d7ff; }
.filter-chip.trust { color: #a43b70; background: var(--rose-soft); border-color: #ffd3e4; }
.filter-chip.pay { color: #167e94; background: var(--cyan-soft); border-color: #c9f2fb; }
.source-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.source-mini small { grid-column: 1 / -1; }
.source-mini span { min-height: 32px; padding: 8px 6px; color: var(--blue-strong); font-size: 11px; font-weight: 800; text-align: center; background: white; border: 1px solid #d7e1ff; border-radius: 8px; word-break: keep-all; }
.range-button { cursor: pointer; text-align: left; }
.range-button.active { color: var(--blue-strong); background: #eef4ff; border-color: #cbd8ff; }
.source-check { display: flex; align-items: center; gap: 9px; width: 100%; cursor: pointer; text-align: left; }
.source-check span { flex: 0 0 auto; width: 12px; height: 12px; border: 2px solid #9aa9d8; border-radius: 3px; background: white; }
.source-check.active { color: var(--blue-strong); background: #eef4ff; border-color: #cbd8ff; }
.source-check.active span { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 2px white; }

.dash-main { min-width: 0; padding: 22px; background: #f8faff; }
.dash-main.full { padding: 26px; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--soft-line); }
.dash-topbar strong { display: block; margin-top: 4px; font-size: 22px; }
.dash-tabs { display: flex; flex: 0 0 auto; gap: 6px; padding: 5px; background: #eef3ff; border-radius: 8px; }
.dash-tabs span { min-height: 32px; min-width: max-content; padding: 8px 11px; color: #65718a; font-size: 12px; font-weight: 800; white-space: nowrap; border-radius: 8px; }
.dash-tabs .active { color: var(--blue-strong); background: white; box-shadow: 0 6px 14px rgba(47, 65, 118, 0.08); }
.hero-dashboard .dash-tabs { max-width: 100%; gap: 4px; }
.hero-dashboard .dash-tabs span { padding: 8px 8px; font-size: 11px; }
.action-row { display: flex; gap: 8px; }
.action-row button { min-height: 36px; padding: 0 13px; color: #58637a; font-size: 12px; font-weight: 800; background: white; border: 1px solid var(--line); border-radius: 8px; }
.action-row button.active { color: white; background: var(--blue-strong); border-color: var(--blue-strong); }

.hero-dashboard-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: minmax(158px, auto) 1fr; gap: 14px; margin-top: 18px; }
.signal-card, .panel {
  min-width: 0;
  background: white;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}
.signal-card { min-height: 158px; padding: 16px; overflow: visible; }
.signal-card small { display: block; color: #7d889e; font-size: 12px; font-weight: 800; }
.signal-card strong { display: block; margin-top: 10px; font-size: 18px; line-height: 1.35; word-break: keep-all; overflow-wrap: anywhere; }
.signal-card em { display: inline-block; margin-top: 9px; padding: 5px 8px; font-size: 12px; font-style: normal; font-weight: 800; border-radius: 8px; }
.signal-card p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; word-break: keep-all; overflow-wrap: anywhere; }
.signal-card.expectation em { color: var(--blue-strong); background: var(--blue-soft); }
.signal-card.risk em { color: #bc3e75; background: var(--rose-soft); }
.signal-card.payment em { color: #168093; background: var(--cyan-soft); }
.trend-hero-panel { grid-column: span 2; padding: 18px; }
.radar-panel { padding: 18px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.panel-head strong { font-size: 16px; }
.trend-svg { width: 100%; height: 300px; display: block; overflow: visible; }
.grid-lines path { stroke: #e9eef8; stroke-width: 1; }
.trend-area { fill: url(#trendFill); }
.trend-line { fill: none; stroke-width: 5; stroke-linecap: round; }
.trend-line.expect { stroke: var(--blue); }
.trend-line.risk { stroke: var(--rose); stroke-width: 4; }
.trend-line.pay { stroke: var(--cyan); stroke-width: 4; }
.chart-dots circle { fill: white; stroke: var(--blue); stroke-width: 4; }
.axis-labels text { fill: #8a94a8; font-size: 12px; font-weight: 700; }
.legend-inline { display: flex; gap: 12px; margin-top: -10px; }
.legend { color: #59657b; font-size: 12px; font-weight: 800; }
.legend::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 6px; border-radius: 50%; }
.legend.expect::before { background: var(--blue); }
.legend.risk::before { background: var(--rose); }
.legend.pay::before { background: var(--cyan); }
.radar-svg { width: 100%; height: 286px; display: block; }
.radar-svg line { stroke: #dfe6f5; }
.radar-grid-fill { fill: #f4f7ff; stroke: #dce5f7; }
.radar-grid { fill: none; stroke: #dce5f7; }
.radar-value { fill: rgba(82, 119, 247, 0.28); stroke: var(--blue-strong); stroke-width: 3; }
.radar-svg circle { fill: white; stroke: var(--blue-strong); stroke-width: 3; }
.radar-svg text { fill: #526079; font-size: 13px; font-weight: 800; }

.problem-band { background: white; }
.section-heading { max-width: 860px; margin: 0 auto 36px; text-align: center; }
.section-heading.compact { max-width: 760px; }
.section-heading p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1180px; margin: 0 auto; }
.problem-grid article { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.problem-grid span { color: var(--blue-strong); font-weight: 800; }
.problem-grid strong { display: block; margin-top: 16px; font-size: 20px; line-height: 1.35; }
.problem-grid p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }

.dashboard-section { background: #f1f5ff; }
.snapshot-grid { display: grid; grid-template-columns: 1.08fr 0.82fr 0.84fr; grid-auto-rows: minmax(260px, auto); gap: 16px; margin-top: 22px; }
.wide-panel { grid-column: span 2; }
.signal-summary { padding: 22px; }
.summary-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.summary-columns > div { min-height: 202px; padding: 18px; background: #f8faff; border: 1px solid var(--soft-line); border-radius: 8px; }
.summary-columns strong { display: block; margin-top: 8px; font-size: 18px; line-height: 1.4; word-break: keep-all; overflow-wrap: anywhere; }
.summary-columns p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; word-break: keep-all; overflow-wrap: anywhere; }
.big-number { margin-top: 12px; color: var(--blue-strong); font-size: 42px; font-weight: 800; line-height: 1.12; }
.risk-text { color: var(--rose); }
.pay-text { color: #1b9ab0; }
.source-card, .network-panel, .usecase-panel, .matrix-panel, .evidence-panel { padding: 22px; }
.donut-advanced { width: 168px; height: 168px; margin: 0 auto 16px; border-radius: 50%; background: conic-gradient(var(--blue) 0 34%, var(--violet) 34% 58%, var(--cyan) 58% 76%, #8fa4ff 76% 87%, #b9c5f8 87% 95%, var(--rose) 95% 100%); box-shadow: inset 0 0 0 34px white, 0 10px 28px rgba(55, 72, 119, 0.1); }
.source-bars { display: grid; gap: 10px; }
.source-bars div { display: grid; grid-template-columns: 86px 1fr 34px; align-items: center; gap: 8px; color: #556178; font-size: 12px; font-weight: 800; transition: opacity .18s ease; }
.source-bars b { height: 8px; background: linear-gradient(90deg, var(--blue), var(--violet)); border-radius: 8px; transition: width .18s ease; }
.source-bars div.is-muted { opacity: .35; }
.source-bars em { color: #667189; font-style: normal; }
.network-panel { grid-column: span 2; }
.network-map { position: relative; min-height: 444px; overflow: hidden; background: linear-gradient(#f2f6ff 1px, transparent 1px), linear-gradient(90deg, #f2f6ff 1px, transparent 1px); background-size: 66px 66px; border: 1px solid var(--soft-line); border-radius: 8px; }
.network-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-lines path { stroke: #cdd8f5; stroke-width: 2; stroke-dasharray: 6 6; }
.node { position: absolute; display: grid; place-items: center; min-width: 78px; min-height: 78px; padding: 12px; color: #315eea; font-size: 14px; font-weight: 800; text-align: center; word-break: keep-all; background: #dfe8ff; border: 1px solid rgba(82, 119, 247, 0.18); border-radius: 50%; box-shadow: 0 10px 24px rgba(55, 72, 119, 0.12); }
.node.core { left: 43%; top: 38%; width: 128px; height: 128px; color: white; background: var(--blue-strong); }
.node.expect { color: #315eea; background: #dfe8ff; }
.node.risk { color: #b23c72; background: #ffe5f0; }
.node.pay { color: #17859b; background: #dff9ff; }
.n1 { left: 18%; top: 15%; width: 110px; height: 110px; }
.n2 { left: 25%; top: 64%; width: 88px; height: 88px; }
.n3 { left: 70%; top: 16%; width: 102px; height: 102px; }
.n4 { left: 76%; top: 58%; width: 96px; height: 96px; }
.n5 { left: 56%; top: 72%; width: 114px; height: 114px; }
.n6 { left: 8%; top: 44%; width: 92px; height: 92px; }
.n7 { left: 32%; top: 4%; width: 88px; height: 88px; }
.n8 { left: 78%; top: 36%; width: 86px; height: 86px; }
.n9 { left: 4%; top: 70%; width: 86px; height: 86px; }
.usecase-list { display: grid; gap: 11px; }
.usecase-list div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; min-height: 48px; padding: 0 12px; background: #f8faff; border: 1px solid var(--soft-line); border-radius: 8px; }
.usecase-list span { display: grid; place-items: center; width: 26px; height: 26px; color: white; font-size: 12px; font-weight: 800; background: var(--blue); border-radius: 8px; }
.usecase-list strong { min-width: 0; font-size: 14px; line-height: 1.35; word-break: keep-all; overflow-wrap: anywhere; }
.usecase-list em { color: var(--blue-strong); font-size: 13px; font-style: normal; font-weight: 800; }
.matrix-panel { grid-column: span 2; }
.matrix { position: relative; min-height: 330px; background: linear-gradient(90deg, transparent calc(50% - 1px), #dfe6f5 calc(50% - 1px), #dfe6f5 calc(50% + 1px), transparent calc(50% + 1px)), linear-gradient(0deg, transparent calc(50% - 1px), #dfe6f5 calc(50% - 1px), #dfe6f5 calc(50% + 1px), transparent calc(50% + 1px)), #f8faff; border: 1px solid var(--soft-line); border-radius: 8px; }
.axis { position: absolute; color: #7f8aa1; font-size: 12px; font-weight: 800; }
.axis.y { top: 12px; left: 14px; }
.axis.x { right: 14px; bottom: 12px; }
.quadrant { position: absolute; color: #9aa4b7; font-size: 12px; font-weight: 800; }
.q1 { left: 18px; top: 52%; }.q2 { right: 18px; top: 16px; }.q3 { left: 18px; bottom: 16px; }.q4 { right: 18px; top: 52%; }
.matrix-dot { position: absolute; min-height: 34px; padding: 0 12px; color: #24324d; font-size: 13px; font-weight: 800; background: white; border: 1px solid #dce5f7; border-radius: 8px; box-shadow: 0 10px 22px rgba(55, 72, 119, 0.1); }
.d1 { left: 26%; top: 24%; color: var(--blue-strong); }.d2 { left: 36%; top: 42%; color: var(--blue-strong); }.d3 { left: 68%; top: 57%; color: #17859b; }.d4 { left: 62%; top: 25%; color: #17859b; }.d5 { left: 22%; top: 62%; color: #b23c72; }
.quote-list { display: grid; gap: 12px; }
.quote-list blockquote { margin: 0; padding: 15px; color: #3c485f; font-size: 14px; line-height: 1.55; background: #f8faff; border: 1px solid var(--soft-line); border-left: 4px solid var(--blue); border-radius: 8px; }

.framework-section { background: white; }
.framework-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }
.framework-flow article { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--panel-shadow); }
.framework-flow small { color: var(--blue-strong); font-size: 12px; font-weight: 800; }
.framework-flow strong { display: block; margin-top: 10px; font-size: 20px; }
.framework-flow p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.report-section { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 40px; background: white; }
.report-copy { max-width: 620px; justify-self: end; }
.report-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; }
.report-stack { display: grid; gap: 14px; max-width: 660px; }
.report-stack article { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 34px rgba(60, 76, 130, 0.12); }
.report-stack strong { display: block; margin-top: 10px; font-size: 20px; line-height: 1.35; }
.report-stack p { margin: 12px 0 0; color: var(--muted); }
.final-cta { text-align: center; color: white; background: linear-gradient(135deg, #315eea 0%, #7354ed 100%); }
.final-cta .eyebrow, .final-cta h2 { color: white; }
.final-cta h2 { max-width: 780px; margin: 0 auto 26px; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 40px; color: #6e7890; background: white; border-top: 1px solid var(--soft-line); }
.site-footer strong { color: var(--ink); }

.modal { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(18, 27, 48, 0.52); backdrop-filter: blur(8px); }
.contact-dialog { position: relative; z-index: 1; width: min(720px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: 34px; background: white; border-radius: 8px; box-shadow: 0 30px 80px rgba(8, 18, 44, 0.34); }
.contact-dialog h2 { font-size: clamp(26px, 4vw, 38px); }
.close-button { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; color: #66718a; font-size: 28px; line-height: 1; background: #f3f6ff; border: 0; border-radius: 8px; cursor: pointer; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
form label { display: grid; gap: 8px; color: #4c5870; font-size: 13px; font-weight: 800; }
form .wide, .form-note, form button { grid-column: 1 / -1; }
form input, form select, form textarea { width: 100%; min-width: 0; padding: 13px 14px; color: var(--ink); background: #fbfcff; border: 1px solid var(--line); border-radius: 8px; outline: none; }
form textarea { resize: vertical; }
form input:focus, form select:focus, form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(84, 120, 255, 0.12); }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }
.form-note.is-error { color: #c03b75; }
.primary-button:disabled { cursor: wait; opacity: 0.72; }

@media (max-width: 1240px) {
  .hero, .report-section { grid-template-columns: 1fr; }
  .hero-screen { transform: none; }
  .hero-dashboard { width: 100%; }
  .snapshot-grid { grid-template-columns: 1fr 1fr; }
  .wide-panel, .network-panel, .matrix-panel { grid-column: span 2; }
  .framework-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { padding: 0 18px; }
  .nav-links { display: none; }
  .section-band { padding: 68px 18px; }
  .hero { min-height: auto; }
  h1 { font-size: 40px; }
  .hero-description { font-size: 16px; }
  .hero-actions, .site-footer { align-items: stretch; flex-direction: column; }
  .hero-dashboard, .full-dashboard { grid-template-columns: 1fr; min-height: auto; }
  .dash-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .dash-tabs, .action-row { flex-wrap: wrap; }
  .hero-dashboard-grid, .snapshot-grid, .summary-columns, .problem-grid, .framework-flow, form { grid-template-columns: 1fr; }
  .trend-hero-panel, .wide-panel, .network-panel, .matrix-panel { grid-column: auto; }
  .trend-svg { height: 230px; }
  .source-card, .network-panel, .usecase-panel, .matrix-panel, .evidence-panel, .signal-summary { padding: 16px; }
  .network-map { min-height: 470px; }
  .node { min-width: 58px; min-height: 58px; padding: 9px; font-size: 11px; }
  .node.core { left: 50%; top: 38%; width: 96px; height: 96px; transform: translateX(-50%); }
  .n1 { left: 4%; top: 12%; }.n2 { left: 13%; top: 66%; }.n3 { left: 58%; top: 12%; }.n4 { left: 62%; top: 62%; }.n5 { left: 44%; top: 76%; }.n6 { left: 3%; top: 42%; }.n7 { left: 34%; top: 4%; }.n8 { left: 64%; top: 39%; }.n9 { left: 3%; top: 82%; }
  .matrix-dot { font-size: 12px; }
  .d1 { left: 18%; }.d2 { left: 28%; }.d3 { left: 52%; }.d4 { left: 48%; }.d5 { left: 14%; }
  .contact-dialog { padding: 26px 18px; }
}

/* Compact interactive analysis center */
.dashboard-section { padding-top: 76px; padding-bottom: 76px; }
.analysis-demo {
  grid-template-columns: 300px 1fr;
  max-width: 1380px;
  min-height: 0;
  height: 720px;
  margin: 0 auto;
  background: #f5f7fc;
}
.personal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  background: #f7f9fe;
}
.sidebar-brandline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.brand-unit strong {
  display: block;
  color: #315eea;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.brand-unit small {
  display: block;
  margin-top: 4px;
  color: #8390a8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.new-badge {
  padding: 4px 6px;
  color: white;
  font-size: 10px;
  font-weight: 800;
  background: var(--violet);
  border-radius: 6px;
}
.user-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.user-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #a9bcff, #725df0);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px white;
}
.user-card strong { display: block; font-size: 14px; }
.user-card small { display: block; margin-top: 3px; color: #7c879d; font-size: 12px; font-weight: 700; }
.sidebar-icons { display: flex; gap: 8px; color: #6d7b96; font-size: 15px; font-weight: 800; }
.side-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.side-title em { color: #9aa4b7; font-size: 11px; font-style: normal; font-weight: 800; }
.search-input {
  position: relative;
  color: #8b96ab;
  padding-left: 36px;
}
.search-input::before {
  content: "⌕";
  position: absolute;
  left: 13px;
  top: 50%;
  color: #70809c;
  font-size: 20px;
  transform: translateY(-50%);
}
.keyword-tags, .range-grid, .source-grid, .focus-grid {
  display: grid;
  gap: 8px;
}
.keyword-tags { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.keyword-tags span {
  min-height: 30px;
  padding: 7px 8px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  background: #eef4ff;
  border: 1px solid #d7e1ff;
  border-radius: 8px;
}
.two-col { grid-template-columns: 1fr 1fr; }
.range-grid { grid-template-columns: repeat(3, 1fr); }
.analysis-demo .range-button {
  min-height: 36px;
  padding: 8px;
  text-align: center;
}
.source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.analysis-demo .source-check {
  min-height: 34px;
  padding: 8px 9px;
  color: #667189;
  font-size: 11px;
  background: #fff;
}
.analysis-demo .source-check span { display: none; }
.analysis-demo .source-check.active {
  color: var(--blue-strong);
  background: #edf3ff;
  border-color: #cddaff;
}
.focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.focus-chip {
  min-height: 36px;
  padding: 8px 10px;
  color: #4c5870;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.focus-chip b {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  color: white;
  font-size: 11px;
  background: var(--violet);
  border-radius: 5px;
}
.focus-chip.active { color: var(--blue-strong); background: #eef4ff; border-color: #cbd8ff; }
.sidebar-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  color: #6b7690;
  font-weight: 800;
  background: #e8edf8;
  border: 1px solid #dce4f3;
  border-radius: 8px;
  cursor: pointer;
}
.demo-main { padding: 18px; background: #f3f6fd; }
.compact-topbar { padding-bottom: 12px; }
.compact-topbar strong { font-size: 20px; }
.compact-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px 300px;
  grid-template-rows: 154px 260px 176px;
  gap: 12px;
  margin-top: 14px;
}
.analysis-demo .panel { box-shadow: 0 8px 22px rgba(55, 72, 119, 0.07); }
.demo-summary { grid-column: span 2; padding: 16px; }
.score-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.score-tile {
  min-width: 0;
  padding: 12px;
  background: #f9fbff;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
}
.score-tile small { display: block; color: #7d889e; font-size: 11px; font-weight: 800; }
.score-tile strong {
  display: block;
  min-height: 38px;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.score-tile div { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; }
.score-tile b { color: var(--blue-strong); font-size: 25px; line-height: 1; }
.score-tile span { padding: 4px 7px; color: var(--blue-strong); font-size: 11px; font-weight: 800; background: var(--blue-soft); border-radius: 8px; }
.score-tile.risk b { color: var(--rose); }
.score-tile.risk span { color: #bc3e75; background: var(--rose-soft); }
.score-tile.payment b { color: #168093; }
.score-tile.payment span { color: #168093; background: var(--cyan-soft); }
.score-tile i {
  display: block;
  height: 7px;
  margin-top: 9px;
  background: #e8edf8;
  border-radius: 999px;
  overflow: hidden;
}
.score-tile em { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--violet)); border-radius: inherit; transition: width .2s ease; }
.score-tile.risk em { background: linear-gradient(90deg, #ef7cab, #c95f9a); }
.score-tile.payment em { background: linear-gradient(90deg, #56c8df, #4ca7f0); }
.demo-source { padding: 16px; }
.source-mini-layout { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 10px; }
.analysis-demo .donut-advanced { width: 108px; height: 108px; margin: 0; box-shadow: inset 0 0 0 24px white, 0 10px 22px rgba(55, 72, 119, 0.08); }
.analysis-demo .source-bars { gap: 7px; }
.analysis-demo .source-bars div { grid-template-columns: 72px 1fr 30px; gap: 6px; font-size: 11px; }
.demo-trend-panel { padding: 16px; }
.mini-trend-svg { width: 100%; height: 185px; display: block; overflow: visible; }
.mini-trend-svg .trend-line { fill: none; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.analysis-demo .network-panel, .analysis-demo .matrix-panel { grid-column: auto; }
.compact-network, .compact-matrix { padding: 16px; }
.mini-network {
  min-height: 192px;
  background: radial-gradient(circle at 50% 45%, rgba(82,119,247,.08), transparent 34%), linear-gradient(#f2f6ff 1px, transparent 1px), linear-gradient(90deg, #f2f6ff 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.mini-network .node {
  min-width: 0;
  min-height: 0;
  padding: 9px;
  font-size: 11px;
  line-height: 1.2;
  transition: left .2s ease, top .2s ease, width .2s ease, height .2s ease, background .2s ease;
}
.mini-network .node.core {
  left: 50%;
  top: 42%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
}
.mini-network .node.expectation { color: #315eea; background: #dfe8ff; }
.mini-network .node.risk { color: #b23c72; background: #ffe5f0; }
.mini-network .node.payment { color: #17859b; background: #dff9ff; }
.mini-network .node.usecase { color: #6c4bdc; background: #eeeaff; }
.mini-matrix { min-height: 192px; }
.mini-matrix .matrix-dot {
  min-height: 30px;
  max-width: 124px;
  padding: 0 9px;
  font-size: 11px;
  transition: left .2s ease, top .2s ease;
  white-space: nowrap;
}
.mini-matrix .matrix-dot.expectation { color: var(--blue-strong); }
.mini-matrix .matrix-dot.risk { color: #b23c72; }
.mini-matrix .matrix-dot.payment { color: #17859b; }
.mini-matrix .matrix-dot.usecase { color: #6c4bdc; }
.compact-evidence { grid-column: 1 / -1; padding: 16px; }
.compact-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compact-quotes blockquote {
  min-height: 82px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.site-footer {
  display: block;
  padding: 34px max(24px, calc((100vw - 1320px) / 2 + 32px));
  background: #fff;
}
.footer-inner { display: grid; gap: 18px; color: #6e7890; }
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-brand strong { color: var(--ink); font-size: 18px; }
.footer-brand span { font-size: 13px; font-weight: 700; }
.footer-business { display: grid; gap: 7px; font-size: 13px; line-height: 1.45; }
.footer-business p, .footer-copy { margin: 0; }
.footer-business b { color: #3f4b61; }
.footer-business span { color: #c5cfdd; }
.footer-business a { color: var(--blue-strong); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { color: #8c96aa; font-size: 12px; font-weight: 700; }

@media (max-width: 1240px) {
  .analysis-demo { height: auto; grid-template-columns: 1fr; }
  .compact-dashboard-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .demo-summary, .compact-evidence { grid-column: 1 / -1; }
  .source-mini-layout { grid-template-columns: 120px 1fr; }
}

@media (max-width: 860px) {
  .dashboard-section { padding-top: 62px; padding-bottom: 62px; }
  .personal-sidebar { padding: 18px; }
  .user-card { grid-template-columns: 44px 1fr; }
  .sidebar-icons { display: none; }
  .compact-dashboard-grid, .score-row, .compact-quotes { grid-template-columns: 1fr; }
  .demo-summary, .compact-evidence { grid-column: auto; }
  .source-mini-layout { grid-template-columns: 1fr; }
  .analysis-demo .donut-advanced { margin: 0 auto; }
  .mini-network, .mini-matrix { min-height: 260px; }
  .mini-matrix .matrix-dot { white-space: normal; }
  .footer-brand { display: grid; gap: 4px; }
  .footer-business span { display: none; }
}

/* Final compacting pass for the interactive demo */
.dashboard-section .section-heading { margin-bottom: 22px; }
.dashboard-section .section-heading p:not(.eyebrow) { margin-top: 10px; font-size: 15px; }
.analysis-demo { height: 660px; }
.personal-sidebar { padding: 16px; }
.personal-sidebar .side-section { gap: 7px; margin-top: 12px; }
.personal-sidebar .search-box,
.personal-sidebar .date-grid span,
.personal-sidebar .range-button,
.personal-sidebar .source-check { min-height: 34px; padding-top: 8px; padding-bottom: 8px; }
.sidebar-brandline { padding-bottom: 12px; }
.brand-unit strong { font-size: 22px; }
.brand-unit small { font-size: 11px; }
.user-card { padding: 12px 0; }
.user-avatar { width: 42px; height: 42px; }
.keyword-tags span { min-height: 27px; padding: 6px; }
.focus-chip { min-height: 32px; padding: 7px 9px; }
.sidebar-result { min-height: 42px; padding: 0 15px; }
.demo-main { padding: 14px; }
.compact-topbar { min-height: 45px; padding-bottom: 10px; }
.compact-topbar strong { font-size: 18px; }
.compact-dashboard-grid {
  grid-template-rows: 148px 220px 136px;
  gap: 10px;
  margin-top: 12px;
}
.demo-summary, .demo-source, .demo-trend-panel, .compact-network, .compact-matrix, .compact-evidence { padding: 12px; }
.analysis-demo .panel-head { margin-bottom: 8px; }
.analysis-demo .panel-head strong { font-size: 14px; }
.score-tile { padding: 10px; }
.score-tile strong { min-height: 34px; font-size: 14px; }
.score-tile b { font-size: 23px; }
.analysis-demo .donut-advanced { width: 92px; height: 92px; box-shadow: inset 0 0 0 20px white, 0 8px 18px rgba(55, 72, 119, 0.08); }
.analysis-demo .source-bars { gap: 4px; }
.analysis-demo .source-bars div { grid-template-columns: 68px 1fr 28px; font-size: 10px; }
.mini-trend-svg { height: 158px; }
.mini-network, .mini-matrix { min-height: 152px; }
.mini-network .node { font-size: 10px; padding: 7px; }
.mini-network .node.core { width: 72px; height: 72px; }
.compact-quotes blockquote { min-height: 58px; padding: 10px 12px; font-size: 12px; line-height: 1.45; }

.analysis-demo { height: 708px; }
.mini-network .node.core { width: 68px; height: 68px; }


@media (max-width: 860px) {
  .analysis-demo { height: auto; }
  .analysis-demo.dashboard-window { overflow: visible; }
}

/* Brand image icons */
.brand-mark.brand-icon,
.dash-icon,
.sidebar-brand-icon {
  display: block;
  object-fit: contain;
  background: white;
  border: 1px solid #dbe5ff;
  box-shadow: 0 10px 22px rgba(84, 120, 255, 0.18);
}
.brand-mark.brand-icon {
  width: 38px;
  height: 38px;
  padding: 4px;
  border-radius: 8px;
}
.dash-logo .dash-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 3px;
  border-radius: 8px;
}
.sidebar-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sidebar-brand-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 4px;
  border-radius: 8px;
}
@media (max-width: 860px) {
  .sidebar-brand-icon { width: 34px; height: 34px; }
}
.footer-brand-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 4px;
  object-fit: contain;
  background: white;
  border: 1px solid #dbe5ff;
  border-radius: 8px;
}
.footer-brand > div {
  display: grid;
  gap: 3px;
}

/* Dark footer final layout */
.site-footer {
  display: block;
  padding: 38px max(24px, calc((100vw - 1320px) / 2 + 32px));
  color: #c7ceda;
  background: #252936;
  border-top: 1px solid #343a4a;
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand copy"
    "business copy";
  align-items: start;
  gap: 16px 42px;
  color: #c7ceda;
}
.site-footer .footer-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-brand strong {
  color: #ffffff;
}
.site-footer .footer-brand span {
  color: #aeb7c6;
}
.site-footer .footer-business {
  grid-area: business;
  color: #b3bccb;
}
.site-footer .footer-business b {
  color: #eef2f8;
}
.site-footer .footer-business span {
  color: #697386;
}
.site-footer .footer-business a {
  color: #b8c7ff;
}
.site-footer .footer-copy {
  grid-area: copy;
  align-self: end;
  justify-self: end;
  max-width: 260px;
  color: #9da7b8;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}
.site-footer .footer-brand-icon {
  background: #ffffff;
  border-color: #454d62;
}
@media (max-width: 860px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "business"
      "copy";
  }
  .site-footer .footer-copy {
    justify-self: start;
    text-align: left;
  }
}

/* Interactive dashboard polish pass */
.analysis-demo {
  height: 704px;
  background: #f3f6fc;
}
.analysis-demo .dash-sidebar.full,
.analysis-demo .dash-main.full {
  min-height: 704px;
}
.personal-sidebar {
  padding: 18px;
  overflow: hidden;
}
.sidebar-brandline {
  min-height: 48px;
  padding-bottom: 10px;
  align-items: center;
}
.user-card {
  min-height: 68px;
  padding: 12px 0;
}
.sidebar-icons {
  display: flex;
  align-items: center;
  gap: 7px;
}
.sidebar-icons button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  color: #667894;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.sidebar-icons button:hover {
  color: var(--blue-strong);
  background: #edf3ff;
}
.sidebar-icons svg,
.sidebar-result svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.personal-sidebar .side-section {
  margin-top: 11px;
}
.personal-sidebar .source-grid,
.personal-sidebar .focus-grid {
  gap: 8px;
}
.analysis-demo .source-check,
.focus-chip {
  height: 36px;
  min-height: 36px;
  padding: 0 10px;
  align-items: center;
  line-height: 1;
  overflow: hidden;
}
.focus-chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.focus-chip b {
  margin-left: 0;
}
.sidebar-result {
  flex: 0 0 44px;
  min-height: 44px;
  margin-top: 10px;
}
.demo-main {
  padding: 14px 18px 18px;
}
.compact-topbar {
  min-height: 68px;
  padding: 0 0 12px;
  align-items: center;
}
.compact-dashboard-grid {
  grid-template-columns: minmax(0, 1fr) 304px 304px;
  grid-template-rows: 146px 218px 124px;
  gap: 12px;
  margin-top: 12px;
}
.demo-summary,
.demo-source,
.demo-trend-panel,
.compact-network,
.compact-matrix,
.compact-evidence {
  overflow: hidden;
}
.demo-summary {
  padding: 12px;
}
.score-row {
  height: calc(100% - 30px);
}
.score-tile {
  display: grid;
  grid-template-rows: auto minmax(34px, auto) auto 7px;
  align-content: start;
  gap: 5px;
  height: 100%;
  min-height: 0;
  padding: 10px 12px;
}
.score-tile strong,
.score-tile small,
.score-tile div,
.score-tile i {
  min-width: 0;
}
.score-tile i {
  align-self: end;
  margin-top: 0;
}
.score-tile div {
  margin-top: 0;
}
.score-tile span {
  white-space: nowrap;
}
.demo-trend-panel {
  padding-bottom: 10px;
}
.mini-trend-svg {
  height: 150px;
}
.compact-evidence {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 12px;
}
.compact-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  height: 100%;
  min-height: 0;
}
.compact-quotes blockquote {
  display: flex;
  align-items: center;
  min-height: 0;
  height: 100%;
  padding: 11px 14px;
  overflow: hidden;
}
.source-mini-layout,
.mini-network,
.mini-matrix {
  min-height: 0;
}
.mini-network {
  height: 154px;
}
.mini-matrix {
  height: 154px;
}
@media (max-width: 1240px) {
  .analysis-demo,
  .analysis-demo .dash-sidebar.full,
  .analysis-demo .dash-main.full {
    height: auto;
    min-height: 0;
  }
  .personal-sidebar { overflow: visible; }
  .compact-dashboard-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .score-row, .compact-quotes { height: auto; }
  .compact-quotes blockquote { min-height: 68px; }
}
@media (max-width: 860px) {
  .compact-dashboard-grid,
  .score-row,
  .compact-quotes { grid-template-columns: 1fr; }
  .compact-topbar { min-height: 0; align-items: flex-start; }
  .sidebar-icons { display: none; }
  .compact-quotes blockquote { height: auto; min-height: 64px; }
}

/* Dashboard polish correction after visual audit */
.analysis-demo {
  height: 704px;
}
.personal-sidebar .side-section {
  margin-top: 9px;
  gap: 6px;
}
.sidebar-brandline {
  min-height: 44px;
  padding-bottom: 8px;
}
.user-card {
  min-height: 62px;
  padding: 9px 0;
}
.user-avatar {
  width: 40px;
  height: 40px;
}
.keyword-tags {
  gap: 6px;
}
.keyword-tags span {
  min-height: 24px;
  padding: 5px 6px;
}
.analysis-demo .source-check,
.focus-chip {
  height: 34px;
  min-height: 34px;
}
.focus-chip b {
  min-width: 17px;
  height: 17px;
}
.sidebar-result {
  flex-basis: 40px;
  min-height: 40px;
  margin-top: 8px;
}
.compact-topbar {
  min-height: 62px;
}
.compact-dashboard-grid {
  grid-template-rows: 158px 230px 102px;
}
.demo-source .panel-head,
.demo-trend-panel .panel-head {
  margin-bottom: 6px;
}
.analysis-demo .donut-advanced {
  width: 78px;
  height: 78px;
  box-shadow: inset 0 0 0 17px white, 0 8px 18px rgba(55, 72, 119, 0.08);
}
.analysis-demo .source-bars {
  gap: 3px;
}
.analysis-demo .source-bars div {
  min-height: 14px;
  grid-template-columns: 68px 1fr 27px;
  font-size: 10px;
}
.analysis-demo .source-bars b {
  height: 6px;
}
.source-mini-layout {
  grid-template-columns: 86px 1fr;
  align-items: center;
}
.mini-trend-svg {
  height: 168px;
}
.legend-inline {
  margin-top: -5px;
}
.compact-evidence {
  align-content: stretch;
}
.compact-quotes blockquote {
  min-height: 0;
  height: 100%;
  padding-top: 9px;
  padding-bottom: 9px;
}
@media (max-width: 1240px) {
  .compact-dashboard-grid { grid-template-rows: auto; }
  .source-mini-layout { grid-template-columns: 100px 1fr; }
}

/* Final alignment fix for dashboard chart and user header */
.user-card {
  height: 64px;
  min-height: 64px;
}
.user-avatar {
  width: 38px;
  height: 38px;
}
.compact-dashboard-grid {
  grid-template-columns: minmax(320px, 1fr) 254px 254px;
}
.demo-trend-panel .panel-head {
  min-height: 18px;
  margin-bottom: 2px;
}
.demo-trend-panel .panel-head strong {
  font-size: 13px;
}
.demo-trend-panel .panel-head span {
  font-size: 10px;
}
.mini-trend-svg {
  height: 142px;
}
.demo-trend-panel .legend-inline {
  height: 16px;
  margin-top: -6px;
  align-items: center;
}
.demo-trend-panel .legend {
  font-size: 11px;
}
@media (max-width: 1240px) {
  .compact-dashboard-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile final override after desktop polish */
@media (max-width: 860px) {
  .compact-dashboard-grid,
  .score-row,
  .compact-quotes {
    grid-template-columns: 1fr;
  }
  .demo-summary,
  .compact-evidence {
    grid-column: auto;
  }
  .source-mini-layout {
    grid-template-columns: 1fr;
  }
  .analysis-demo .donut-advanced {
    margin: 0 auto 10px;
  }
  .mini-network,
  .mini-matrix {
    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .analysis-demo,
  .analysis-demo .dash-sidebar.full,
  .analysis-demo .dash-main.full {
    height: auto;
    min-height: 0;
  }
}
