.business-page {
  background: var(--iris-warm);
}

.button--dark-outline {
  border-color: rgb(255 255 255 / 38%);
  background: transparent;
  color: var(--iris-white);
}

.button--dark-outline:hover {
  border-color: var(--iris-white);
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, .92fr);
  min-height: calc(100svh - 72px);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  padding: clamp(54px, 6vw, 82px) var(--page-pad) clamp(76px, 8vw, 112px);
  background: var(--iris-warm);
}

.business-hero-copy {
  max-width: 710px;
  justify-self: end;
}

.business-hero .hero-title {
  font-size: clamp(44px, 4.8vw, 64px);
}

.business-hero .hero-title span {
  color: var(--iris-olive-dark);
}

.business-hero .hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
}

.business-product-wrap {
  width: min(100%, 670px);
}

.business-product-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 11px;
  color: var(--iris-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-product {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  border: 1px solid #29415a;
  border-radius: var(--radius-lg);
  background: var(--iris-navy);
  color: var(--iris-white);
  box-shadow: 0 26px 70px rgb(12 33 57 / 17%);
}

.business-product-head {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 30px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.business-product-head p {
  margin: 0 0 4px;
  color: #91a0ad;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.business-product-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.025em;
}

.product-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #abb6c0;
  font-size: 11px;
}

.product-presence i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #85a746;
}

.attention-feed {
  padding: 0 30px 72px;
}

.attention-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 84px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.object-avatar,
.object-code {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #38516a;
  border-radius: 50%;
  background: #17314d;
  color: #d4dde4;
  font-size: 10px;
  font-weight: 600;
}

.object-code {
  border-radius: 8px;
}

.object-code--service {
  color: #cad591;
}

.object-code--warning {
  border-color: #6a5731;
  background: #473a23;
  color: #f0d89e;
}

.object-code--ready {
  border-color: #285f50;
  background: #173d35;
  color: #a8d5c2;
}

.object-code--money {
  border-color: #4a5764;
  background: #26394b;
}

.attention-row > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.attention-row strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attention-row div span,
.attention-row div small {
  color: #aeb9c3;
  font-size: 12px;
}

.attention-row .product-action {
  min-height: 44px;
  color: #c7d58b;
  font-size: 12px;
}

.business-product-event {
  animation: business-event-arrive .38s cubic-bezier(.22, .7, .2, 1) .65s both;
}

@keyframes business-event-arrive {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.business-product-context {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 68px;
  left: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 19px;
  border: 1px solid #8c9857;
  border-radius: var(--radius-md);
  background: #172d45;
  box-shadow: 0 12px 30px rgb(0 0 0 / 24%);
}

.business-product-context div {
  display: grid;
  gap: 4px;
}

.business-product-context div > span {
  color: #b8c77e;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.business-product-context p {
  margin: 2px 0 0;
  color: #abb6c0;
  font-size: 12px;
}

.business-product-context button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  background: transparent;
  color: var(--iris-white);
  font-size: 24px;
  cursor: pointer;
}

.business-product-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 58px;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 12%);
  background: #091b2e;
  color: #83919e;
  font-size: 10px;
  text-align: center;
}

.business-product-nav [aria-current="page"] {
  color: #c8d48f;
  font-weight: 600;
}

.activity-section {
  border-top: 1px solid var(--iris-line);
  background: var(--iris-white);
}

.activity-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.activity-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.activity-intro > p:last-child {
  margin: 0;
  color: var(--iris-muted);
  font-size: 17px;
  line-height: 1.7;
}

.segment-selector {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  border-block: 1px solid var(--iris-line);
}

.segment-selector button {
  position: relative;
  min-width: max-content;
  min-height: 58px;
  padding: 0 19px;
  border: 0;
  background: transparent;
  color: var(--iris-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.segment-selector button:first-child {
  padding-left: 2px;
}

.segment-selector button[aria-selected="true"] {
  color: var(--iris-navy);
}

.segment-selector button[aria-selected="true"]::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 3px;
  background: var(--iris-olive-dark);
  content: "";
}

.segment-selector button:first-child[aria-selected="true"]::after {
  left: 2px;
}

.activity-panel {
  display: grid;
  grid-template-columns: minmax(270px, .65fr) minmax(600px, 1.35fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding-top: 64px;
}

.activity-copy h3 {
  margin: 0;
  font-size: clamp(31px, 3.4vw, 46px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.activity-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--iris-muted);
  font-size: 16px;
  line-height: 1.7;
}

.activity-priorities {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--iris-line);
  list-style: none;
}

.activity-priorities li {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--iris-line);
  color: var(--iris-graphite);
  font-size: 13px;
}

.activity-priorities li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--iris-olive);
  content: "";
}

.activity-workspace {
  overflow: hidden;
  border-block: 1px solid #bfc6c2;
  background: transparent;
}

.activity-record-head {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--iris-line);
  background: transparent;
}

.activity-record-head div {
  min-width: 0;
}

.activity-record-head div > span,
.activity-record-head p,
.activity-record-head > strong {
  font-size: 11px;
}

.activity-record-head div > span {
  color: var(--iris-olive-dark);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.activity-record-head h4 {
  overflow: hidden;
  margin: 5px 0 2px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-record-head p {
  margin: 0;
  color: var(--iris-muted);
}

.activity-record-head > strong {
  padding: 7px 9px;
  border: 1px solid #cbd6a5;
  border-radius: 4px;
  background: #f2f5e9;
  color: var(--iris-olive-dark);
  white-space: nowrap;
}

.activity-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--iris-line);
}

.activity-fields div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--iris-line);
}

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

.activity-fields dt {
  overflow: hidden;
  margin-bottom: 6px;
  color: var(--iris-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.activity-fields dd {
  overflow: hidden;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-action {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--iris-line);
  background: #f2f4eb;
}

.next-action div {
  display: grid;
  gap: 3px;
}

.next-action span,
.next-action small {
  color: var(--iris-muted);
  font-size: 10px;
}

.next-action strong {
  font-size: 14px;
}

.next-action button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--iris-navy);
  border-radius: 6px;
  background: var(--iris-navy);
  color: var(--iris-white);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.next-action button[data-resolved="true"] {
  border-color: var(--iris-success);
  background: var(--iris-success);
}

.activity-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.activity-lower > section {
  min-width: 0;
  padding: 22px 26px 25px;
}

.activity-lower > section + section {
  border-left: 1px solid var(--iris-line);
}

.activity-lower h5 {
  margin: 0 0 17px;
  color: var(--iris-muted);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.workflow,
.recent-activity {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow {
  display: flex;
  overflow: hidden;
}

.workflow li {
  position: relative;
  min-width: 64px;
  flex: 1;
  padding-top: 20px;
  color: var(--iris-muted);
  font-size: 9px;
  text-align: center;
}

.workflow li::before {
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid #aeb6b1;
  border-radius: 50%;
  background: #fafbf8;
  content: "";
  transform: translateX(-50%);
}

.workflow li::after {
  position: absolute;
  top: 7px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: #cbd0cd;
  content: "";
}

.workflow li:first-child::after {
  display: none;
}

.workflow li[data-state="done"]::before,
.workflow li[data-state="current"]::before {
  border-color: var(--iris-olive-dark);
  background: var(--iris-olive-dark);
}

.workflow li[data-state="current"] {
  color: var(--iris-navy);
  font-weight: 600;
}

.recent-activity {
  display: grid;
}

.recent-activity li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--iris-line);
}

.recent-activity li:last-child {
  border-bottom: 0;
}

.recent-activity strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-activity time,
.recent-activity span {
  color: var(--iris-muted);
  font-size: 9px;
}

.recent-activity span {
  grid-column: 1 / -1;
}

.mechanism-section {
  background: #eef0e9;
}

.mechanism-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: 62px;
}

.mechanism-heading > p {
  margin: 0;
  color: var(--iris-muted);
  font-size: 17px;
  line-height: 1.7;
}

.context-ledger {
  display: grid;
  grid-template-columns: 170px 190px minmax(0, 1fr);
  min-height: 430px;
  border-block: 1px solid #bcc3be;
}

.incoming-context {
  display: grid;
  align-content: center;
  gap: 0;
  border-right: 1px solid #bcc3be;
}

.incoming-context span {
  display: flex;
  min-height: 51px;
  align-items: center;
  border-bottom: 1px solid #cfd4d1;
  color: var(--iris-muted);
  font-size: 12px;
}

.incoming-context span:last-child {
  border-bottom: 0;
}

.context-spine {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  border-right: 1px solid #bcc3be;
}

.context-spine strong {
  letter-spacing: .2em;
}

.context-spine small {
  color: var(--iris-muted);
  font-size: 10px;
}

.related-records {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-records li {
  display: grid;
  grid-template-columns: 90px minmax(0, .8fr) minmax(180px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 86px;
  padding: 0 28px;
  border-bottom: 1px solid #cfd4d1;
}

.related-records li:last-child {
  border-bottom: 0;
}

.related-records small {
  color: var(--iris-olive-dark);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.related-records strong {
  font-size: 14px;
}

.related-records span {
  color: var(--iris-muted);
  font-size: 12px;
}

.situations-section {
  background: var(--iris-navy);
  color: var(--iris-white);
}

.situations-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(540px, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.situations-section .eyebrow {
  color: #c1ce8d;
}

.situations-section .section-title {
  color: var(--iris-white);
}

.situations-copy > p:last-child {
  margin: 25px 0 0;
  color: #aeb9c3;
  font-size: 16px;
  line-height: 1.7;
}

.situation-list {
  border-block: 1px solid rgb(255 255 255 / 17%);
}

.situation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .6fr);
  min-height: 104px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}

.situation-row:last-child {
  border-bottom: 0;
}

.situation-row div {
  display: grid;
  gap: 3px;
}

.situation-row strong {
  font-size: 14px;
}

.situation-row small,
.situation-action {
  color: #aeb9c3;
  font-size: 11px;
}

.situation-action {
  text-align: right;
}

.ecosystem-section {
  background: var(--iris-white);
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(570px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.ecosystem-copy > p:last-child {
  margin: 25px 0 0;
  color: var(--iris-muted);
  font-size: 16px;
  line-height: 1.75;
}

.ecosystem-ledger {
  border-block: 1px solid var(--iris-navy);
}

.ecosystem-ledger header {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 4px;
  border-bottom: 1px solid var(--iris-line);
}

.ecosystem-ledger header div {
  display: grid;
  gap: 3px;
}

.ecosystem-ledger header small {
  color: var(--iris-olive-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ecosystem-ledger header strong {
  font-size: 25px;
}

.ecosystem-ledger header span:not(.focus-mark) {
  color: var(--iris-muted);
  font-size: 11px;
}

.ecosystem-ledger ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecosystem-ledger li {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 4px;
  padding: 20px 22px;
  border-right: 1px solid var(--iris-line);
  border-bottom: 1px solid var(--iris-line);
}

.ecosystem-ledger li:nth-child(2n) {
  border-right: 0;
}

.ecosystem-ledger li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ecosystem-ledger li span {
  color: var(--iris-olive-dark);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.ecosystem-ledger li strong {
  font-size: 13px;
}

.ecosystem-ledger li small {
  color: var(--iris-muted);
  font-size: 10px;
}

.trust-section {
  border-top: 1px solid var(--iris-line);
  background: #f0f1eb;
}

.trust-layout {
  display: grid;
  grid-template-columns: 54px minmax(0, .8fr) minmax(360px, .7fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.trust-layout > .focus-mark {
  width: 50px;
  height: 50px;
}

.trust-layout ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #c8ceca;
  list-style: none;
}

.trust-layout li {
  padding: 13px 0;
  border-bottom: 1px solid #c8ceca;
  color: var(--iris-muted);
  font-size: 13px;
}

.business-final {
  display: grid;
  min-height: 600px;
  place-items: center;
  align-content: center;
  gap: 26px;
  padding: 90px var(--page-pad);
  background: var(--iris-navy);
  color: var(--iris-white);
  text-align: center;
}

.business-final .eyebrow {
  color: #bdc895;
}

.business-final h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.business-final > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #aeb9c3;
  font-size: 17px;
}

.final-actions {
  display: flex;
  gap: 12px;
}

.choice-list--activities {
  max-height: min(430px, 45dvh);
  overflow-y: auto;
}

@media (max-width: 1120px) {
  .business-hero {
    grid-template-columns: minmax(0, .82fr) minmax(460px, .94fr);
    gap: 44px;
  }

  .activity-panel {
    grid-template-columns: minmax(240px, .58fr) minmax(560px, 1.42fr);
    gap: 46px;
  }

  .activity-lower {
    grid-template-columns: 1fr;
  }

  .activity-lower > section + section {
    border-top: 1px solid var(--iris-line);
    border-left: 0;
  }
}

@media (max-width: 940px) {
  .business-hero,
  .activity-panel,
  .situations-layout,
  .ecosystem-layout {
    grid-template-columns: 1fr;
  }

  .business-hero-copy {
    max-width: 760px;
    justify-self: start;
  }

  .business-product-wrap {
    margin: 0 auto;
  }

  .activity-panel {
    align-items: start;
  }

  .activity-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  .activity-copy .eyebrow,
  .activity-copy h3,
  .activity-copy > p:not(.eyebrow) {
    grid-column: 1;
  }

  .activity-priorities {
    grid-column: 2;
    grid-row: 1 / 4;
    margin: 0;
  }

  .activity-copy .button {
    grid-column: 1;
    width: max-content;
    margin-top: 25px;
  }

  .mechanism-heading,
  .activity-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .activity-intro .eyebrow {
    grid-column: 1;
    margin-bottom: -28px;
  }

  .context-ledger {
    grid-template-columns: 150px 160px minmax(0, 1fr);
  }

  .related-records li {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .related-records li span {
    grid-column: 2;
  }

  .trust-layout {
    grid-template-columns: 50px 1fr;
  }

  .trust-layout ul {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .business-hero {
    min-height: auto;
    gap: 58px;
    padding-block: 54px 76px;
  }

  .business-hero .hero-title {
    font-size: clamp(40px, 11.6vw, 58px);
  }

  .business-product {
    min-height: 660px;
    border-radius: var(--radius-md);
  }

  .business-product-head {
    min-height: 96px;
    padding: 20px;
  }

  .business-product-head h2 {
    font-size: 20px;
  }

  .product-presence {
    display: none;
  }

  .attention-feed {
    padding: 0 20px 64px;
  }

  .attention-row {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 100px;
    gap: 11px;
  }

  .attention-row .product-action {
    grid-column: 2;
    justify-self: start;
    min-height: 34px;
    margin-top: -8px;
  }

  .segment-selector {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: calc(var(--page-pad) * -1);
    padding-inline: var(--page-pad);
    scroll-padding-inline: var(--page-pad);
    scrollbar-color: var(--iris-olive) transparent;
    scrollbar-width: thin;
  }

  .segment-selector button:first-child {
    padding-left: 12px;
  }

  .segment-selector button:first-child[aria-selected="true"]::after {
    left: 12px;
  }

  .activity-panel {
    gap: 46px;
    padding-top: 48px;
  }

  .activity-copy {
    display: block;
  }

  .activity-priorities {
    margin: 28px 0;
  }

  .activity-copy .button {
    width: 100%;
    margin-top: 0;
  }

  .activity-record-head,
  .next-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-record-head h4 {
    white-space: normal;
  }

  .activity-fields {
    grid-template-columns: 1fr 1fr;
  }

  .activity-fields div:nth-child(2) {
    border-right: 0;
  }

  .activity-fields div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--iris-line);
  }

  .next-action button {
    width: 100%;
  }

  .activity-lower {
    grid-template-columns: 1fr;
  }

  .workflow {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .context-ledger {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .incoming-context {
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #bcc3be;
    border-right: 0;
    border-bottom: 1px solid #bcc3be;
  }

  .incoming-context span {
    justify-content: center;
    border-right: 1px solid #cfd4d1;
    border-bottom: 1px solid #cfd4d1;
    font-size: 10px;
  }

  .incoming-context span:nth-child(3n) {
    border-right: 0;
  }

  .context-spine {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid #bcc3be;
  }

  .related-records li {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 98px;
    padding-inline: 4px;
  }

  .situation-row {
    grid-template-columns: 1fr;
    min-height: 116px;
  }

  .situation-action {
    text-align: left;
  }

  .ecosystem-ledger ol {
    grid-template-columns: 1fr;
  }

  .ecosystem-ledger li,
  .ecosystem-ledger li:nth-child(2n),
  .ecosystem-ledger li:nth-last-child(-n + 2) {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--iris-line);
  }

  .ecosystem-ledger li:last-child {
    border-bottom: 0;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-layout ul {
    grid-column: 1;
  }

  .business-final {
    min-height: 540px;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .choice-list--activities {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-product-event {
    animation: none;
  }
}
