:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-2: #f8faf9;
  --ink: #17211c;
  --muted: #66716b;
  --line: #dde3de;
  --brand: #185c53;
  --brand-2: #28786c;
  --accent: #bf6f34;
  --gold: #d6a738;
  --danger: #ba3d32;
  --warn: #b7791f;
  --ok: #247a54;
  --shadow: 0 18px 50px rgba(23, 33, 28, 0.08);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px;
  background: #10241f;
  color: #f5f3ee;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #d7eee5;
  color: #0f3d36;
  font-weight: 800;
}

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

.brand span {
  margin-top: 2px;
  color: #abc5bd;
  font-size: 13px;
}

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

.language-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(216, 229, 223, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #abc5bd;
  font-size: 12px;
  font-weight: 900;
}

.lang-button:hover,
.lang-button.active {
  border-color: rgba(216, 229, 223, 0.18);
  background: #d7eee5;
  color: #0f3d36;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #d8e5df;
  text-align: left;
}

.nav-item:hover,
.nav-item.active {
  border-color: rgba(216, 229, 223, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.nav-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
  color: #b9d5cc;
  font-size: 11px;
  font-weight: 700;
}

.demo-script {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(216, 229, 223, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.demo-script p {
  margin: 8px 0 14px;
  color: #d1e0da;
  font-size: 14px;
  line-height: 1.45;
}

.main {
  min-width: 0;
  padding: 18px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid rgba(221, 227, 222, 0.8);
  border-radius: 8px;
  background: rgba(245, 243, 238, 0.86);
  backdrop-filter: blur(18px);
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
  color: var(--muted);
}

.search span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.search input {
  width: min(40vw, 420px);
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

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

.status-pills > span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.status-pills > span b {
  color: var(--ink);
}

.hero-strip {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr) minmax(170px, 220px);
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-visual {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #dbe9e8 0%, #eef3ef 55%, #d7c2a2 56%, #b8895a 100%);
}

.sun {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e4b846;
}

.mountain {
  position: absolute;
  bottom: 52px;
  width: 150px;
  height: 96px;
  transform: rotate(45deg);
  border-radius: 8px;
  background: #7b8f83;
}

.mountain.one {
  left: -34px;
}

.mountain.two {
  right: -30px;
  width: 118px;
  height: 84px;
  background: #94a79a;
}

.home-shape {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 92px;
  height: 72px;
}

.roof {
  position: absolute;
  top: 0;
  left: 9px;
  width: 72px;
  height: 72px;
  transform: rotate(45deg);
  border-radius: 6px;
  background: #6b3f2b;
}

.house-body {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  width: 92px;
  height: 48px;
  padding: 10px;
  border-radius: 6px;
  background: #f6eee2;
}

.house-body span {
  display: block;
  width: 16px;
  height: 18px;
  border-radius: 3px;
  background: #185c53;
}

.hero-strip h1,
.view-head h2 {
  margin: 5px 0 9px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-strip p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 8px;
  background: #f4eee3;
}

.hero-metric span,
.hero-metric small {
  color: #695a45;
}

.hero-metric strong {
  margin: 6px 0;
  font-size: 34px;
}

.view {
  display: none;
  padding: 22px 0 44px;
}

.view.active {
  display: block;
}

.view-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.view-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.eyebrow {
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.segment {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.primary-button {
  background: var(--brand);
  color: #ffffff;
}

.primary-button:hover {
  background: #0f493f;
}

.secondary-button,
.segment {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.secondary-button:hover,
.segment:hover,
.segment.active {
  border-color: #b6c8c0;
  background: #ebf4f1;
}

.wide {
  width: 100%;
}

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

.metric-card,
.panel,
.impact-banner,
.executive-close {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.04);
}

.metric-card {
  padding: 16px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 34px;
  line-height: 1;
}

.split-layout,
.readiness-layout,
.procurement-layout,
.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 14px;
}

.panel {
  padding: 16px;
}

.panel-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.panel-head h3,
.impact-banner h3,
.executive-close h3,
.readiness-score h3,
.package-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.panel-head span:not(.ai-badge) {
  color: var(--muted);
  font-size: 13px;
}

.ai-badge,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #e8f2ee;
  color: #1b6358;
  font-size: 12px;
  font-weight: 800;
}

.project-table,
.supplier-table {
  display: grid;
  gap: 8px;
}

.table-row,
.supplier-row {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  text-align: left;
}

.table-row {
  grid-template-columns: minmax(160px, 1.3fr) 80px 80px minmax(160px, 1fr);
}

.supplier-row {
  grid-template-columns: minmax(150px, 1.25fr) 96px 98px 96px 96px;
}

.table-head,
.supplier-head {
  min-height: 36px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.table-row.selected,
.supplier-row.selected,
.package-card.recommended {
  border-color: rgba(24, 92, 83, 0.35);
  background: #eef7f4;
}

.risk {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  min-width: 58px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.risk.high {
  background: #f8e3df;
  color: var(--danger);
}

.risk.medium {
  background: #f7edd7;
  color: var(--warn);
}

.risk.low {
  background: #e4f2eb;
  color: var(--ok);
}

.risk-stack,
.decision-list,
.constraint-list {
  display: grid;
  gap: 10px;
}

.risk-line,
.decision-item,
.constraint {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.risk-line span,
.decision-item p,
.constraint p {
  display: block;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.risk-line strong {
  color: var(--danger);
  font-size: 22px;
}

.readiness-score {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.score-ring {
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 57%, transparent 58%),
    conic-gradient(var(--brand) calc(var(--score) * 1%), #e2e8e4 0);
}

.score-ring strong,
.score-ring span {
  grid-area: 1 / 1;
}

.score-ring strong {
  transform: translateY(-9px);
  font-size: 38px;
}

.score-ring span {
  transform: translateY(25px);
  color: var(--muted);
  font-weight: 800;
}

.readiness-score p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.decision-item {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.decision-item.critical {
  border-color: rgba(186, 61, 50, 0.25);
}

.decision-item.warning {
  border-color: rgba(183, 121, 31, 0.25);
}

.decision-item.resolved {
  border-color: rgba(36, 122, 84, 0.25);
  background: #f0f8f3;
}

.checkbox {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #aebcb5;
  border-radius: 6px;
  background: #ffffff;
}

.resolved .checkbox {
  border-color: var(--ok);
  background: var(--ok);
}

.resolved .checkbox::after {
  content: "";
  width: 9px;
  height: 5px;
  transform: rotate(-45deg);
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

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

.check-grid div {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
}

.dot {
  display: inline-flex;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}

.dot.ok {
  background: var(--ok);
}

.dot.warn {
  background: var(--warn);
}

.dot.bad {
  background: var(--danger);
}

.selection-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.package-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.package-card dl {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.package-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.package-card dt {
  color: var(--muted);
}

.package-card dd {
  margin: 0;
  font-weight: 800;
}

.package-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
}

.material-swatch {
  height: 118px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.material-swatch.budget {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28) 0 12%, transparent 12% 24%, rgba(255,255,255,0.2) 24% 36%, transparent 36% 48%, rgba(255,255,255,0.2) 48% 60%, transparent 60% 72%, rgba(255,255,255,0.22) 72% 84%, transparent 84%),
    linear-gradient(135deg, #7c5e43, #c9ab82);
}

.material-swatch.speed {
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255,255,255,0.5) 46% 54%, transparent 54%),
    linear-gradient(180deg, #f2eee6 0 48%, #c2a681 48% 54%, #185c53 54% 100%);
}

.material-swatch.premium {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.34) 0 18px, transparent 18px 36px),
    linear-gradient(135deg, #2a342f, #a67a52 45%, #e6d9c3);
}

.package-card.reviewing {
  border-color: rgba(191, 111, 52, 0.45);
  background: #fdf6ef;
}

.head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.automation-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 33, 28, 0.04);
}

.automation-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.automation-head b {
  font-size: 16px;
}

.pill-on {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e4f2eb;
  color: var(--ok);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill-on::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.automation-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.flow-node {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.flow-arrow {
  color: var(--muted);
  font-weight: 800;
}

.automation-card small {
  color: var(--muted);
}

.activity-feed {
  display: grid;
  gap: 10px;
}

.activity-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.activity-item small {
  color: var(--muted);
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 36, 31, 0.55);
  backdrop-filter: blur(3px);
}

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

.modal {
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 20px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-head h3 {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.modal-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
}

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.modal label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.modal input,
.modal select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}

.gen-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.gen-step {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.gen-step.done {
  opacity: 1;
  color: var(--ink);
}

.gen-step .dot {
  background: #c6d2cc;
}

.gen-step.done .dot {
  background: var(--ok);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #d7eee5;
  color: #0f3d36;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.cta-button:hover {
  background: #ffffff;
}

.impact-banner,
.executive-close {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 16px;
  background: #10241f;
  color: #ffffff;
}

.impact-banner .eyebrow,
.executive-close .eyebrow {
  color: #9ad5c5;
}

.impact-banner p,
.executive-close p {
  max-width: 520px;
  margin: 0;
  color: #cbdcd6;
  line-height: 1.45;
}

.po-card {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.po-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px;
  border-radius: 8px;
  background: var(--surface-2);
}

.po-card span {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 12px 12px 12px 18px;
  border-left: 4px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.timeline-item.done {
  border-left-color: var(--ok);
}

.timeline-item.active {
  border-left-color: var(--gold);
  background: #fff8e8;
}

.timeline-item span,
.timeline-item small {
  color: var(--muted);
}

.constraint {
  grid-template-columns: auto minmax(0, 1fr);
}

.constraint.resolved {
  background: #eef8f3;
}

.close-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  min-width: min(100%, 500px);
}

.close-stats span {
  display: grid;
  gap: 3px;
  min-height: 72px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbdcd6;
}

.close-stats b {
  color: #ffffff;
  font-size: 28px;
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .hero-strip,
  .split-layout,
  .readiness-layout,
  .procurement-layout,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

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

  .project-visual {
    min-height: 190px;
  }
}

@media (max-width: 820px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: relative;
    height: auto;
    padding: 14px;
  }

  .nav-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .language-switcher {
    grid-template-columns: repeat(2, minmax(0, 64px));
    width: fit-content;
  }

  .nav-item {
    justify-content: center;
    min-width: 0;
    padding: 9px 6px;
  }

  .nav-item span:last-child {
    display: none;
  }

  .demo-script {
    display: none;
  }

  .main {
    padding: 12px;
  }

  .topbar,
  .view-head,
  .impact-banner,
  .executive-close {
    align-items: stretch;
    flex-direction: column;
  }

  .status-pills {
    justify-content: flex-start;
  }

  .search {
    min-width: 0;
  }

  .search input {
    width: 100%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-strip h1,
  .view-head h2 {
    font-size: 30px;
  }

  .metrics-grid,
  .package-grid,
  .check-grid,
  .close-stats,
  .automation-grid,
  .intake-grid {
    grid-template-columns: 1fr;
  }

  .table-row,
  .supplier-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-head,
  .supplier-head {
    display: none;
  }

  .readiness-score {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .status-pills span,
  .primary-button,
  .secondary-button,
  .segment {
    width: 100%;
  }

  .project-visual {
    min-height: 150px;
  }

  .score-ring {
    width: 140px;
    height: 140px;
  }

  .decision-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .decision-item strong {
    grid-column: 2;
  }
}
