:root {
  /*
    Landing density is CSS-first and mirrored by the inline bootstrap stylesheet
    so the landing/preloading frame uses the final scale before first paint.
  */
  --landing-blue: #337eef;
  --landing-blue-soft: #eef6f7;
  --landing-sidebar: #000000;
  --landing-text: #111b16;
  --landing-muted: #5d6962;
  --landing-border: #c3cec7;
  --landing-radius: 4px;
  --landing-zoom: 0.94;
  --landing-topbar-height: clamp(48px, 6vh, 56px);
  --landing-inline-gap: clamp(16px, 2.2vw, 26px);
  --landing-page-inline-padding: clamp(20px, 3vw, 36px);
  --landing-layout-viewport-width: calc(100vw / var(--landing-zoom));
  --landing-control-height: clamp(31px, 4.1vh, 34px);
  --landing-control-font-size: clamp(13px, 1vw, 14px);
  --landing-control-padding-x: clamp(8px, 0.8vw, 11px);
  --landing-loading-title-size: clamp(28px, 4vh, 34px);
  --pryzenta-loading-logo-size: 90px;
  --pryzenta-loading-logo-url: none;
  --landing-resize-transition:
    height 160ms ease,
    padding 160ms ease,
    width 160ms ease;
  --landing-app-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  color: var(--landing-text);
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scrollbar-gutter: auto;
  scroll-behavior: smooth;
  width: 100%;
}

html.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html:not([data-pryzenta-landing-ready="true"]),
body.landing-loading {
  overflow-y: hidden;
}

html:not([data-pryzenta-landing-ready="true"])::before,
body.landing-loading::before {
  background: #ffffff;
  content: "";
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

html[data-pryzenta-loading-logo="true"]:not([data-pryzenta-landing-ready="true"])::after,
html[data-pryzenta-loading-logo="true"] body.landing-loading::after {
  animation: pryzentaLoadingLogoFlash 1.1s ease-in-out infinite;
  background-image: var(--pryzenta-loading-logo-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  content: "";
  display: block;
  filter: none;
  height: var(--pryzenta-loading-logo-size);
  left: 50%;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--pryzenta-loading-logo-size);
  z-index: 10001;
}

html[data-pryzenta-loading-logo="true"] body.landing-loading::after {
  content: none;
  display: none;
}

body.landing-loading > :not(script) {
  visibility: hidden;
}

@keyframes pryzentaLoadingLogoFlash {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes pryzentaLandingLoadingPulse {
  0%,
  100% {
    opacity: 0.32;
  }
  50% {
    opacity: 1;
  }
}

body {
  margin: 0;
  min-height: calc(100vh / var(--landing-zoom));
  min-width: calc(320px / var(--landing-zoom));
  background: #ffffff;
  max-width: none;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  position: relative;
  touch-action: pan-y;
  width: var(--landing-layout-viewport-width);
  zoom: var(--landing-zoom);
}

body.modal-open {
  left: 0;
  overflow: hidden;
  overscroll-behavior: none;
  padding-right: var(--landing-scrollbar-compensation, 0px);
  position: fixed;
  right: 0;
  touch-action: none;
  width: var(--landing-layout-viewport-width);
}

.landing-topbar {
  align-items: center;
  background: var(--landing-sidebar);
  color: #ffffff;
  display: flex;
  height: var(--landing-topbar-height);
  justify-content: space-between;
  left: 0;
  padding: 0 var(--landing-inline-gap);
  position: fixed;
  right: 0;
  top: 0;
  transition: var(--landing-resize-transition);
  z-index: 10;
}

.landing-brand,
.landing-nav {
  align-items: center;
  display: flex;
}

.landing-brand {
  color: #ffffff;
  gap: 12px;
  text-decoration: none;
}

.landing-brand-mark {
  align-items: center;
  background: var(--landing-blue);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.landing-nav {
  gap: 10px;
}

.landing-nav-link,
.landing-primary-link {
  align-items: center;
  border-radius: var(--landing-radius);
  display: inline-flex;
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  height: var(--landing-control-height);
  justify-content: center;
  padding: 0 14px;
  text-decoration: none;
}

.landing-nav-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
}

.landing-primary-link {
  background: var(--landing-blue);
  border: 1px solid var(--landing-blue);
  color: #ffffff;
}

.landing-profile-icon {
  align-items: center;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.landing-profile-icon svg {
  display: block;
  fill: none;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2.4;
  width: 28px;
}

.landing-profile-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  overflow: visible;
  padding: 0;
  width: 38px;
}

.landing-profile-button img,
.landing-profile-button svg {
  border-radius: 50%;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.landing-profile-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.32);
  outline: none;
}

.landing-profile-menu {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  box-shadow: 0 18px 42px rgba(11, 23, 32, 0.18);
  color: var(--landing-text);
  font-family: var(--landing-app-font);
  padding: 16px;
  position: fixed;
  top: calc(var(--landing-topbar-height) + 8px);
  width: min(360px, calc(100vw - 32px));
  z-index: 100;
}

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

.landing-profile-avatar {
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 56px;
  height: 56px;
  overflow: hidden;
  padding: 0;
  width: 56px;
}

.landing-profile-avatar img,
.landing-profile-avatar svg {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.landing-profile-copy {
  min-width: 0;
}

.landing-profile-name {
  background: transparent;
  border: 0;
  color: var(--landing-text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--landing-app-font);
  line-height: 1.15;
  overflow: hidden;
  padding: 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.landing-profile-edit-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(51, 126, 239, 0.24);
  outline: none;
}

.landing-profile-email {
  color: #5d6962;
  font-size: var(--landing-control-font-size);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-profile-company-meta {
  color: var(--landing-muted);
  font-size: var(--landing-control-font-size);
  line-height: 1.25;
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-profile-company-meta span {
  color: inherit;
  font-weight: 400;
}

.landing-profile-actions {
  align-items: center;
  border-top: 1px solid var(--landing-border);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
}

.landing-profile-link,
.landing-profile-signout {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--landing-app-font);
  font-size: var(--landing-control-font-size);
  font-weight: 700;
  line-height: 1.25;
  padding: 0;
  white-space: nowrap;
}

.landing-profile-link {
  color: var(--landing-text);
}

.landing-profile-signout {
  color: #c9482b;
}

.global-profile-modal {
  max-width: 720px;
  padding: 24px;
  width: min(720px, calc(100vw - 48px));
}

.global-profile-modal-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.global-profile-modal-header h2 {
  margin: 0;
}

.global-profile-form {
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  display: grid;
  gap: 16px;
  padding: 16px;
}

.global-profile-form label {
  color: var(--landing-text);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.global-profile-form input:not([type="file"]) {
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  color: var(--landing-text);
  font: inherit;
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  height: var(--landing-control-height);
  min-width: 0;
  padding: 0 var(--landing-control-padding-x);
  width: 100%;
}

.global-profile-form input[readonly] {
  background: #f7faf9;
  color: #5d6962;
}

.global-profile-logo-upload {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.profile-logo-preview {
  align-items: center;
  background: #f7f9f6;
  border: 0;
  border-radius: 50%;
  display: flex;
  flex: 0 0 74px;
  height: 74px;
  justify-content: center;
  overflow: hidden;
  width: 74px;
}

.profile-logo-preview.has-logo {
  background: #ffffff;
}

.profile-logo-preview img,
.profile-logo-preview svg,
.profile-default-avatar {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-logo-controls {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.upload-requirements {
  color: #6f7a74;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
}

.company-file-row {
  align-items: center;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  display: inline-flex;
  gap: 6px;
  min-height: var(--landing-control-height);
  max-width: 100%;
  padding: 3px 8px;
  width: fit-content;
}

.file-picker-button {
  align-items: center;
  background: #f7f9f6;
  border: 1px solid var(--landing-border);
  border-radius: calc(var(--landing-radius) - 2px);
  color: var(--landing-text);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--landing-app-font);
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  justify-content: center;
  min-height: calc(var(--landing-control-height) - 4px);
  min-width: 0;
  padding: 0 var(--landing-control-padding-x);
  white-space: nowrap;
}

.file-picker-button:hover {
  border-color: var(--landing-blue);
}

.file-name-text {
  color: var(--landing-text);
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  white-space: nowrap;
}

.profile-logo-upload input[type="file"] {
  display: none;
}

.global-profile-modal .button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--landing-radius);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--landing-app-font);
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  height: var(--landing-control-height);
  justify-content: center;
  line-height: 1.2;
  padding: 0 16px;
}

.global-profile-modal .button.primary {
  background: var(--landing-blue);
  border-color: var(--landing-blue);
  color: #ffffff;
}

.global-profile-modal .button.secondary {
  background: #ffffff;
  border-color: var(--landing-border);
  color: #111b16;
}

.global-profile-modal .button.secondary:hover {
  background: #f7f9f6;
  border-color: var(--landing-blue);
  color: #111b16;
}

.global-profile-modal .text-button {
  background: transparent;
  border: 0;
  color: var(--landing-text);
  cursor: pointer;
  font-family: var(--landing-app-font);
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
}

.global-profile-modal .text-button.danger {
  color: #c9482b;
}

.global-profile-modal [data-global-profile-logo-delete].text-button {
  font-weight: 400;
}

.global-profile-modal .button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.settings-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.global-profile-modal .profile-settings-actions {
  flex-wrap: nowrap;
}

.global-profile-modal .profile-settings-actions .save-message {
  flex: 1 1 0;
  margin-left: 4px;
  min-width: 0;
  white-space: normal;
}

.save-message {
  align-items: center;
  color: #2f9e44;
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  min-height: var(--landing-control-height);
}

.save-message.error,
.save-message.error-message {
  color: #c64e39;
}

.save-message.saving-message {
  color: #5d6962;
}

@media (max-width: 640px) {
  .global-profile-modal .profile-settings-actions {
    flex-wrap: wrap;
  }

  .global-profile-modal .profile-settings-actions .save-message {
    flex: 1 1 100%;
    flex-basis: 100%;
    margin-left: 0;
    white-space: normal;
  }
}

.global-profile-crop-modal {
  align-items: center;
  background: rgba(17, 27, 22, 0.46);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10040;
}

.global-profile-crop-modal[hidden] {
  display: none;
}

.profile-logo-crop-dialog {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  box-shadow: 0 18px 42px rgba(11, 23, 32, 0.18);
  display: grid;
  gap: 16px;
  max-width: 420px;
  padding: 18px;
  width: min(420px, calc(100vw - 48px));
}

.profile-logo-crop-stage {
  background: #eef4f4;
  border-radius: var(--landing-radius);
  cursor: grab;
  height: 280px;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

.profile-logo-crop-stage::after {
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 999px rgba(11, 23, 32, 0.42);
  content: "";
  height: 220px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
}

.profile-logo-crop-image {
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform-origin: center;
  user-select: none;
}

.profile-logo-crop-controls,
.profile-logo-crop-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.profile-logo-crop-controls input[type="range"] {
  flex: 1 1 auto;
  min-width: 0;
}

.profile-logo-crop-actions {
  justify-content: flex-end;
}

.landing-login-backdrop {
  align-items: center;
  background: rgba(17, 27, 22, 0.32);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
  padding: 28px;
  position: fixed;
  right: 0;
  touch-action: none;
  top: 0;
  width: 100%;
  z-index: 10020;
}

.landing-login-modal {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  box-shadow: 0 18px 42px rgba(11, 23, 32, 0.18);
  max-height: calc(100dvh - 56px);
  max-width: 420px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px;
  touch-action: pan-y;
  width: min(420px, calc(100vw - 48px));
  -webkit-overflow-scrolling: touch;
}

.landing-login-modal h2,
.landing-company-create-modal h2,
.landing-company-select-modal h2 {
  color: var(--landing-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
}

.landing-login-form {
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  display: grid;
  gap: 14px;
  padding: 14px;
}

.landing-login-form label {
  color: var(--landing-text);
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.landing-company-create-form label {
  color: var(--landing-text);
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.landing-login-form label.field-error {
  color: #c64e39;
}

.landing-login-form input {
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  color: var(--landing-text);
  font: inherit;
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  height: var(--landing-control-height);
  padding: 0 var(--landing-control-padding-x);
  -webkit-text-fill-color: var(--landing-text);
}

.landing-password-field {
  display: block;
  position: relative;
}

.landing-password-field input {
  padding-right: 42px;
  width: 100%;
}

.landing-password-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: rgba(3, 123, 123, 0.72);
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 3px;
  top: 2px;
  touch-action: manipulation;
  width: 34px;
}

.landing-password-toggle:hover,
.landing-password-toggle:focus-visible {
  background: rgba(3, 123, 123, 0.08);
  color: var(--landing-blue);
  outline: none;
}

.landing-password-toggle svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.landing-login-form label.field-error input {
  border-color: #c64e39;
}

.landing-login-form input:focus {
  border-color: var(--landing-blue);
  box-shadow: 0 0 0 3px rgba(3, 123, 123, 0.16);
  outline: none;
}

.landing-login-message {
  align-items: center;
  border: 0;
  color: #c64e39;
  display: inline-flex;
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  line-height: 1.2;
  margin-left: 4px;
  min-height: var(--landing-control-height);
  padding: 0;
}

.landing-login-message.success {
  color: #4a9b4c;
}

.landing-login-message:empty {
  display: none;
}

.landing-forgot-password-button {
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: var(--landing-blue);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  justify-self: flex-start;
  margin-top: -4px;
  padding: 0;
  text-align: left;
  width: fit-content;
}

.landing-login-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.landing-login-actions .landing-login-message {
  margin-left: 4px;
}

.landing-button,
.landing-button-secondary {
  align-items: center;
  border-radius: var(--landing-radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: var(--landing-control-font-size);
  height: var(--landing-control-height);
  justify-content: center;
  padding: 0 14px;
}

.landing-button {
  background: var(--landing-blue);
  border: 1px solid var(--landing-blue);
  color: #ffffff;
}

.landing-button-secondary {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  color: var(--landing-text);
}

.landing-login-company-list {
  display: grid;
  gap: 10px;
}

.landing-login-company-list button {
  color: var(--landing-text);
  font-size: var(--landing-control-font-size);
  font-weight: 400;
  justify-content: flex-start;
  padding: 0 11px;
  width: 100%;
}

.landing-company-create-modal {
  max-width: 680px;
  width: min(680px, calc(100vw - 48px));
}

.landing-company-create-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-company-create-form label:first-child,
.landing-company-create-actions,
.landing-onboarding-copy {
  grid-column: 1 / -1;
}

.landing-company-create-actions {
  align-items: flex-start;
  flex-wrap: wrap;
}

.landing-company-create-actions .landing-button,
.landing-company-create-actions .landing-button-secondary {
  flex: 0 0 auto;
  white-space: nowrap;
}

.landing-company-create-actions .landing-button {
  min-width: 168px;
}

input[data-landing-country-picker] {
  background-image:
    linear-gradient(45deg, transparent 50%, #337eef 50%),
    linear-gradient(135deg, #337eef 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 11px) 50%;
  background-repeat: no-repeat;
  background-size: 7px 7px, 7px 7px;
  padding-right: 34px;
}

.landing-country-picker-menu {
  background: #fff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: var(--landing-text);
  display: flex;
  flex-direction: column;
  max-height: min(320px, calc(100vh - 24px));
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 31000;
}

.landing-country-picker-menu[hidden] {
  display: none;
}

.landing-country-picker-options {
  overflow: auto;
  padding: 7px;
}

.landing-country-picker-option {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--landing-text);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 16px;
  justify-content: flex-start;
  min-height: 38px;
  padding: 8px 12px;
  text-align: left;
  width: 100%;
}

.landing-country-picker-option:hover,
.landing-country-picker-option.is-active {
  background: rgba(3, 123, 123, 0.08);
}

.landing-country-picker-empty {
  color: var(--landing-muted);
  font-size: 15px;
  padding: 12px;
}

.landing-onboarding-copy {
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 720px) {
  .landing-company-create-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1440px), (max-height: 820px) {
  :root {
    --landing-topbar-height: 52px;
    --landing-inline-gap: clamp(14px, 1.8vw, 20px);
    --landing-control-height: 32px;
    --landing-control-font-size: 13px;
    --landing-loading-title-size: clamp(26px, 3.8vh, 32px);
  }
}

@media (max-height: 740px) {
  :root {
    --landing-topbar-height: 48px;
    --landing-loading-title-size: 28px;
  }
}

.landing-page {
  display: flex;
  flex-direction: column;
  font-family: var(--landing-app-font);
  min-height: 100vh;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  padding: calc(var(--landing-topbar-height) + 20px) var(--landing-page-inline-padding) 28px;
  width: 100%;
}

.landing-section {
  align-items: center;
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  min-width: 0;
  width: 100%;
}

.landing-section-copy {
  min-width: 0;
}

.landing-eyebrow {
  color: var(--landing-blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.landing-section-title,
.landing-section-text,
p {
  margin: 0;
}

.landing-section-title {
  color: var(--landing-title-color, var(--landing-text));
  font-size: clamp(24px, calc(var(--landing-title-size, 40px) * 0.9), 40px);
  line-height: 1.16;
  max-width: 760px;
}

.landing-section-text {
  color: var(--landing-content-color, var(--landing-muted));
  font-size: clamp(14px, calc(var(--landing-content-size, 18px) * 0.9), 16px);
  font-weight: 400;
  line-height: 1.45;
  margin-top: 12px;
  max-width: 720px;
  white-space: pre-wrap;
}

.landing-visual {
  aspect-ratio: 4 / 3;
  background: var(--landing-blue-soft);
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
  box-sizing: border-box;
  justify-self: center;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  width: 80%;
}

.landing-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.landing-generated-visual {
  align-items: center;
  display: grid;
  gap: 12px;
  padding: clamp(14px, 2.2vw, 24px);
}

.landing-chart-panel,
.landing-metric-panel {
  background: #ffffff;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius);
}

.landing-chart-panel {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  height: 62%;
  padding: 18px;
}

.landing-chart-panel span {
  background: var(--landing-blue);
  border-radius: 4px 4px 0 0;
  display: block;
}

.landing-chart-panel span:nth-child(1) {
  height: 42%;
}

.landing-chart-panel span:nth-child(2) {
  height: 64%;
}

.landing-chart-panel span:nth-child(3) {
  height: 50%;
}

.landing-chart-panel span:nth-child(4) {
  height: 82%;
}

.landing-metric-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.landing-metric-panel strong,
.landing-metric-panel span {
  background: #dce7e4;
  border-radius: 999px;
  display: block;
  height: 12px;
}

.landing-metric-panel strong {
  background: var(--landing-blue);
  width: 44%;
}

.landing-metric-panel span:first-of-type {
  width: 72%;
}

.landing-metric-panel span:last-of-type {
  width: 58%;
}

.landing-sections {
  display: grid;
  gap: 30px;
  margin-bottom: 48px;
  margin-top: 28px;
  min-width: 0;
}

.landing-footer {
  background: var(--landing-footer-bg, #061a3a);
  border-radius: 0;
  box-sizing: border-box;
  color: var(--landing-footer-text, #ffffff);
  font-family: var(--landing-app-font);
  font-size: var(--landing-footer-font-size, 14px);
  margin: auto calc(var(--landing-page-inline-padding) * -1) -28px;
  max-width: none;
  min-width: 0;
  padding: var(--landing-footer-padding-top, 48px) var(--landing-footer-padding-right, 24px) var(--landing-footer-padding-bottom, 48px) var(--landing-footer-padding-left, 24px);
  text-align: var(--landing-footer-align, center);
  width: calc(100% + (var(--landing-page-inline-padding) * 2));
}

.landing-footer-inner {
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: var(--landing-footer-max-width, 1100px);
  min-width: 0;
}

.landing-footer-logo {
  justify-self: var(--landing-footer-logo-align, center);
}

.landing-footer-logo img {
  display: block;
  height: auto;
  max-height: var(--landing-footer-logo-size, 64px);
  max-width: var(--landing-footer-logo-size, 64px);
  object-fit: contain;
}

.landing-footer-links,
.landing-footer-socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.landing-footer[style*="--landing-footer-align: left"] .landing-footer-links,
.landing-footer[style*="--landing-footer-align: left"] .landing-footer-socials {
  justify-content: flex-start;
}

.landing-footer[style*="--landing-footer-align: right"] .landing-footer-links,
.landing-footer[style*="--landing-footer-align: right"] .landing-footer-socials {
  justify-content: flex-end;
}

.landing-footer a {
  color: var(--landing-footer-link, #ffffff);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.landing-footer a:hover,
.landing-footer a:focus-visible {
  color: var(--landing-footer-link-hover, #337eef);
}

.landing-footer-social {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.landing-footer-social-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: var(--landing-footer-bg, #061a3a);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.landing-footer-social-icon svg {
  display: block;
  height: 14px;
  width: 14px;
}

.landing-footer-description {
  color: var(--landing-footer-text, #ffffff);
  line-height: 1.55;
}

.landing-footer-description h1,
.landing-footer-description h2,
.landing-footer-description h3 {
  color: inherit;
  font-size: var(--landing-footer-heading-size, 18px);
  line-height: 1.25;
  margin: 0 0 8px;
}

.landing-footer-description p,
.landing-footer-description ul,
.landing-footer-description ol {
  margin: 0;
}

.landing-footer-description ul,
.landing-footer-description ol {
  display: inline-block;
  padding-left: 20px;
  text-align: left;
}

.landing-footer-copyright {
  color: color-mix(in srgb, var(--landing-footer-text, #ffffff) 78%, transparent);
  font-size: max(12px, calc(var(--landing-footer-font-size, 14px) - 1px));
}

.landing-section {
  border-top: 1px solid var(--landing-border);
  padding-top: 30px;
}

.landing-hero {
  border-top: 0;
  padding-top: 0;
}

.landing-section.media-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.landing-section.media-left .landing-section-copy {
  order: 2;
}

.landing-section.media-left .landing-visual {
  justify-self: start;
  order: 1;
}

.landing-section.media-right .landing-section-copy {
  order: 1;
}

.landing-section.media-right .landing-visual {
  justify-self: end;
  order: 2;
}

@media (max-width: 840px) {
  .landing-topbar {
    padding: 0 16px;
  }

  .landing-nav-link {
    display: none;
  }

  .landing-page {
    --landing-page-inline-padding: 18px;
  }

  .landing-section,
  .landing-section.media-left,
  .landing-section.media-right {
    grid-template-columns: 1fr;
  }

  .landing-section.media-left .landing-section-copy,
  .landing-section.media-left .landing-visual,
  .landing-section.media-right .landing-section-copy,
  .landing-section.media-right .landing-visual {
    order: 0;
  }

  .landing-section.media-left .landing-visual,
  .landing-section.media-right .landing-visual {
    justify-self: center;
  }
}

@media (hover: none) and (pointer: coarse) {
  :root {
    --landing-zoom: 1;
    --landing-control-font-size: 16px;
    --landing-loading-title-size: 30px;
  }

  html {
    min-width: 0;
    overflow-x: hidden;
    width: 100%;
  }

  body {
    min-height: 100vh;
    min-width: 0;
    overflow-x: hidden;
    width: 100%;
    zoom: 1;
  }

  .landing-topbar {
    box-sizing: border-box;
    gap: 10px;
    padding: 0 14px;
    width: 100%;
  }

  .landing-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .landing-brand > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .landing-nav {
    flex: 0 0 auto;
    gap: 8px;
    min-width: 0;
  }

  .landing-nav-link,
  .landing-primary-link {
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 16px;
    height: 34px;
    padding: 0 11px;
  }

  .landing-profile-icon {
    display: none;
  }

  .landing-page {
    --landing-page-inline-padding: 16px;
    padding: calc(var(--landing-topbar-height) + 20px) var(--landing-page-inline-padding) 28px;
    width: 100%;
  }

  .landing-section,
  .landing-section.media-left,
  .landing-section.media-right {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .landing-section-title {
    font-size: clamp(28px, 9vw, 40px);
    overflow-wrap: anywhere;
  }

  .landing-section-text {
    font-size: 16px;
  }

  .landing-login-modal {
    max-height: calc(100dvh - 32px);
    overflow: auto;
    width: min(560px, calc(100vw - 24px));
  }

  .landing-company-create-modal {
    width: min(680px, calc(100vw - 24px));
  }

  .landing-login-form input,
  input[data-landing-country-picker],
  .landing-button,
  .landing-button-secondary {
    font-size: 16px;
  }
}
