:root {
  --deep: #7824dc;
  --main: #9b5ce2;
  --accent: #c09def;
  --pale: #e7d6fa;
  --ink: #18151e;
  --muted: #67616d;
  --line: #ddd8e3;
  --paper: #ffffff;
  --wash: #f8f6fa;
  --soft: #f1eafa;
  --teal: #137f77;
  --teal-soft: #e7f5f2;
  --risk: #b94343;
  --risk-soft: #fff0ef;
  --amber: #a46a11;
  --amber-soft: #fff6e6;
  --shadow: 0 16px 42px rgba(55, 37, 68, 0.09);
  --topbar: 58px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

.scene-path,
.project-rail {
  color: inherit;
  text-decoration: none;
}
button, a { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[data-lightbox] { cursor: zoom-in; }
p { margin-top: 0; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--topbar);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(221, 216, 227, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}
.topnav {
  width: min(100%, 1060px);
  display: flex;
  justify-content: center;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.topnav::-webkit-scrollbar { display: none; }
.topnav a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
}
.topnav a:hover,
.topnav a.active {
  color: var(--deep);
  background: var(--soft);
  font-weight: 800;
}
.progress {
  position: fixed;
  inset: auto 0 0;
  z-index: 110;
  height: 3px;
  background: #eeeaf1;
}
.progress span { display: block; width: 0; height: 100%; background: var(--deep); }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.band { padding: 68px 0; scroll-margin-top: calc(var(--topbar) + 6px); }
.band.compact { padding: 44px 0; }
.band.tight { padding: 32px 0; }
.white { background: #fff; }
.wash { background: var(--wash); }
.soft { background: var(--soft); }
.dark { background: #23172d; color: #fff; }
.risk-band { background: #fff8f7; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}
.section-head.single { grid-template-columns: 1fr; max-width: 960px; }
.section-head h2 { margin: 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 850;
}
.section-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--deep); }
h1, h2, h3 { margin-top: 0; }
h1 { font-size: clamp(42px, 5vw, 68px); line-height: 1.08; font-weight: 900; }
h2 { font-size: clamp(29px, 3.1vw, 43px); line-height: 1.2; font-weight: 880; }
h3 { font-size: 19px; line-height: 1.4; margin-bottom: 8px; }
.summary { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.78; }
.body-copy { color: #403947; font-size: 15px; line-height: 1.82; }
.micro { color: var(--muted); font-size: 12px; line-height: 1.65; }
.conclusion {
  margin-top: 22px;
  padding: 17px 20px;
  border-left: 5px solid var(--deep);
  background: rgba(231, 214, 250, 0.5);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 760;
}
.risk-callout { border-left-color: var(--risk); background: var(--risk-soft); color: #703737; }
.teal-callout { border-left-color: var(--teal); background: var(--teal-soft); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.tag.p0 { color: var(--risk); border-color: #e7b9b5; background: var(--risk-soft); }
.tag.p1 { color: var(--amber); border-color: #ead1a6; background: var(--amber-soft); }
.tag.p2 { color: var(--deep); border-color: #ccb4eb; background: var(--soft); }

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--topbar) + 62px) 0 66px;
  color: #fff;
  background: #584c60 url("nearby-ai-web-assets/hero-neighborhood.webp") center / cover no-repeat;
  background-blend-mode: screen;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 25, 43, 0.66) 0%, rgba(47, 32, 51, 0.42) 47%, rgba(255, 255, 255, 0.04) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 44px;
  align-items: center;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 14px; font-weight: 800; }
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.hero h1 { max-width: 760px; margin-bottom: 22px; line-height: 1.08; }
.hero-lead { max-width: 720px; margin: 0; color: rgba(255,255,255,.83); font-size: 18px; line-height: 1.75; }
.hero-note { margin-top: 22px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.2); max-width: 700px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }
.hero-questions { display: grid; gap: 13px; align-self: end; margin-bottom: 12px; }
.hero-question {
  position: relative;
  width: min(100%, 440px);
  margin-left: auto;
  padding: 16px 44px 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.91);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.55;
}
.hero-question:nth-child(2) { margin-right: 38px; border-color: #77cfc0; }
.hero-question:nth-child(3) { margin-right: 8px; border-color: #f2bd62; }
.hero-question::after { content: "AI"; position: absolute; right: 14px; top: 15px; color: var(--deep); font-size: 10px; font-weight: 900; }
.copyright { padding: 11px 0; border-block: 1px solid #e8e4eb; background: #f5f3f6; color: #7a7480; font-size: 11px; line-height: 1.6; }

/* Entry gap */
.question-gap { display: grid; grid-template-columns: 1fr 50px 1fr; align-items: stretch; }
.query-panel { padding: 25px; background: #221a29; color: #fff; }
.query-panel blockquote { margin: 12px 0 22px; font-size: 25px; line-height: 1.5; font-weight: 830; }
.condition-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.condition-cloud span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.25); font-size: 12px; }
.gap-bridge { display: grid; place-items: center; color: var(--risk); font-size: 24px; font-weight: 900; }
.public-panel { border-block: 1px solid var(--line); padding: 8px 0; }
.public-row { display: grid; grid-template-columns: 135px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.public-row:last-child { border-bottom: 0; }
.public-row b { color: var(--deep); }
.public-row span { color: var(--muted); line-height: 1.6; font-size: 13px; }
.channel-ribbon { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.channel-ribbon div { padding: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.channel-ribbon b { display: block; color: var(--deep); font-size: 14px; }
.channel-ribbon span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Decision process */
.decision-process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.phase { position: relative; min-height: 205px; padding: 21px 18px 17px; border: 1px solid var(--line); background: #fff; }
.phase::after { content: "→"; position: absolute; right: -12px; top: 48px; z-index: 2; color: var(--deep); font-weight: 900; }
.phase:last-child::after { display: none; }
.phase-no { color: var(--deep); font-size: 13px; font-weight: 900; }
.phase h3 { margin: 0 0 14px; font-size: 20px; }
.substep { padding: 9px 0; border-top: 1px dashed var(--line); color: var(--muted); font-size: 14px; line-height: 1.55; }
.role-tracks { display: grid; grid-template-columns: 105px 1fr; gap: 8px 14px; margin-top: 22px; align-items: center; }
.role-tracks b { font-size: 12px; color: var(--muted); }
.role-track { display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; }
.role-track span { height: 8px; background: #e9e5ec; }
.role-track span.on { background: var(--deep); }
.role-track.realtime span.on { background: var(--teal); }
.role-track.store span.on { background: var(--amber); }

/* Six supply layers */
.supply-map { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 38px; align-items: center; }
.supply-orbit { position: relative; min-height: 500px; }
.supply-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 190px; height: 190px; display: grid; place-items: center; padding: 28px; border-radius: 50%; background: var(--deep); color: #fff; text-align: center; font-size: 21px; font-weight: 850; line-height: 1.4; }
.supply-node { position: absolute; width: 188px; padding: 14px 15px; border-top: 4px solid var(--deep); background: #fff; box-shadow: var(--shadow); }
.supply-node b { display: block; font-size: 15px; }
.supply-node span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.supply-node.n1 { left: 0; top: 20px; }
.supply-node.n2 { left: calc(50% - 94px); top: 0; border-color: var(--teal); }
.supply-node.n3 { right: 0; top: 65px; border-color: var(--amber); }
.supply-node.n4 { right: 15px; bottom: 30px; border-color: var(--main); }
.supply-node.n5 { left: calc(50% - 94px); bottom: 0; border-color: var(--accent); }
.supply-node.n6 { left: 10px; bottom: 60px; border-color: var(--risk); }
.supply-lines { position: absolute; inset: 102px 120px; border: 1px dashed #cfc5d7; border-radius: 50%; }
.supply-notes { border-top: 1px solid var(--line); }
.supply-note { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.supply-note b { color: var(--deep); }
.supply-note span { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Scope */
.scope-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; }
.scope-ring { position: relative; min-height: 430px; border: 1px dashed #cfc5d7; border-radius: 50%; }
.scope-core { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 165px; height: 165px; display: grid; place-items: center; padding: 22px; border-radius: 50%; background: var(--deep); color: #fff; text-align: center; font-weight: 850; line-height: 1.45; }
.scope-item { position: absolute; width: 180px; padding: 13px 14px; background: #fff; border-left: 5px solid var(--main); box-shadow: var(--shadow); }
.scope-item b { font-size: 14px; }
.scope-item span { display: block; color: var(--muted); font-size: 11px; margin-top: 4px; line-height: 1.45; }
.scope-item.s1 { left: 22px; top: 38px; }
.scope-item.s2 { right: 22px; top: 38px; border-color: var(--teal); }
.scope-item.s3 { right: 22px; bottom: 38px; border-color: var(--amber); }
.scope-item.s4 { left: 22px; bottom: 38px; border-color: var(--accent); }
.exclude-list { border-top: 1px solid var(--line); }
.exclude-list div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.exclude-list b { color: var(--risk); }
.exclude-list span { color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Gates */
.gates { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: stretch; }
.gate { position: relative; padding: 21px 16px 16px; border: 1px solid var(--line); background: #fff; }
.gate::after { content: "→"; position: absolute; right: -10px; top: 42px; z-index: 2; color: #8f8795; font-weight: 900; }
.gate:last-child::after { display: none; }
.gate.p0 { border-top: 5px solid var(--risk); background: var(--risk-soft); }
.gate.p1 { border-top: 5px solid var(--amber); background: var(--amber-soft); }
.gate.p2 { border-top: 5px solid var(--deep); background: var(--soft); }
.gate strong { display: block; font-size: 23px; }
.gate small { display: block; margin: 4px 0 13px; color: var(--muted); font-weight: 800; }
.gate p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Problem map */
.problem-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 20px; align-items: start; }
.problem-layout > * { min-width: 0; }
.problem-controls { position: sticky; top: 75px; }
.problem-tabs { display: grid; width: 100%; max-width: 100%; gap: 5px; }
.problem-tab { display: grid; grid-template-columns: 27px 1fr auto; gap: 8px; align-items: center; min-height: 48px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--ink); text-align: left; font-size: 12px; font-weight: 760; }
.problem-tab .idx { color: var(--deep); font-weight: 900; }
.problem-tab .count { color: var(--muted); font-size: 10px; }
.problem-tab.active { border-color: var(--deep); background: var(--deep); color: #fff; }
.problem-tab.active .idx, .problem-tab.active .count { color: #fff; }
.problem-panel { min-height: 690px; padding: 26px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.problem-panel h3 { font-size: 27px; margin: 6px 0 8px; }
.problem-index { color: var(--deep); font-size: 11px; font-weight: 900; }
.problem-intro { color: var(--muted); line-height: 1.7; font-size: 13px; }
.problem-items { display: grid; gap: 9px; }
.problem-item { padding: 15px 16px; border-left: 5px solid var(--amber); background: var(--amber-soft); }
.problem-item.p0 { border-color: var(--risk); background: var(--risk-soft); }
.problem-item.p2 { border-color: var(--deep); background: var(--soft); }
.problem-item-head { display: grid; grid-template-columns: 32px 1fr auto; gap: 9px; align-items: start; }
.problem-item-no { color: var(--deep); font-weight: 900; }
.problem-item-title { font-size: 14px; line-height: 1.55; }
.problem-detail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 10px 0 0 41px; border-top: 1px dashed rgba(120,36,220,.18); }
.problem-detail p { margin: 0; color: #5a5260; font-size: 12px; line-height: 1.62; }
.problem-detail p { padding: 10px 13px 0 0; }
.problem-detail p + p { padding-left: 13px; border-left: 1px solid rgba(120,36,220,.12); }
.problem-detail strong { color: var(--ink); }

/* Misalignment and network */
.misalign { display: grid; grid-template-columns: 1fr 130px 1fr; gap: 20px; align-items: center; }
.lane { position: relative; min-height: 320px; padding: 25px; border: 1px solid var(--line); background: #fff; overflow: hidden; }
.lane h3 { font-size: 23px; }
.lane-track { margin-top: 22px; display: grid; gap: 10px; }
.lane-track span { padding: 10px 12px; background: var(--wash); color: var(--muted); font-size: 13px; }
.lane.user .lane-track span { border-left: 4px solid var(--teal); }
.lane.brand .lane-track span { border-left: 4px solid var(--deep); }
.miss { text-align: center; color: var(--risk); font-weight: 900; line-height: 1.5; }
.miss strong { display: block; font-size: 32px; }
.source-network { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 38px; align-items: center; }
.network { position: relative; min-height: 500px; }
.network-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 190px; height: 190px; display: grid; place-items: center; padding: 24px; border-radius: 50%; background: var(--deep); color: #fff; text-align: center; font-size: 20px; font-weight: 850; }
.network-ring { position: absolute; inset: 70px 110px; border: 1px dashed #bfb3c7; border-radius: 50%; }
.network-node { position: absolute; width: 178px; padding: 13px; background: #fff; border-top: 4px solid var(--main); box-shadow: var(--shadow); }
.network-node b { display: block; font-size: 14px; }
.network-node span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.network-node.a { left: 0; top: 26px; }
.network-node.b { right: 0; top: 26px; border-color: var(--teal); }
.network-node.c { left: -5px; bottom: 35px; border-color: var(--amber); }
.network-node.d { right: -5px; bottom: 35px; border-color: var(--risk); }
.network-node.e { left: calc(50% - 89px); top: 0; border-color: var(--accent); }
.answer-risks { border-top: 1px solid var(--line); }
.answer-risks div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.answer-risks b { display: block; color: var(--deep); }
.answer-risks span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Impact */
.impact-map { display: grid; grid-template-columns: 240px 1fr; gap: 34px; align-items: center; }
.impact-origin { padding: 28px 22px; background: var(--risk); color: #fff; text-align: center; }
.impact-origin strong { display: block; font-size: 27px; }
.impact-origin span { display: block; margin-top: 9px; font-size: 13px; line-height: 1.6; opacity: .86; }
.impact-roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.impact-role { min-height: 185px; padding: 17px 14px; border-top: 4px solid var(--deep); background: #fff; }
.impact-role b { display: block; font-size: 15px; }
.impact-role p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.cost-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border: 1px solid var(--line); }
.cost-ribbon div { min-height: 68px; display: grid; place-items: center; padding: 13px; border-right: 1px solid var(--line); background: var(--wash); font-size: 14px; line-height: 1.45; text-align: center; font-weight: 760; }
.cost-ribbon div:last-child { border-right: 0; }

/* Group navigation */
.group-nav { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.group-nav a { padding: 7px 10px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 760; }
.group-nav a.active { border-color: var(--deep); background: var(--deep); color: #fff; }
.scene-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scene-path { position: relative; display: flex; flex-direction: column; padding: 21px; border-top: 5px solid var(--main); background: #fff; }
.scene-path:nth-child(2) { border-color: var(--teal); }
.scene-path:nth-child(3) { border-color: var(--amber); }
.scene-path small { color: var(--deep); font-weight: 900; }
.scene-path h3 { margin: 8px 0 12px; font-size: 20px; }
.scene-path p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.scene-outcome { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.5; font-weight: 800; }

/* Scene 1 */
.dual-timeline { display: grid; grid-template-columns: 1fr 84px 1fr; gap: 14px; align-items: stretch; }
.timeline-track { padding: 22px; background: #fff; border-top: 5px solid var(--teal); }
.timeline-track.external { border-color: var(--risk); }
.timeline-track h3 { font-size: 21px; }
.time-event { display: grid; grid-template-columns: 76px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.time-event b { color: var(--teal); font-size: 14px; }
.external .time-event b { color: var(--risk); }
.time-event span { color: var(--muted); font-size: 14px; line-height: 1.6; }
.timeline-collision { display: grid; place-items: center; text-align: center; color: var(--risk); font-weight: 900; line-height: 1.5; }
.scene-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 18px; }
.scene-results div { padding: 15px; background: #fff; border-left: 4px solid var(--risk); }
.scene-results b { display: block; font-size: 16px; line-height: 1.45; }
.scene-results span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Scene 2 */
.schedule { display: grid; grid-template-columns: 240px 1fr; gap: 20px; }
.schedule-legend { display: grid; gap: 8px; align-content: start; }
.schedule-legend div { padding: 15px 14px; border-left: 4px solid var(--deep); background: #fff; font-size: 14px; line-height: 1.55; }
.schedule-legend div:nth-child(2) { border-color: var(--teal); }
.schedule-legend div:nth-child(3) { border-color: var(--risk); }
.timeboard { padding: 22px; background: #fff; border: 1px solid var(--line); }
.time-axis { display: grid; grid-template-columns: repeat(9, 1fr); margin-left: 130px; color: var(--muted); font-size: 10px; }
.resource-row { display: grid; grid-template-columns: 130px repeat(9, 1fr); min-height: 46px; border-top: 1px solid var(--line); align-items: center; }
.resource-row > b { padding-right: 12px; font-size: 12px; }
.slot { height: 16px; margin: 0 2px; background: #eeeaf1; }
.slot.open { background: var(--teal); }
.slot.busy { background: var(--risk); }
.slot.conditional { background: var(--accent); }

/* Scene 3 */
.condition-builder { display: grid; grid-template-columns: .8fr 44px 1.2fr; gap: 18px; align-items: center; }
.brief { padding: 24px; background: #241a2c; color: #fff; }
.brief blockquote { margin: 0 0 18px; font-size: 22px; line-height: 1.55; font-weight: 820; }
.brief-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.brief-tags span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.23); font-size: 11px; }
.builder-arrow { color: var(--deep); font-size: 26px; font-weight: 900; }
.truth-columns { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #fff; }
.truth-col { padding: 17px; border-right: 1px solid var(--line); }
.truth-col:last-child { border-right: 0; }
.truth-col b { display: block; color: var(--deep); font-size: 15px; line-height: 1.45; }
.truth-col:nth-child(2) b { color: var(--teal); }
.truth-col:nth-child(3) b { color: var(--risk); }
.truth-col p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Information speeds */
.speed-system { display: grid; gap: 12px; }
.speed-row { display: grid; grid-template-columns: 160px 1fr 250px; gap: 18px; align-items: center; padding: 17px 20px; background: #fff; border-left: 7px solid var(--deep); }
.speed-row:nth-child(2) { margin-left: 55px; border-color: var(--amber); }
.speed-row:nth-child(3) { margin-left: 110px; border-color: var(--teal); }
.speed-row h3 { margin: 0; font-size: 18px; }
.speed-row p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.speed-action { padding: 9px 11px; background: var(--wash); font-size: 12px; font-weight: 800; }

/* Boundary */
.boundary-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.boundary-col { padding: 24px; background: #fff; border-top: 5px solid var(--teal); }
.boundary-col.stop { border-color: var(--risk); }
.boundary-list { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 15px; }
.boundary-list div { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.6; }
.stop-bar { margin-top: 17px; padding: 16px 20px; background: var(--risk); color: #fff; font-weight: 800; line-height: 1.6; }

/* Opportunity matrix */
.opportunity { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 28px; }
.opportunity-chart { position: relative; min-height: 500px; padding: 42px 28px 45px 56px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: #fff; }
.opportunity-chart::before, .opportunity-chart::after { content: ""; position: absolute; background: var(--line); }
.opportunity-chart::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.opportunity-chart::after { top: 50%; left: 0; right: 0; height: 1px; }
.axis-y { position: absolute; left: -4px; top: 50%; transform: translate(-100%,-50%) rotate(-90deg); transform-origin: center; font-size: 11px; font-weight: 800; white-space: nowrap; }
.axis-x { position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%); font-size: 11px; font-weight: 800; white-space: nowrap; }
.matrix-dot { position: absolute; transform: translate(-50%,-50%); min-width: 96px; padding: 9px 10px; border-radius: 50%; background: var(--soft); color: var(--deep); text-align: center; font-size: 11px; font-weight: 820; box-shadow: var(--shadow); }
.matrix-dot.priority { background: var(--deep); color: #fff; }
.matrix-dot.no { background: var(--risk-soft); color: var(--risk); }
.opportunity-notes { border-top: 1px solid var(--line); }
.opportunity-notes div { padding: 15px 0; border-bottom: 1px solid var(--line); }
.opportunity-notes b { display: block; color: var(--deep); }
.opportunity-notes span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Architecture */
.architecture { position: relative; padding: 24px 0 0; }
.architecture-inputs { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.architecture-inputs span { padding: 7px 10px; border: 1px solid var(--line); background: #fff; font-size: 11px; font-weight: 760; }
.foundation-base { padding: 25px; background: var(--deep); color: #fff; text-align: center; }
.foundation-base strong { display: block; font-size: 25px; }
.foundation-base span { display: block; margin-top: 7px; color: rgba(255,255,255,.76); font-size: 13px; }
.project-rails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 13px; }
.project-rail { padding: 20px; background: #fff; border-top: 5px solid var(--main); }
.project-rail:nth-child(2) { border-color: var(--amber); }
.project-rail:nth-child(3) { border-color: var(--teal); }
.project-rail small { color: var(--deep); font-weight: 900; }
.project-rail h3 { margin: 8px 0; font-size: 18px; }
.project-rail p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Governance hub */
.governance-hub { display: grid; grid-template-columns: 1fr 260px 1fr; gap: 20px; align-items: center; }
.hub-side { display: grid; gap: 8px; }
.hub-item { padding: 13px 14px; background: #fff; border-left: 4px solid var(--deep); font-size: 12px; line-height: 1.5; }
.hub-center { position: relative; min-height: 330px; display: grid; place-items: center; }
.hub-orbit { position: absolute; width: 310px; height: 310px; border: 1px dashed #bcaec8; border-radius: 50%; }
.hub-core { position: relative; z-index: 2; width: 180px; height: 180px; display: grid; place-items: center; padding: 25px; border-radius: 50%; background: var(--deep); color: #fff; text-align: center; font-size: 20px; font-weight: 850; line-height: 1.4; }
.hub-rule { position: absolute; z-index: 3; padding: 6px 8px; background: #fff; border: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.hub-rule.r1 { top: 8px; left: 50%; transform: translateX(-50%); }
.hub-rule.r2 { top: 50%; right: -4px; transform: translateY(-50%); }
.hub-rule.r3 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.hub-rule.r4 { top: 50%; left: -4px; transform: translateY(-50%); }
.output .hub-item { border-color: var(--teal); }

/* Project modules */
.project-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.project-stage { position: relative; padding: 19px 17px; background: #fff; border-top: 5px solid var(--main); }
.project-stage::after { content: "→"; position: absolute; right: -10px; top: 38px; z-index: 2; color: var(--deep); font-weight: 900; }
.project-stage:last-child::after { display: none; }
.project-stage small { color: var(--deep); font-weight: 900; }
.project-stage h3 { margin: 7px 0; font-size: 17px; }
.project-stage p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.lifecycle { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: stretch; }
.life-stage { padding: 20px 16px; background: #fff; border-bottom: 6px solid var(--line); }
.life-stage.current { border-color: var(--deep); background: var(--soft); }
.life-stage.exit { border-color: var(--risk); background: var(--risk-soft); }
.life-stage h3 { font-size: 17px; }
.life-stage p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.life-curve { margin-top: 14px; display: grid; grid-template-columns: repeat(4,1fr); height: 58px; align-items: end; border-bottom: 1px solid var(--line); }
.life-curve span { display: block; background: var(--accent); margin: 0 4px; }
.life-curve span:nth-child(1) { height: 18px; }
.life-curve span:nth-child(2) { height: 40px; }
.life-curve span:nth-child(3) { height: 54px; background: var(--deep); }
.life-curve span:nth-child(4) { height: 24px; background: var(--risk); }
.handoff-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.handoff-node { position: relative; min-height: 155px; padding: 18px 14px; background: #fff; border-top: 5px solid var(--deep); }
.handoff-node::after { content: "→"; position: absolute; right: -9px; top: 42px; z-index: 2; color: var(--deep); font-weight: 900; }
.handoff-node:last-child::after { display: none; }
.handoff-node:nth-child(4), .handoff-node:nth-child(5) { border-color: var(--teal); }
.handoff-node b { display: block; }
.handoff-node span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Assets */
.asset-compound { display: grid; grid-template-columns: 1.15fr .85fr; gap: 35px; align-items: center; }
.asset-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.asset { min-height: 155px; padding: 17px; background: #fff; border-top: 4px solid var(--deep); }
.asset:nth-child(2), .asset:nth-child(5) { border-color: var(--teal); }
.asset:nth-child(3), .asset:nth-child(6) { border-color: var(--amber); }
.asset b { display: block; font-size: 14px; }
.asset span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.compound-curve { position: relative; min-height: 330px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: #fff; overflow: hidden; }
.compound-curve::before { content: ""; position: absolute; left: 22px; right: -40px; bottom: 10px; height: 280px; border-top: 14px solid var(--deep); border-radius: 100% 0 0 0; transform: rotate(-13deg); transform-origin: left bottom; }
.compound-label { position: absolute; right: 22px; top: 28px; width: 170px; color: var(--deep); font-weight: 850; line-height: 1.5; }
.compound-axis { position: absolute; left: 14px; bottom: 12px; color: var(--muted); font-size: 11px; }

/* Validation */
.validation { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.validation-stage { position: relative; padding: 19px 16px; background: #fff; border-top: 5px solid var(--deep); }
.validation-stage::after { content: "→"; position: absolute; right: -10px; top: 36px; z-index: 2; color: var(--deep); font-weight: 900; }
.validation-stage:last-child::after { display: none; }
.validation-stage small { color: var(--deep); font-weight: 900; }
.validation-stage h3 { margin: 7px 0 9px; font-size: 17px; }
.validation-stage p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.validation-stage .limit { margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--line); color: var(--risk); font-size: 11px; font-weight: 760; }

/* Pilot double diamond */
.double-diamond { display: grid; grid-template-columns: 85px 1fr 1fr 85px; gap: 0; align-items: center; }
.diamond-end { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; padding: 10px; background: #fff; border: 1px solid var(--line); text-align: center; font-size: 11px; font-weight: 820; }
.diamond { display: grid; grid-template-columns: 1fr 1fr; min-height: 280px; }
.diamond-half { position: relative; display: grid; align-content: center; gap: 13px; padding: 28px 42px; background: var(--soft); clip-path: polygon(0 50%, 100% 0, 100% 100%); }
.diamond-half.converge { background: var(--pale); clip-path: polygon(0 0, 100% 50%, 0 100%); }
.diamond.second .diamond-half { background: var(--teal-soft); }
.diamond.second .diamond-half.converge { background: #cfece7; }
.diamond-half b { font-size: 16px; }
.diamond-half span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.pilot-conditions { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 17px; border: 1px solid var(--line); }
.pilot-conditions div { padding: 13px; border-right: 1px solid var(--line); background: #fff; font-size: 12px; line-height: 1.5; }
.pilot-conditions div:last-child { border-right: 0; }
.pilot-conditions b { display: block; color: var(--deep); margin-bottom: 4px; }

/* Capability */
.brand-mark { height: 46px; width: auto; margin-bottom: 12px; object-fit: contain; }
.capability-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 35px; }
.brand-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.brand-fact { padding: 18px; background: #fff; border-top: 5px solid var(--deep); }
.brand-fact b { display: block; font-size: 22px; color: var(--deep); }
.brand-fact span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.brand-copy { padding: 24px 0 24px 28px; border-left: 1px solid var(--line); }
.brand-copy p { color: #403947; font-size: 15px; line-height: 1.8; }
.brand-copy strong { color: var(--deep); }
.parser { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: center; }
.parser-query { padding: 25px; background: #241a2c; color: #fff; }
.parser-query blockquote { margin: 0 0 17px; font-size: 22px; line-height: 1.55; font-weight: 820; }
.parser-output { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.parser-item { padding: 16px; background: #fff; border-top: 4px solid var(--deep); }
.parser-item:nth-child(2), .parser-item:nth-child(5) { border-color: var(--teal); }
.parser-item:nth-child(3), .parser-item:nth-child(6) { border-color: var(--amber); }
.parser-item b { display: block; font-size: 13px; }
.parser-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.knowledge-system { display: grid; grid-template-columns: 1fr 340px 1fr; gap: 20px; align-items: center; }
.knowledge-core { position: relative; min-height: 360px; display: grid; place-items: center; }
.knowledge-core img { position: relative; z-index: 2; width: 235px; height: 235px; object-fit: cover; object-position: left top; border-radius: 50%; box-shadow: var(--shadow); }
.knowledge-core::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px dashed #b9aac7; border-radius: 50%; }
.knowledge-label { position: absolute; z-index: 3; padding: 6px 8px; background: #fff; border: 1px solid var(--line); font-size: 10px; font-weight: 800; }
.knowledge-label.k1 { top: 5px; }
.knowledge-label.k2 { right: 0; top: 50%; transform: translateY(-50%); }
.knowledge-label.k3 { bottom: 5px; }
.knowledge-label.k4 { left: 0; top: 50%; transform: translateY(-50%); }
.system-list { display: grid; gap: 8px; }
.system-list div { padding: 13px; background: #fff; border-left: 4px solid var(--deep); font-size: 12px; line-height: 1.5; }
.system-list.output div { border-color: var(--teal); }
.work-loop { position: relative; min-height: 520px; }
.loop-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 210px; height: 210px; border-radius: 50%; display: grid; place-items: center; padding: 28px; background: var(--deep); color: #fff; text-align: center; font-size: 20px; font-weight: 850; line-height: 1.4; }
.loop-ring { position: absolute; inset: 40px 230px; border: 1px dashed #b6a7c3; border-radius: 50%; }
.loop-node { position: absolute; width: 185px; min-height: 94px; padding: 14px; background: #fff; border-top: 4px solid var(--main); box-shadow: var(--shadow); }
.loop-node b { display: block; font-size: 13px; }
.loop-node span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.loop-node.l1 { left: 50%; top: 0; transform: translateX(-50%); }
.loop-node.l2 { right: 50px; top: 85px; border-color: var(--teal); }
.loop-node.l3 { right: 0; top: 235px; border-color: var(--amber); }
.loop-node.l4 { right: 75px; bottom: 18px; border-color: var(--risk); }
.loop-node.l5 { left: 75px; bottom: 18px; border-color: var(--teal); }
.loop-node.l6 { left: 0; top: 235px; border-color: var(--amber); }
.loop-node.l7 { left: 50px; top: 85px; border-color: var(--accent); }
.product-evidence { margin-top: 26px; }
.product-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.product-tab { padding: 7px 10px; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--muted); font-size: 11px; }
.product-tab.active { background: var(--deep); color: #fff; border-color: var(--deep); }
.product-frame { padding: 12px; border: 1px solid var(--line); background: #fff; }
.product-frame img { width: 100%; height: 420px; object-fit: contain; }

/* CTA */
.cta { padding: 72px 0 45px; background: #22172b; color: #fff; scroll-margin-top: var(--topbar); }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 45px; align-items: start; }
.cta h2 { margin-bottom: 14px; }
.cta .summary { color: rgba(255,255,255,.7); }
.cta-steps { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.2); }
.cta-step { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.cta-step b { color: var(--accent); }
.cta-step span { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; }
.cta-outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.cta-outcome { padding: 15px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.cta-outcome b { display: block; }
.cta-outcome span { display: block; margin-top: 5px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }
.contact-line { margin-top: 38px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.6; }
.contact-line a { color: inherit; text-decoration: none; }

/* Marketing trend */
.hero h1 { font-size: clamp(42px, 4vw, 56px); }
.hero-title-main, .hero-accent { display: block; }
.hero-title-main { color: #fff; }
.hero-accent { margin-top: 12px; color: #e7d6fa; font-size: .62em; line-height: 1.25; }
.hero-lead strong { color: #fff; }
.trend-timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 34px; border-top: 2px solid var(--line); }
.trend-timeline article { position: relative; padding: 27px 22px 20px 0; }
.trend-timeline article::before { content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 4px solid var(--main); }
.trend-timeline article:not(:last-child)::after { content: "→"; position: absolute; top: -16px; right: 15px; color: var(--accent); font-size: 22px; font-weight: 900; }
.trend-timeline article.current::before { border-color: var(--deep); background: var(--deep); }
.trend-timeline small { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.trend-timeline strong { display: block; margin: 9px 0 7px; font-size: 20px; }
.trend-timeline p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.trend-data-band { background: #24172d; color: #fff; }
.trend-data-band .summary { color: rgba(255,255,255,.68); }
.trend-data-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.trend-data-grid article { padding: 26px 30px 28px; border-right: 1px solid rgba(255,255,255,.18); }
.trend-data-grid article:first-child { padding-left: 0; }
.trend-data-grid article:last-child { border-right: 0; padding-right: 0; }
.trend-data-grid small { color: var(--accent); font-weight: 800; }
.trend-number { display: block; margin: 12px 0 5px; color: #fff; font-size: 45px; font-weight: 900; }
.trend-data-grid h3 { margin: 0 0 12px; font-size: 19px; }
.trend-data-grid p { min-height: 68px; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.68; }
.trend-meaning { padding-top: 15px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.86); font-size: 14px; line-height: 1.68; }
.trend-meaning b { display: block; margin-bottom: 4px; color: #fff; }
.proof-links { display: flex; align-items: center; gap: 10px; margin-top: 20px; color: rgba(255,255,255,.68); font-size: 12px; }
.proof-links b { color: #fff; }
.proof-links button { padding: 7px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 4px; background: rgba(255,255,255,.06); color: #fff; }
.proof-links button:hover { border-color: var(--accent); background: rgba(192,157,239,.14); }
.ai-answer-flow { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ai-answer-flow article { position: relative; padding: 24px 20px; border-right: 1px solid var(--line); }
.ai-answer-flow article:last-child { border-right: 0; }
.ai-answer-flow article:not(:last-child)::after { content: "→"; position: absolute; top: 48%; right: -9px; z-index: 2; padding: 2px; background: #fff; color: var(--deep); font-weight: 900; }
.ai-answer-flow small { color: var(--deep); font-weight: 900; }
.ai-answer-flow strong { display: block; margin: 8px 0; font-size: 18px; }
.ai-answer-flow p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.answer-mechanism { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 30px; }
.answer-mechanism article { padding-left: 18px; border-left: 4px solid var(--deep); }
.answer-mechanism strong { font-size: 16px; }
.answer-mechanism p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.trend-shortlist-band { background: #f0e8f8; }
.local-shortlist-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: center; }
.local-shortlist-layout h2 { font-size: clamp(32px, 3.2vw, 44px); }
.shortlist-note { margin-top: 24px; padding: 18px 0; border-top: 1px solid rgba(120,36,220,.25); border-bottom: 1px solid rgba(120,36,220,.25); color: var(--deep); font-weight: 850; line-height: 1.6; }
.shortlist-compare { display: grid; grid-template-columns: 1fr 44px 1.2fr; align-items: stretch; }
.list-column, .answer-column { padding: 22px; background: #fff; border-top: 4px solid var(--main); }
.answer-column { border-color: var(--teal); }
.list-column small, .answer-column small { display: block; margin-bottom: 12px; color: var(--muted); font-weight: 800; }
.list-column div, .answer-column div { padding: 13px 0; border-top: 1px solid var(--line); }
.list-column b, .answer-column b { display: block; font-size: 14px; }
.list-column span, .answer-column span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.answer-column .absent { color: var(--risk); }
.shortlist-arrow { display: grid; place-items: center; color: var(--deep); font-size: 26px; font-weight: 900; }

/* Clear relationship structures */
.service-entity-chain { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-entity-chain article { position: relative; padding: 23px 18px; border-right: 1px solid var(--line); }
.service-entity-chain article:last-child { border-right: 0; }
.service-entity-chain article:not(:last-child)::after { content: "→"; position: absolute; top: 48%; right: -9px; z-index: 2; padding: 2px; background: #fff; color: var(--deep); font-weight: 900; }
.service-entity-chain small { color: var(--deep); font-weight: 900; }
.service-entity-chain b { display: block; margin: 8px 0; font-size: 15px; }
.service-entity-chain span { display: block; min-height: 72px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-entity-chain em { display: inline-block; margin-top: 11px; padding: 5px 8px; background: var(--soft); color: var(--deep); font-size: 12px; font-style: normal; font-weight: 850; }
.service-entity-chain article:last-child em { background: var(--teal-soft); color: var(--teal); }
.entity-rule { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; background: var(--line); }
.entity-rule div { padding: 16px 18px; background: var(--wash); }
.entity-rule b, .entity-rule span { display: block; }
.entity-rule b { font-size: 15px; }
.entity-rule span { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.scope-compare { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; }
.scope-services { border-top: 1px solid var(--line); }
.scope-services > div { display: grid; grid-template-columns: 180px 1fr 1.15fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.scope-services b { color: var(--deep); }
.scope-services span { color: var(--muted); font-size: 14px; line-height: 1.65; }
.scope-services span strong { color: var(--ink); }
.scope-services em { color: #705f76; font-size: 13px; font-style: normal; line-height: 1.65; }
.scope-exclusions { padding: 24px 26px; background: #fff; border-top: 4px solid var(--risk); }
.scope-exclusions > strong { display: block; margin-bottom: 15px; font-size: 17px; }
.scope-exclusions > div { display: grid; grid-template-columns: 95px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.scope-exclusions b { color: var(--risk); font-size: 13px; }
.scope-exclusions span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.source-ledger { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
.source-table { border-top: 1px solid var(--line); }
.source-table > div { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 18px; padding: 15px 12px; border-bottom: 1px solid var(--line); align-items: center; }
.source-table .source-head { padding-top: 10px; color: var(--muted); font-size: 13px; }
.source-table > div > b { color: var(--deep); font-size: 15px; }
.source-table span, .source-table em { color: var(--muted); font-size: 15px; line-height: 1.65; }
.source-table em { color: #7b5f36; font-style: normal; }
.answer-risks > strong { display: block; padding: 16px 18px; background: var(--risk); color: #fff; }
.source-ledger .answer-risks { display: grid; gap: 1px; align-content: start; background: #efd4d1; }
.source-ledger .answer-risks > div { display: grid; grid-template-columns: 76px 1fr; gap: 10px; padding: 14px 16px; background: var(--risk-soft); }
.source-ledger .answer-risks b { color: var(--risk); }
.source-ledger .answer-risks span { color: var(--muted); font-size: 13px; line-height: 1.6; }
.governance-ledger { display: grid; grid-template-columns: 1fr 44px 1.12fr 44px 1fr; align-items: stretch; }
.ledger-arrow { display: grid; place-items: center; color: var(--deep); font-size: 26px; font-weight: 900; }
.ledger-column { border-top: 4px solid var(--main); background: var(--wash); }
.ledger-column.core { border-color: var(--deep); background: var(--soft); }
.ledger-column.output { border-color: var(--teal); background: var(--teal-soft); }
.ledger-column small { display: block; padding: 15px 17px; color: var(--muted); font-weight: 850; }
.ledger-column > div { min-height: 62px; padding: 13px 17px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 750; line-height: 1.6; }
.ledger-column.core > div { display: grid; grid-template-columns: 95px 1fr; gap: 10px; }
.ledger-column.core b { color: var(--deep); }
.ledger-column.core span { color: var(--muted); font-size: 13px; }

/* Client-facing business windows */
.business-windows { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.business-windows article { padding: 23px 25px; border-top: 4px solid var(--deep); background: var(--wash); }
.business-windows article:nth-child(2) { border-color: var(--amber); }
.business-windows article:nth-child(3) { border-color: var(--main); }
.business-windows article:nth-child(4) { border-color: var(--teal); }
.business-windows small { color: var(--deep); font-weight: 900; }
.business-windows h3 { margin: 8px 0; font-size: 19px; }
.business-windows p { color: var(--muted); font-size: 12px; line-height: 1.65; }
.business-windows article > div { padding-top: 11px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 800; }

/* Experience and credentials */
.capability-heading .brand-mark { width: auto; height: 44px; margin-bottom: 18px; }
.experience-numbers { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 30px; border-top: 1px solid rgba(120,36,220,.22); border-bottom: 1px solid rgba(120,36,220,.22); }
.experience-numbers div { padding: 25px; border-right: 1px solid rgba(120,36,220,.18); }
.experience-numbers div:first-child { padding-left: 0; }
.experience-numbers div:last-child { border-right: 0; }
.experience-numbers strong { display: block; color: var(--deep); font-size: 36px; }
.experience-numbers span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; }
.experience-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; margin-top: 28px; }
.experience-copy p { color: #514958; font-size: 14px; line-height: 1.8; }
.tech-stack { display: grid; gap: 8px; margin-top: 30px; }
.tech-layer { display: grid; grid-template-columns: 190px 1fr; min-height: 104px; border: 1px solid var(--line); background: #fff; }
.tech-label { display: flex; flex-direction: column; justify-content: center; padding: 18px 22px; background: var(--soft); }
.tech-layer.engine .tech-label { background: var(--deep); color: #fff; }
.tech-layer.data .tech-label { background: var(--teal-soft); }
.tech-label small { color: var(--muted); font-size: 10px; }
.tech-layer.engine .tech-label small { color: rgba(255,255,255,.65); }
.tech-label b { margin-top: 4px; font-size: 19px; }
.tech-modules { display: grid; grid-template-columns: repeat(6, 1fr); align-items: stretch; }
.tech-layer.application .tech-modules, .tech-layer.data .tech-modules { grid-template-columns: repeat(5, 1fr); }
.tech-modules span { display: grid; place-items: center; padding: 13px; border-left: 1px solid var(--line); text-align: center; font-size: 12px; font-weight: 800; line-height: 1.5; }
.tech-link { color: var(--deep); text-align: center; font-size: 11px; font-weight: 850; }
.agent-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; align-items: stretch; margin-top: 28px; }
.agent-layout > img { width: 100%; height: 100%; min-height: 420px; object-fit: contain; border: 1px solid var(--line); background: #fff; }
.agent-jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.agent-jobs article { padding: 18px; border-top: 4px solid var(--main); background: #fff; }
.agent-jobs article:nth-child(2), .agent-jobs article:nth-child(4) { border-color: var(--teal); }
.agent-jobs b { color: var(--deep); font-size: 16px; }
.agent-jobs p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.verification-chain { display: grid; grid-template-columns: repeat(7, 1fr); margin: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.verification-chain span { position: relative; padding: 17px 9px; text-align: center; font-size: 11px; font-weight: 850; }
.verification-chain span:not(:last-child)::after { content: "→"; position: absolute; right: -5px; color: var(--deep); }
.dashboard-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 12px; }
.dashboard-grid figure { margin: 0; border: 1px solid var(--line); background: #fff; }
.dashboard-grid figure:first-child { grid-row: 1 / 3; }
.dashboard-grid img { width: 100%; height: 220px; object-fit: contain; }
.dashboard-grid figure:first-child img { height: 500px; }
.dashboard-grid figcaption { padding: 10px 13px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 28px; }
.cert-grid > div { padding: 17px; border-top: 4px solid var(--deep); background: var(--wash); text-align: center; }
.cert-grid img { width: 100%; height: 180px; object-fit: contain; }
.cert-grid b, .security-grid b { display: block; margin-top: 10px; font-size: 12px; }
.security-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 28px; }
.security-grid > div { padding: 13px; background: #fff; text-align: center; }
.security-grid img { width: 100%; height: 120px; object-fit: contain; }

/* Information ownership by freshness */
.time-boundary-board { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.time-question { position: relative; padding: 24px 26px; border-top: 5px solid var(--deep); background: var(--soft); }
.time-question.live { border-color: var(--teal); background: var(--teal-soft); }
.time-question small, .time-question strong, .time-question span { display: block; }
.time-question small { color: var(--muted); font-size: 11px; font-weight: 850; }
.time-question strong { margin: 7px 0 8px; font-size: 22px; }
.time-question span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.time-boundary-table { grid-column: 1 / -1; border-top: 1px solid var(--line); background: #fff; }
.time-boundary-table > div { display: grid; grid-template-columns: 155px 1.2fr 1.15fr 1fr; gap: 20px; align-items: center; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.time-boundary-table .time-head { padding-block: 10px; background: var(--wash); color: var(--muted); font-size: 11px; }
.time-boundary-table > div > b { color: var(--deep); font-size: 13px; }
.time-boundary-table span, .time-boundary-table em, .time-boundary-table strong { font-size: 11px; line-height: 1.6; }
.time-boundary-table span { color: var(--muted); }
.time-boundary-table em { color: #72553a; font-style: normal; }
.time-boundary-table strong { color: var(--teal); }

/* Reusable results */
.asset-ledger { border-top: 1px solid var(--line); background: #fff; }
.asset-ledger > div { display: grid; grid-template-columns: 42px 210px 1fr 170px; gap: 18px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.asset-ledger .asset-ledger-head { grid-template-columns: 270px 1fr 170px; padding-block: 10px; background: var(--wash); color: var(--muted); font-size: 11px; }
.asset-ledger small { color: var(--deep); font-weight: 900; }
.asset-ledger > div > b { font-size: 14px; }
.asset-ledger span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.asset-ledger strong { justify-self: start; padding: 6px 9px; background: var(--soft); color: var(--deep); font-size: 11px; }
.asset-ledger > div:nth-child(3n) strong { background: var(--teal-soft); color: var(--teal); }
.asset-ledger > div:nth-child(3n + 1) strong { background: var(--amber-soft); color: #805b20; }
.asset-footer { display: grid; grid-template-columns: 100px 1fr; gap: 20px; margin-top: 16px; padding: 16px 18px; border-left: 5px solid var(--deep); background: var(--soft); }
.asset-footer b { color: var(--deep); }
.asset-footer span { color: var(--muted); font-size: 12px; line-height: 1.65; }

/* First validation canvas */
.pilot-blueprint { display: grid; gap: 18px; }
.pilot-scope { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pilot-scope > div { padding: 17px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.pilot-scope small, .pilot-scope b, .pilot-scope span { display: block; }
.pilot-scope small { color: var(--deep); font-size: 10px; font-weight: 900; }
.pilot-scope b { margin: 5px 0; font-size: 18px; }
.pilot-scope span { color: var(--muted); font-size: 11px; line-height: 1.55; }
.pilot-workflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pilot-workflow article { position: relative; min-height: 175px; padding: 21px 18px; border-top: 5px solid var(--deep); background: #fff; }
.pilot-workflow article:nth-child(2), .pilot-workflow article:nth-child(4) { border-color: var(--teal); }
.pilot-workflow article:not(:last-child)::after { content: "→"; position: absolute; right: -10px; top: 38px; z-index: 2; color: var(--deep); font-weight: 900; }
.pilot-workflow small { color: var(--deep); font-weight: 900; }
.pilot-workflow b { display: block; margin-top: 8px; font-size: 16px; }
.pilot-workflow p { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.pilot-output { display: grid; grid-template-columns: 210px repeat(3, 1fr); align-items: stretch; background: #241a2c; color: #fff; }
.pilot-output b, .pilot-output span { padding: 17px 18px; }
.pilot-output b { color: #ead8ff; }
.pilot-output span { border-left: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.77); font-size: 11px; line-height: 1.55; }

/* Brand knowledge base evidence */
.knowledge-band { background: #291d33; color: #fff; }
.knowledge-band .section-head h2 { color: #fff; }
.knowledge-band .section-head .summary { color: rgba(255,255,255,.72); }
.interface-label { display: inline-block; margin: 5px 0 12px; padding: 7px 10px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 800; }
.interface-frame { padding: 13px; border: 1px solid rgba(255,255,255,.2); background: #fff; box-shadow: 0 18px 55px rgba(0,0,0,.22); }
.interface-frame img { display: block; width: 100%; max-height: 610px; object-fit: contain; cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(20, 15, 25, 0.9);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(94vw, 1680px); max-height: 90vh; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.38); }
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

/* Keep repeated information structures readable at presentation distance. */
.public-row span,
.channel-ribbon span,
.problem-intro,
.problem-detail p,
.lane-track span,
.answer-risks span,
.scene-results span,
.resource-row > b,
.business-windows p,
.business-windows article > div,
.project-stage p,
.life-stage p,
.handoff-node span,
.asset span,
.validation-stage p,
.pilot-scope span,
.pilot-workflow p,
.pilot-output span,
.time-question span,
.time-boundary-table span,
.time-boundary-table em,
.time-boundary-table strong,
.asset-ledger span,
.asset-footer span,
.agent-jobs p,
.dashboard-grid figcaption,
.cta-step span,
.cta-outcome span {
  font-size: 14px;
  line-height: 1.65;
}

.group-nav a,
.problem-tab,
.problem-tab .count,
.time-axis,
.brief-tags span,
.architecture-inputs span,
.pilot-scope small,
.time-boundary-table .time-head,
.asset-ledger .asset-ledger-head,
.cert-grid b,
.security-grid b {
  font-size: 13px;
}

@media (max-width: 980px) {
  :root { --topbar: 52px; }
  .topbar { justify-content: flex-start; padding: 0 10px; }
  .topnav { justify-content: flex-start; }
  .wrap { width: min(100% - 30px, 760px); }
  .band { padding: 54px 0; }
  .section-head, .hero-grid, .question-gap, .supply-map, .scope-layout, .source-network, .impact-map, .opportunity, .asset-compound, .capability-intro, .parser, .knowledge-system, .cta-grid { grid-template-columns: 1fr; gap: 25px; }
  .hero { min-height: auto; padding: calc(var(--topbar) + 44px) 0 48px; background-position: 64% center; }
  .hero::before { background: linear-gradient(90deg, rgba(39,27,45,.68), rgba(39,27,45,.48)); }
  .hero-questions { margin: 0; }
  .hero-question, .hero-question:nth-child(2), .hero-question:nth-child(3) { width: 100%; margin: 0; }
  .gap-bridge { min-height: 32px; transform: rotate(90deg); }
  .decision-process { grid-template-columns: 1fr 1fr; }
  .phase:nth-child(2)::after { display: none; }
  .scope-ring, .supply-orbit, .network, .work-loop { transform: scale(.86); transform-origin: center; }
  .problem-layout { grid-template-columns: 1fr; }
  .problem-controls { position: static; max-width: 100%; overflow: hidden; }
  .problem-tabs { display: flex; overflow-x: auto; }
  .problem-tab { flex: 0 0 210px; }
  .misalign { grid-template-columns: 1fr; }
  .miss { min-height: 70px; }
  .impact-roles { grid-template-columns: 1fr 1fr; }
  .scene-overview { grid-template-columns: 1fr; }
  .dual-timeline { grid-template-columns: 1fr; }
  .timeline-collision { min-height: 56px; }
  .schedule { grid-template-columns: 1fr; }
  .condition-builder { grid-template-columns: 1fr; }
  .builder-arrow { transform: rotate(90deg); text-align: center; }
  .speed-row, .speed-row:nth-child(2), .speed-row:nth-child(3) { margin-left: 0; grid-template-columns: 150px 1fr; }
  .speed-action { grid-column: 2; }
  .boundary-layout { grid-template-columns: 1fr; }
  .project-rails { grid-template-columns: 1fr; }
  .governance-hub { grid-template-columns: 1fr; }
  .hub-side { grid-template-columns: 1fr 1fr; }
  .project-flow { grid-template-columns: 1fr 1fr; }
  .project-stage:nth-child(2)::after { display: none; }
  .handoff-flow { grid-template-columns: 1fr 1fr; }
  .handoff-node:nth-child(2)::after, .handoff-node:nth-child(4)::after { display: none; }
  .validation { grid-template-columns: 1fr 1fr; }
  .validation-stage:nth-child(2)::after { display: none; }
  .double-diamond { grid-template-columns: 70px 1fr; row-gap: 12px; }
  .diamond.second { grid-column: 2; }
  .double-diamond .diamond-end:last-child { grid-column: 1; grid-row: 2; }
  .pilot-conditions { grid-template-columns: 1fr 1fr; }
  .product-frame img { height: 340px; }
  .trend-timeline { grid-template-columns: 1fr 1fr; }
  .trend-timeline article:nth-child(2)::after { display: none; }
  .ai-answer-flow { grid-template-columns: repeat(3, 1fr); }
  .ai-answer-flow article:nth-child(3) { border-right: 0; }
  .ai-answer-flow article:nth-child(3)::after { display: none; }
  .local-shortlist-layout { grid-template-columns: 1fr; gap: 30px; }
  .experience-numbers { grid-template-columns: 1fr 1fr; }
  .experience-numbers div:nth-child(2) { border-right: 0; }
  .experience-copy { grid-template-columns: 1fr; gap: 4px; }
  .tech-layer { grid-template-columns: 160px 1fr; }
  .tech-modules, .tech-layer.application .tech-modules, .tech-layer.data .tech-modules { grid-template-columns: repeat(3, 1fr); }
  .agent-layout { grid-template-columns: 1fr; }
  .verification-chain { grid-template-columns: repeat(4, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-grid figure:first-child { grid-row: auto; }
  .dashboard-grid figure:first-child img, .dashboard-grid img { height: auto; max-height: 520px; }
  .security-grid { grid-template-columns: repeat(3, 1fr); }
  .pilot-scope, .pilot-workflow { grid-template-columns: 1fr 1fr; }
  .pilot-workflow article:nth-child(2)::after { display: none; }
  .pilot-output { grid-template-columns: 170px 1fr 1fr 1fr; }
  .service-entity-chain { grid-template-columns: repeat(3, 1fr); }
  .service-entity-chain article:nth-child(3) { border-right: 0; }
  .service-entity-chain article:nth-child(3)::after { display: none; }
  .scope-compare, .source-ledger { grid-template-columns: 1fr; }
  .governance-ledger { grid-template-columns: 1fr 38px 1.1fr 38px 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 24px, 520px); }
  .band { padding: 46px 0; }
  .band.compact { padding: 34px 0; }
  h1, .hero h1 { font-size: 35px; }
  h2 { font-size: 28px; }
  .section-head { display: block; }
  .section-head .summary { margin-top: 13px; }
  .hero { background-position: 59% center; }
  .hero-lead { font-size: 16px; }
  .channel-ribbon, .gates, .truth-columns, .cost-ribbon, .project-flow, .lifecycle, .handoff-flow, .asset-steps, .validation, .brand-facts, .parser-output, .cta-outcomes { grid-template-columns: 1fr; }
  .decision-process { grid-template-columns: 1fr; }
  .phase::after, .phase:nth-child(2)::after, .gate::after, .project-stage::after, .handoff-node::after, .validation-stage::after { display: none; }
  .role-tracks { grid-template-columns: 1fr; }
  .supply-orbit, .scope-ring, .network, .work-loop { min-height: auto; transform: none; display: grid; gap: 8px; border: 0; }
  .supply-lines, .network-ring, .loop-ring { display: none; }
  .supply-center, .supply-node, .scope-core, .scope-item, .network-center, .network-node, .loop-center, .loop-node { position: static; inset: auto; transform: none; width: 100%; height: auto; min-height: 0; border-radius: 0; }
  .supply-center, .scope-core, .network-center, .loop-center { padding: 20px; }
  .exclude-list div, .supply-note { grid-template-columns: 1fr; gap: 5px; }
  .problem-panel { min-height: 0; padding: 18px; }
  .problem-detail { grid-template-columns: 1fr; margin-left: 0; }
  .problem-detail p, .problem-detail p + p { padding: 9px 0; border-left: 0; border-bottom: 1px solid rgba(120,36,220,.12); }
  .problem-detail p:last-child { border-bottom: 0; }
  .impact-roles { grid-template-columns: 1fr; }
  .truth-col { border-right: 0; border-bottom: 1px solid var(--line); }
  .truth-col:last-child { border-bottom: 0; }
  .schedule > * { min-width: 0; }
  .timeboard { padding-inline: 10px; }
  .time-axis { margin-left: 82px; font-size: 11px; }
  .resource-row { grid-template-columns: 82px repeat(9, minmax(0, 1fr)); }
  .speed-row, .speed-row:nth-child(2), .speed-row:nth-child(3) { grid-template-columns: 1fr; }
  .speed-action { grid-column: auto; }
  .opportunity-chart { min-height: 520px; }
  .opportunity-notes { margin-top: 22px; }
  .hub-side { grid-template-columns: 1fr; }
  .hub-center { min-height: 360px; transform: scale(.88); }
  .asset-steps { grid-template-columns: 1fr; }
  .compound-curve { min-height: 250px; }
  .double-diamond { grid-template-columns: 1fr; }
  .diamond-end { margin: 0 auto; }
  .diamond, .diamond.second { grid-column: 1; min-height: 210px; }
  .diamond-half { padding: 24px 32px; }
  .double-diamond .diamond-end:last-child { grid-column: 1; grid-row: auto; }
  .pilot-conditions { grid-template-columns: 1fr; }
  .brand-copy { padding-left: 0; border-left: 0; }
  .knowledge-core { transform: scale(.82); }
  .product-frame img { height: 260px; }
  .lightbox { padding: 12px; }
  .trend-timeline, .trend-data-grid, .ai-answer-flow, .answer-mechanism, .business-windows, .experience-numbers, .agent-jobs, .cert-grid, .security-grid { grid-template-columns: 1fr; }
  .trend-timeline article::after, .ai-answer-flow article::after { display: none; }
  .trend-data-grid article, .trend-data-grid article:first-child, .trend-data-grid article:last-child { padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .trend-data-grid article:last-child { border-bottom: 0; }
  .trend-data-grid p { min-height: 0; }
  .proof-links { align-items: flex-start; flex-direction: column; }
  .shortlist-compare { grid-template-columns: 1fr; gap: 8px; }
  .shortlist-arrow { transform: rotate(90deg); min-height: 34px; }
  .experience-numbers div, .experience-numbers div:first-child { padding: 19px 0; border-right: 0; border-bottom: 1px solid rgba(120,36,220,.18); }
  .experience-numbers div:last-child { border-bottom: 0; }
  .tech-layer { grid-template-columns: 1fr; }
  .tech-modules, .tech-layer.application .tech-modules, .tech-layer.data .tech-modules { grid-template-columns: 1fr 1fr; }
  .tech-modules span { min-height: 72px; border-top: 1px solid var(--line); }
  .agent-layout > img { min-height: 0; }
  .verification-chain { grid-template-columns: 1fr 1fr; }
  .verification-chain span { border-bottom: 1px solid var(--line); }
  .cert-grid img { height: auto; max-height: 220px; }
  .security-grid img { height: auto; max-height: 150px; }
  .time-boundary-board { grid-template-columns: 1fr; }
  .time-boundary-table { grid-column: 1; }
  .time-boundary-table .time-head { display: none; }
  .time-boundary-table > div { grid-template-columns: 1fr; gap: 6px; }
  .asset-ledger .asset-ledger-head { display: none; }
  .asset-ledger > div { grid-template-columns: 34px 1fr; gap: 7px 12px; }
  .asset-ledger span, .asset-ledger strong { grid-column: 2; }
  .asset-footer { grid-template-columns: 1fr; gap: 5px; }
  .pilot-scope, .pilot-workflow { grid-template-columns: 1fr; }
  .pilot-workflow article:not(:last-child)::after { display: none; }
  .pilot-output { grid-template-columns: 1fr; }
  .pilot-output span { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .service-entity-chain, .entity-rule { grid-template-columns: 1fr; }
  .service-entity-chain article { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-entity-chain article::after { display: none; }
  .service-entity-chain span { min-height: 0; }
  .scope-services > div, .scope-exclusions > div, .source-table > div { grid-template-columns: 1fr; gap: 5px; }
  .source-table .source-head { display: none; }
  .governance-ledger { grid-template-columns: 1fr; gap: 8px; }
  .ledger-arrow { transform: rotate(90deg); min-height: 34px; }
}

@media (max-width: 370px) {
  .timeboard { padding-inline: 6px; }
  .time-axis { margin-left: 76px; font-size: 10px; }
  .time-axis span:nth-child(even) { visibility: hidden; }
  .resource-row { grid-template-columns: 76px repeat(9, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
