.meeting-request-page {
  --case-figure-margin:38px 0 48px;
  --case-figure-radius:28px;
  --case-figure-border:0;
  --case-figure-shadow:0 18px 48px rgba(0,0,0,.07);
  --case-caption-max-width:none;
  --case-caption-margin:14px 0 0;
  --case-caption-size:13px;
  --case-caption-align:left;
}

.meeting-story-title {
  font-size:clamp(38px, 5vw, 64px);
}

.panel:focus {
  outline:none;
}

.role-scope-card>span,
.decision-summary article>span {
  display:block;
  color:var(--blue);
  font-size:11px;
  font-weight:750;
  letter-spacing:.08em;
}

.role-scope {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  max-width:var(--reading);
  margin:32px 0 0;
}

.role-scope-card {
  min-width:0;
  padding:24px;
  border:1px solid var(--soft-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 34px rgba(0,0,0,.045);
}

.role-scope-card.primary {
  border-top:3px solid rgba(0,113,227,.35);
  background:#f8fbff;
}

.role-scope-card.collaboration {
  border-top:3px solid rgba(110,110,115,.35);
  background:#FFF5F3;
}

.role-scope-card.collaboration>span {
  color:var(--muted);
}

.role-scope-card h4 {
  margin:11px 0 13px;
  font-size:20px;
  line-height:1.4;
}

.role-scope-card ul {
  margin:0;
  padding-left:19px;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

.role-scope-card li+li {
  margin-top:6px;
}

.app-frame {
  overflow:hidden;
  border-radius:25px;
  background:#f7f7f9;
  min-height:520px;
}

.app-bar {
  height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  border-bottom:1px solid rgba(0,0,0,.08);
  background:#ececf0;
  font-size:13px;
}

.app-bar span {color:var(--muted)}

.app-content {padding:30px}

.mock-label {
  margin-bottom:10px;
  color:var(--muted);
  font-size:13px;
  font-weight:650;
}

.time-filter {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:14px;
}

.mock-field {
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 10px 0 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#3a3a3c;
  font-size:13px;
}

.mock-chevron {
  width:24px;
  height:24px;
  flex:0 0 24px;
  display:grid;
  place-items:center;
  align-self:center;
  border:1px solid rgba(0,0,0,.06);
  border-radius:8px;
  background:#f3f3f6;
}

.mock-chevron::before {
  content:"";
  width:7px;
  height:7px;
  border-right:2px solid #6e6e73;
  border-bottom:2px solid #6e6e73;
  transform:translateY(-2px) rotate(45deg);
}

.mock-segment {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px;
  margin-bottom:16px;
  padding:5px;
  border-radius:18px;
  background:#ececf1;
}

.mock-segment span {
  min-height:38px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:var(--muted);
  font-size:13px;
}

.mock-segment .active {
  background:var(--ink);
  color:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}

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

.room-item {
  min-height:82px;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  padding:12px;
  border:1px solid var(--soft-line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.035);
}

.room-thumb {
  width:58px;
  aspect-ratio:1;
  border-radius:13px;
  background:linear-gradient(145deg,#e9e9ee,#f7f7f9);
}

.room-copy strong,
.room-copy span {display:block}

.room-copy strong {font-size:14px}

.room-copy span,
.room-state {
  color:var(--muted);
  font-size:12px;
}

.room-state {white-space:nowrap}

.story-body {min-width:0}

.story-body>p,
.story-body>.quote,
.story-body>.decision-box {
  max-width:var(--reading);
}

.story-body>h3,
.story-body>h4 {max-width:820px}

.meeting-launch {
  margin-top:30px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

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

.meeting-result-grid .result {
  min-width:0;
  padding:22px;
  border:1px solid var(--soft-line);
  box-shadow:0 12px 34px rgba(0,0,0,.045);
}

.meeting-result-grid .result b {
  font-size:26px;
  line-height:1.2;
}

.meeting-result-grid .result span {
  display:block;
  margin-top:8px;
  line-height:1.55;
}

.result-source {
  margin:14px 2px 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
}

.result-feedback {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:24px;
}

.result-feedback>div {
  padding:24px 26px;
  border-top:3px solid rgba(0,113,227,.22);
  background:#fff;
  box-shadow:0 12px 34px rgba(0,0,0,.045);
}

.result-feedback>div:last-child {border-top-color:rgba(255,159,10,.32)}

.result-feedback span {
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:11px;
  font-weight:750;
  letter-spacing:.05em;
}

.result-feedback h4 {font-size:22px}

.result-feedback p {
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.requirement-grid {
  display:grid;
  gap:28px;
}

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

.role-perspective {
  display:flex;
  min-width:0;
  overflow:hidden;
  flex-direction:column;
}

.role-perspective .persona-head {
  min-height:220px;
  padding:22px;
  color:#fff;
}

.role-perspective.applicant .persona-head {background:linear-gradient(135deg,#0071e3,#5ac8fa)}
.role-perspective.approver .persona-head {background:linear-gradient(135deg,#151519,#5e5ce6)}
.role-perspective.host .persona-head {background:linear-gradient(135deg,#3a3a3c,#8e8e93)}
.role-perspective.attendee .persona-head {background:linear-gradient(135deg,#148a36,#64d2ff)}
.role-perspective.manager .persona-head {background:linear-gradient(135deg,#b86b00,#ffb340)}

.role-perspective .persona-role {
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:750;
  letter-spacing:.08em;
}

.role-perspective .persona-name {
  margin:6px 0;
  color:#fff;
  font-size:22px;
  font-weight:750;
  letter-spacing:-.035em;
}

.role-perspective .persona-desc {
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.55;
}

.role-perspective .persona-desc strong {
  display:block;
  margin-bottom:5px;
  color:rgba(255,255,255,.68);
  font-size:11px;
  letter-spacing:.05em;
}

.role-perspective .compact-timeline {
  flex:1;
  padding:12px 18px 20px;
  background:#fff;
}

.role-perspective .moment {
  display:grid;
  grid-template-columns:22px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--soft-line);
}

.role-perspective .moment:last-child {border-bottom:0}

.role-perspective .moment-n {
  display:grid;
  width:22px;
  height:22px;
  place-items:center;
  border-radius:8px;
  background:#f1f1f4;
  font-size:11px;
  font-weight:800;
}

.role-perspective .moment b {
  display:block;
  font-size:13px;
  line-height:1.4;
}

.role-perspective .moment p {
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}

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

.mini-card,
.requirement-card,
.decision-box {
  padding:28px 30px;
  border:1px solid var(--soft-line);
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.88);
  box-shadow:0 14px 46px rgba(0,0,0,.055);
}

.requirement-card {
  background:#F8FCFF;
}

.story-body .mini-card {
  padding:6px 12px 6px 24px;
  border:0;
  border-left:3px solid rgba(0,113,227,.22);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.mini-card p,
.requirement-card p {
  margin-bottom:0;
  color:var(--muted);
  font-size:15px;
}

.requirement-group + .requirement-group {
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
}

.requirement-group h4 {
  margin:0 0 9px;
  color:var(--ink);
  font-size:13px;
  font-weight:750;
  letter-spacing:.04em;
}

.requirement-group ul {
  margin:0;
  padding-left:19px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

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

.notification-grid .mini-card {
  min-width:0;
}

.notification-intro {
  max-width:none !important;
  white-space:nowrap;
}

.decision-title,
.decision-intro {
  max-width:none !important;
  white-space:nowrap;
  text-wrap:nowrap;
}

.decision-summary {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  max-width:var(--reading-wide);
  margin:0 0 54px;
}

.decision-summary article {
  min-width:0;
  padding:24px;
  border:1px solid var(--soft-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 34px rgba(0,0,0,.045);
}

.decision-summary article.selected {
  border-color:rgba(0,113,227,.18);
  background:#f5faff;
}

.decision-summary article:not(.selected)>span {
  color:var(--muted);
}

.decision-summary h3 {
  margin:10px 0 8px;
  font-size:20px;
  line-height:1.35;
}

.decision-summary p {
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

.page-id {
  color:var(--blue);
  font-size:12px;
  font-weight:750;
  letter-spacing:.08em;
}

.role-matrix {margin-top:70px}

.final-flow {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  margin:34px 0 44px;
}

.flow-step {
  position:relative;
  min-height:156px;
  padding:20px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 26px rgba(0,0,0,.04);
}

.flow-step:not(:last-child):after {
  content:"→";
  position:absolute;
  right:-10px;
  top:50%;
  z-index:2;
  color:var(--blue);
  font-weight:800;
  transform:translate(50%,-50%);
}

.flow-step span {color:var(--blue);font-size:12px;font-weight:750}

.flow-step strong {display:block;margin:8px 0;font-size:15px}

.flow-step p {margin:0;color:var(--muted);font-size:13px;line-height:1.6}

.swimlane-figure,
.exception-figure {max-width:none}

.process-diagram {
  overflow:hidden;
  border:1px solid var(--soft-line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
}

.diagram-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 26px;
  border-bottom:1px solid var(--line);
  background:#f3f3f6;
}

.diagram-heading>div span,
.diagram-heading>div strong {display:block}

.diagram-heading>div span {
  margin-bottom:4px;
  color:var(--blue);
  font-size:10px;
  font-weight:750;
  letter-spacing:.08em;
}

.diagram-heading>div strong {font-size:18px;line-height:1.35}

.diagram-heading>small {
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
  text-align:right;
}

.swimlane-stages,
.swimlane-row {
  display:grid;
  grid-template-columns:140px repeat(6,minmax(0,1fr));
}

.swimlane-stages {
  min-height:66px;
  background:#1d1d1f;
  color:#fff;
}

.swimlane-stages>div {
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:12px 11px;
  border-left:1px solid rgba(255,255,255,.11);
}

.swimlane-stages .stage-corner {
  border-left:0;
  color:rgba(255,255,255,.55);
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
}

.swimlane-stages span {
  margin-bottom:4px;
  color:#9edaff;
  font-size:9px;
  font-weight:750;
}

.swimlane-stages strong {font-size:11px;line-height:1.35}

.swimlane-row {border-bottom:1px solid var(--line)}

.swimlane-row:last-child {border-bottom:0}

.lane-owner {
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
  padding:16px 14px;
  border-right:1px solid var(--line);
}

.lane-owner>span {
  width:28px;
  height:28px;
  flex:0 0 28px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:rgba(255,255,255,.74);
  font-size:10px;
  font-weight:800;
}

.lane-owner strong,
.lane-owner small {display:block}

.lane-owner strong {font-size:12px;line-height:1.35}

.lane-owner small {margin-top:3px;color:var(--muted);font-size:10px}

.applicant-lane .lane-owner {background:#eef7ff}

.system-lane .lane-owner {background:#f1f1f4}

.approver-lane .lane-owner {background:#f1efff}

.manager-lane .lane-owner {background:#fff7e8}

.lane-cell {
  min-width:0;
  min-height:112px;
  padding:15px 12px;
  border-right:1px solid var(--line);
  background:#fbfbfd;
}

.lane-cell:last-child {border-right:0}

.lane-cell.active {
  position:relative;
  background:linear-gradient(180deg,#fff,#f7fbff);
}

.lane-cell.active::after {
  content:"";
  position:absolute;
  top:0;
  right:12px;
  left:12px;
  height:3px;
  border-radius:0 0 3px 3px;
  background:rgba(0,113,227,.28);
}

.system-lane .lane-cell.active::after {background:rgba(110,110,115,.28)}

.approver-lane .lane-cell.active::after {background:rgba(94,92,230,.32)}

.manager-lane .lane-cell.active::after {background:rgba(255,159,10,.36)}

.lane-cell strong,
.lane-cell small {display:block}

.lane-cell strong {margin-top:4px;font-size:12px;line-height:1.45}

.lane-cell small {margin-top:7px;color:var(--muted);font-size:10px;line-height:1.5}

.lane-cell.active::before {display:none}

.lane-cell.empty {background:#f7f7f9}

.exception-map {padding-bottom:30px}

.exception-origin {
  width:min(430px,calc(100% - 48px));
  margin:30px auto 0;
  padding:20px 24px;
  border-radius:20px;
  background:linear-gradient(145deg,#111214,#2b2b30);
  color:#fff;
  text-align:center;
  box-shadow:0 16px 38px rgba(0,0,0,.16);
}

.exception-origin span,
.exception-origin strong {display:block}

.exception-origin span {
  margin-bottom:6px;
  color:#9edaff;
  font-size:10px;
  font-weight:750;
  letter-spacing:.08em;
}

.exception-origin strong {font-size:17px;line-height:1.45}

.exception-connector {
  position:relative;
  height:52px;
  margin:0 9%;
}

.exception-connector::before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  border-left:1px solid #c7c7cc;
}

.exception-connector::after {
  content:"";
  position:absolute;
  right:16.67%;
  bottom:0;
  left:16.67%;
  border-top:1px solid #c7c7cc;
}

.exception-branches {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  padding:0 28px;
}

.exception-branch {
  position:relative;
  min-width:0;
}

.exception-branch::before {
  content:"";
  position:absolute;
  top:-26px;
  left:50%;
  height:26px;
  border-left:1px solid #c7c7cc;
}

.exception-branch header {
  padding:17px 19px;
  border-radius:18px;
  background:linear-gradient(135deg,#eaf5ff,#d7edff);
}

.cancel-branch header {background:linear-gradient(135deg,#f0efff,#e4e1ff)}

.change-branch header {background:linear-gradient(135deg,#fff7e7,#ffebc7)}

.exception-branch header span {
  display:block;
  margin-bottom:5px;
  color:var(--blue);
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
}

.cancel-branch header span {color:#5e5ce6}

.change-branch header span {color:#a45b00}

.exception-branch header h4 {margin:0;font-size:18px}

.exception-branch ol {
  position:relative;
  display:grid;
  gap:10px;
  margin:16px 0 0;
  padding:0;
  list-style:none;
}

.exception-branch ol::before {
  content:"";
  position:absolute;
  top:20px;
  bottom:20px;
  left:16px;
  border-left:1px solid #d1d1d6;
}

.exception-branch li {
  position:relative;
  z-index:1;
  min-width:0;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:11px;
  padding:14px;
  border:1px solid var(--soft-line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.exception-branch li>span {
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#eef7ff;
  color:var(--blue);
  font-size:10px;
  font-weight:800;
}

.cancel-branch li>span {background:#f0efff;color:#5e5ce6}

.change-branch li>span {background:#fff5e1;color:#a45b00}

.exception-branch li strong,
.exception-branch li small {display:block}

.exception-branch li strong {font-size:12px;line-height:1.45}

.exception-branch li small {margin-top:4px;color:var(--muted);font-size:10px;line-height:1.55}

.branch-outcome {
  margin-top:12px;
  padding:9px 12px;
  border:1px dashed rgba(0,113,227,.24);
  border-radius:999px;
  background:#f5faff;
  color:var(--blue);
  font-size:10px;
  font-weight:750;
  text-align:center;
}

.cancel-branch .branch-outcome {
  border-color:rgba(94,92,230,.22);
  background:#f5f4ff;
  color:#5e5ce6;
}

.change-branch .branch-outcome {
  border-color:rgba(255,159,10,.28);
  background:#fff9ee;
  color:#a45b00;
}

.wireframe-figure {max-width:none;margin-top:48px}

.wireframe-board {
  overflow:hidden;
  border:1px solid var(--soft-line);
  border-radius:28px;
  background:#ececf1;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
}

.wireframe-heading {background:#fff}

.wireframe-legend {display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}

.wireframe-legend span {
  padding:6px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:750;
  white-space:nowrap;
}

.wireframe-legend .retained {background:rgba(0,113,227,.09);color:var(--blue)}

.wireframe-legend .removed {background:#e5e5ea;color:var(--muted)}

.wireframe-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:34px 18px;
  padding:30px 28px 34px;
}

.wireframe-screen {min-width:0}

.wireframe-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:min(100%,230px);
  margin:0 auto 10px;
}

.wireframe-meta span {
  color:var(--blue);
  font-size:10px;
  font-weight:800;
  letter-spacing:.06em;
}

.wireframe-meta em {
  padding:4px 7px;
  border-radius:999px;
  background:rgba(0,113,227,.09);
  color:var(--blue);
  font-size:9px;
  font-style:normal;
  font-weight:750;
}

.wireframe-screen.removed .wireframe-meta span,
.wireframe-screen.removed .wireframe-meta em {color:var(--muted)}

.wireframe-screen.removed .wireframe-meta em {background:#dedee3}

.wireframe-phone {
  width:min(100%,230px);
  aspect-ratio:9/16;
  display:flex;
  flex-direction:column;
  margin:0 auto;
  overflow:hidden;
  border:4px solid #2c2c2e;
  border-radius:26px;
  background:#f5f5f7;
  box-shadow:0 16px 34px rgba(0,0,0,.15);
}

.wireframe-screen.removed .wireframe-phone {
  border-color:#8e8e93;
  outline:2px dashed #a8a8ad;
  outline-offset:3px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.wf-status {
  height:19px;
  flex:0 0 19px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 11px;
  background:#fff;
  color:#6e6e73;
  font-size:7px;
  font-weight:700;
}

.wf-status i {
  width:18px;
  height:5px;
  border-radius:999px;
  background:#b9b9bf;
}

.wf-nav {
  min-height:34px;
  display:grid;
  grid-template-columns:24px minmax(0,1fr) 24px;
  align-items:center;
  padding:0 8px;
  border-bottom:1px solid #dedee3;
  background:#fff;
  text-align:center;
}

.wf-nav strong {font-size:9px;line-height:1.25}

.wf-back {
  width:8px;
  height:8px;
  margin-left:4px;
  border-bottom:1.5px solid #6e6e73;
  border-left:1.5px solid #6e6e73;
  transform:rotate(45deg);
}

.wf-content {
  min-height:0;
  flex:1;
  padding:11px;
  overflow:hidden;
}

.wf-content b,
.wf-content small {display:block}

.wf-content b {font-size:8px;line-height:1.35}

.wf-content small {margin-top:3px;color:#8e8e93;font-size:6.5px;line-height:1.4}

.wf-hero-block {
  display:flex;
  align-items:center;
  gap:9px;
  margin:5px 0 18px;
  padding:14px 10px;
  border-radius:12px;
  background:#e5e5ea;
}

.wf-room-icon {
  width:29px;
  height:29px;
  flex:0 0 29px;
  border-radius:9px;
  background:#b9b9bf;
}

.wf-entry {
  display:grid;
  grid-template-columns:25px minmax(0,1fr) 8px;
  gap:8px;
  align-items:center;
  margin-bottom:9px;
  padding:11px 9px;
  border:1px solid #d1d1d6;
  border-radius:11px;
  background:#fff;
}

.wf-entry>span {
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#e5e5ea;
  color:#6e6e73;
  font-size:7px;
  font-weight:800;
}

.wf-entry.primary>span {background:#dceeff;color:var(--blue)}

.wf-entry>i,
.wf-room-row>span {
  width:6px;
  height:6px;
  border-top:1px solid #8e8e93;
  border-right:1px solid #8e8e93;
  transform:rotate(45deg);
}

.wf-filter {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-bottom:7px;
  padding:8px 9px;
  border:1px solid #d1d1d6;
  border-radius:9px;
  background:#fff;
}

.wf-filter span {color:#8e8e93;font-size:6.5px}

.wf-filter b {font-size:7px}

.wf-segment {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3px;
  margin:9px 0;
  padding:3px;
  border-radius:9px;
  background:#dedee3;
}

.wf-segment span {
  padding:6px 4px;
  border-radius:7px;
  color:#8e8e93;
  font-size:6.5px;
  text-align:center;
}

.wf-segment .active {background:#fff;color:#3a3a3c;font-weight:700}

.wf-room-row {
  display:grid;
  grid-template-columns:34px minmax(0,1fr) 8px;
  gap:8px;
  align-items:center;
  margin-bottom:7px;
  padding:7px;
  border:1px solid #dedee3;
  border-radius:10px;
  background:#fff;
}

.wf-room-row>i {
  width:34px;
  height:30px;
  border-radius:7px;
  background:#d1d1d6;
}

.wf-empty-hint {
  padding:7px;
  border:1px dashed #b9b9bf;
  border-radius:8px;
  color:#8e8e93;
  font-size:6.5px;
  text-align:center;
}

.wf-image {
  height:92px;
  display:grid;
  place-items:center;
  margin:-11px -11px 10px;
  background:repeating-linear-gradient(135deg,#d8d8dd 0,#d8d8dd 8px,#e5e5ea 8px,#e5e5ea 16px);
  color:#8e8e93;
  font-size:7px;
}

.wf-title-row,
.wf-selected-room,
.wf-reviewer,
.wf-detail-status {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:9px;
  border:1px solid #dedee3;
  border-radius:9px;
  background:#fff;
}

.wf-title-row>span,
.wf-detail-status>span {
  padding:3px 5px;
  border-radius:999px;
  background:#e7f4ea;
  color:#248a3d;
  font-size:6px;
  font-weight:700;
}

.wf-title-row>span {
  min-width:30px;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}

.wf-section-label {margin:11px 0 6px;color:#6e6e73;font-size:7px;font-weight:700}

.wf-schedule {
  display:grid;
  grid-template-columns:28px minmax(0,1fr) 33px;
  gap:6px;
  align-items:center;
  margin:6px 0;
  color:#6e6e73;
  font-size:6.5px;
}

.wf-schedule i {height:8px;border-radius:999px;background:#b9b9bf}

.wf-schedule i.open {background:#e5e5ea}

.wf-schedule small {margin:0;text-align:right}

.wf-button,
.wf-link {
  width:100%;
  border:0;
  font:inherit;
  pointer-events:none;
}

.wf-button {
  min-height:29px;
  margin-top:10px;
  border-radius:8px;
  background:#2c2c2e;
  color:#fff;
  font-size:7px;
  font-weight:750;
}

.wf-link {margin-top:7px;background:transparent;color:#6e6e73;font-size:6.5px}

.wf-selected-room {justify-content:flex-start;margin-bottom:7px}

.wf-selected-room>span,
.wf-reviewer>span {
  width:27px;
  height:27px;
  flex:0 0 27px;
  border-radius:8px;
  background:#d1d1d6;
}

.wf-form-row,
.wf-detail-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-height:27px;
  padding:6px 7px;
  border-bottom:1px solid #dedee3;
  background:#fff;
  color:#6e6e73;
  font-size:6.5px;
}

.wf-form-row:first-of-type {border-radius:8px 8px 0 0}

.wf-form-row i,
.wf-detail-row i {
  width:32%;
  height:5px;
  border-radius:999px;
  background:#d1d1d6;
}

.wf-warning {
  margin-top:8px;
  padding:7px 8px;
  border-radius:7px;
  background:#fff6e7;
  color:#8a621d;
  font-size:6px;
  line-height:1.45;
}

.wf-result-page {
  display:flex;
  align-items:center;
  flex-direction:column;
  padding-top:46px;
  text-align:center;
}

.wf-result-icon {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  border-radius:50%;
  background:#dceeff;
}

.wf-result-icon::before {content:"✓";color:var(--blue);font-size:20px;font-weight:800}

.wf-result-icon.cancelled {background:#e5e5ea}

.wf-result-icon.cancelled::before {content:"×";color:#6e6e73}

.wf-result-icon.disabled {background:#e5e5ea}

.wf-result-icon.disabled::before {color:#8e8e93}

.wf-result-page>b {font-size:10px}

.wf-result-page>p {margin:6px 0 16px;color:#8e8e93;font-size:7px;line-height:1.5}

.wf-reviewer {width:100%;justify-content:flex-start;text-align:left}

.wf-result-page .wf-button {margin-top:auto}

.wf-record {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:7px;
  margin-bottom:9px;
  padding:10px 9px 22px;
  border:1px solid #dedee3;
  border-radius:10px;
  background:#fff;
}

.wf-record>span {
  align-self:start;
  padding:3px 5px;
  border-radius:999px;
  background:#e5e5ea;
  color:#6e6e73;
  font-size:6px;
}

.wf-record footer {
  position:absolute;
  right:9px;
  bottom:7px;
  left:9px;
  padding-top:5px;
  border-top:1px solid #ececf1;
  color:#a2a2a7;
  font-size:6px;
}

.wf-detail-status {margin-bottom:7px}

.wf-detail-row {min-height:30px}

.wf-button.danger {background:#fff;border:1px solid #8e8e93;color:#3a3a3c}

.wf-notice-list {
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px;
  margin-top:4px;
}

.wf-notice-list span {
  padding:7px 5px;
  border-radius:7px;
  background:#e5e5ea;
  color:#6e6e73;
  font-size:6.5px;
}

.wf-removed-note {
  margin-bottom:8px;
  padding:7px;
  border:1px dashed #a8a8ad;
  border-radius:8px;
  background:#f1f1f4;
  color:#6e6e73;
  font-size:6.5px;
  font-weight:700;
  text-align:center;
}

.wf-button.disabled {background:#b9b9bf;color:#fff}

.wireframe-screen>h4 {
  width:min(100%,230px);
  margin:14px auto 4px;
  font-size:14px;
  line-height:1.35;
  text-align:center;
}

.wireframe-screen>p {
  width:min(100%,230px);
  margin:0 auto;
  color:var(--muted);
  font-size:10px;
  line-height:1.5;
  text-align:center;
}

.decision-box {
  margin:38px 0;
  padding:34px;
  border:0;
  border-radius:26px;
  background:linear-gradient(145deg,#111214,#26262a);
  color:#fff;
}

.decision-box p {color:rgba(255,255,255,.72)}

.choice-tag {
  display:inline-flex;
  margin-bottom:20px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}

.choice-tag.selected {
  border-color:rgba(0,113,227,.18);
  background:rgba(0,113,227,.08);
  color:var(--blue);
}

.requirement-card ul {
  margin-bottom:0;
  padding-left:19px;
  color:var(--muted);
}

.requirement-card.removed {
  opacity:1;
  border-color:rgba(110,110,115,.26);
  border-style:dashed;
  background:#f8f8fa;
  box-shadow:0 10px 32px rgba(0,0,0,.035);
}

.requirement-card.removed .page-id {color:#6e6e73}

.scope-map {
  overflow:hidden;
  margin:0 0 46px;
  border:1px solid var(--soft-line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,0,0,.06);
}

.scope-map-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:24px 28px;
  border-bottom:1px solid var(--line);
  background:#f3f3f6;
}

.scope-map-head>div:first-child span,
.scope-map-head>div:first-child strong {display:block}

.scope-map-head>div:first-child span {
  margin-bottom:4px;
  color:var(--blue);
  font-size:10px;
  font-weight:750;
  letter-spacing:.08em;
}

.scope-map-head>div:first-child strong {font-size:18px}

.scope-status {display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}

.scope-status span {
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

.scope-status .retained {background:rgba(0,113,227,.09);color:var(--blue)}

.scope-status .removed {background:#e5e5ea;color:var(--muted)}

.scope-lane {
  display:grid;
  grid-template-columns:132px minmax(0,1fr);
  gap:22px;
  align-items:center;
  padding:22px 28px;
  border-bottom:1px solid var(--line);
}

.scope-lane-label small,
.scope-lane-label strong {display:block}

.scope-lane-label small {
  margin-bottom:5px;
  color:var(--blue);
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
}

.scope-lane-label strong {font-size:14px}

.scope-steps {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:9px;
  margin:0;
  padding:0;
  list-style:none;
}

.scope-steps.compact {grid-template-columns:repeat(4,minmax(0,1fr))}

.scope-steps li {
  position:relative;
  min-height:70px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:12px;
  border-radius:13px;
  background:#f3f3f6;
  color:#3a3a3c;
  font-size:11px;
  font-weight:700;
  line-height:1.4;
}

.scope-steps li span {
  margin-bottom:auto;
  color:var(--blue);
  font-size:9px;
  font-weight:750;
}

.scope-steps li:not(:last-child)::after {
  content:"→";
  position:absolute;
  top:50%;
  right:-10px;
  z-index:2;
  color:#9d9da3;
  transform:translateY(-50%);
}

.scope-steps .scope-return {
  border:1px dashed rgba(0,113,227,.25);
  background:#f5faff;
  color:var(--blue);
}

.scope-map figcaption {
  padding:14px 28px 17px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}

.validation-grid {
  display:grid;
  gap:18px;
}

.validation-grid {grid-template-columns:repeat(3,minmax(0,1fr));margin-bottom:36px}

.validation-card {
  padding:26px 28px;
  border:1px solid var(--soft-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 38px rgba(0,0,0,.045);
}

.validation-card>span {
  display:inline-flex;
  margin-bottom:16px;
  color:var(--blue);
  font-size:11px;
  font-weight:750;
  letter-spacing:.04em;
}

.validation-card h3 {font-size:20px}

.validation-head {margin-top:64px}

.validation-card p {
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}

.comparison-wrap {overflow:auto;border-radius:18px}

.comparison {
  width:100%;
  min-width:760px;
  margin:0;
  overflow:hidden;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.comparison th,
.comparison td {
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:14px;
  line-height:1.6;
}

.comparison th {
  background:#f2f2f5;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.comparison tr:last-child td {border-bottom:0}

.comparison td:first-child {font-weight:700;color:var(--ink)}

.case-figure {
  max-width:var(--reading-wide);
}

.case-figure.compact img {width:min(100%,560px)}

.objection-figure {max-width:none}

.objection-map {
  overflow:hidden;
  border:1px solid var(--soft-line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,0,0,.07);
}

.objection-trigger {
  display:grid;
  grid-template-columns:44px minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:22px 26px;
  border-bottom:1px solid var(--line);
  background:#f3f3f6;
}

.objection-trigger-avatar {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(135deg,#0071e3,#64d2ff);
  color:#fff;
  font-size:17px;
  font-weight:750;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.24);
}

.objection-trigger-copy small,
.objection-trigger-copy strong {display:block}

.objection-trigger-copy small {
  margin-bottom:4px;
  color:var(--blue);
  font-size:10px;
  font-weight:750;
  letter-spacing:.08em;
}

.objection-trigger-copy strong {
  font-size:17px;
  line-height:1.4;
}

.objection-factors {
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:6px;
}

.objection-factors span {
  padding:5px 9px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:999px;
  background:#fff;
  color:var(--muted);
  font-size:11px;
  font-weight:650;
}

.objection-axis {
  position:relative;
  height:66px;
  display:grid;
  place-items:center;
}

.objection-axis::before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  border-left:1px solid #c7c7cc;
}

.objection-axis::after {
  content:"";
  position:absolute;
  right:25%;
  bottom:0;
  left:25%;
  border-top:1px solid #c7c7cc;
}

.objection-axis span {
  position:relative;
  z-index:1;
  padding:6px 10px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-size:11px;
  font-weight:700;
}

.objection-options {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
}

.objection-option {
  position:relative;
  min-width:0;
  padding:26px;
}

.objection-option:first-child {border-right:1px solid var(--line)}

.objection-option::before {
  content:"";
  position:absolute;
  top:-1px;
  left:50%;
  height:13px;
  border-left:1px solid #c7c7cc;
  transform:translateY(-100%);
}

.objection-option.selected {
  background:linear-gradient(145deg,#f8fbff,#edf7ff);
}

.objection-option-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:17px;
}

.objection-option-top .choice-tag {margin:0}

.objection-verdict {
  color:#9d9da3;
  font-size:11px;
  font-weight:700;
}

.objection-option.selected .objection-verdict {color:var(--blue)}

.objection-option h4 {
  margin-bottom:8px;
  font-size:22px;
}

.objection-option>p {
  min-height:48px;
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

.objection-flow {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin:20px 0 0;
  padding:0;
  list-style:none;
  counter-reset:objection-step;
}

.objection-flow li {
  position:relative;
  min-height:60px;
  display:flex;
  align-items:flex-end;
  padding:24px 10px 9px;
  border-radius:12px;
  background:#f3f3f6;
  color:#3a3a3c;
  font-size:11px;
  font-weight:650;
  line-height:1.4;
  counter-increment:objection-step;
}

.objection-option.selected .objection-flow li {background:rgba(0,113,227,.08)}

.objection-flow li::before {
  content:"0" counter(objection-step);
  position:absolute;
  top:8px;
  left:10px;
  color:#9d9da3;
  font-size:9px;
  font-weight:750;
}

.objection-option.selected .objection-flow li::before {color:var(--blue)}

.objection-flow li:not(:last-child)::after {
  content:"→";
  position:absolute;
  top:50%;
  right:-9px;
  z-index:2;
  width:10px;
  color:#9d9da3;
  text-align:center;
  transform:translateY(-50%);
}

.persona-figure {max-width:none}

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

.persona-model {
  min-width:0;
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,0,0,.07);
}

.persona-model-head {
  min-height:164px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:22px;
  color:#fff;
}

.persona-model.applicant .persona-model-head {background:linear-gradient(135deg,#0071e3,#64d2ff)}

.persona-model.approver .persona-model-head {background:linear-gradient(135deg,#151519,#5e5ce6)}

.persona-model.host .persona-model-head {background:linear-gradient(135deg,#2c2c2e,#6e6e73)}

.persona-model.attendee .persona-model-head {background:linear-gradient(135deg,#148a36,#64d2ff)}

.persona-model.manager .persona-model-head {background:linear-gradient(135deg,#b86b00,#ffb340)}

.persona-model-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-size:12px;
}

.persona-model-meta span {
  display:grid;
  width:27px;
  height:27px;
  place-items:center;
  border:1px solid rgba(255,255,255,.3);
  border-radius:9px;
  color:rgba(255,255,255,.8);
  font-size:11px;
  font-weight:750;
}

.persona-model-meta strong {
  min-width:0;
  overflow:hidden;
  font-size:12px;
  font-weight:700;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.persona-avatar {
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:18px;
  background:rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
  font-size:24px;
  font-weight:750;
}

.persona-model-body {
  min-height:190px;
  padding:22px;
}

.persona-model-body h4 {
  margin:0 0 4px;
  font-size:22px;
}

.persona-position {
  min-height:44px;
  margin:0 0 18px;
  color:var(--blue);
  font-size:12px;
  font-weight:700;
}

.persona-goal {
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.68;
}

.scenario-figure {max-width:none}

.scenario-matrix-scroll {
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,0,0,.07);
}

.scenario-matrix {
  width:100%;
  min-width:0;
  border-collapse:separate;
  border-spacing:0;
  table-layout:fixed;
}

.scenario-matrix caption {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.scenario-column {width:138px}

.scenario-matrix th,
.scenario-matrix td {
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:middle;
}

.scenario-matrix tr>*:last-child {border-right:0}

.scenario-matrix tbody tr:last-child>* {border-bottom:0}

.scenario-matrix thead th {
  padding:0;
  background:#f3f3f6;
}

.scenario-corner {
  position:sticky;
  left:0;
  z-index:4;
  padding:14px!important;
  background:#f3f3f6!important;
}

.scenario-corner span {
  display:block;
  margin-bottom:5px;
  color:var(--blue);
  font-size:11px;
  font-weight:750;
  letter-spacing:.08em;
}

.scenario-corner strong {font-size:16px}

.scenario-role-head {
  min-height:92px;
  display:flex;
  align-items:flex-end;
  gap:9px;
  padding:13px;
  color:#fff;
}

.scenario-role-head.applicant {background:linear-gradient(135deg,#0071e3,#64d2ff)}

.scenario-role-head.approver {background:linear-gradient(135deg,#151519,#5e5ce6)}

.scenario-role-head.host {background:linear-gradient(135deg,#2c2c2e,#6e6e73)}

.scenario-role-head.attendee {background:linear-gradient(135deg,#148a36,#64d2ff)}

.scenario-role-head.manager {background:linear-gradient(135deg,#b86b00,#ffb340)}

.scenario-role-avatar {
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:10px;
  background:rgba(255,255,255,.16);
  font-size:14px;
  font-weight:750;
}

.scenario-role-head small,
.scenario-role-head strong {display:block}

.scenario-role-head small {
  margin-bottom:3px;
  color:rgba(255,255,255,.72);
  font-size:10px;
  line-height:1.4;
}

.scenario-role-head strong {
  font-size:13px;
  line-height:1.4;
}

.scenario-matrix tbody th {
  position:sticky;
  left:0;
  z-index:2;
  padding:13px 14px;
  background:#fff;
}

.scenario-matrix tbody th strong {
  display:block;
  margin-top:5px;
  font-size:14px;
}

.scenario-type {
  display:inline-flex;
  padding:3px 7px;
  border-radius:999px;
  background:rgba(0,113,227,.1);
  color:var(--blue);
  font-size:10px;
  font-weight:750;
}

.scenario-type.branch {
  background:#f1f1f4;
  color:var(--muted);
}

.scenario-type.draft {
  background:rgba(255,159,10,.14);
  color:#a45b00;
}

.scenario-matrix td {
  height:auto;
  padding:13px 14px;
  color:#3a3a3c;
  font-size:13px;
  line-height:1.55;
}

.scenario-primary td {background:#f5faff}

.scenario-primary th {background:#eef7ff!important}

.scenario-empty {
  display:block;
  color:#c7c7cc;
  font-size:24px;
  line-height:1;
}

.scenario-matrix td small {
  display:block;
  margin-top:6px;
  color:#9d9da3;
  font-size:11px;
}

@media(max-width:1120px) {
.wireframe-grid {grid-template-columns:repeat(4,minmax(0,1fr))}

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

.persona-model:last-child {grid-column:1/-1;max-width:calc(50% - 7px)}
}

@media(max-width:980px) {
.role-scope {grid-template-columns:1fr}

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

.wireframe-grid {grid-template-columns:repeat(3,minmax(0,1fr))}

.swimlane-stages {display:none}

.swimlane-row {
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:0 18px 18px;
  }

.lane-owner {
    grid-column:1/-1;
    margin:0 -18px 4px;
    padding:14px 18px;
    border-right:0;
    border-bottom:1px solid var(--line);
  }

.lane-cell.empty {display:none}

.lane-cell.active {
    min-height:104px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }

.lane-cell.active::before {
    content:attr(data-stage);
    display:block;
    margin-bottom:7px;
    color:var(--blue);
    font-size:9px;
    font-weight:750;
    letter-spacing:.04em;
  }

.exception-connector {height:28px}

.exception-connector::after {display:none}

.exception-branches {grid-template-columns:1fr;gap:36px}

.exception-branch::before {top:-36px;height:36px}

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

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

.flow-step:not(:last-child):after {display:none}

.validation-grid {grid-template-columns:1fr}

.scope-lane {grid-template-columns:1fr;gap:14px}
}

@media(max-width:640px) {
.role-scope {margin-top:26px}

.role-scope-card {padding:20px}

.decision-summary {
  grid-template-columns:1fr;
  margin-bottom:40px;
}

.decision-summary article {padding:22px}

.meeting-result-grid,
.result-feedback {grid-template-columns:1fr}

.meeting-result-grid .result {padding:20px}

.result-feedback>div {padding:22px}

.diagram-heading {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
    padding:19px 20px;
  }

.diagram-heading>small {text-align:left}

.swimlane-row {grid-template-columns:1fr;padding:0 14px 14px}

.lane-owner {margin:0 -14px 2px;padding:13px 14px}

.lane-cell.active {
    min-height:auto;
    padding:15px 14px;
    border-right:0;
  }

.exception-map {padding-bottom:22px}

.exception-origin {width:calc(100% - 36px);margin-top:22px;padding:18px}

.exception-branches {padding:0 18px}

.exception-branch header {padding:16px 17px}

.wireframe-grid {grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 14px;padding:24px 18px 28px}

.wireframe-phone {border-width:4px;border-radius:24px}

.app-frame {min-height:auto}

.app-content {padding:18px}

.time-filter {grid-template-columns:1fr}

.room-item {grid-template-columns:48px minmax(0,1fr)}

.room-thumb {width:48px}

.room-state {grid-column:2}

.final-flow {grid-template-columns:1fr}

.mini-card,
.requirement-card {padding:22px}

.persona-board {grid-template-columns:1fr}

.persona-model:last-child {grid-column:auto;max-width:none}

.persona-model-head {min-height:148px}

.persona-model-body {min-height:auto}

.persona-position {min-height:auto}
}

@media(max-width:420px) {
.wireframe-grid {grid-template-columns:1fr}
}

@media(max-width:760px) {
.scope-map-head {align-items:flex-start;flex-direction:column;padding:20px}

.scope-status {justify-content:flex-start}

.scope-lane {padding:20px}

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

.scope-steps li:not(:last-child)::after {display:none}

.scope-map figcaption {padding:14px 20px 17px}

.validation-card {padding:22px}

.objection-trigger {
    grid-template-columns:40px minmax(0,1fr);
    padding:18px;
  }

.objection-trigger-avatar {width:40px;height:40px}

.objection-factors {
    grid-column:1/-1;
    justify-content:flex-start;
    padding-top:2px;
  }

.objection-axis {height:52px}

.objection-axis::after {display:none}

.objection-options {grid-template-columns:1fr}

.objection-option {padding:22px 18px}

.objection-option:first-child {
    border-right:0;
    border-bottom:1px solid var(--line);
  }

.objection-option::before {display:none}

.objection-option>p {min-height:auto}

.scenario-matrix-scroll {
    overflow:visible;
    border-radius:0;
    background:transparent;
    box-shadow:none;
  }

.scenario-matrix,
.scenario-matrix tbody,
.scenario-matrix tr,
.scenario-matrix th,
.scenario-matrix td {
    display:block;
    width:100%;
  }

.scenario-matrix colgroup,
.scenario-matrix thead {display:none}

.scenario-matrix tbody {
    display:grid;
    gap:12px;
  }

.scenario-matrix tbody tr {
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 32px rgba(0,0,0,.05);
  }

.scenario-matrix tbody th {
    position:static;
    padding:14px 16px;
    border-right:0;
    background:#f3f3f6;
  }

.scenario-primary th {background:#eef7ff!important}

.scenario-matrix td {
    display:grid;
    grid-template-columns:minmax(112px,34%) minmax(0,1fr);
    align-items:center;
    gap:12px;
    min-height:58px;
    padding:11px 16px;
    border-right:0;
    font-size:12px;
  }

.scenario-matrix td::before {
    content:attr(data-role);
    color:var(--muted);
    font-size:10px;
    font-weight:700;
    line-height:1.4;
  }

.scenario-matrix td .scenario-empty,
.scenario-matrix td small {
    grid-column:2;
  }

.scenario-matrix td .scenario-empty {grid-row:1}

.scenario-matrix td small {
    grid-row:1;
    margin:0 0 0 18px;
  }
}

@media(max-width:980px) {
  .tech-context {grid-template-columns:1fr}
  .notification-grid {grid-template-columns:1fr}
  .notification-intro {white-space:normal}
  .decision-title,
  .decision-intro {
    white-space:normal;
    text-wrap:balance;
  }
}

@media(max-width:1120px) {
  .role-perspective-grid {grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:640px) {
  .role-perspective-grid {grid-template-columns:1fr}
}
