html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.public-body .btn-primary {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
  font-weight: 800;
}

.public-body .btn-primary:hover,
.public-body .btn-primary:focus {
  border-color: #f2d06a;
  background: #f2d06a;
  color: #080808;
}

.public-body .btn-outline-secondary {
  border-color: rgba(214, 173, 66, .68);
  color: #f7f2e7;
}

.public-body .btn-outline-secondary:hover,
.public-body .btn-outline-secondary:focus {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f5f7f8;
  color: #1f2a33;
}

.public-body {
  background: #070707;
}

.app-body {
  overflow: hidden;
}

.global-admin-body {
  background: #070707;
  color: #efe8d9;
}

.ajax-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 18px rgba(18, 38, 42, .06);
}

.ajax-topbar .navbar-brand {
  color: #123236;
  letter-spacing: 0;
}

.ajax-topbar .nav-link {
  font-weight: 600;
}

.ajax-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 38px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  word-break: normal;
}

.ajax-brand-crest {
  display: block;
  width: 48px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(214, 173, 66, .22));
}

.ajax-topbar a.ajax-brand {
  text-align: left;
  word-break: normal;
}

.ajax-brand-domain {
  color: #4d5a63;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.public-body .ajax-topbar .navbar,
.global-admin-body .ajax-topbar .navbar {
  background: #070707 !important;
  border-bottom-color: rgba(211, 170, 73, .34) !important;
}

.public-body .ajax-topbar .nav-link,
.global-admin-body .ajax-topbar .nav-link {
  color: #f7f2e7 !important;
}

.public-body .ajax-topbar .nav-link:hover,
.global-admin-body .ajax-topbar .nav-link:hover {
  color: #d6ad42 !important;
}

.public-body .ajax-brand-crest,
.global-admin-body .ajax-brand-crest {
  filter: drop-shadow(0 0 12px rgba(244, 217, 132, .25));
}

.public-body .ajax-brand-domain,
.global-admin-body .ajax-brand-domain {
  color: #f4d984;
}

.public-body .navbar-toggler,
.global-admin-body .navbar-toggler {
  border-color: rgba(214, 173, 66, .45);
}

.public-body .navbar-toggler-icon,
.global-admin-body .navbar-toggler-icon {
  filter: invert(1);
}

.public-body .ajax-topbar .btn-outline-secondary,
.global-admin-body .ajax-topbar .btn-outline-secondary {
  border-color: #d6ad42;
  color: #f7f2e7;
}

.public-body .ajax-topbar .btn-outline-secondary:hover,
.global-admin-body .ajax-topbar .btn-outline-secondary:hover {
  background: #d6ad42;
  color: #070707;
}

.ajax-environment {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: #3d4b55;
  font-size: .875rem;
}

.ajax-environment span {
  border: 1px solid #cbd5dc;
  border-radius: 4px;
  padding: .2rem .5rem;
  background: #f8fafb;
}

.topbar-actions {
  display: flex;
  gap: .65rem;
  align-items: center;
}

.topbar-actions form {
  margin: 0;
}

.notification-button {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #cbd5dc;
  border-radius: 6px;
  background: #ffffff;
  color: #26343d;
  font-weight: 800;
  text-decoration: none;
}

.notification-button:hover {
  background: #eef4f7;
  color: #111820;
}

.notification-icon {
  line-height: 1;
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d6ad42;
  color: #080808;
  font-size: .7rem;
  line-height: 18px;
  text-align: center;
}

.ajax-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  height: calc(100vh - 57px);
  min-height: 0;
  transition: grid-template-columns .18s ease;
}

.ajax-shell.sidebar-collapsed {
  grid-template-columns: 68px minmax(0, 1fr);
}

.ajax-sidebar {
  position: sticky;
  top: 57px;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 57px);
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid #dce3e8;
  background: #ffffff;
  padding: .85rem;
}

.sidebar-collapse-toggle {
  display: inline-grid;
  width: 40px;
  height: 34px;
  place-items: center;
  border: 1px solid #cad5dc;
  border-radius: 4px;
  background: #ffffff;
  color: #26343d;
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1;
}

.sidebar-toggle-icon {
  display: block;
  transform: rotate(90deg);
  font-size: 1.05rem;
}

.sidebar-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: .1rem;
}

.sidebar-identity {
  border: 1px solid #cad5dc;
  border-radius: 6px;
  background: #f8fafb;
  padding: .9rem;
  margin-bottom: 1rem;
}

.sidebar-identity span {
  display: block;
  color: #5b6872;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar-identity strong {
  display: block;
  margin-top: .2rem;
  color: #18242c;
}

.sidebar-identity dl {
  display: grid;
  gap: .4rem;
  margin: .75rem 0 0;
}

.sidebar-identity dl div {
  display: grid;
  gap: .1rem;
}

.sidebar-identity dt {
  color: #60707a;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar-identity dd {
  margin: 0;
  color: #26343d;
  font-size: .9rem;
  overflow-wrap: anywhere;
}

.help-tip {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #9fb0ba;
  border-radius: 999px;
  color: #52636e;
  font-size: .72rem;
  font-weight: 800;
  cursor: help;
}

.ajax-context {
  margin-bottom: 1rem;
}

.ajax-context-form {
  margin-bottom: 1rem;
}

.global-admin-panel {
  border: 1px solid #cad5dc;
  border-radius: 6px;
  background: #f8fafb;
  padding: .9rem;
  margin-bottom: 1rem;
}

.global-admin-panel span {
  display: block;
  color: #5b6872;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.global-admin-panel strong {
  display: block;
  margin-top: .2rem;
  color: #18242c;
}

.global-admin-panel p {
  margin: .4rem 0 0;
  color: #60707a;
  font-size: .85rem;
  line-height: 1.35;
}

.ajax-context label {
  display: block;
  color: #5b6872;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .35rem;
}

.ajax-nav {
  display: grid;
  gap: .35rem;
  margin-top: 1.25rem;
}

.ajax-nav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 46px;
  color: #24313a;
  text-decoration: none;
  padding: .45rem .55rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
}

.ajax-nav-link:hover,
.ajax-nav-link.active,
.sidebar-settings-link:hover,
.sidebar-settings-link.active {
  background: #e9f1f5;
  border-color: #c8d8e1;
  color: #111820;
}

.sidebar-nav-icon,
.sidebar-settings-icon {
  display: inline-grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #cbd7df;
  border-radius: 6px;
  background: #f8fafb;
  color: #1f2a33;
  font-weight: 900;
  line-height: 1;
}

.sidebar-nav-copy {
  display: grid;
  min-width: 0;
}

.sidebar-nav-kicker {
  color: #667783;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.sidebar-nav-label {
  overflow: hidden;
  color: #24313a;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.12;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-footer {
  flex: 0 0 auto;
  border-top: 1px solid #dce3e8;
  padding-top: .75rem;
  margin-top: .75rem;
}

.sidebar-settings-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #24313a;
  text-decoration: none;
  padding: .4rem .55rem;
}

.sidebar-settings-copy {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ajax-content {
  height: calc(100vh - 57px);
  min-width: 0;
  overflow-y: auto;
  padding: 1.25rem;
}

.ajax-shell.sidebar-collapsed .ajax-sidebar {
  padding-inline: .7rem;
}

.ajax-shell.sidebar-collapsed .sidebar-identity,
.ajax-shell.sidebar-collapsed .ajax-context-form,
.ajax-shell.sidebar-collapsed .sidebar-nav-copy,
.ajax-shell.sidebar-collapsed .sidebar-settings-copy {
  display: none;
}

.ajax-shell.sidebar-collapsed .ajax-nav {
  margin-top: .25rem;
}

.ajax-shell.sidebar-collapsed .ajax-nav-link,
.ajax-shell.sidebar-collapsed .sidebar-settings-link {
  justify-content: center;
  padding: .4rem 0;
}

.ajax-page-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .35rem;
  border-bottom: 1px solid #d4e0e7;
  padding: .25rem 0 .75rem;
  margin: 0 0 1rem;
}

.page-header + .ajax-page-tabs {
  margin-top: -.35rem;
}

.ajax-page-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid #c4d2db;
  border-bottom-color: #b7c6cf;
  border-radius: 5px 5px 0 0;
  background: #f8fafb;
  color: #26343d;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.1;
  padding: .45rem .8rem;
  text-decoration: none;
  white-space: nowrap;
}

.ajax-page-tab:hover,
.ajax-page-tab.active {
  background: #d6ad42;
  border-color: #bc9635;
  color: #080808;
}

.global-admin-body .notification-button {
  border-color: rgba(214, 173, 66, .34);
  background: #141414;
  color: #ffffff;
}

.global-admin-body .notification-button:hover,
.global-admin-body .notification-button:focus {
  border-color: #d6ad42;
  background: #1c1c1c;
  color: #f4d984;
}

.global-admin-body .ajax-shell {
  background: #070707;
}

.global-admin-body .ajax-sidebar {
  border-right-color: rgba(214, 173, 66, .28);
  background: #0d0d0d;
}

.global-admin-body .sidebar-collapse-toggle {
  border-color: rgba(214, 173, 66, .36);
  background: #141414;
  color: #ffffff;
}

.global-admin-body .sidebar-collapse-toggle:hover,
.global-admin-body .sidebar-collapse-toggle:focus {
  border-color: #d6ad42;
  color: #f4d984;
}

.global-admin-body .sidebar-identity,
.global-admin-body .global-admin-panel {
  border-color: rgba(214, 173, 66, .32);
  background: linear-gradient(135deg, rgba(214, 173, 66, .11), rgba(255, 255, 255, .045));
}

.global-admin-body .sidebar-identity span,
.global-admin-body .global-admin-panel span,
.global-admin-body .sidebar-identity dt {
  color: #d6ad42;
}

.global-admin-body .sidebar-identity strong,
.global-admin-body .global-admin-panel strong,
.global-admin-body .sidebar-identity dd {
  color: #ffffff;
}

.global-admin-body .global-admin-panel p,
.global-admin-body .ajax-context label {
  color: #d8cfbd;
}

.global-admin-body .help-tip {
  border-color: rgba(214, 173, 66, .5);
  color: #f4d984;
}

.global-admin-body .ajax-nav-link,
.global-admin-body .sidebar-settings-link {
  color: #efe8d9;
}

.global-admin-body .ajax-nav-link:hover,
.global-admin-body .ajax-nav-link.active,
.global-admin-body .sidebar-settings-link:hover,
.global-admin-body .sidebar-settings-link.active {
  border-color: rgba(214, 173, 66, .55);
  background: rgba(214, 173, 66, .14);
  color: #ffffff;
}

.global-admin-body .sidebar-nav-icon,
.global-admin-body .sidebar-settings-icon {
  border-color: rgba(214, 173, 66, .38);
  background: #070707;
  color: #ffffff;
}

.global-admin-body .ajax-nav-link.active .sidebar-nav-icon,
.global-admin-body .sidebar-settings-link.active .sidebar-settings-icon {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
}

.global-admin-body .sidebar-nav-kicker {
  color: #d6ad42;
}

.global-admin-body .sidebar-nav-label,
.global-admin-body .sidebar-settings-copy {
  color: #ffffff;
}

.global-admin-body .sidebar-footer {
  border-top-color: rgba(214, 173, 66, .22);
}

.global-admin-body .ajax-content {
  background: #070707;
  color: #efe8d9;
}

.global-admin-body .ajax-page-tabs {
  border-bottom-color: rgba(214, 173, 66, .28);
}

.global-admin-body .ajax-page-tab {
  border-color: rgba(214, 173, 66, .28);
  background: #141414;
  color: #efe8d9;
}

.global-admin-body .ajax-page-tab:hover,
.global-admin-body .ajax-page-tab.active {
  border-color: #bc9635;
  background: #d6ad42;
  color: #080808;
}

.global-admin-body .page-header {
  border: 1px solid rgba(214, 173, 66, .32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 173, 66, .14), rgba(255, 255, 255, .05)),
    #111111;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.global-admin-body .page-header h1 {
  color: #ffffff;
}

.global-admin-body .page-header p {
  color: #d8cfbd;
}

.global-admin-body .tenant-chip {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
}

.global-admin-body .data-panel,
.global-admin-body .form-panel {
  border-color: rgba(214, 173, 66, .28);
  background: #141414;
  color: #efe8d9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.global-admin-body .data-panel h2,
.global-admin-body .form-panel h2 {
  color: #ffffff;
}

.global-admin-body .line-summary div {
  border: 1px solid rgba(214, 173, 66, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
  padding: .75rem;
}

.global-admin-body .line-summary span {
  color: #d6ad42;
  font-weight: 800;
  text-transform: uppercase;
}

.global-admin-body .line-summary strong {
  color: #ffffff;
}

.global-admin-body .muted {
  color: #d8cfbd;
}

.global-admin-body .status-pill {
  border-color: rgba(214, 173, 66, .46);
  background: rgba(214, 173, 66, .14);
  color: #f4d984;
}

.global-admin-body .table {
  --bs-table-bg: transparent;
  --bs-table-color: #e8dfcf;
  --bs-table-border-color: rgba(214, 173, 66, .18);
  color: #e8dfcf;
}

.global-admin-body .table > :not(caption) > * > * {
  border-bottom-color: rgba(214, 173, 66, .18);
  background-color: transparent;
  color: inherit;
}

.global-admin-body .table th {
  color: #f4d984;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.global-admin-body .table strong {
  color: #ffffff;
}

.global-admin-body .form-control,
.global-admin-body .form-select {
  border-color: rgba(214, 173, 66, .34);
  background-color: #050505;
  color: #ffffff;
}

.global-admin-body .form-control:focus,
.global-admin-body .form-select:focus {
  border-color: #d6ad42;
  box-shadow: 0 0 0 .2rem rgba(214, 173, 66, .18);
}

.global-admin-body .btn-primary {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
  font-weight: 800;
}

.global-admin-body .btn-primary:hover,
.global-admin-body .btn-primary:focus {
  border-color: #f2d06a;
  background: #f2d06a;
  color: #080808;
}

.global-admin-body .btn-outline-secondary {
  border-color: rgba(214, 173, 66, .62);
  color: #f7f2e7;
}

.global-admin-body .btn-outline-secondary:hover,
.global-admin-body .btn-outline-secondary:focus {
  border-color: #d6ad42;
  background: #d6ad42;
  color: #080808;
}

.global-admin-body .alert-success {
  border-color: rgba(65, 194, 123, .42);
  background: rgba(65, 194, 123, .12);
  color: #d8ffe6;
}

.public-content {
  min-height: calc(100vh - 57px);
  background: #070707;
}

.public-module-strip {
  position: sticky;
  top: 57px;
  z-index: 9;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(214, 173, 66, .22);
  background: rgba(7, 7, 7, .96);
  padding: .55rem clamp(1rem, 5vw, 5rem);
}

.public-module-strip a {
  flex: 0 0 auto;
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 999px;
  color: #f7f2e7;
  font-size: .84rem;
  font-weight: 800;
  padding: .3rem .65rem;
  text-decoration: none;
}

.public-module-strip a:hover {
  border-color: #d6ad42;
  color: #f4d984;
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: center;
  min-height: 62vh;
  padding: 4rem clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(7, 7, 7, .86) 50%, rgba(7, 7, 7, .42) 100%),
    url("/img/ajax-public-warehouse-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(214, 173, 66, .32);
  color: #ffffff;
}

.public-hero-copy {
  max-width: 780px;
}

.public-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 1.4rem;
}

.public-kicker {
  display: inline-block;
  border: 1px solid rgba(214, 173, 66, .55);
  border-radius: 4px;
  background: rgba(214, 173, 66, .14);
  color: #f6df9b;
  padding: .35rem .55rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.public-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.65rem, 6vw, 5.3rem);
  color: #ffffff;
  line-height: .98;
  letter-spacing: 0;
}

.public-hero p {
  margin: 0;
  color: #efe8d9;
  font-size: 1.25rem;
  line-height: 1.55;
}

.executive-home-hero {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .62fr);
  min-height: 66vh;
}

.module-spotlight {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(214, 173, 66, .46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 173, 66, .18), rgba(255, 255, 255, .055)),
    rgba(8, 8, 8, .9);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .44);
  overflow: hidden;
}

.module-spotlight::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(214, 173, 66, .18);
  border-radius: 6px;
  pointer-events: none;
}

.module-spotlight article {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .75rem;
  opacity: 0;
  padding: 2rem;
  animation: productSpotlight 42s infinite;
}

.module-spotlight article:nth-child(2) {
  animation-delay: 7s;
}

.module-spotlight article:nth-child(3) {
  animation-delay: 14s;
}

.module-spotlight article:nth-child(4) {
  animation-delay: 21s;
}

.module-spotlight article:nth-child(5) {
  animation-delay: 28s;
}

.module-spotlight article:nth-child(6) {
  animation-delay: 35s;
}

.module-spotlight span {
  color: #f4d984;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.module-spotlight strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.18;
}

.module-spotlight a {
  width: fit-content;
  border: 1px solid rgba(214, 173, 66, .42);
  border-radius: 4px;
  color: #ffffff;
  font-weight: 800;
  padding: .45rem .7rem;
  text-decoration: none;
}

.module-spotlight a:hover {
  background: rgba(214, 173, 66, .16);
  color: #f4d984;
}

@keyframes productSpotlight {
  0%,
  13% {
    opacity: 1;
    transform: translateY(0);
  }

  16%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.public-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}

.public-proof-row span {
  border: 1px solid rgba(214, 173, 66, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  padding: .35rem .7rem;
  font-size: .88rem;
  font-weight: 700;
}

.public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.signup-locked {
  border-left: 3px solid #f0a23a;
  color: #f5efe4;
  font-size: .95rem;
  padding-left: .75rem;
}

.public-hero-status {
  align-self: end;
  border: 1px solid rgba(214, 173, 66, .48);
  border-radius: 8px;
  background: rgba(7, 7, 7, .82);
  color: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .42);
}

.public-hero-status span,
.signup-lock-panel span {
  display: block;
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-hero-status strong {
  display: block;
  margin: .35rem 0;
  color: #ffffff;
  font-size: 1.35rem;
}

.public-hero-status small {
  display: block;
  color: #e4dac6;
  line-height: 1.45;
}

.public-hero-status dl {
  margin: 1rem 0 0;
  display: grid;
  gap: .75rem;
}

.public-hero-status dt {
  color: #f5df9c;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-hero-status dd {
  margin: .15rem 0 0;
  color: #e8dfcf;
  line-height: 1.4;
}

.public-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(214, 173, 66, .32);
}

.public-feature {
  background: #111111;
  padding: 1.75rem;
  border-right: 1px solid rgba(214, 173, 66, .22);
  border-top: 4px solid #d6ad42;
}

.public-feature:last-child {
  border-right: 0;
}

.feature-erp {
  border-top-color: #ffffff;
}

.feature-scanner {
  border-top-color: #9c7a24;
}

.public-band h2 {
  margin: 0 0 .5rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.public-band p {
  margin: 0;
  color: #d8cfbd;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
  color: #ffffff;
}

.platform-copy h2,
.modules-section .section-heading h2 {
  margin: .85rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.platform-copy p {
  margin: 0;
  color: #e4d9c3;
  font-size: 1.08rem;
  line-height: 1.65;
}

.platform-points {
  display: grid;
  gap: .85rem;
}

.platform-points div {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 173, 66, .11), rgba(255, 255, 255, .045));
  padding: 1.1rem;
}

.platform-points span,
.module-grid article span {
  display: block;
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-points strong {
  display: block;
  margin-top: .35rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.platform-points p {
  margin: .4rem 0 0;
  color: #d8cfbd;
  line-height: 1.5;
}

.modules-section {
  padding: clamp(2rem, 5vw, 4rem);
  background: #070707;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.module-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #141414;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.module-grid h3 {
  margin: .55rem 0;
  color: #ffffff;
  font-size: 1.12rem;
}

.module-grid p {
  margin: 0;
  color: #d8cfbd;
  line-height: 1.55;
}

.module-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: #f4d984;
  font-size: .92rem;
  line-height: 1.35;
}

.module-link {
  display: inline-block;
  margin-top: 1rem;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.module-link:hover {
  color: #f4d984;
}

.module-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: #070707;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
  color: #ffffff;
}

.module-detail-hero h1 {
  margin: .85rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.module-detail-hero p {
  margin: 0;
  color: #e4d9c3;
  font-size: 1.16rem;
  line-height: 1.62;
}

.module-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(214, 173, 66, .32);
  border-radius: 8px;
  background: #030303;
  object-fit: contain;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .42);
}

.module-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
}

.module-visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #030303;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.module-sales-section {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #070707;
  border-top: 1px solid rgba(214, 173, 66, .24);
  border-bottom: 1px solid rgba(214, 173, 66, .24);
  color: #ffffff;
}

.module-sales-section h2 {
  margin: .6rem 0 1rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.module-sales-section p {
  color: #e4d9c3;
  line-height: 1.6;
}

.module-proof-list {
  display: grid;
  gap: .85rem;
}

.module-proof-list article {
  border: 1px solid rgba(214, 173, 66, .24);
  border-radius: 8px;
  background: #141414;
  padding: 1rem;
}

.module-proof-list h3 {
  margin: 0 0 .4rem;
  color: #f4d984;
  font-size: 1.05rem;
}

.module-proof-list p {
  margin: 0;
  color: #d8cfbd;
}

.module-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
}

.module-detail-grid article {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #141414;
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.module-detail-grid h2 {
  margin: 0 0 .65rem;
  color: #f4d984;
  font-size: 1.12rem;
}

.module-detail-grid p {
  margin: 0;
  color: #d8cfbd;
  line-height: 1.55;
}

.module-included-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(214, 173, 66, .28);
  border-bottom: 1px solid rgba(214, 173, 66, .28);
  background: #070707;
}

.module-included-strip div {
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid rgba(214, 173, 66, .24);
}

.module-included-strip div:last-child {
  border-right: 0;
}

.module-included-strip span {
  display: block;
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.module-included-strip strong {
  display: block;
  margin-top: .35rem;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.extension-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
}

.extension-roadmap article {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #141414;
  padding: 1.15rem;
}

.extension-roadmap span {
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.extension-roadmap h2 {
  margin: .55rem 0 .6rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.extension-roadmap p {
  margin: 0;
  color: #d8cfbd;
  line-height: 1.5;
}

.extension-catalog-section {
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
  border-top: 1px solid rgba(214, 173, 66, .24);
  border-bottom: 1px solid rgba(214, 173, 66, .24);
}

.extension-catalog-section .section-heading {
  margin-bottom: 1.5rem;
}

.extension-catalog-section .section-heading h2 {
  max-width: 980px;
}

.extension-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.extension-catalog article {
  display: grid;
  gap: .55rem;
  align-content: start;
  border: 1px solid rgba(214, 173, 66, .26);
  border-radius: 8px;
  background: #141414;
  padding: 1.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.extension-catalog span {
  width: fit-content;
  border: 1px solid rgba(214, 173, 66, .36);
  border-radius: 4px;
  background: rgba(214, 173, 66, .14);
  color: #f4d984;
  padding: .2rem .45rem;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.extension-catalog h3 {
  margin: .1rem 0 0;
  color: #ffffff;
  font-size: 1.12rem;
}

.extension-catalog p {
  margin: 0;
  color: #d8cfbd;
  line-height: 1.5;
}

.extension-catalog strong {
  color: #f4d984;
  line-height: 1.42;
}

.extension-catalog-note {
  margin: 1.2rem 0 0;
  color: #d8cfbd;
  line-height: 1.55;
}

.commercial-value-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
  color: #ffffff;
}

.commercial-value-copy h2 {
  margin: .85rem 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.commercial-value-copy p {
  margin: 0;
  color: #e4d9c3;
  font-size: 1.08rem;
  line-height: 1.65;
}

.commercial-value-grid {
  display: grid;
  gap: .85rem;
}

.commercial-value-grid article {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 173, 66, .11), rgba(255, 255, 255, .045));
  padding: 1.1rem;
}

.commercial-value-grid span {
  display: block;
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.commercial-value-grid strong {
  display: block;
  margin-top: .35rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.commercial-value-grid p {
  margin: .4rem 0 0;
  color: #d8cfbd;
  line-height: 1.5;
}

.executive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: #070707;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
  color: #ffffff;
}

.executive-copy {
  max-width: 760px;
}

.dark-kicker {
  border-color: rgba(214, 173, 66, .58);
  background: rgba(214, 173, 66, .16);
  color: #f6df9b;
}

.executive-copy h2,
.section-heading h2 {
  margin: .85rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.executive-copy p {
  color: #e4d9c3;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.executive-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.executive-ledger div {
  border: 1px solid rgba(214, 173, 66, .32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 173, 66, .12), rgba(255, 255, 255, .05));
  padding: 1rem;
}

.executive-ledger span,
.boardroom-strip span,
.savings-grid article span {
  display: block;
  color: #d6ad42;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.executive-ledger strong {
  display: block;
  margin-top: .4rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.savings-section {
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 1.5rem;
}

.light-kicker {
  border-color: rgba(214, 173, 66, .45);
  background: rgba(214, 173, 66, .12);
  color: #f4d984;
}

.section-heading h2 {
  color: #ffffff;
}

.savings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.savings-grid article {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #141414;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.savings-grid article span {
  color: #d6ad42;
}

.savings-grid h3 {
  margin: .55rem 0 .55rem;
  color: #ffffff;
  font-size: 1.12rem;
}

.savings-grid p {
  margin: 0;
  color: #d8cfbd;
  line-height: 1.55;
}

.boardroom-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(214, 173, 66, .28);
  border-bottom: 1px solid rgba(214, 173, 66, .28);
  background: #070707;
}

.boardroom-strip div {
  padding: 1.35rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid rgba(214, 173, 66, .24);
}

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

.boardroom-strip span {
  color: #d6ad42;
}

.boardroom-strip strong {
  display: block;
  margin-top: .35rem;
  color: #ffffff;
  font-size: 1.2rem;
}

.pricing-section {
  padding: clamp(2rem, 5vw, 4rem);
  background: #0d0d0d;
  border-bottom: 1px solid rgba(214, 173, 66, .26);
}

.pricing-section .section-heading p {
  color: #d8cfbd;
  font-size: 1.06rem;
  line-height: 1.55;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 1.25rem;
}

.rate-card,
.pricing-estimator {
  border: 1px solid rgba(214, 173, 66, .28);
  border-radius: 8px;
  background: #141414;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.rate-card h3,
.pricing-estimator h3 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.rate-card dl {
  display: grid;
  gap: .7rem;
  margin: 0;
}

.rate-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(214, 173, 66, .16);
  padding-bottom: .65rem;
}

.rate-card dt,
.pricing-input-grid label,
.estimate-summary span {
  color: #d8cfbd;
}

.rate-card dd {
  margin: 0;
  color: #f4d984;
  font-weight: 800;
  text-align: right;
}

.pricing-input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: .75rem;
}

.pricing-input-grid label {
  display: grid;
  gap: .35rem;
  font-weight: 700;
}

.pricing-input-grid .form-control {
  border-color: rgba(214, 173, 66, .34);
}

.estimate-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
}

.estimate-assumptions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0;
}

.estimate-summary div {
  border: 1px solid rgba(214, 173, 66, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: .9rem;
}

.estimate-assumptions div {
  border: 1px solid rgba(214, 173, 66, .2);
  border-radius: 8px;
  background: rgba(214, 173, 66, .065);
  padding: .9rem;
}

.estimate-summary div:nth-child(2) {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .07);
}

.estimate-summary span,
.estimate-assumptions span {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.estimate-summary strong,
.estimate-assumptions strong {
  display: block;
  margin-top: .3rem;
  color: #ffffff;
  font-size: 1.2rem;
}

.estimate-assumptions small {
  display: block;
  margin-top: .4rem;
  color: #d8cfbd;
  line-height: 1.35;
}

.quote-breakdown {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid rgba(214, 173, 66, .22);
  border-radius: 8px;
}

.quote-breakdown h4 {
  margin: 0;
  border-bottom: 1px solid rgba(214, 173, 66, .18);
  color: #ffffff;
  font-size: 1rem;
  padding: .85rem 1rem;
}

.quote-breakdown table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.quote-breakdown th,
.quote-breakdown td {
  border-bottom: 1px solid rgba(214, 173, 66, .14);
  color: #d8cfbd;
  padding: .7rem 1rem;
  text-align: right;
  vertical-align: top;
}

.quote-breakdown th:first-child,
.quote-breakdown td:first-child {
  text-align: left;
}

.quote-breakdown th {
  color: #f4d984;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-breakdown tr:last-child td {
  border-bottom: 0;
}

.quote-breakdown-total td,
.quote-module-subtotal td,
.quote-breakdown-grand-total td {
  color: #ffffff;
  font-weight: 800;
}

.quote-module-row td {
  background: rgba(214, 173, 66, .08);
  color: #f4d984;
  font-size: .86rem;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
}

.quote-module-row span {
  color: #d8cfbd;
  font-weight: 700;
  margin-left: .45rem;
}

.quote-module-subtotal td {
  background: rgba(255, 255, 255, .045);
}

.quote-breakdown-pass-through td {
  color: #efe8d9;
}

.quote-breakdown-grand-total td {
  background: rgba(214, 173, 66, .12);
}

.pricing-note {
  margin: .85rem 0 0;
  color: #d8cfbd;
  line-height: 1.45;
}

.public-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(214, 173, 66, .26);
  background: #050505;
  color: #ffffff;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
}

.public-footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.public-footer-crest {
  display: block;
  width: 72px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.public-footer strong {
  color: #f4d984;
}

.public-footer p {
  margin: .35rem 0 0;
  color: #d8cfbd;
}

.public-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-content: start;
}

.public-footer-links a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.public-footer-links a:hover {
  color: #f4d984;
}

.public-auth {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 720px);
  gap: 2rem;
  align-items: start;
  min-height: calc(100vh - 57px);
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #050505 0%, #101010 62%, #1d1708 100%);
}

.public-auth-copy {
  color: #ffffff;
  padding-top: 1rem;
}

.public-auth-copy h1 {
  margin: .75rem 0;
  font-size: 2.8rem;
}

.public-auth-copy p {
  color: #e8dfcf;
  font-size: 1.1rem;
  line-height: 1.55;
}

.public-auth-card {
  border: 1px solid rgba(214, 173, 66, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  padding: 1.25rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .48);
}

.public-auth-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.public-form-panel {
  margin-top: 1rem;
}

.signup-lock-panel {
  border: 1px solid #d8e4dc;
  border-radius: 6px;
  background: #f7fbf7;
  padding: 1.25rem;
}

.signup-lock-panel h2 {
  margin: .35rem 0 .5rem;
  color: #173236;
  font-size: 1.2rem;
}

.signup-lock-panel p {
  color: #526861;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.page-header h1 {
  font-size: 1.75rem;
  margin: 0;
}

.page-header p {
  color: #62717c;
  margin: .25rem 0 0;
}

.tenant-chip {
  border: 1px solid #b7c9d4;
  border-radius: 4px;
  background: #ffffff;
  color: #24313a;
  padding: .45rem .7rem;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1rem;
}

.metric-card {
  border: 1px solid #d7e0e5;
  border-radius: 6px;
  background: #ffffff;
  padding: 1rem;
}

.metric-card span {
  display: block;
  color: #60707a;
  font-size: .875rem;
  margin-bottom: .5rem;
}

.metric-card strong {
  font-size: 1.35rem;
}

.work-surface {
  border: 1px solid #d7e0e5;
  border-radius: 6px;
  background: #ffffff;
}

.work-surface header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5ebef;
  padding: .85rem 1rem;
}

.work-surface h2 {
  font-size: 1rem;
  margin: 0;
}

.work-surface header span {
  color: #60707a;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #e5ebef;
}

.workflow-list div {
  background: #ffffff;
  padding: .8rem 1rem;
}

.form-panel,
.data-panel {
  border: 1px solid #d7e0e5;
  border-radius: 6px;
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 1rem;
}

.form-panel h2,
.data-panel h2 {
  font-size: 1rem;
  margin: 0 0 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.command-row {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.workflow-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.workflow-links a {
  border: 1px solid #cad5dc;
  border-radius: 4px;
  background: #ffffff;
  color: #24313a;
  padding: .55rem .7rem;
  text-decoration: none;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .5rem;
  margin-bottom: 1rem;
}

.inline-rate-form {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(120px, 1fr) auto;
  gap: .35rem;
  align-items: center;
}

.receiving-filter {
  grid-template-columns: 180px 180px auto;
  justify-content: start;
}

.line-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}

.line-summary span {
  display: block;
  color: #65747f;
  font-size: .8rem;
  margin-bottom: .25rem;
}

.line-summary strong {
  display: block;
}

.status-pill {
  display: inline-block;
  border: 1px solid #b7c9d4;
  border-radius: 4px;
  background: #f7fafb;
  color: #26343d;
  padding: .15rem .45rem;
  font-size: .8rem;
  font-weight: 600;
}

.number-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.muted {
  color: #667783;
  font-size: .85rem;
}

.scanner-input {
  font-size: 1.1rem;
  font-weight: 600;
}

.table {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .app-body {
    overflow: auto;
  }

  .ajax-shell {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 57px);
  }

  .ajax-sidebar {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid #dce3e8;
  }

  .sidebar-scroll {
    overflow: visible;
  }

  .ajax-shell.sidebar-collapsed {
    grid-template-columns: 1fr;
  }

  .ajax-shell.sidebar-collapsed .sidebar-identity,
  .ajax-shell.sidebar-collapsed .ajax-context-form,
  .ajax-shell.sidebar-collapsed .sidebar-nav-copy,
  .ajax-shell.sidebar-collapsed .sidebar-settings-copy {
    display: grid;
  }

  .ajax-shell.sidebar-collapsed .ajax-nav-link,
  .ajax-shell.sidebar-collapsed .sidebar-settings-link {
    justify-content: flex-start;
    padding: .4rem .55rem;
  }

  .ajax-content {
    height: auto;
    overflow: visible;
  }

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

  .public-hero,
  .public-auth,
  .platform-section,
  .commercial-value-section,
  .module-sales-section,
  .module-visual-grid,
  .module-detail-hero {
    grid-template-columns: 1fr;
  }

  .public-hero-status {
    max-width: 420px;
  }

  .module-spotlight {
    min-height: 300px;
  }

  .public-band {
    grid-template-columns: 1fr;
  }

  .public-feature {
    border-right: 0;
  }

  .executive-panel,
  .module-grid,
  .module-detail-grid,
  .module-included-strip,
  .extension-roadmap,
  .extension-catalog,
  .pricing-layout,
  .pricing-input-grid,
  .estimate-assumptions,
  .estimate-summary,
  .savings-grid,
  .boardroom-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-header {
    display: grid;
  }

  .metric-grid,
  .workflow-list,
  .form-grid,
  .tight-grid,
  .line-summary,
  .inline-rate-form,
  .receiving-filter {
    grid-template-columns: 1fr;
  }

  .public-hero h1 {
    font-size: 3rem;
  }

  .public-logo {
    width: min(360px, 100%);
  }

  .public-hero p,
  .public-auth-copy p {
    font-size: 1rem;
  }

  .module-spotlight {
    min-height: 360px;
  }

  .module-spotlight article {
    padding: 1.25rem;
  }

  .public-module-strip {
    top: 56px;
  }

  .public-footer {
    display: grid;
  }

  .public-auth {
    padding: 1.25rem;
  }

  .executive-panel,
  .module-grid,
  .module-detail-grid,
  .module-included-strip,
  .extension-roadmap,
  .extension-catalog,
  .module-sales-section,
  .module-visual-grid,
  .pricing-layout,
  .pricing-input-grid,
  .estimate-assumptions,
  .estimate-summary,
  .savings-grid,
  .boardroom-strip,
  .executive-ledger {
    grid-template-columns: 1fr;
  }

  .boardroom-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 173, 66, .24);
  }

  .boardroom-strip div:last-child {
    border-bottom: 0;
  }

  .module-included-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 173, 66, .24);
  }

  .module-included-strip div:last-child {
    border-bottom: 0;
  }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
