.os-landing {
  --os-green: #16835d;
  --os-green-dark: #0d6244;
  --os-green-deep: #063c2a;
  --os-green-soft: #e9f6ef;
  --os-ink: #17231d;
  --os-muted: #718078;
  --os-line: #e6ece8;
  --os-surface: #ffffff;
  --os-background: #f6f8f7;
  --os-danger: #d94444;
  --os-radius-sm: 10px;
  --os-radius: 18px;
  --os-radius-lg: 26px;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--os-ink);
  background: var(--os-surface);
  font-family: "Sora", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.os-landing *,
.os-landing *::before,
.os-landing *::after {
  box-sizing: border-box;
}

.os-landing a {
  color: inherit;
}

.os-landing-content {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 5vw, 7rem);
}

.os-skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff !important;
  background: var(--os-green-dark);
  border-radius: var(--os-radius-sm);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.os-skip-link:focus {
  transform: translateY(0);
}

.os-public-header {
  position: sticky;
  z-index: 1030;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.os-public-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--os-line);
  box-shadow: 0 8px 28px rgba(18, 55, 38, 0.07);
  backdrop-filter: blur(14px);
}

.os-public-header__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  width: 100%;
  min-height: 82px;
  padding-inline: clamp(1rem, 5vw, 7rem);
}

.os-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--os-ink) !important;
  text-decoration: none;
}

.os-brand__mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--os-green);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(22, 131, 93, 0.22);
}

.os-brand__mark i {
  font-size: 1.15rem;
}

.os-brand__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.os-brand__name > span {
  color: var(--os-green);
}

.os-public-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.8vw, 3rem);
}

.os-public-nav a {
  position: relative;
  padding-block: 0.45rem;
  color: #34453c;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.os-public-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--os-green);
  border-radius: 999px;
  transition: right 160ms ease, left 160ms ease;
}

.os-public-nav a:hover::after,
.os-public-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.os-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 80ms ease;
}

.os-button:hover {
  transform: translateY(-1px);
}

.os-button:active {
  transform: translateY(1px);
}

.os-button--primary {
  color: #fff !important;
  background: var(--os-green);
  border-color: var(--os-green);
  box-shadow: 0 8px 20px rgba(22, 131, 93, 0.18);
}

.os-button--primary:hover,
.os-button--primary:focus-visible {
  background: var(--os-green-dark);
  border-color: var(--os-green-dark);
}

.os-button--outline {
  color: var(--os-green-dark) !important;
  background: #fff;
  border-color: var(--os-green);
}

.os-button--outline:hover,
.os-button--outline:focus-visible {
  color: #fff !important;
  background: var(--os-green);
}

.os-button--light {
  color: var(--os-green-deep) !important;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.os-button--light:hover,
.os-button--light:focus-visible {
  background: var(--os-green-soft);
  border-color: var(--os-green-soft);
}

.os-button:focus-visible,
.os-public-nav a:focus-visible,
.os-brand:focus-visible,
.os-menu-toggle:focus-visible,
.os-mobile-menu__close:focus-visible,
.os-mobile-menu__nav a:focus-visible,
.os-footer__access:focus-visible {
  outline: 3px solid rgba(22, 131, 93, 0.32);
  outline-offset: 3px;
}

.os-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--os-ink);
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 12px;
  font-size: 1.45rem;
}

.os-mobile-menu {
  width: min(88vw, 390px) !important;
  color: #fff;
  background: var(--os-green-deep);
  border: 0 !important;
}

.os-mobile-menu .offcanvas-header {
  min-height: 76px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.os-mobile-menu .os-brand {
  color: #fff !important;
}

.os-mobile-menu .os-brand__mark {
  background: var(--os-green);
}

.os-mobile-menu__close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.os-mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.2rem;
}

.os-mobile-menu__nav {
  display: grid;
}

.os-mobile-menu__nav a {
  min-height: 54px;
  padding: 0.85rem 0.4rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 1.05rem;
  font-weight: 650;
  text-decoration: none;
}

.os-hero {
  scroll-margin-top: 82px;
  width: 100%;
  background:
    linear-gradient(110deg, rgba(233, 246, 239, 0.88), rgba(255, 255, 255, 0.36) 48%, rgba(246, 248, 247, 0.94)),
    #fff;
  border-bottom: 1px solid var(--os-line);
}

.os-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  min-height: calc(100vh - 82px);
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.os-hero__copy {
  position: relative;
  z-index: 1;
}

.os-hero h1 {
  max-width: 12.5ch;
  margin: 0;
  color: #102019;
  font-size: clamp(2.6rem, 4.8vw, 5.6rem);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.os-hero__lead {
  max-width: 61ch;
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  color: #526159;
  font-size: clamp(1rem, 1.25vw, 1.23rem);
  line-height: 1.65;
}

.os-hero__benefit {
  max-width: 54ch;
  margin: 1.4rem 0 0;
  color: #3e5047;
  font-weight: 650;
}

.os-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.os-product {
  display: grid;
  grid-template-columns: minmax(126px, 0.22fr) minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe8e2;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(23, 70, 45, 0.14), 0 4px 14px rgba(23, 70, 45, 0.07);
}

.os-product__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  padding: 1.15rem 0.75rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(165deg, #0a563c, #063c2a);
}

.os-product__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0.2rem 1.15rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.os-product__brand i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: var(--os-green);
  border-radius: 7px;
}

.os-product__nav {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 35px;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.os-product__nav.is-active {
  color: #fff;
  background: rgba(22, 131, 93, 0.78);
}

.os-product__company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.8rem 0.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.58rem;
}

.os-product__company i {
  font-size: 1rem;
}

.os-product__main {
  min-width: 0;
  padding: clamp(0.9rem, 1.6vw, 1.35rem);
}

.os-product__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.os-product__topline > div {
  display: grid;
}

.os-product__topline strong {
  font-size: 1rem;
}

.os-product__topline small {
  color: var(--os-muted);
  font-size: 0.63rem;
}

.os-product__avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--os-green-dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.os-product__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.os-product__metric {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid var(--os-line);
  border-radius: 12px;
}

.os-product__metric > i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 9px;
}

.os-product__metric > span {
  display: grid;
  min-width: 0;
}

.os-product__metric strong {
  font-size: 1.12rem;
  line-height: 1;
}

.os-product__metric small {
  overflow: hidden;
  margin-top: 0.25rem;
  color: var(--os-muted);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-product__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.72fr);
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.os-order-preview,
.os-maintenance-preview {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--os-line);
  border-radius: 12px;
}

.os-panel-title {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--os-line);
  font-size: 0.67rem;
  font-weight: 800;
}

.os-order-preview__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-size: 0.76rem;
}

.os-order-preview__title > span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.22rem 0.42rem;
  border-radius: 6px;
  font-size: 0.55rem;
  font-weight: 750;
  white-space: nowrap;
}

.os-status--open {
  color: #7b570e;
  background: #fff0c9;
}

.os-status--progress {
  color: #175e8f;
  background: #e2f1ff;
}

.os-status--done {
  color: var(--os-green-dark);
  background: var(--os-green-soft);
}

.os-order-preview__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin: 0.85rem 0 1.1rem;
}

.os-order-preview__details div {
  min-width: 0;
}

.os-order-preview__details dt {
  color: var(--os-muted);
  font-size: 0.54rem;
  font-weight: 600;
}

.os-order-preview__details dd {
  overflow: hidden;
  margin: 0.1rem 0 0;
  font-size: 0.6rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-priority-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.2rem;
  background: var(--os-danger);
  border-radius: 50%;
}

.os-status-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}

.os-status-track::before {
  position: absolute;
  z-index: 0;
  top: 11px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  content: "";
  background: #dfe6e2;
}

.os-status-track div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.os-status-track span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #748078;
  background: #eef2ef;
  border: 1px solid #d9e1dc;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 800;
}

.os-status-track .is-complete span,
.os-status-track .is-current span {
  color: #fff;
  background: var(--os-green);
  border-color: var(--os-green);
}

.os-status-track .is-current span {
  box-shadow: 0 0 0 4px var(--os-green-soft);
}

.os-status-track small {
  margin-top: 0.32rem;
  font-size: 0.48rem;
  text-align: center;
}

.os-maintenance-preview > div:not(.os-panel-title) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid #edf2ef;
}

.os-maintenance-preview > div:last-child {
  border-bottom: 0;
}

.os-maintenance-preview i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 8px;
}

.os-maintenance-preview span {
  display: grid;
  min-width: 0;
}

.os-maintenance-preview strong,
.os-maintenance-preview small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-maintenance-preview strong {
  font-size: 0.55rem;
}

.os-maintenance-preview small {
  color: var(--os-muted);
  font-size: 0.49rem;
}

.os-benefits {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--os-line);
}

.os-benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding-block: 1.5rem;
}

.os-benefits__grid > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  min-height: 54px;
  padding-inline: clamp(0.6rem, 1.4vw, 1.5rem);
  border-right: 1px solid var(--os-line);
}

.os-benefits__grid > div:first-child {
  padding-left: 0;
}

.os-benefits__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.os-benefits i {
  color: var(--os-green);
  font-size: 1.45rem;
}

.os-benefits span {
  font-size: clamp(0.72rem, 0.82vw, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
}

.os-section-heading {
  max-width: 760px;
}

.os-section-heading h2 {
  margin: 0;
  color: #102019;
  font-size: clamp(2rem, 3.3vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1.04;
}

.os-section-heading p {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--os-muted);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
}

.os-section-heading--split {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: end;
  gap: 3rem;
  max-width: none;
}

.os-section-heading--split p {
  margin: 0 0 0.3rem;
}

.os-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.os-section-heading--center p {
  margin-inline: auto;
}

.os-transformation,
.os-features,
.os-process,
.os-audiences,
.os-security,
.os-final-cta,
.os-footer {
  width: 100%;
}

.os-transformation {
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--os-background);
}

.os-transformation__flow {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) 74px minmax(0, 1.6fr);
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 2.75rem);
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.os-transformation h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.os-transformation__before,
.os-transformation__after {
  min-width: 0;
}

.os-transformation__before {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed #cad4ce;
  border-radius: var(--os-radius);
}

.os-transformation__before h3 {
  color: #66736c;
}

.os-transformation ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.os-transformation li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.os-transformation li i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.os-transformation__before li {
  color: #66736c;
}

.os-fragments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px dashed #cad4ce;
}

.os-fragments span {
  padding: 0.4rem 0.55rem;
  color: #7a857f;
  background: #fff;
  border: 1px solid #dfe5e1;
  border-radius: 7px;
  font-size: 0.62rem;
  transform: rotate(var(--os-rotate, -1deg));
}

.os-fragments span:nth-child(2) {
  --os-rotate: 1.5deg;
}

.os-fragments span:nth-child(3) {
  --os-rotate: -0.5deg;
}

.os-transformation__bridge {
  display: grid;
  place-items: center;
}

.os-transformation__bridge::before,
.os-transformation__bridge::after {
  width: 1px;
  height: 100%;
  grid-area: 1 / 1;
  content: "";
  background: linear-gradient(transparent, var(--os-green), transparent);
}

.os-transformation__bridge span {
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  grid-area: 1 / 1;
  place-items: center;
  color: #fff;
  background: var(--os-green);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(22, 131, 93, 0.25);
  font-size: 1.4rem;
}

.os-transformation__after {
  display: grid;
  grid-template-columns: minmax(210px, 0.68fr) minmax(360px, 1.32fr);
  gap: clamp(1.25rem, 2.6vw, 3rem);
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  background: #fff;
  border: 1px solid #dce8e0;
  border-radius: var(--os-radius-lg);
  box-shadow: 0 20px 46px rgba(22, 70, 45, 0.09);
}

.os-transformation__after h3,
.os-transformation__after li {
  color: var(--os-green-dark);
}

.os-mini-board {
  align-self: center;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--os-line);
  border-radius: 13px;
  box-shadow: 0 8px 25px rgba(26, 64, 42, 0.07);
}

.os-mini-board__header,
.os-mini-board__filters,
.os-mini-board__row {
  display: grid;
  align-items: center;
  gap: 0.55rem;
}

.os-mini-board__header {
  grid-template-columns: 1fr auto;
  padding-bottom: 0.75rem;
  font-size: 0.72rem;
}

.os-mini-board__header span {
  padding: 0.35rem 0.55rem;
  color: #fff;
  background: var(--os-green);
  border-radius: 6px;
  font-size: 0.55rem;
}

.os-mini-board__filters {
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  padding-block: 0.6rem;
  border-block: 1px solid var(--os-line);
  color: var(--os-muted);
  font-size: 0.51rem;
}

.os-mini-board__filters .is-active {
  color: var(--os-green-dark);
  font-weight: 800;
}

.os-mini-board__row {
  grid-template-columns: 0.35fr 1fr 1fr auto;
  padding: 0.65rem 0;
  border-bottom: 1px solid #edf2ef;
  font-size: 0.52rem;
}

.os-mini-board__row:last-child {
  border-bottom: 0;
}

.os-features {
  scroll-margin-top: 82px;
  padding-block: clamp(5rem, 8vw, 9rem);
  background: #fff;
}

.os-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.os-feature {
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.3rem, 2vw, 2rem);
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: var(--os-radius);
}

.os-feature--order {
  grid-column: span 7;
  background: linear-gradient(145deg, #fff, #f7fbf8);
}

.os-feature--assets {
  grid-column: span 5;
}

.os-feature--history {
  grid-column: span 4;
  grid-row: span 2;
}

.os-feature--team,
.os-feature--maintenance {
  grid-column: span 4;
}

.os-feature--reports {
  grid-column: span 4;
  grid-row: span 2;
  color: #fff;
  background: var(--os-green-deep);
  border-color: var(--os-green-deep);
}

.os-feature__heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.os-feature__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 11px;
  font-size: 1.15rem;
}

.os-feature__heading > div {
  display: grid;
  gap: 0.05rem;
}

.os-feature__heading > div > span {
  color: var(--os-green);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.os-feature h3 {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.os-feature > p {
  margin: 1rem 0 1.35rem;
  color: var(--os-muted);
  font-size: 0.84rem;
}

.os-feature--reports .os-feature__heading > div > span,
.os-feature--reports > p {
  color: rgba(255, 255, 255, 0.72);
}

.os-work-order-ui {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr;
  gap: 0.7rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(23, 70, 45, 0.06);
}

.os-work-order-ui > div:not(.os-work-order-ui__track):not(.os-work-order-ui__footer) {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--os-line);
  border-radius: 8px;
}

.os-work-order-ui > div > span {
  color: var(--os-muted);
  font-size: 0.55rem;
}

.os-work-order-ui > div > strong {
  overflow: hidden;
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-work-order-ui__track {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.55rem;
}

.os-work-order-ui__track::before {
  position: absolute;
  top: 8px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: var(--os-line);
}

.os-work-order-ui__track span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  color: var(--os-muted);
  font-size: 0.5rem;
  text-align: center;
}

.os-work-order-ui__track span::before {
  z-index: 1;
  width: 17px;
  height: 17px;
  content: "";
  background: #e5ebe7;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d7e0da;
}

.os-work-order-ui__track .is-done::before,
.os-work-order-ui__track .is-current::before {
  background: var(--os-green);
  box-shadow: 0 0 0 1px var(--os-green);
}

.os-work-order-ui__track .is-current {
  color: var(--os-green-dark);
  font-weight: 800;
}

.os-work-order-ui__footer {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--os-line);
  font-size: 0.56rem;
}

.os-asset-list {
  display: grid;
  gap: 0.7rem;
}

.os-asset-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--os-background);
  border-radius: 10px;
}

.os-asset-list i {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 8px;
}

.os-asset-list span,
.os-history-line div {
  display: grid;
  min-width: 0;
}

.os-asset-list strong,
.os-history-line strong {
  font-size: 0.72rem;
}

.os-asset-list small,
.os-history-line small {
  color: var(--os-muted);
  font-size: 0.6rem;
}

.os-history-line {
  position: relative;
  display: grid;
  gap: 1.05rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.os-history-line::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 13px;
  width: 1px;
  content: "";
  background: #b7d7c4;
}

.os-history-line li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.os-history-line li > span {
  z-index: 1;
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border: 1px solid #a9d3ba;
  border-radius: 50%;
  font-size: 0.65rem;
}

.os-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.os-role-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 8px;
  font-size: 0.67rem;
  font-weight: 750;
}

.os-maintenance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.os-maintenance-strip span {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 8px;
  font-size: 0.57rem;
  font-weight: 750;
}

.os-maintenance-strip strong {
  overflow: hidden;
  color: var(--os-ink);
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-report-bars {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.7rem;
}

.os-report-bars span {
  display: grid;
  grid-template-columns: minmax(80px, 0.72fr) 1fr auto;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.65rem;
}

.os-report-bars small {
  color: rgba(255, 255, 255, 0.74);
}

.os-report-bars i {
  position: relative;
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 99px;
}

.os-report-bars i::after {
  display: block;
  width: var(--os-bar);
  height: 100%;
  content: "";
  background: #55c894;
  border-radius: inherit;
}

.os-process {
  scroll-margin-top: 82px;
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--os-background);
  border-block: 1px solid var(--os-line);
}

.os-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(3rem, 5vw, 5rem) 0 0;
  padding: 0;
  list-style: none;
}

.os-process__steps::before {
  position: absolute;
  top: 22px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: var(--os-green);
}

.os-process__steps li {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.os-process__steps li > span {
  z-index: 1;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--os-green-dark);
  background: #fff;
  border: 1px solid var(--os-green);
  border-radius: 50%;
  font-weight: 850;
  box-shadow: 0 0 0 7px var(--os-background);
}

.os-process__steps li > i {
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 1.7rem;
  place-items: center;
  color: var(--os-green);
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 15px;
  font-size: 1.35rem;
}

.os-process__steps h3 {
  max-width: 18ch;
  margin: 1rem auto 0;
  color: var(--os-green-dark);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.os-process__steps p {
  max-width: 22ch;
  margin: 0.55rem auto 0;
  color: var(--os-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.os-audiences {
  scroll-margin-top: 82px;
  padding-block: clamp(5rem, 7vw, 8rem);
  background: #fff;
}

.os-audiences__grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 4vw, 4rem);
  border-block: 1px solid var(--os-line);
}

.os-audiences__grid > div {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 145px;
  padding: 1.2rem 0.75rem;
  border-right: 1px solid var(--os-line);
  text-align: center;
}

.os-audiences__grid > div:last-child {
  border-right: 0;
}

.os-audiences__grid i {
  color: var(--os-green);
  font-size: 1.7rem;
}

.os-audiences__grid span {
  margin-top: 0.75rem;
  font-size: clamp(0.67rem, 0.75vw, 0.82rem);
  font-weight: 700;
  line-height: 1.35;
}

.os-security {
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--os-background);
  border-top: 1px solid var(--os-line);
}

.os-security__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(580px, 1.38fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.os-security__copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.os-security__copy li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #435149;
  font-size: 0.87rem;
  font-weight: 650;
}

.os-security__copy li i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: var(--os-green-soft);
  border-radius: 9px;
}

.os-security__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 0.85fr;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 3rem);
  min-width: 0;
}

.os-security__visual::before,
.os-security__visual::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--os-green), var(--os-green) 5px, transparent 5px, transparent 10px);
}

.os-security__visual::before {
  right: 62%;
  left: 22%;
}

.os-security__visual::after {
  right: 15%;
  left: 50%;
}

.os-company-stack {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.os-company-stack article {
  display: grid;
  min-width: 0;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid var(--os-line);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(22, 70, 45, 0.06);
}

.os-company-stack i {
  color: var(--os-green);
}

.os-company-stack strong {
  overflow: hidden;
  margin: 0.45rem 0 0.75rem;
  font-size: 0.67rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-company-stack span {
  margin-top: 0.35rem;
  padding-bottom: 0.3rem;
  color: var(--os-muted);
  border-bottom: 1px solid #edf2ef;
  font-size: 0.5rem;
}

.os-security__core {
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 1.4rem;
  background: var(--os-background);
}

.os-security__core i {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  color: #fff;
  background: var(--os-green);
  border-radius: 24px;
  box-shadow: 0 0 0 12px var(--os-green-soft), 0 12px 30px rgba(22, 131, 93, 0.2);
  font-size: 2rem;
}

.os-security__core strong {
  margin-top: 1.25rem;
  color: var(--os-green-dark);
  font-size: 1.1rem;
}

.os-security__core small {
  color: var(--os-muted);
  font-size: 0.58rem;
}

.os-access-lanes {
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.os-access-lanes > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--os-background);
}

.os-access-lanes > div > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--os-green-dark);
  background: #fff;
  border: 1px solid #a8d4ba;
  border-radius: 50%;
}

.os-access-lanes span {
  display: grid;
}

.os-access-lanes strong {
  font-size: 0.72rem;
}

.os-access-lanes small {
  color: var(--os-muted);
  font-size: 0.58rem;
}

.os-final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--os-green-deep);
  background-image:
    linear-gradient(90deg, transparent 0 8%, rgba(85, 200, 148, 0.12) 8% 8.08%, transparent 8.08% 100%),
    linear-gradient(0deg, transparent 0 72%, rgba(85, 200, 148, 0.1) 72% 72.12%, transparent 72.12% 100%);
}

.os-final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
  min-height: 560px;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.os-final-cta h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.os-final-cta p {
  max-width: 58ch;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.15vw, 1.15rem);
}

.os-final-cta__signal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.os-final-cta__signal::before {
  position: absolute;
  right: 8%;
  left: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(85, 200, 148, 0.25), #55c894, rgba(85, 200, 148, 0.25));
}

.os-final-cta__signal span {
  z-index: 1;
  display: grid;
  width: clamp(54px, 5vw, 74px);
  height: clamp(54px, 5vw, 74px);
  place-self: center;
  place-items: center;
  color: #78dca9;
  background: #084c35;
  border: 1px solid rgba(120, 220, 169, 0.42);
  border-radius: 20px;
  box-shadow: 0 0 0 10px var(--os-green-deep);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.os-footer {
  background: #fff;
  border-top: 1px solid var(--os-line);
}

.os-footer__content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: 180px;
  padding-block: 2.5rem;
}

.os-footer p {
  max-width: 40ch;
  margin: 0.8rem 0 0;
  color: var(--os-muted);
  font-size: 0.83rem;
}

.os-footer__access {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  color: var(--os-green-dark) !important;
  border: 1px solid var(--os-green);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.os-footer small {
  color: var(--os-muted);
  white-space: nowrap;
}

.js-enabled [data-os-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-enabled [data-os-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1600px) {
  .os-landing-content,
  .os-public-header__content {
    padding-inline: clamp(6rem, 7vw, 10rem);
  }

  .os-hero__content {
    grid-template-columns: minmax(0, 0.72fr) minmax(650px, 1.28fr);
  }

  .os-product {
    max-width: 1120px;
    justify-self: end;
  }

  .os-benefits__grid > div {
    justify-content: center;
  }
}

@media (max-width: 1199.98px) {
  .os-public-header__content {
    gap: 1.5rem;
  }

  .os-public-nav {
    gap: 1.2rem;
  }

  .os-public-header__action {
    padding-inline: 0.85rem;
  }

  .os-hero__content {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 2rem;
  }

  .os-product__sidebar {
    display: none;
  }

  .os-product {
    grid-template-columns: 1fr;
  }

  .os-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .os-benefits__grid > div:nth-child(3) {
    border-right: 0;
  }

  .os-benefits__grid > div:nth-child(n + 4) {
    border-top: 1px solid var(--os-line);
  }

  .os-benefits__grid > div:nth-child(4) {
    padding-left: 0;
  }

  .os-transformation__flow {
    grid-template-columns: minmax(210px, 0.6fr) 54px minmax(0, 1.4fr);
  }

  .os-transformation__after {
    grid-template-columns: 1fr;
  }

  .os-audiences__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .os-audiences__grid > div {
    border-bottom: 1px solid var(--os-line);
  }

  .os-audiences__grid > div:nth-child(5) {
    border-right: 0;
  }

  .os-audiences__grid > div:nth-last-child(-n + 4) {
    border-bottom: 0;
  }

  .os-security__layout {
    grid-template-columns: minmax(250px, 0.55fr) minmax(520px, 1.45fr);
    gap: 3rem;
  }

  .os-security__visual {
    grid-template-columns: 1fr auto;
  }

  .os-access-lanes {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .os-security__visual::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .os-public-header__content {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .os-public-nav,
  .os-public-header__action {
    display: none;
  }

  .os-menu-toggle {
    display: grid;
  }

  .os-hero {
    scroll-margin-top: 72px;
  }

  .os-hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4.5rem;
  }

  .os-hero h1 {
    max-width: 14ch;
  }

  .os-product {
    width: 100%;
  }

  .os-section-heading--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .os-section-heading--split p {
    margin: 0;
  }

  .os-transformation__flow {
    grid-template-columns: 1fr;
  }

  .os-transformation__bridge {
    height: 70px;
  }

  .os-transformation__bridge::before,
  .os-transformation__bridge::after {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--os-green), transparent);
  }

  .os-transformation__bridge span {
    transform: rotate(90deg);
  }

  .os-feature--order,
  .os-feature--assets {
    grid-column: span 12;
  }

  .os-feature--history,
  .os-feature--team,
  .os-feature--maintenance,
  .os-feature--reports {
    grid-column: span 6;
    grid-row: auto;
  }

  .os-process,
  .os-audiences {
    scroll-margin-top: 72px;
  }

  .os-process__steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }

  .os-process__steps::before {
    display: none;
  }

  .os-security__layout {
    grid-template-columns: 1fr;
  }

  .os-security__copy {
    max-width: 720px;
  }

  .os-final-cta__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .os-final-cta__signal {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .os-landing {
    font-size: 15px;
  }

  .os-landing-content {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .os-public-header__content {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .os-hero__content {
    gap: 2.5rem;
    padding-block: 3.6rem 4rem;
  }

  .os-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .os-product__main {
    padding: 0.8rem;
  }

  .os-product__workspace {
    grid-template-columns: 1fr;
  }

  .os-maintenance-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
  }

  .os-maintenance-preview .os-panel-title {
    grid-column: 1 / -1;
  }

  .os-maintenance-preview > div:not(.os-panel-title) {
    border-right: 1px solid #edf2ef;
    border-bottom: 0;
  }

  .os-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .os-benefits__grid > div,
  .os-benefits__grid > div:nth-child(3) {
    padding: 0.8rem;
    border-top: 1px solid var(--os-line);
    border-right: 1px solid var(--os-line);
  }

  .os-benefits__grid > div:nth-child(-n + 2) {
    border-top: 0;
  }

  .os-benefits__grid > div:nth-child(even) {
    border-right: 0;
  }

  .os-benefits__grid > div:nth-child(odd) {
    padding-left: 0;
  }

  .os-benefits__grid > div:nth-child(even) {
    padding-right: 0;
  }

  .os-transformation__after {
    padding: 1.2rem;
  }

  .os-feature--history,
  .os-feature--team,
  .os-feature--maintenance,
  .os-feature--reports {
    grid-column: span 12;
  }

  .os-process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .os-process__steps::before {
    display: block;
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 2px;
    height: auto;
  }

  .os-process__steps li {
    grid-template-columns: 48px 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: start;
    gap: 0 0.9rem;
    min-height: 132px;
    text-align: left;
  }

  .os-process__steps li > span {
    width: 46px;
    height: 46px;
    grid-row: 1 / 3;
    box-shadow: 0 0 0 6px var(--os-background);
  }

  .os-process__steps li > i {
    width: 44px;
    height: 44px;
    grid-row: 1 / 3;
    margin: 0;
    font-size: 1.05rem;
  }

  .os-process__steps h3 {
    max-width: none;
    margin: 0;
  }

  .os-process__steps p {
    max-width: 48ch;
    margin: 0.35rem 0 0;
  }

  .os-audiences__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .os-audiences__grid > div,
  .os-audiences__grid > div:nth-child(5),
  .os-audiences__grid > div:nth-last-child(-n + 4) {
    min-height: 120px;
    border-right: 1px solid var(--os-line);
    border-bottom: 1px solid var(--os-line);
  }

  .os-audiences__grid > div:nth-child(3n) {
    border-right: 0;
  }

  .os-audiences__grid > div:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .os-security__visual {
    grid-template-columns: 1fr;
  }

  .os-security__visual::before,
  .os-security__visual::after {
    display: none;
  }

  .os-company-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .os-security__core {
    padding-block: 2rem;
  }

  .os-access-lanes {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .os-final-cta__layout {
    gap: 3rem;
  }

  .os-footer__content {
    grid-template-columns: 1fr auto;
  }

  .os-footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .os-public-header__content {
    min-height: 66px;
  }

  .os-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .os-brand__name {
    font-size: 1.2rem;
  }

  .os-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .os-hero__content {
    padding-top: 3rem;
  }

  .os-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.25rem);
  }

  .os-hero__actions {
    display: grid;
  }

  .os-hero__actions .os-button {
    width: 100%;
  }

  .os-product {
    border-radius: 16px;
  }

  .os-product__metrics {
    gap: 0.35rem;
  }

  .os-product__metric {
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.35rem;
    text-align: center;
  }

  .os-product__metric > i {
    width: 29px;
    height: 29px;
  }

  .os-product__metric strong {
    font-size: 0.95rem;
  }

  .os-product__metric small {
    max-width: 8ch;
    font-size: 0.48rem;
  }

  .os-order-preview__title {
    flex-wrap: wrap;
  }

  .os-order-preview__details {
    grid-template-columns: 1fr;
  }

  .os-maintenance-preview {
    display: none;
  }

  .os-status-track small {
    font-size: 0.42rem;
  }

  .os-section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .os-transformation__before {
    padding: 1.2rem;
  }

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

  .os-mini-board__filters {
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem 1rem;
  }

  .os-mini-board__row {
    grid-template-columns: 0.45fr 1.2fr auto;
  }

  .os-mini-board__row > span:nth-child(3) {
    display: none;
  }

  .os-work-order-ui {
    grid-template-columns: 1fr 1fr;
  }

  .os-work-order-ui > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .os-work-order-ui__track {
    overflow-x: auto;
    min-width: 0;
  }

  .os-work-order-ui__footer {
    display: grid;
  }

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

  .os-audiences__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .os-audiences__grid > div,
  .os-audiences__grid > div:nth-child(3n),
  .os-audiences__grid > div:nth-last-child(-n + 3) {
    border-right: 1px solid var(--os-line);
    border-bottom: 1px solid var(--os-line);
  }

  .os-audiences__grid > div:nth-child(even) {
    border-right: 0;
  }

  .os-audiences__grid > div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .os-company-stack {
    grid-template-columns: 1fr 1fr;
  }

  .os-company-stack article:last-child {
    display: none;
  }

  .os-final-cta h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .os-final-cta__signal span {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    box-shadow: 0 0 0 6px var(--os-green-deep);
  }

  .os-footer__content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .os-footer__access {
    width: 100%;
    justify-content: center;
  }

  .os-footer small {
    grid-column: auto;
  }
}

@media (max-width: 359.98px) {
  .os-landing-content,
  .os-public-header__content {
    padding-inline: 0.85rem;
  }

  .os-hero h1 {
    font-size: 2.15rem;
  }

  .os-benefits__grid {
    grid-template-columns: 1fr;
  }

  .os-benefits__grid > div,
  .os-benefits__grid > div:nth-child(-n + 2),
  .os-benefits__grid > div:nth-child(even),
  .os-benefits__grid > div:nth-child(odd) {
    padding-inline: 0;
    border-top: 1px solid var(--os-line);
    border-right: 0;
  }

  .os-benefits__grid > div:first-child {
    border-top: 0;
  }

  .os-process__steps li {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .os-process__steps li > i {
    display: none;
  }

  .os-process__steps h3,
  .os-process__steps p {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .os-landing *,
  .os-landing *::before,
  .os-landing *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled [data-os-reveal] {
    opacity: 1;
    transform: none;
  }
}
