:root {
  --ink: #0d1826;
  --muted: #536276;
  --line: #d8dee8;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --navy: #13233a;
  --teal: #117f7a;
  --green: #2e7d4f;
  --amber: #c6811c;
  --rose: #b23a48;
  --blue: #2c6fb7;
  --shadow: 0 18px 48px rgba(18, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
  background: rgba(19, 35, 58, 0.08);
  border-radius: 5px;
  padding: 0.08rem 0.28rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(19, 35, 58, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  padding: 0.45rem 0.15rem;
}

.mode-toggle,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mode-toggle {
  padding: 0.58rem 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
}

.section-band {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 4vw, 3.5rem);
  overflow-x: clip;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #142236;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 20, 34, 0.92), rgba(11, 20, 34, 0.66) 44%, rgba(11, 20, 34, 0.2));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: clamp(7rem, 14vh, 11rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee2dc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8.3vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  margin: 1.2rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.signal-strip {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: 1.25rem;
  left: clamp(1rem, 4vw, 3.5rem);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.signal-strip div {
  min-height: 82px;
  padding: 1rem;
  background: rgba(8, 18, 32, 0.42);
}

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

.signal-strip span {
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 2.2rem;
}

.section-head p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-head.compact {
  margin-bottom: 1.4rem;
}

.muted {
  background: #edf2f7;
}

.flow {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 34px 1.18fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: stretch;
}

.flow-node {
  min-height: 210px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(18, 32, 51, 0.07);
}

.flow-node span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}

.flow-node strong {
  display: block;
  font-size: 1.05rem;
}

.flow-node p {
  color: var(--muted);
  line-height: 1.5;
}

.flow-node.supervisor {
  border-top: 5px solid var(--teal);
}

.flow-node.contracts {
  border-top: 5px solid var(--amber);
}

.flow-node.agents {
  border-top: 5px solid var(--blue);
}

.flow-node.execution {
  border-top: 5px solid var(--green);
}

.flow-link {
  align-self: center;
  height: 2px;
  background: var(--line);
}

.flow-link::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: -3.5px 0 0 auto;
  border-top: 2px solid var(--line);
  border-right: 2px solid var(--line);
  transform: rotate(45deg);
}

.architecture-grid,
.split,
.metrics {
  width: min(1180px, 100%);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel,
.department,
.metrics > div,
.step,
.takeaway {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel {
  padding: 1.25rem;
}

.panel p,
.panel li,
.department p,
.step p,
.metrics p {
  color: var(--muted);
  line-height: 1.55;
}

.panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.panel.warning {
  border-color: rgba(178, 58, 72, 0.34);
}

.org-chart {
  width: min(1180px, 100%);
  margin: 2.5rem auto 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.org-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.org-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(18, 32, 51, 0.08);
}

.org-card {
  padding: 1rem;
}

.org-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.org-card strong {
  display: block;
  font-size: 1.1rem;
}

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

.org-card.command,
.org-card.supervisor-card {
  width: min(520px, 100%);
  text-align: center;
}

.org-card.supervisor-card {
  border-color: rgba(17, 127, 122, 0.45);
  background: #f4fbfa;
}

.org-line.vertical {
  width: 2px;
  height: 26px;
  margin: 0 auto;
  background: var(--line);
}

.org-line.split-line {
  position: relative;
  width: min(820px, 78%);
  height: 34px;
  margin: 0 auto;
  border-top: 2px solid var(--line);
}

.org-line.split-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 2px;
  height: 34px;
  background: var(--line);
}

.agents-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.org-card.mini {
  min-height: 132px;
}

.systems-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.org-card.system {
  min-height: 150px;
  background: #fbfcfe;
}

.departments {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.department {
  min-height: 290px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.department .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  color: white;
  font-weight: 800;
}

.front .icon {
  background: var(--teal);
}

.commerce .icon {
  background: var(--green);
}

.fulfillment .icon {
  background: var(--amber);
}

.marketing .icon {
  background: var(--rose);
}

.supervision .icon {
  background: var(--navy);
}

.timeline {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
}

.step {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
}

.step span {
  font-weight: 850;
  color: var(--teal);
}

.step p {
  margin: 0;
}

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

.autonomy {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.autonomy div {
  min-height: 145px;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.autonomy div:last-child {
  border-right: 0;
}

.autonomy strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: 1.55rem;
}

.autonomy span {
  color: var(--muted);
  line-height: 1.45;
}

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

.metrics > div {
  padding: 1.1rem;
}

.metric {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  font-size: 1.45rem;
}

#kpi {
  background: linear-gradient(135deg, #f7fbff 0%, #effaf7 48%, #fff8ea 100%);
}

#kpi .section-head h2 {
  color: #102844;
}

.kpi-scoreboard {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.kpi-card,
.time-shift article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.kpi-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 1rem;
  border-top: 5px solid var(--teal);
  background: #f1fbfa;
  box-shadow: 0 14px 32px rgba(18, 32, 51, 0.09);
}

.kpi-card:nth-child(2) {
  border-top-color: var(--green);
  background: #f1fbf4;
}

.kpi-card:nth-child(3) {
  border-top-color: var(--blue);
  background: #f1f7ff;
}

.kpi-card:nth-child(4) {
  border-top-color: var(--amber);
  background: #fff7e8;
}

.kpi-card:nth-child(5) {
  border-top-color: var(--rose);
  background: #fff1f4;
}

.kpi-card.metric-card {
  grid-column: span 3;
}

.kpi-card span,
.time-shift span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.kpi-card strong,
.time-shift strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.25;
}

.kpi-card .kpi-number {
  margin: 0.15rem 0 0.5rem;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 0.95;
}

.kpi-card:nth-child(1) .kpi-number {
  color: var(--teal);
}

.kpi-card:nth-child(2) .kpi-number {
  color: var(--green);
}

.kpi-card:nth-child(3) .kpi-number {
  color: var(--blue);
}

.kpi-card:nth-child(4) .kpi-number {
  color: var(--amber);
}

.kpi-card:nth-child(5) .kpi-number {
  color: var(--rose);
}

.vs-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.vs-side {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.7rem;
  border-radius: 8px;
  text-align: center;
}

.vs-side small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.vs-side strong {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.95;
}

.vs-side.agent {
  border: 1px solid rgba(17, 127, 122, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.vs-side.agent strong {
  color: var(--teal);
}

.vs-side.team {
  border: 1px solid rgba(19, 35, 58, 0.16);
  background: rgba(19, 35, 58, 0.06);
}

.vs-side.team strong {
  color: var(--navy);
}

.vs-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(18, 32, 51, 0.18);
}

.kpi-card:nth-child(2) .vs-side.agent strong,
.kpi-card:nth-child(2) .vs-badge {
  color: var(--green);
}

.kpi-card:nth-child(3) .vs-side.agent strong,
.kpi-card:nth-child(3) .vs-badge {
  color: var(--blue);
}

.kpi-card:nth-child(4) .vs-side.agent strong,
.kpi-card:nth-child(4) .vs-badge {
  color: var(--amber);
}

.kpi-card:nth-child(5) .vs-side.agent strong,
.kpi-card:nth-child(5) .vs-badge {
  color: var(--rose);
}

.kpi-card:nth-child(n + 2) .vs-badge {
  border: 1px solid currentColor;
  background: white;
}

.vs-note {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.vs-note.positive {
  background: rgba(17, 127, 122, 0.1);
  color: #0b5f5b;
}

.metric-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.metric-primary,
.metric-secondary {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 0.95rem;
  border-radius: 8px;
}

.metric-primary {
  border: 1px solid rgba(198, 129, 28, 0.34);
  background: rgba(255, 255, 255, 0.82);
}

.kpi-card:nth-child(5) .metric-primary {
  border-color: rgba(178, 58, 72, 0.34);
}

.metric-secondary {
  border: 1px dashed rgba(19, 35, 58, 0.22);
  background: rgba(19, 35, 58, 0.06);
}

.metric-primary small,
.metric-secondary small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

.metric-primary strong,
.metric-secondary strong {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.metric-primary strong {
  color: var(--amber);
}

.kpi-card:nth-child(5) .metric-primary strong {
  color: var(--rose);
}

.metric-secondary strong {
  color: var(--navy);
}

.metric-primary em,
.metric-secondary em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 720;
  line-height: 1.25;
}

.kpi-card p,
.time-shift p {
  color: var(--muted);
  line-height: 1.5;
}

.kpi-card .vs-note {
  color: var(--ink);
  line-height: 1.35;
}

.kpi-card .vs-note.positive {
  color: #0b5f5b;
}

.kpi-card p strong,
.time-shift p strong {
  color: var(--ink);
}

.source-note {
  width: min(1180px, 100%);
  margin: 1rem auto 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 127, 122, 0.28);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  background: linear-gradient(90deg, #eaf9f7, #fffdf6);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.source-note strong {
  color: var(--ink);
}

.kpi-table-wrap {
  width: min(1180px, 100%);
  max-width: 100%;
  margin: 1.3rem auto 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(18, 32, 51, 0.08);
}

.kpi-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.98rem;
}

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

.kpi-table th {
  background: #13233a;
  color: white;
  font-weight: 850;
}

.kpi-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.kpi-table td:nth-child(2) strong {
  color: var(--teal);
}

.kpi-table td:nth-child(3) strong {
  color: var(--green);
}

.kpi-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.kpi-table tr:last-child td {
  border-bottom: 0;
}

.time-shift {
  width: min(1180px, 100%);
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.time-shift article {
  min-height: 190px;
  padding: 1.1rem;
  border-top: 5px solid var(--teal);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(18, 32, 51, 0.08);
}

.time-shift strong {
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.time-shift article:nth-child(2) {
  border-top-color: var(--green);
}

.time-shift article:nth-child(2) strong {
  color: var(--green);
}

.time-shift article:nth-child(3) {
  border-top-color: var(--amber);
}

.time-shift article:nth-child(3) strong {
  color: var(--amber);
}

.time-shift article:nth-child(4) {
  border-top-color: var(--rose);
}

.time-shift article:nth-child(4) strong {
  color: var(--rose);
}

.closing {
  color: white;
  background: var(--navy);
}

.closing .eyebrow {
  color: #8ee2dc;
}

.closing .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.closing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.takeaway {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-align: center;
  font-weight: 820;
}

body.presenter .topbar {
  transform: translateY(-100%);
}

body.presenter .section-band {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

body.presenter .hero {
  min-height: 100vh;
}

@media (max-width: 1120px) {
  .nav a {
    display: none;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .flow-link {
    width: 2px;
    height: 22px;
    justify-self: center;
  }

  .flow-link::after {
    margin: 14px 0 0 -3.5px;
    transform: rotate(135deg);
  }

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

  .department {
    min-height: 240px;
  }

  .autonomy,
  .metrics,
  .architecture-grid,
  .kpi-scoreboard,
  .time-shift,
  .closing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpi-card,
  .kpi-card.metric-card {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .brand {
    white-space: normal;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .mode-toggle {
    width: 100%;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.94), rgba(11, 20, 34, 0.72));
  }

  .hero-content {
    padding-bottom: 19rem;
  }

  h1 {
    font-size: clamp(2.85rem, 14.5vw, 3.65rem);
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 68px;
  }

  .departments,
  .autonomy,
  .metrics,
  .architecture-grid,
  .split,
  .kpi-scoreboard,
  .time-shift,
  .closing-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .org-chart {
    padding: 0.8rem;
  }

  .agents-row,
  .systems-row {
    grid-template-columns: 1fr;
  }

  .org-line.split-line {
    width: 2px;
    height: 24px;
    border-top: 0;
    background: var(--line);
  }

  .org-line.split-line::before {
    display: none;
  }

  .vs-row,
  .metric-focus {
    grid-template-columns: 1fr;
  }

  .vs-badge {
    justify-self: center;
  }

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

  .step {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
