body, body.light {
  --primary: #055fae;
  --on-primary: #ffffff;
  --primary-container: #d4e3ff;
  --on-primary-container: #001c3a;
  --secondary: #545f71;
  --on-secondary: #ffffff;
  --secondary-container: #d8e3f8;
  --on-secondary-container: #111c2b;
  --tertiary: #6e5676;
  --on-tertiary: #ffffff;
  --tertiary-container: #f7d8ff;
  --on-tertiary-container: #271430;
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #410002;
  --background: #fdfcff;
  --on-background: #1a1c1e;
  --surface: #faf9fd;
  --on-surface: #1a1c1e;
  --surface-variant: #e0e2ec;
  --on-surface-variant: #43474e;
  --outline: #74777f;
  --outline-variant: #c3c6cf;
  --shadow: #000000;
  --scrim: #000000;
  --inverse-surface: #2f3033;
  --inverse-on-surface: #f1f0f4;
  --inverse-primary: #a5c8ff;
  --surface-dim: #dad9dd;
  --surface-bright: #faf9fd;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f4f3f7;
  --surface-container: #eeedf1;
  --surface-container-high: #e9e8eb;
  --surface-container-highest: #e3e2e6;
  --success: #2e8540;
}
body.dark, body.light.dark {
  --primary: #a5c8ff;
  --on-primary: #00315f;
  --primary-container: #004786;
  --on-primary-container: #d4e3ff;
  --secondary: #bcc7dc;
  --on-secondary: #273141;
  --secondary-container: #3d4758;
  --on-secondary-container: #d8e3f8;
  --tertiary: #dabde2;
  --on-tertiary: #3d2846;
  --tertiary-container: #553f5d;
  --on-tertiary-container: #f7d8ff;
  --error: #ffb4ab;
  --on-error: #690005;
  --error-container: #93000a;
  --on-error-container: #ffb4ab;
  --background: #1a1c1e;
  --on-background: #e3e2e6;
  --surface: #121316;
  --on-surface: #e3e2e6;
  --surface-variant: #43474e;
  --on-surface-variant: #c3c6cf;
  --outline: #8d9199;
  --outline-variant: #43474e;
  --shadow: #000000;
  --scrim: #000000;
  --inverse-surface: #e3e2e6;
  --inverse-on-surface: #2f3033;
  --inverse-primary: #055fae;
  --surface-dim: #121316;
  --surface-bright: #38393c;
  --surface-container-lowest: #0d0e11;
  --surface-container-low: #1a1c1e;
  --surface-container: #1e2023;
  --surface-container-high: #292a2d;
  --surface-container-highest: #343538;
}

figure.logo {
  position: relative;
  margin-bottom: 2em;
}
figure.logo span {
  color: #276fbf;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.5em;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  transform: translateY(100%);
}

ol.steps {
  display: flex;
  width: fit-content;
  margin-left: 0;
  padding-right: 0;
  list-style-type: none;
  position: relative;
}
ol.steps::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--primary);
  z-index: -2;
}
ol.steps li {
  counter-increment: step-counter;
  width: 33.333333%;
  position: relative;
  padding-top: 3em;
  color: var(--primary);
  padding-left: 2em;
}
ol.steps li:first-child {
  padding-left: 0;
}
ol.steps li::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: counter(step-counter);
  display: block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: var(--on-primary);
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 0.5em;
}
ol.steps li:nth-of-type(1)::after, ol.steps li:nth-of-type(3)::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: calc(50% - 1em);
  height: 2px;
  background: var(--surface);
  z-index: -1;
}
ol.steps li:nth-of-type(3)::after {
  left: auto;
  right: 0;
  width: calc(50% - 1em);
}
ol.steps li.active {
  font-weight: bold;
}
ol.steps li.active::before {
  background: var(--primary);
  color: var(--on-primary);
}

.grid.integrations a {
  border-radius: 0.5em;
  display: flex;
  flex-direction: column;
  padding: 1em;
  transition: all 0.3s;
}
.grid.integrations a:hover {
  background: rgba(5, 95, 174, 0.25);
  color: var(--on-primary);
}
.grid.integrations a img {
  max-width: 100%;
}

main a {
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s;
}
main a:hover {
  text-decoration: underline;
}

.success-text {
  color: var(--success);
}

.contain {
  object-fit: contain !important;
}

/*# sourceMappingURL=style.css.map */
