/* frontend/styles/index.css */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-style: flat;
  width: 100%;
  will-change: transform;
  z-index: 1;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform .3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  height: 28px;
  right: -17px;
  top: -6px;
  width: 34px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  bottom: -17px;
  height: 34px;
  right: -6px;
  width: 28px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
.noUi-target {
  background: #fafafa;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3fb8af;
}
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ebebeb,
    0 3px 6px -3px #bbb;
  cursor: default;
}
.noUi-active {
  box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ddd,
    0 3px 6px -3px #bbb;
}
.noUi-handle:after,
.noUi-handle:before {
  background: #e8e7e6;
  content: "";
  display: block;
  height: 14px;
  left: 14px;
  position: absolute;
  top: 6px;
  width: 1px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  height: 1px;
  left: 6px;
  top: 14px;
  width: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
[disabled] .noUi-connect {
  background: #b8b8b8;
}
[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  color: #999;
  position: absolute;
}
.noUi-value {
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
.noUi-marker {
  background: #ccc;
  position: absolute;
}
.noUi-marker-large,
.noUi-marker-sub {
  background: #aaa;
}
.noUi-pips-horizontal {
  height: 80px;
  left: 0;
  padding: 10px 0;
  top: 100%;
  width: 100%;
}
.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  height: 5px;
  margin-left: -1px;
  width: 2px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
.noUi-pips-vertical {
  height: 100%;
  left: 100%;
  padding: 0 10px;
  top: 0;
}
.noUi-value-vertical {
  padding-left: 25px;
  transform: translateY(-50%);
}
.noUi-rtl .noUi-value-vertical {
  transform: translateY(50%);
}
.noUi-marker-vertical.noUi-marker {
  height: 2px;
  margin-top: -1px;
  width: 5px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  color: #000;
  display: block;
  padding: 5px;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  transform: translate(-50%);
}
.noUi-vertical .noUi-tooltip {
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  bottom: 10px;
  left: auto;
  transform: translate(50%);
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  right: 28px;
  top: auto;
  transform: translateY(-18px);
}
:root {
  --layout-width-min:360px;
  --layout-width-max:1280px;
  --layout-header-height:80px;
  --space-xs:.25rem;
  --space-s:.5rem;
  --space-sm:.75rem;
  --space-m:1rem;
  --space-ml:1.25rem;
  --space-l:1.5rem;
  --space-xl:3rem;
  --space-xxl:5rem;
  --space-inline-xs:var(--space-xs);
  --space-inline-s:var(--space-s);
  --space-inline-m:var(--space-m);
  --space-inline-l:var(--space-l);
  --space-inline-xl:var(--space-xl);
  --space-stack-s:var(--space-s);
  --space-stack-m:var(--space-m);
  --space-stack-ml:var(--space-ml);
  --space-stack-l:var(--space-l);
  --space-stack-xl:var(--space-xl);
  --space-stack-xxl:var(--space-xxl);
  --space-inset-square-s:var(--space-s);
  --space-inset-square-sm:var(--space-sm);
  --space-inset-square-m:var(--space-m);
  --space-inset-square-l:var(--space-l);
  --space-inset-square-xl:var(--space-xl);
  --space-inset-squish-s:var(--space-s) var(--space-ml);
  --space-inset-squish-m:var(--space-sm) var(--space-l);
  --space-inset-squish-l:var(--space-m) var(--space-l);
  --space-inset-stretch-xl:var(--space-xl) var(--space-l);
  --misc-open-arrow:polygon(0 10%,10% 0,50% 40%,90% 0,100% 10%,50% 60%);
  --misc-close-arrow:polygon(0 90%,10% 100%,50% 60%,90% 100%,100% 90%,50% 40%);
  --font-line-height-base:1.5;
  --font-line-height-tall:1.8;
  --font-size-heading1:64px;
  --font-size-heading2:48px;
  --font-size-heading3:38px;
  --font-size-heading4:30px;
  --font-size-heading-inline:20px;
  --font-size-text-prominent:24px;
  --font-size-text-emphasis:18px;
  --font-size-text-base:16px;
  --font-size-text-subtle:14px;
  --font-size-logo:32px;
  --font-size-header:18px;
  --font-size-button:14px;
  --font-size-footer:14px;
  --color-brand-hue:135;
  --color-brand:hsl(var(--color-brand-hue) 50% 30%);
  --color-brand-hover:hsl(var(--color-brand-hue) 20% 50%);
  --color-bg:#fcfcfd;
  --color-bg-secondary:#f6f6f9;
  --color-bg-tertiary:#f1f0f5;
  --color-bg-hover:#f1f0f5;
  --color-bg-contour:#dad7e4;
  --color-text:#302e38;
  --color-text-subtle:#65636e;
  --color-text-muted:#93919c;
  --color-highlight:#fff799;
  --color-link:#4b3d8f;
  --color-link-hover:#6e6699;
  --color-link-subtle:var(--color-text-subtle);
  --color-link-subtle-hover:var(--color-text);
  --color-form-select:#8e82c9;
  --color-form-placeholder-text:var(--color-text-muted);
  --color-form-placeholder-text-focus:#d8d7db;
  --color-header-bg:var(--color-bg);
  --color-header-active-bg:rgba(252,252,253,.6);
  --color-header-drop-bg:var(--color-bg);
  --color-header-button-bg:var(--color-bg-hover);
  --color-header-button-text:var(--color-brand);
  --color-header-button-hover-bg:var(--color-brand-hover);
  --color-header-button-hover-text:var(--color-bg);
  --color-header-button-compact-bg:var(--color-brand);
  --color-header-button-compact-text:var(--color-bg);
  --color-footer-bg:var(--color-bg);
  --color-footer-border:var(--color-bg-contour);
  --color-footer-link:var(--color-text-subtle);
  --color-footer-link-hover:var(--color-text);
  --color-swatch-alpha:var(--color-brand);
  --color-swatch-alpha-subtle:hsl(var(--color-brand-hue) 39% 75%);
  --color-swatch-alpha-muted:hsl(var(--color-brand-hue) 39% 90%);
  --color-swatch-beta:var(--color-link);
  --color-swatch-beta-subtle:#b8adeb;
  --color-swatch-beta-muted:#edebfa;
  --color-swatch-beta-bg:#f4f3fc;
  --color-swatch-gamma:#edc01d;
  --color-swatch-gamma-subtle:#fce283;
  --color-swatch-gamma-muted:#fcf2cf;
  --color-swatch-delta:#e7754b;
  --color-swatch-delta-subtle:#f4b9a4;
  --color-swatch-delta-muted:#fcede8;
  --color-swatch-text:#fff;
  --color-success:var(--color-brand);
  --color-success-bg:var(--color-swatch-alpha-muted);
  --color-warning:var(--color-swatch-gamma);
  --color-warning-bg:var(--color-swatch-gamma-muted);
  --color-neutral:#928fa3;
  --color-button-text:var(--color-link);
  --color-button-bg:transparent;
  --color-button-border:var(--color-link);
  --color-button-hover-text:var(--color-bg);
  --color-button-hover-bg:var(--color-link-hover);
  --color-button-hover-border:var(--color-link-hover);
  --color-button-disabled-bg:#e4e3e8;
  --color-button-disabled-text:var(--color-text-muted);
  --color-button-disabled-border:#e4e3e8;
  --color-button-emphasis-text:var(--color-bg);
  --color-button-emphasis-bg:var(--color-link);
  --color-button-emphasis-border:var(--color-link);
  --color-button-emphasis-hover-text:var(--color-bg);
  --color-button-emphasis-hover-bg:var(--color-link-hover);
  --color-button-emphasis-hover-border:var(--color-button-emphasis-hover-bg);
  --misc-shadow-light:1px 5px 32px hsla(255,3%,67%,.25);
  --misc-shadow-medium:2px 10px 24px hsla(255,3%,67%,.25);
  --misc-shadow-heavy:4px 20px 18px hsla(255,3%,50%,.25);
  --break-mobile:480px;
  --break-tablet:730px;
  --break-small-desktop:930px;
  --break-large-desktop:931px;
  --misc-rounding-light:.6rem;
  --misc-rounding:.8rem;
  --misc-rounding-heavy:1rem;
  --misc-transition:.2s ease-out;
}
@media (max-width:1280px) {
  :root {
    --font-size-heading1:46px;
    --font-size-heading2:38px;
    --font-size-heading3:28px;
    --font-size-heading4:24px;
  }
}
@media (max-width:730px) {
  :root {
    --font-size-heading1:36px;
    --font-size-heading2:30px;
    --font-size-heading3:24px;
    --font-size-heading4:20px;
    --font-size-heading-inline:18px;
    --font-size-text-emphasis:16px;
  }
}
* {
  margin: 0;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body,
html {
  height: 100%;
}
canvas,
img,
picture,
svg,
video {
  display: block;
  height: auto;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  word-wrap: break-word;
}
button,
input,
label,
output,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-ext-400-normal.4STIVJ54.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-ext-400-normal.WA47AOD3.woff") format("woff");
  unicode-range:
    u+0460-052f,
    u+1c80-1c88,
    u+20b4,
    u+2de0-2dff,
    u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-400-normal.CUIOBQOO.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-400-normal.HXAZMKMB.woff") format("woff");
  unicode-range:
    u+0301,
    u+0400-045f,
    u+0490-0491,
    u+04b0-04b1,
    u+2116;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-ext-400-normal.2BGQSJQS.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-ext-400-normal.S2HJIX3Y.woff") format("woff");
  unicode-range:
    u+0100-02af,
    u+0304,
    u+0308,
    u+0329,
    u+1e00-1e9f,
    u+1ef2-1eff,
    u+2020,
    u+20a0-20ab,
    u+20ad-20cf,
    u+2113,
    u+2c60-2c7f,
    u+a720-a7ff;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-400-normal.KDSG7FKO.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-400-normal.EIVC4SJH.woff") format("woff");
  unicode-range:
    u+00??,
    u+0131,
    u+0152-0153,
    u+02bb-02bc,
    u+02c6,
    u+02da,
    u+02dc,
    u+0304,
    u+0308,
    u+0329,
    u+2000-206f,
    u+2074,
    u+20ac,
    u+2122,
    u+2191,
    u+2193,
    u+2212,
    u+2215,
    u+feff,
    u+fffd;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-ext-700-normal.I5NQT2J3.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-ext-700-normal.YADCG32R.woff") format("woff");
  unicode-range:
    u+0460-052f,
    u+1c80-1c88,
    u+20b4,
    u+2de0-2dff,
    u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-700-normal.FC3LVJEX.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-cyrillic-700-normal.OTQU4GTX.woff") format("woff");
  unicode-range:
    u+0301,
    u+0400-045f,
    u+0490-0491,
    u+04b0-04b1,
    u+2116;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-ext-700-normal.BNBNFRYO.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-ext-700-normal.HQW5GD3L.woff") format("woff");
  unicode-range:
    u+0100-02af,
    u+0304,
    u+0308,
    u+0329,
    u+1e00-1e9f,
    u+1ef2-1eff,
    u+2020,
    u+20a0-20ab,
    u+20ad-20cf,
    u+2113,
    u+2c60-2c7f,
    u+a720-a7ff;
}
@font-face {
  font-display: swap;
  font-family: PT Sans;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-700-normal.VPL4JMO3.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans/files/pt-sans-latin-700-normal.6EBDUKGI.woff") format("woff");
  unicode-range:
    u+00??,
    u+0131,
    u+0152-0153,
    u+02bb-02bc,
    u+02c6,
    u+02da,
    u+02dc,
    u+0304,
    u+0308,
    u+0329,
    u+2000-206f,
    u+2074,
    u+20ac,
    u+2122,
    u+2191,
    u+2193,
    u+2212,
    u+2215,
    u+feff,
    u+fffd;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-ext-400-normal.7KHUOEUI.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-ext-400-normal.MO4OGEJP.woff") format("woff");
  unicode-range:
    u+0460-052f,
    u+1c80-1c88,
    u+20b4,
    u+2de0-2dff,
    u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-400-normal.GGF5NLAV.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-400-normal.DRAAPP4W.woff") format("woff");
  unicode-range:
    u+0301,
    u+0400-045f,
    u+0490-0491,
    u+04b0-04b1,
    u+2116;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-ext-400-normal.GORIBJVO.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-ext-400-normal.WJS5TTYI.woff") format("woff");
  unicode-range:
    u+0100-02af,
    u+0304,
    u+0308,
    u+0329,
    u+1e00-1e9f,
    u+1ef2-1eff,
    u+2020,
    u+20a0-20ab,
    u+20ad-20cf,
    u+2113,
    u+2c60-2c7f,
    u+a720-a7ff;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-400-normal.W77UF5PT.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-400-normal.6QI7UU2H.woff") format("woff");
  unicode-range:
    u+00??,
    u+0131,
    u+0152-0153,
    u+02bb-02bc,
    u+02c6,
    u+02da,
    u+02dc,
    u+0304,
    u+0308,
    u+0329,
    u+2000-206f,
    u+2074,
    u+20ac,
    u+2122,
    u+2191,
    u+2193,
    u+2212,
    u+2215,
    u+feff,
    u+fffd;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-ext-700-normal.UT4XVNS7.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-ext-700-normal.ONUOWXZY.woff") format("woff");
  unicode-range:
    u+0460-052f,
    u+1c80-1c88,
    u+20b4,
    u+2de0-2dff,
    u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-700-normal.BNRC4KDS.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-cyrillic-700-normal.UQJNSYA5.woff") format("woff");
  unicode-range:
    u+0301,
    u+0400-045f,
    u+0490-0491,
    u+04b0-04b1,
    u+2116;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-ext-700-normal.CPQBI6PC.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-ext-700-normal.4FBQVDZR.woff") format("woff");
  unicode-range:
    u+0100-02af,
    u+0304,
    u+0308,
    u+0329,
    u+1e00-1e9f,
    u+1ef2-1eff,
    u+2020,
    u+20a0-20ab,
    u+20ad-20cf,
    u+2113,
    u+2c60-2c7f,
    u+a720-a7ff;
}
@font-face {
  font-display: swap;
  font-family: PT Sans Caption;
  font-style: normal;
  font-weight: 700;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-700-normal.ZSOFEJA4.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-sans-caption/files/pt-sans-caption-latin-700-normal.ZY276CU5.woff") format("woff");
  unicode-range:
    u+00??,
    u+0131,
    u+0152-0153,
    u+02bb-02bc,
    u+02c6,
    u+02da,
    u+02dc,
    u+0304,
    u+0308,
    u+0329,
    u+2000-206f,
    u+2074,
    u+20ac,
    u+2122,
    u+2191,
    u+2193,
    u+2212,
    u+2215,
    u+feff,
    u+fffd;
}
@font-face {
  font-display: swap;
  font-family: PT Mono;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-cyrillic-ext-400-normal.YIQECQFS.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-cyrillic-ext-400-normal.GMBEWODW.woff") format("woff");
  unicode-range:
    u+0460-052f,
    u+1c80-1c88,
    u+20b4,
    u+2de0-2dff,
    u+a640-a69f,
    u+fe2e-fe2f;
}
@font-face {
  font-display: swap;
  font-family: PT Mono;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-cyrillic-400-normal.OXIIYIRP.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-cyrillic-400-normal.FK56N674.woff") format("woff");
  unicode-range:
    u+0301,
    u+0400-045f,
    u+0490-0491,
    u+04b0-04b1,
    u+2116;
}
@font-face {
  font-display: swap;
  font-family: PT Mono;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-latin-ext-400-normal.L74D3FKY.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-latin-ext-400-normal.5HFPCWG3.woff") format("woff");
  unicode-range:
    u+0100-02af,
    u+0304,
    u+0308,
    u+0329,
    u+1e00-1e9f,
    u+1ef2-1eff,
    u+2020,
    u+20a0-20ab,
    u+20ad-20cf,
    u+2113,
    u+2c60-2c7f,
    u+a720-a7ff;
}
@font-face {
  font-display: swap;
  font-family: PT Mono;
  font-style: normal;
  font-weight: 400;
  src: url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-latin-400-normal.D2OF6BIV.woff2") format("woff2"), url("/_bridgetown/static/_.._/node_modules/@fontsource/pt-mono/files/pt-mono-latin-400-normal.WHDGZQNP.woff") format("woff");
  unicode-range:
    u+00??,
    u+0131,
    u+0152-0153,
    u+02bb-02bc,
    u+02c6,
    u+02da,
    u+02dc,
    u+0304,
    u+0308,
    u+0329,
    u+2000-206f,
    u+2074,
    u+20ac,
    u+2122,
    u+2191,
    u+2193,
    u+2212,
    u+2215,
    u+feff,
    u+fffd;
}
:root {
  --font-regular:"PT Sans",sans-serif;
  --font-caption:"PT Sans Caption",sans-serif;
  --font-mono:"PT Mono",monospace;
}
html {
  -moz-font-feature-settings: "liga" 0;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #302e38;
  color: var(--color-text);
  font-family: PT Sans, sans-serif;
  font-family: var(--font-regular);
  font-size: 16px;
  font-size: var(--font-size-text-base);
}
h1,
h2,
h3,
h4 {
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-weight: 700;
  margin-bottom: 1.25rem;
  margin-bottom: var(--space-stack-ml);
}
p,
ul {
  line-height: 1.5;
  line-height: var(--font-line-height-base);
}
p:not(:last-child) {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
blockquote,
q {
  font-style: italic;
}
blockquote {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  margin: 1.5rem 0;
  margin: var(--space-stack-l) 0;
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
}
body {
  background: #fcfcfd;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  max-width: var(--layout-width-max);
  min-width: 360px;
  min-width: var(--layout-width-min);
  padding: 0 1.5rem;
  padding: 0 var(--space-inline-l);
}
.all-except-footer {
  flex: 1 1 auto;
}
.popup-messages {
  align-items: flex-end;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-stack-m);
  padding: 1rem;
  padding: var(--space-m);
  position: fixed;
  right: 0;
}
@media (max-width:480px) {
  .popup-messages {
    gap: .5rem;
    gap: var(--space-stack-s);
    width: 100%;
  }
}
main body.header-not-visible {
  margin-top: 3rem;
  margin-top: var(--space-stack-xl);
}
main h1 {
  font-size: 64px;
  font-size: var(--font-size-heading1);
}
main h2 {
  font-size: 48px;
  font-size: var(--font-size-heading2);
}
main h3 {
  font-size: 38px;
  font-size: var(--font-size-heading3);
}
main h4 {
  font-size: 30px;
  font-size: var(--font-size-heading4);
}
main a,
main p,
main ul {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
}
header {
  --local-menu-padding:var(--space-inset-square-l);
  background-color: #fcfcfd;
  background-color: var(--color-header-bg);
  font-size: 18px;
  font-size: var(--font-size-header);
  margin: 0;
  min-width: 100%;
  position: sticky;
  top: 0;
  transition: box-shadow .2s ease-out;
  transition: box-shadow var(--misc-transition);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
}
header.active {
  box-shadow: 1px 5px 32px #aaa8ad40;
  box-shadow: var(--misc-shadow-light);
}
@supports ((-webkit-backdrop-filter:blur(20px)) or (backdrop-filter:blur(20px))) {
  header.active {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: #fcfcfd99;
    background-color: var(--color-header-active-bg);
  }
}
header .menu-item .link-like-title,
header .menu-item a {
  color: #65636e;
  color: var(--color-link-subtle);
  font-weight: 400;
  transition: color .2s ease-out;
  transition: color var(--misc-transition);
  white-space: nowrap;
}
:is(header .menu-item a:not(.does-not-exist)):hover {
  color: #302e38;
  color: var(--color-link-subtle-hover);
  cursor: pointer;
}
:is(header .menu-item .link-like-title):hover {
  color: #302e38;
  color: var(--color-link-subtle-hover);
  cursor: pointer;
}
header .menu-item a:not(.list-item) {
  text-decoration-color: transparent;
  transition: text-decoration-color .2s ease-out;
  transition: text-decoration-color var(--misc-transition);
}
header .menu-item a:not(.list-item):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
header .nav-logo {
  flex-shrink: 0;
  padding: .5rem 3rem .5rem 0;
  padding: var(--space-stack-s) var(--space-inline-xl) var(--space-stack-s) 0;
}
header .nav-logo a.logo-collapsed img,
header .nav-logo a.logo-expanded img {
  height: 35px;
  width: auto;
}
header .nav-wrap {
  align-items: center;
  height: 80px;
  height: var(--layout-header-height);
  padding: 0 var(--local-menu-padding);
}
header .nav-wrap,
header nav {
  display: flex;
  justify-content: space-between;
}
header nav .menu-primary {
  display: flex;
}
header nav .menu-primary .nav-drop-wrap {
  display: none;
}
header nav .menu-primary .groups {
  display: flex;
}
header nav .menu-primary .groups .list-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  gap: var(--space-inline-m);
}
header nav .menu-primary .groups .list-item a {
  color: #302e38;
  color: var(--color-text);
}
header nav .menu-primary .groups .list-item .icon-component {
  height: 25px;
  width: -moz-max-content;
  width: max-content;
}
header nav .menu-primary .groups .list-heading {
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 16px;
  font-size: var(--font-size-text-base);
  padding: .5rem 1.5rem;
  padding: var(--space-inline-s) var(--space-inline-l);
}
header nav .menu-secondary {
  align-items: center;
  display: flex;
}
@media (min-width:931px) {
  header .nav-logo .logo-collapsed {
    display: none;
  }
  header .nav-wrap {
    margin: 0 auto;
    max-width: 1280px;
    max-width: var(--layout-width-max);
  }
  header .nav-wrap .nav-toggle {
    display: none;
  }
  header .nav-wrap .nav-toggle .nav-toggle-open {
    display: block;
  }
  header nav {
    align-items: center;
    width: 100%;
  }
  header nav .menu-primary {
    flex-direction: row;
    gap: 1.5rem;
    gap: var(--space-inline-l);
  }
  header nav .menu-primary .menu-item {
    padding: 1rem 0;
    padding: var(--space-inset-square-m) 0;
  }
  header nav .menu-primary .menu-item:hover {
    cursor: pointer;
  }
  header nav .menu-primary .menu-item:hover .nav-drop-wrap {
    display: block;
  }
  header nav .menu-primary .nav-drop-wrap {
    margin-left: -35px;
    padding-top: 1.25rem;
    padding-top: var(--space-stack-ml);
    position: absolute;
  }
  header nav .menu-primary .nav-drop-wrap.features {
    margin-left: -150px;
  }
  header nav .menu-primary .nav-drop-wrap .nav-drop {
    background-color: #fcfcfd;
    background-color: var(--color-header-drop-bg);
    border-radius: .8rem;
    border-radius: var(--misc-rounding);
    box-shadow: 1px 5px 32px #aaa8ad40;
    box-shadow: var(--misc-shadow-light);
    padding: 0 1rem;
    padding: 0 var(--space-inline-m);
  }
  header nav .menu-primary .nav-drop-wrap .groups {
    flex-direction: row;
    gap: .5rem;
    gap: var(--space-inline-s);
  }
  header nav .menu-primary .nav-drop-wrap .groups .group {
    margin: .5rem 0;
    margin: var(--space-stack-s) 0;
  }
  header nav .menu-primary .nav-drop-wrap .groups .group .list {
    margin: 1rem 0;
    margin: var(--space-stack-m) 0;
  }
  header nav .menu-primary .nav-drop-wrap .groups .group .list-item {
    border-radius: .8rem;
    border-radius: var(--misc-rounding);
    padding: .75rem 1.5rem;
    padding: var(--space-inset-squish-m);
    transition: background-color .2s ease-out;
    transition: background-color var(--misc-transition);
  }
  header nav .menu-primary .nav-drop-wrap .groups .group .list-item:hover {
    background-color: #f1f0f5;
    background-color: var(--color-bg-hover);
  }
  header nav .menu-secondary {
    gap: .5rem;
    gap: var(--space-inline-s);
    white-space: nowrap;
  }
  header nav .menu-secondary a {
    border: none;
    padding: .5rem 1.25rem;
    padding: var(--space-inset-squish-s);
  }
  header nav .menu-secondary a:not(.button) {
    color: #267339;
    color: var(--color-brand);
    font-weight: 700;
  }
  header nav .menu-secondary a:not(.button):hover {
    color: #669973;
    color: var(--color-brand-hover);
  }
  header nav .menu-secondary .button {
    background-color: #f1f0f5;
    background-color: var(--color-header-button-bg);
    border: none;
    color: #267339;
    color: var(--color-header-button-text);
    font-size: 16px;
    font-size: var(--font-size-text-base);
  }
  header nav .menu-secondary .button:hover {
    background-color: #669973;
    background-color: var(--color-header-button-hover-bg);
    color: #fcfcfd;
    color: var(--color-header-button-hover-text);
  }
}
@media (max-width:930px) {
  header .nav-logo .logo-expanded {
    display: none;
  }
  header .nav-toggle {
    display: block;
    margin-right: -.5rem;
    margin-right: calc(var(--space-inset-square-s)*-1);
    padding: .5rem;
    padding: var(--space-inset-square-s);
  }
  header .nav-toggle .nav-toggle-close,
  header .nav-toggle.active .nav-toggle-open {
    display: none;
  }
  header .nav-toggle.active .nav-toggle-close {
    display: block;
  }
  header .nav-toggle img {
    width: 20px;
  }
  header nav {
    background-color: #fcfcfd;
    background-color: var(--color-bg);
    display: none;
    flex-direction: column;
    height: calc(100vh - 80px);
    height: calc(100vh - var(--layout-header-height));
    height: calc(100dvh - 80px);
    height: calc(100dvh - var(--layout-header-height));
    left: 0;
    min-width: 360px;
    min-width: var(--layout-width-min);
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 80px;
    top: var(--layout-header-height);
    width: 100vw;
  }
  header nav.open {
    display: flex;
  }
  header nav .open-indicator {
    align-self: center;
    aspect-ratio: 1/1;
    background-color: #302e38;
    background-color: var(--color-text);
    -webkit-clip-path: polygon(0 10%, 10% 0, 50% 40%, 90% 0, 100% 10%, 50% 60%);
    clip-path: polygon(0 10%, 10% 0, 50% 40%, 90% 0, 100% 10%, 50% 60%);
    -webkit-clip-path: var(--misc-open-arrow);
    clip-path: var(--misc-open-arrow);
    height: 100%;
    width: .8em;
  }
  header nav .open-indicator.open {
    -webkit-clip-path: polygon(0 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 50% 40%);
    clip-path: polygon(0 90%, 10% 100%, 50% 60%, 90% 100%, 100% 90%, 50% 40%);
    -webkit-clip-path: var(--misc-close-arrow);
    clip-path: var(--misc-close-arrow);
  }
  header nav .menu-primary {
    flex-direction: column;
    padding: 0 var(--local-menu-padding);
    width: 100%;
  }
  header nav .menu-primary .menu-item {
    padding: 1rem 0;
    padding: var(--space-inline-m) 0;
  }
  header nav .menu-primary .menu-item .item-title {
    display: flex;
    justify-content: space-between;
  }
  header nav .menu-primary .menu-item .nav-drop-wrap.open {
    display: block;
  }
  header nav .menu-primary .menu-item .groups {
    flex-direction: column;
    gap: 1rem;
    gap: var(--space-stack-m);
    padding-top: 1rem;
    padding-top: var(--space-stack-m);
  }
  header nav .menu-primary .menu-item .groups .list-item {
    padding: .5rem 0;
    padding: var(--space-stack-s) 0;
  }
  header nav .menu-primary .menu-item .groups .list-heading {
    padding: .5rem 0;
    padding: var(--space-inline-s) 0;
  }
  :is(header nav .menu-primary) .menu-item + .menu-item {
    border-top: 1px solid #dad7e4;
    border-top: 1px solid var(--color-bg-contour);
  }
  header nav .menu-secondary {
    flex-direction: column;
    gap: .5rem;
    gap: var(--space-s);
    padding: var(--local-menu-padding);
    width: 100%;
  }
  header nav .menu-secondary .login {
    display: none;
  }
  header nav .menu-secondary span {
    width: 100%;
  }
  header nav .menu-secondary span .button {
    background-color: #267339;
    background-color: var(--color-header-button-compact-bg);
    border: none;
    color: #fcfcfd;
    color: var(--color-header-button-compact-text);
    font-size: 18px;
    font-size: var(--font-size-header);
    padding: 1rem 1.5rem;
    padding: var(--space-inset-squish-l);
    width: 100%;
  }
  header nav .menu-secondary span .button:hover {
    background-color: #669973;
    background-color: var(--color-header-button-hover-bg);
    color: #fcfcfd;
    color: var(--color-header-button-hover-text);
  }
  footer.inactive,
  main.inactive {
    position: fixed;
  }
}
footer {
  --local-logo-height:35px;
  background: #fcfcfd;
  background: var(--color-footer-bg);
  width: 100%;
}
footer .primary .list a,
footer .secondary .addendum a {
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 14px;
  font-size: var(--font-size-footer);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
}
footer .primary .list a:hover,
footer .secondary .addendum a:hover {
  color: #302e38;
  color: var(--color-text);
  text-decoration-color: currentcolor;
}
footer nav {
  margin: 0 auto;
  max-width: 1280px;
  max-width: var(--layout-width-max);
  padding: 5rem 1.5rem 3rem;
  padding: var(--space-stack-xxl) var(--space-inline-l) var(--space-stack-xl) var(--space-inline-l);
}
footer nav .primary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  gap: var(--space-m);
  justify-content: space-between;
  padding-bottom: 1rem;
  padding-bottom: var(--space-stack-m);
}
footer nav .primary .logo img {
  height: var(--local-logo-height);
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
  width: 100%;
}
footer nav .primary .logo:hover {
  color: #669973;
  color: var(--color-brand-hover);
}
footer nav .primary .groups {
  -moz-columns: 4 auto;
  column-count: 4;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -moz-column-gap: var(--space-inline-m);
  column-gap: var(--space-inline-m);
  max-width: 100%;
}
footer nav .primary .groups .group {
  -moz-column-break-inside: avoid;
  -moz-column-break-before: column;
  break-before: column;
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: var(--font-size-footer);
  padding-bottom: 1.5rem;
  padding-bottom: var(--space-inline-l);
  page-break-inside: avoid;
}
footer nav .primary .groups .group .label {
  align-items: flex-end;
  display: flex;
  font-weight: 700;
  height: var(--local-logo-height);
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  text-transform: uppercase;
}
footer nav .primary .groups .group .list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-stack-m);
}
footer nav .secondary {
  border-top: 1px solid #dad7e4;
  border-top: 1px solid var(--color-footer-border);
  display: flex;
  gap: .5rem;
  gap: var(--space-inline-s);
  justify-content: space-between;
  padding: 1.5rem 0;
  padding: var(--space-stack-l) 0;
}
footer nav .secondary .addendum {
  align-items: center;
  color: #65636e;
  color: var(--color-text-subtle);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-size: var(--font-size-footer);
  gap: 1.5rem;
  gap: var(--space-l);
  justify-content: flex-end;
}
footer nav .secondary .addendum .hiring {
  background-color: #f1f0f5;
  background-color: var(--color-bg-tertiary);
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
  color: #4b3d8f;
  color: var(--color-swatch-beta);
  font-weight: 700;
  padding: .25rem .5rem;
  padding: var(--space-inline-xs) var(--space-inline-s);
}
html.firefox body footer nav .primary .groups {
  -moz-columns: 3 auto;
  column-count: 3;
}
@media (max-width:730px) {
  footer nav .primary .groups {
    -moz-columns: 12rem 3;
    columns: 12rem 3;
  }
  footer nav .primary .groups .group {
    -moz-column-break-before: auto;
    break-before: auto;
    page-break-before: auto;
  }
  footer nav .secondary .addendum {
    gap: .5rem;
    gap: var(--space-s);
  }
}
.block-article-component {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.block-article-component .column-primary .heading,
.block-article-component .column-primary .overline {
  margin-bottom: 1.25rem;
  margin-bottom: var(--space-stack-ml);
}
.block-article-component .column-primary .paragraph {
  color: #65636e;
  color: var(--color-text-subtle);
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
.block-article-component .column-primary .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-s);
}
.block-article-component .column-secondary {
  align-self: center;
}
.block-article-component.left-aligned .column-primary,
.block-article-component.right-aligned .column-primary {
  width: 55%;
}
.block-article-component.left-aligned .column-primary .paragraph,
.block-article-component.right-aligned .column-primary .paragraph {
  width: 90%;
}
.block-article-component.left-aligned .column-secondary,
.block-article-component.right-aligned .column-secondary {
  width: 45%;
}
.block-article-component.left-aligned .column-primary {
  padding-right: 1rem;
  padding-right: var(--space-inline-m);
}
.block-article-component.left-aligned .column-secondary {
  padding-left: 1rem;
  padding-left: var(--space-inline-m);
}
.block-article-component.right-aligned {
  flex-direction: row-reverse;
}
.block-article-component.right-aligned .column-primary {
  padding-left: 1rem;
  padding-left: var(--space-inline-m);
}
.block-article-component.right-aligned .column-secondary {
  padding-right: 1rem;
  padding-right: var(--space-inline-m);
}
.block-article-component.vertical {
  flex-direction: column;
}
.block-article-component.vertical .column-primary {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  text-align: center;
}
.block-article-component.vertical .column-primary .paragraph {
  display: inline-block;
  max-width: 70ch;
}
.block-article-component.vertical .column-primary .actions {
  justify-content: center;
}
.block-article-component.primary {
  padding-top: 3rem;
  padding-top: var(--space-stack-xl);
}
.block-article-component.primary .overline {
  display: none;
}
.block-article-component.centered-illustration .column-secondary {
  align-items: center;
  display: flex;
  justify-content: center;
}
.block-article-component .overlay-illustration {
  display: inline-block;
  position: relative;
}
.block-article-component.blurry-blob .column-secondary .illustration {
  position: relative;
  z-index: 0;
}
.block-article-component.blurry-blob .column-secondary .illustration:before {
  --local-blur:10px;
  -webkit-backdrop-filter: blur(var(--local-blur));
  backdrop-filter: blur(var(--local-blur));
  content: "";
  height: calc(100% + var(--local-blur)*2);
  left: 0;
  margin-left: calc(var(--local-blur)*-1);
  margin-top: calc(var(--local-blur)*-1);
  position: absolute;
  top: 0;
  width: calc(100% + var(--local-blur)*2);
  z-index: 1;
}
.block-article-component.blurry-blob .column-secondary .illustration > img {
  position: relative;
  z-index: 2;
}
.block-article-component.blurry-blob.swatch-1 .column-secondary .illustration {
  background-image:
    linear-gradient(
      134deg,
      #fffefa,
      #fcf2cf);
  background-image:
    linear-gradient(
      134deg,
      #fffefa 0,
      var(--color-swatch-gamma-muted) 100%);
  border-radius: 74% 26% 68% 32% / 74% 55% 45% 26%;
}
.block-article-component.blurry-blob.swatch-2 .column-secondary .illustration {
  background-image:
    linear-gradient(
      134deg,
      #fbfbfe,
      #edebfa);
  background-image:
    linear-gradient(
      134deg,
      #fbfbfe 0,
      var(--color-swatch-beta-muted) 100%);
  border-radius: 29% 71% 31% 69% / 56% 85% 15% 44%;
}
.block-article-component.blurry-blob.swatch-3 .column-secondary .illustration {
  background-image:
    linear-gradient(
      134deg,
      #fbfdfc,
      #dcefe1);
  background-image:
    linear-gradient(
      134deg,
      #fbfdfc 0,
      var(--color-swatch-alpha-muted) 100%);
  border-radius: 41% 59% 27% 73% / 23% 26% 74% 77%;
}
@media not (max-width:1380px) {
  .hero-element .illustration img {
    max-width: 105%;
  }
}
@media (max-width:1380px) {
  .overlay-illustration {
    margin: 0 .5rem;
    margin: 0 var(--space-inline-s);
  }
}
@media (max-width:730px) {
  .block-article-component.left-aligned,
  .block-article-component.right-aligned {
    flex-direction: column;
  }
  .block-article-component.left-aligned .column-primary,
  .block-article-component.right-aligned .column-primary {
    margin-bottom: 1.5rem;
    margin-bottom: var(--space-stack-l);
    padding: 0;
    width: 100%;
  }
  .block-article-component.left-aligned .column-primary .paragraph,
  .block-article-component.right-aligned .column-primary .paragraph {
    width: 100%;
  }
  .block-article-component.left-aligned .column-secondary,
  .block-article-component.right-aligned .column-secondary {
    padding: 0;
    width: 100%;
  }
}
@media (max-width:480px) {
  .block-article-component {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
  .block-article-component.primary {
    padding-top: 1.5rem;
    padding-top: var(--space-stack-l);
  }
  .block-article-component .column-secondary img {
    max-height: 300px;
    width: auto;
  }
}
.block-assortment-component {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  gap: var(--space-stack-xl);
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.block-assortment-component .section-primary {
  text-align: center;
}
.block-assortment-component .section-primary .overline {
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
.block-assortment-component .section-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3rem;
  row-gap: var(--space-stack-xl);
}
.block-assortment-component .section-secondary .slice {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.block-assortment-component .section-secondary .slice .icon {
  height: 60px;
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
.block-assortment-component .section-secondary .slice .heading,
.block-assortment-component .section-secondary .slice .text {
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
.block-assortment-component .section-secondary .slice .heading {
  font-size: 20px;
  font-size: var(--font-size-heading-inline);
  font-weight: 700;
}
.block-assortment-component .section-secondary .slice .text {
  color: #65636e;
  color: var(--color-text-subtle);
}
.block-assortment-component .section-secondary.per-row-2 .slice {
  width: 40%;
}
.block-assortment-component .section-secondary.per-row-3 .slice {
  width: 30%;
}
.block-assortment-component .section-secondary.per-row-4 .slice {
  width: 21%;
}
.block-assortment-component.center .section-secondary .slice {
  align-items: center;
}
.block-assortment-component.center .section-secondary .slice .action,
.block-assortment-component.center .section-secondary .slice .heading,
.block-assortment-component.center .section-secondary .slice .text {
  text-align: center;
}
@media (max-width:730px) {
  .block-assortment-component .section-secondary {
    gap: 1.5rem;
    gap: var(--space-l);
    justify-content: space-around;
  }
  .block-assortment-component .section-secondary.per-row-3 .slice,
  .block-assortment-component .section-secondary.per-row-4 .slice {
    width: 45%;
  }
}
@media (max-width:480px) {
  .block-assortment-component {
    gap: 1.5rem;
    gap: var(--space-stack-l);
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
  .block-assortment-component .section-secondary {
    gap: 1rem;
    gap: var(--space-m);
  }
  .block-assortment-component .section-secondary.per-row-2 .slice,
  .block-assortment-component .section-secondary.per-row-3 .slice,
  .block-assortment-component .section-secondary.per-row-4 .slice {
    width: 100%;
  }
}
.band-component {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  right: 50%;
  width: 100vw;
}
.band-component .content {
  margin: 0 auto;
  max-width: 1280px;
  max-width: var(--layout-width-max);
  padding-left: 1.5rem;
  padding-left: var(--space-inline-l);
  padding-right: 1.5rem;
  padding-right: var(--space-inline-l);
}
.band-component.subtle {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
}
.band-component.dark {
  background-color: #f1f0f5;
  background-color: var(--color-bg-tertiary);
}
.popup-message-component {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
  box-shadow: 4px 20px 18px #7e7c8340;
  box-shadow: var(--misc-shadow-heavy);
  display: none;
  padding: 1rem;
  padding: var(--space-inline-m);
  padding-right: 1.5rem;
  padding-right: var(--space-inline-l);
  position: relative;
  width: 100%;
  z-index: 99;
}
.popup-message-component .popup-message-close-button {
  cursor: pointer;
  margin: .5em;
  position: absolute;
  right: .25rem;
  right: var(--space-xs);
  top: .25rem;
  top: var(--space-xs);
  width: 10px;
}
.popup-message-component .content {
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
.popup-message-component.show {
  display: block;
}
@media (max-width:480px) {
  .popup-message-component {
    margin-bottom: .5rem;
    margin-bottom: var(--space-inline-s);
  }
}
.block-call-to-action-component {
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 5rem 1.5rem;
  padding: var(--space-stack-xxl) var(--space-inline-l);
  position: relative;
  right: 50%;
  text-align: center;
  width: 100vw;
}
.block-call-to-action-component .heading {
  margin-bottom: 1.25rem;
  margin-bottom: var(--space-stack-ml);
}
.block-call-to-action-component .paragraph {
  color: #65636e;
  color: var(--color-text-subtle);
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  max-width: 70ch;
}
.block-call-to-action-component .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-s);
  justify-content: center;
}
@media (max-width:480px) {
  .block-call-to-action-component {
    padding: 3rem 1rem;
    padding: var(--space-stack-xl) var(--space-inline-m);
  }
}
.content-swap-component {
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.content-swap-component .ingress,
.content-swap-component .primary-heading {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  text-align: center;
}
.content-swap-component .ingress {
  display: flex;
  justify-content: center;
}
.content-swap-component .ingress .description {
  color: #65636e;
  color: var(--color-text-subtle);
  max-width: 70ch;
}
.content-swap-component .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  gap: var(--space-m);
  justify-content: center;
}
.content-swap-component .pills .pill {
  background-color: #f1f0f5;
  background-color: var(--color-bg-hover);
  border-radius: 1rem;
  border-radius: var(--misc-rounding-heavy);
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  padding: .5rem 1.25rem;
  padding: var(--space-inset-squish-s);
  transition: background-color .2s ease-out, color .2s ease-out;
  transition: background-color var(--misc-transition), color var(--misc-transition);
  white-space: nowrap;
}
.content-swap-component .pills .pill.active {
  background-color: #267339;
  background-color: var(--color-brand);
  color: #fff;
  color: var(--color-swatch-text);
}
.content-swap-component .pills .pill.active:hover {
  cursor: default;
}
.content-swap-component .pills .pill:hover:not(.active) {
  background-color: #dcefe1;
  background-color: var(--color-swatch-alpha-muted);
  color: #302e38;
  color: var(--color-text);
  cursor: pointer;
}
.content-swap-component .content-swap {
  align-items: center;
  display: none;
  flex-wrap: wrap;
}
.content-swap-component .content-swap.visible {
  display: flex;
}
.content-swap-component .content-swap .column-primary {
  padding-right: 1rem;
  padding-right: var(--space-inline-m);
  width: 55%;
}
.content-swap-component .content-swap .column-primary .heading {
  margin-bottom: 1.25rem;
  margin-bottom: var(--space-stack-ml);
}
.content-swap-component .content-swap .column-primary .paragraph {
  color: #65636e;
  color: var(--color-text-subtle);
  line-height: 1.5;
  line-height: var(--font-line-height-base);
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  width: 90%;
}
.content-swap-component .content-swap .column-primary .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-s);
}
.content-swap-component .content-swap .column-secondary {
  align-items: center;
  align-self: center;
  display: flex;
  height: 500px;
  justify-content: center;
  padding-left: 1rem;
  padding-left: var(--space-inline-m);
  width: 45%;
}
.content-swap-component .content-swap .column-secondary img {
  max-height: 500px;
  width: auto;
}
.content-swap-component.right-aligned .content-swap {
  flex-direction: row-reverse;
}
.content-swap-component.right-aligned .column-primary {
  padding-left: 1rem;
  padding-left: var(--space-inline-m);
}
.content-swap-component.right-aligned .column-secondary {
  padding-right: 1rem;
  padding-right: var(--space-inline-m);
}
@media (max-width:730px) {
  .content-swap-component .pills {
    margin-bottom: 3rem;
    margin-bottom: var(--space-stack-xl);
  }
  .content-swap-component .content-swap {
    flex-direction: column;
  }
  .content-swap-component .content-swap .column-primary {
    padding: 0;
    width: 100%;
  }
  .content-swap-component .content-swap .column-primary .paragraph {
    width: 100%;
  }
  .content-swap-component .content-swap .column-primary {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .content-swap-component .content-swap .column-secondary {
    height: 400px;
    padding: 0;
    width: 100%;
  }
  .content-swap-component .content-swap .column-secondary img {
    max-height: 400px;
  }
}
@media (max-width:480px) {
  .content-swap-component {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
  .content-swap-component .pills {
    gap: .5rem;
    gap: var(--space-s);
  }
  .content-swap-component .content-swap .column-primary {
    margin-bottom: .5rem;
    margin-bottom: var(--space-stack-s);
  }
  .content-swap-component .content-swap .column-secondary {
    height: 300px;
  }
  .content-swap-component .content-swap .column-secondary img {
    max-height: 300px;
  }
}
.block-logo-cluster-component {
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.block-logo-cluster-component .overline {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
.block-logo-cluster-component .logos {
  grid-row-gap: 1.5rem;
  grid-row-gap: var(--space-stack-l);
  grid-column-gap: 1.5rem;
  grid-column-gap: var(--space-inline-l);
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
}
.block-logo-cluster-component .logos .logo img {
  max-height: 60px;
  min-height: 40px;
  width: 100%;
}
.block-logo-cluster-component .action {
  margin-top: 3rem;
  margin-top: var(--space-stack-xl);
}
.block-logo-cluster-component.vertical {
  align-items: center;
}
.block-logo-cluster-component.left-aligned {
  align-items: flex-start;
}
@media (max-width:730px) {
  .block-logo-cluster-component .logos {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:480px) {
  .block-logo-cluster-component {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
}
.page-entry-component {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  color: #302e38;
  color: var(--color-text);
  padding: 3rem;
  padding: var(--space-inset-square-xl);
}
.page-entry-component .page-header {
  display: flex;
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
.page-entry-component .page-header .page-title {
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-weight: 700;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.page-entry-component .page-header .page-icon {
  flex-shrink: 0;
}
.page-entry-component.right-icon .page-header {
  justify-content: space-between;
}
.page-entry-component.right-icon .page-header .page-title {
  font-size: 20px;
  font-size: var(--font-size-heading-inline);
}
.page-entry-component.right-icon .page-header .page-icon {
  margin-left: 1rem;
  margin-left: var(--space-inline-m);
  width: 30px;
}
.page-entry-component.top-icon .page-header {
  flex-direction: column-reverse;
}
.page-entry-component.top-icon .page-header .page-title {
  font-size: 30px;
  font-size: var(--font-size-heading4);
}
.page-entry-component.top-icon .page-header .page-icon {
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
  width: 40px;
}
.page-entry-component.top-icon .page-header .page-logo {
  align-items: center;
  display: flex;
  height: 70px;
  margin-bottom: 0;
  width: 100%;
}
.page-entry-component.top-icon .page-header .page-logo img {
  height: auto;
  max-height: 70px;
  max-width: 100%;
  width: auto;
}
.page-entry-component.top-icon .page-description {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
}
.page-entry-component .page-description {
  font-weight: 400;
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
@media (max-width:730px) {
  .page-entry-component {
    padding: 1.5rem;
    padding: var(--space-inset-square-l);
  }
}
.block-pill-cluster-component {
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.block-pill-cluster-component .overline {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  margin: 0 1rem 3rem;
  margin: 0 var(--space-inline-m) var(--space-stack-xl) var(--space-inline-m);
  text-align: center;
}
.block-pill-cluster-component .pills {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-s);
  justify-content: center;
  margin: auto auto 3rem;
  margin-bottom: var(--space-stack-xl);
  width: 90%;
}
.block-pill-cluster-component .pills .pill {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  border-radius: 1rem;
  border-radius: var(--misc-rounding-heavy);
  box-shadow: 1px 5px 32px #aaa8ad40;
  box-shadow: var(--misc-shadow-light);
  display: flex;
  gap: .5rem;
  gap: var(--space-s);
  padding: .75rem 1.5rem;
  padding: var(--space-inset-squish-m);
}
.block-pill-cluster-component .pills .pill .logo {
  margin: auto;
}
.block-pill-cluster-component .pills .pill .logo img {
  height: 20px;
  width: 20px;
}
.block-pill-cluster-component .action {
  text-align: center;
}
@media (max-width:730px) {
  .block-pill-cluster-component .pills {
    width: 100%;
  }
}
@media (max-width:480px) {
  .block-pill-cluster-component {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
  .block-pill-cluster-component .label,
  .block-pill-cluster-component .pill.duplicate-icon {
    display: none;
  }
}
.block-segment-component {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.block-segment-component .segment-primary {
  text-align: center;
  width: 80%;
}
.block-segment-component .segment-primary h3 {
  margin-bottom: 0;
}
.block-segment-component .segment-primary .overline {
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
.block-segment-component .segment-secondary {
  color: #65636e;
  color: var(--color-text-subtle);
  display: flex;
  gap: 1.5rem;
  gap: var(--space-l);
  justify-content: center;
  margin-bottom: 3rem;
  margin-bottom: var(--space-stack-xl);
  margin-top: 1rem;
  margin-top: var(--space-stack-m);
}
.block-segment-component .segment-secondary.one .paragraph {
  text-align: center;
  width: 75ch;
}
.block-segment-component .segment-secondary.two .paragraph {
  width: 40%;
}
@media (max-width:730px) {
  .block-segment-component .segment-secondary {
    flex-direction: column;
  }
  .block-segment-component .segment-secondary.one .paragraph,
  .block-segment-component .segment-secondary.two .paragraph {
    width: 100%;
  }
  .block-segment-component {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
}
.block-showcase-component {
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-top: var(--space-stack-xxl);
}
.block-showcase-component .heading {
  text-align: center;
}
.block-showcase-component .boxes {
  display: flex;
  gap: 1rem;
  gap: var(--space-m);
  overflow-x: auto;
  padding: 1.5rem 1rem 5rem;
  padding: var(--space-stack-l) var(--space-inline-m) var(--space-stack-xxl) var(--space-inline-m);
  scroll-snap-type: x mandatory;
}
.block-showcase-component .boxes .box {
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  box-shadow: 1px 5px 32px #aaa8ad40;
  box-shadow: var(--misc-shadow-light);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  width: 280px;
}
.block-showcase-component .boxes .box:first-child {
  margin-left: auto;
}
.block-showcase-component .boxes .box:last-child {
  margin-right: auto;
}
.block-showcase-component .boxes .overline {
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
}
.block-showcase-component .boxes .title {
  font-size: 24px;
  font-size: var(--font-size-text-prominent);
  font-weight: 700;
}
.block-showcase-component .boxes .illustration {
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  height: 150px;
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
  overflow: hidden;
  width: 100%;
}
.block-showcase-component .boxes .illustration img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.block-showcase-component .boxes .overline {
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
.block-showcase-component .boxes .title {
  margin-bottom: 3rem;
  margin-bottom: var(--space-stack-xl);
}
.block-showcase-component .boxes .action {
  margin-top: auto;
}
.block-showcase-component .boxes {
  scrollbar-color: #302e38 #fcfcfd;
  scrollbar-color: var(--color-text) var(--color-bg);
  scrollbar-width: 9px;
}
.block-showcase-component .boxes::-webkit-scrollbar {
  height: 9px;
}
.block-showcase-component .boxes::-webkit-scrollbar-thumb {
  background: #302e38;
  background: var(--color-text);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
}
.flag-component {
  display: inline-block;
}
.flag-component img {
  border-radius: 2px;
  height: 1em;
}
.icon-component .block {
  display: block;
}
#marketing-consent-popup-message .actions {
  display: flex;
  gap: .5rem;
  gap: var(--space-inline-s);
}
#marketing-consent-popup-message .actions .suggestion {
  display: flex;
}
.language-selector-component {
  display: flex;
  gap: .5rem;
  gap: var(--space-inline-s);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.language-selector-component img {
  height: 20px;
  width: -moz-max-content;
  width: max-content;
}
.language-selector-component select {
  align-self: flex-start;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0 1.5rem 0 0;
  padding: 0 var(--space-inline-l) 0 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
}
.language-selector-component select:hover {
  color: #302e38;
  color: var(--color-text);
  text-decoration-color: currentcolor;
}
.language-selector-component .open-indicator {
  --local-arrow-size:.6em;
  aspect-ratio: 1/1;
  background-color: #65636e;
  background-color: var(--color-text-subtle);
  -webkit-clip-path: polygon(0 10%, 10% 0, 50% 40%, 90% 0, 100% 10%, 50% 60%);
  clip-path: polygon(0 10%, 10% 0, 50% 40%, 90% 0, 100% 10%, 50% 60%);
  -webkit-clip-path: var(--misc-open-arrow);
  clip-path: var(--misc-open-arrow);
  pointer-events: none;
  position: absolute;
  right: .5rem;
  right: var(--space-inline-s);
  top: calc(var(--local-arrow-size)/1.2);
  width: var(--local-arrow-size);
}
@media (max-width:480px) {
  .language-selector-component img {
    display: none;
  }
}
#locale-suggestion-popup-message .actions {
  display: flex;
  gap: 1rem;
  gap: var(--space-inline-m);
}
#locale-suggestion-popup-message .actions .suggestion {
  display: none;
}
#locale-suggestion-popup-message .actions .suggestion.show {
  display: flex;
}
#locale-suggestion-popup-message .actions .flag-component {
  width: 1.2em;
}
#locale-suggestion-popup-message .actions .locale-link {
  align-items: center;
  display: flex;
  gap: .5rem;
  gap: var(--space-inline-s);
}
.plain-link-component {
  color: #4b3d8f;
  color: var(--color-link);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease-out;
  transition: color var(--misc-transition);
}
.plain-link-component:hover {
  color: #6e6699;
  color: var(--color-link-hover);
}
.plain-link-component.button {
  background-color: transparent;
  background-color: var(--color-button-bg);
  border: 2px solid #4b3d8f;
  border: 2px solid var(--color-button-border);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  color: #4b3d8f;
  color: var(--color-button-text);
  display: inline-block;
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-size: 14px;
  font-size: var(--font-size-button);
  font-weight: 700;
  padding: .75rem 1.5rem;
  padding: var(--space-inset-squish-m);
  text-align: center;
  transition: background-color .2s ease-out, border-color .2s ease-out;
  transition: background-color var(--misc-transition), border-color var(--misc-transition);
  white-space: nowrap;
}
.plain-link-component.button:hover {
  background-color: #6e6699;
  background-color: var(--color-button-hover-bg);
  border-color: #6e6699;
  border-color: var(--color-button-hover-border);
  color: #fcfcfd;
  color: var(--color-button-hover-text);
}
.plain-link-component.button.emphasis {
  background-color: #4b3d8f;
  background-color: var(--color-button-emphasis-bg);
  border-color: #4b3d8f;
  border-color: var(--color-button-emphasis-border);
  color: #fcfcfd;
  color: var(--color-button-emphasis-text);
}
.plain-link-component.button.emphasis:hover {
  background-color: #6e6699;
  background-color: var(--color-button-emphasis-hover-bg);
  border-color: #6e6699;
  border-color: var(--color-button-emphasis-hover-border);
}
.plain-link-component.button.small {
  padding: .5rem 1.25rem;
  padding: var(--space-inset-squish-s);
}
.plain-link-component.button:disabled,
.plain-link-component.button[disabled] {
  background-color: #e4e3e8;
  background-color: var(--color-button-disabled-bg);
  border-color: #e4e3e8;
  border-color: var(--color-button-disabled-border);
  color: #93919c;
  color: var(--color-button-disabled-text);
}
.customer-reviews-component {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  gap: var(--space-stack-s);
  width: -moz-fit-content;
  width: fit-content;
}
.customer-reviews-component .brand {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: .5rem;
  gap: var(--space-inline-s);
}
.customer-reviews-component .brand .logo-image {
  height: auto;
  width: 1.8rem;
}
.customer-reviews-component .brand .name {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
}
.customer-reviews-component .customer-reviews {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: .25rem;
  gap: var(--space-inline-xs);
}
.customer-reviews-component .customer-reviews .score {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  font-weight: 700;
  padding-right: .5rem;
  padding-right: var(--space-inline-s);
}
.customer-reviews-component .customer-reviews img {
  height: 1rem;
  width: auto;
}
@media (max-width:730px) {
  .customer-reviews-component {
    padding: .5rem;
    padding: var(--space-inset-square-s);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay-visiblity {
  animation: fade-in 50ms ease-in .75s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.session-present {
  display: none;
}
.has-session .session-present,
.session-absent {
  display: block;
}
.has-session .session-absent {
  display: none;
}
input:not([type=checkbox]),
input:not([type=radio]),
select,
textarea {
  padding: .75rem;
  padding: var(--space-inset-square-sm);
}
input[type=checkbox],
input[type=radio] {
  margin: var(--space-inset-sm) 0;
}
label input[type=checkbox],
label input[type=radio] {
  margin-right: .5rem;
  margin-right: var(--space-inline-s);
}
input,
select,
textarea {
  border: none;
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #93919c;
  color: var(--color-form-placeholder-text);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #93919c;
  color: var(--color-form-placeholder-text);
}
textarea {
  min-height: 6rem;
  resize: vertical;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  outline-color: #8e82c9;
  outline-color: var(--color-form-select);
}
button:focus::-moz-placeholder,
input:focus::-moz-placeholder,
select:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #d8d7db;
  color: var(--color-form-placeholder-text-focus);
}
button:focus::placeholder,
input:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
  color: #d8d7db;
  color: var(--color-form-placeholder-text-focus);
}
input[type=checkbox],
input[type=radio] {
  accent-color: #4b3d8f;
  accent-color: var(--color-link);
}
.form-vertical input:not([type=checkbox]):not([type=radio]),
.form-vertical select,
.form-vertical textarea {
  width: 100%;
}
.form-vertical > p {
  font-size: 100%;
}
.form-vertical .control-group,
.form-vertical > p {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
.form-vertical .control-group {
  display: flex;
  flex-wrap: wrap;
}
.form-vertical .control-group .controls {
  width: 100%;
}
.form-vertical .control-group .controls:not(:last-child) {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
.form-vertical .control-group label {
  align-items: baseline;
  display: inline-flex;
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
.form-vertical .control-group .description {
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
  margin-top: .25rem;
  margin-top: var(--space-inline-xs);
}
button {
  border: 2px solid #4b3d8f;
  border: 2px solid var(--color-button-border);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  cursor: pointer;
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-size: 14px;
  font-size: var(--font-size-button);
  font-weight: 700;
  padding: .75rem 1.5rem;
  padding: var(--space-inset-squish-m);
  text-align: center;
  transition: background-color .2s ease-out, border-color .2s ease-out;
  transition: background-color var(--misc-transition), border-color var(--misc-transition);
}
button:hover {
  background-color: #6e6699;
  background-color: var(--color-button-hover-bg);
  border-color: #6e6699;
  border-color: var(--color-button-hover-border);
  text-decoration: none;
}
button.emphasis {
  background-color: #4b3d8f;
  background-color: var(--color-button-emphasis-bg);
  border-color: #4b3d8f;
  border-color: var(--color-button-emphasis-border);
  color: #fcfcfd;
  color: var(--color-button-emphasis-text);
}
button.emphasis:hover {
  background-color: #6e6699;
  background-color: var(--color-button-emphasis-hover-bg);
  border-color: #6e6699;
  border-color: var(--color-button-emphasis-hover-border);
}
button.emphasis:disabled,
button.emphasis[disabled] {
  background-color: #e4e3e8;
  background-color: var(--color-button-disabled-bg);
  border-color: #e4e3e8;
  border-color: var(--color-button-disabled-border);
  color: #93919c;
  color: var(--color-button-disabled-text);
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  color: #65636e;
  color: var(--color-text-subtle);
  list-style: outside;
  padding-left: 1.5rem;
  padding-left: var(--space-inline-l);
}
ul li {
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
ul li::marker {
  font-size: 1.2em;
}
.overline {
  color: #93919c;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
mark {
  background-color: #fff799;
  background-color: var(--color-highlight);
}
table {
  border-collapse: collapse;
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  margin-bottom: 5rem;
  margin-bottom: var(--space-stack-xxl);
}
table thead {
  background-color: #f1f0f5;
  background-color: var(--color-bg-hover);
  border-bottom: 1px solid #dad7e4;
  border-bottom: 1px solid var(--color-bg-contour);
  font-weight: 700;
}
table thead th {
  padding: 1rem;
  padding: var(--space-inset-square-m);
  white-space: nowrap;
}
table tbody tr {
  border-bottom: 1px solid #dad7e4;
  border-bottom: 1px solid var(--color-bg-contour);
  border-top: 1px solid #dad7e4;
  border-top: 1px solid var(--color-bg-contour);
}
table tbody tr td {
  border-left: 1px solid #dad7e4;
  border-left: 1px solid var(--color-bg-contour);
  border-right: 1px solid #dad7e4;
  border-right: 1px solid var(--color-bg-contour);
  padding: 1rem;
  padding: var(--space-inset-square-m);
}
table tbody tr td:first-child {
  border-left: none;
}
table tbody tr td:last-child {
  border-right: none;
}
table tbody tr:last-child {
  border-bottom: none;
}
body.antiquated main {
  margin: 5rem auto;
  margin: var(--space-stack-xxl) auto;
  text-align: center;
}
body.antiquated .no-upgrade-required,
html:not(.browser-not-supported) body.antiquated .upgrade-required {
  display: none;
}
html:not(.browser-not-supported) :is(body.antiquated .no-upgrade-required) {
  display: block;
}
body.antiquated .browsers {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  margin: 5rem 0;
  margin: var(--space-stack-xxl) 0;
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
}
body.antiquated .browsers p {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
}
body.antiquated .browsers .browser-logo {
  height: 180px;
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
  width: 180px;
}
body.antiquated .browsers .browsers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  gap: var(--space-xl);
  justify-content: center;
}
body.antiquated .browsers .browsers-list .browser .minimum {
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
}
body.antiquated .current-browser {
  background-color: #dcefe1;
  background-color: var(--color-success-bg);
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
  display: inline-block;
  padding: .5rem 1.25rem;
  padding: var(--space-inset-squish-s);
}
html.upgrade-required :is(body.antiquated .current-browser) {
  background-color: #fcf2cf;
  background-color: var(--color-warning-bg);
}
body.antiquated .current-browser .current-browser-major,
body.antiquated .current-browser .current-browser-name {
  font-weight: 700;
}
body.antiquated .current-browser .current-browser-version:before {
  content: "(";
}
body.antiquated .current-browser .current-browser-version:after {
  content: ")";
}
body.antiquated .current-browser .current-browser-version:empty {
  visibility: hidden;
}
body.antiquated .help {
  margin-bottom: 5rem;
  margin-bottom: var(--space-stack-xxl);
}
body.antiquated .help .contact-details {
  margin-top: 1rem;
  margin-top: var(--space-stack-m);
}
@media (max-width:480px) {
  body.antiquated .browsers-list {
    flex-direction: column;
  }
  body.antiquated .browsers-list .browser-logo {
    height: 100px;
    width: 100px;
  }
  body.antiquated .help {
    margin-bottom: 3rem;
    margin-bottom: var(--space-stack-xl);
  }
}
body.booking main {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
body.booking main .description,
body.booking main .subscript {
  max-width: 70ch;
}
body.booking main .subscript {
  color: #93919c;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
  margin-top: var(--space-stack-l);
}
body.booking main #calendar-wrapper {
  height: 50em;
  width: 100%;
}
body.resources-calculator main .contact-prompt,
body.resources-calculator main .primary-section {
  margin: 5rem auto;
  margin: var(--space-stack-xxl) auto;
  text-align: center;
}
body.resources-calculator main .contact-prompt p,
body.resources-calculator main .primary-section p {
  margin-left: auto;
  margin-right: auto;
  max-width: 70ch;
}
body.resources-calculator section.calculator {
  background-color: #f1f0f5;
  background-color: var(--color-bg-tertiary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  margin: 5rem auto;
  margin: var(--space-stack-xxl) auto;
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
  width: -moz-fit-content;
  width: fit-content;
}
body.resources-calculator section.calculator form {
  display: none;
}
body.resources-calculator section.calculator .operator-step,
body.resources-calculator section.calculator .step {
  align-items: stretch;
  display: flex;
  gap: 1.5rem;
  gap: var(--space-l);
}
body.resources-calculator section.calculator .operator-step {
  margin: 1.5rem 0;
  margin: var(--space-stack-l) 0;
}
body.resources-calculator section.calculator .operator-step .operator,
body.resources-calculator section.calculator .step .term {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}
body.resources-calculator section.calculator .step .term {
  padding: 1rem;
  padding: var(--space-inset-square-m);
}
body.resources-calculator section.calculator .step .adaption {
  display: flex;
  flex-basis: 400px;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-m);
  justify-content: center;
  text-align: center;
}
body.resources-calculator section.calculator .step .adaption .descriptor {
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
}
body.resources-calculator section.calculator .step .adaption .slider {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  border: 1px solid #dad7e4;
  border: 1px solid var(--color-bg-contour);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  box-shadow: 2px 10px 24px #aaa8ad40;
  box-shadow: var(--misc-shadow-medium);
}
body.resources-calculator section.calculator .step .details {
  color: #65636e;
  color: var(--color-text-subtle);
  flex: 1;
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
  margin: auto;
  max-width: 200px;
}
body.resources-calculator section.calculator .operator {
  font-size: 180%;
}
body.resources-calculator section.calculator .operator,
body.resources-calculator section.calculator .term {
  flex: 0 0;
  flex-basis: 150px;
}
body.resources-calculator section.calculator .small-term,
body.resources-calculator section.calculator .term {
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
  color: #fff;
  color: var(--color-swatch-text);
  font-weight: 700;
}
body.resources-calculator section.calculator .small-term.variable,
body.resources-calculator section.calculator .term {
  background-color: #4b3d8f;
  background-color: var(--color-swatch-beta);
}
body.resources-calculator section.calculator .small-term {
  background-color: #928fa3;
  background-color: var(--color-neutral);
}
body.resources-calculator section.calculator .result .term {
  background-color: #e7754b;
  background-color: var(--color-swatch-delta);
}
body.resources-calculator section.calculator .breakdown {
  align-content: space-between;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-s);
  justify-content: center;
  min-height: 80px;
}
body.resources-calculator section.calculator .breakdown .small-operator,
body.resources-calculator section.calculator .breakdown .small-term {
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
}
body.resources-calculator section.calculator .breakdown .small-operator {
  font-size: 140%;
}
body.resources-calculator section.calculator .breakdown .small-term {
  padding: .5rem 1.25rem;
  padding: var(--space-inset-squish-s);
  text-align: center;
}
body.resources-calculator section.calculator .result .bottom-line {
  font-size: 24px;
  font-size: var(--font-size-text-prominent);
  font-weight: 700;
}
@media (max-width:730px) {
  body.resources-calculator section.calculator .step .details {
    display: none;
  }
}
@media (max-width:480px) {
  body.resources-calculator main .contact-prompt,
  body.resources-calculator main .primary-section {
    margin: 1.5rem auto;
    margin: var(--space-stack-l) auto;
  }
  body.resources-calculator section.calculator {
    margin: 3rem auto;
    margin: var(--space-stack-xl) auto;
  }
  body.resources-calculator section.calculator .term {
    flex-basis: auto;
  }
  body.resources-calculator section.calculator .step {
    flex-direction: column;
    gap: 1rem;
    gap: var(--space-m);
  }
  body.resources-calculator section.calculator .step .adaption {
    flex-basis: auto;
  }
  body.resources-calculator section.calculator .operator-step {
    justify-content: center;
  }
}
.job-openings {
  align-items: center;
  background-color: #fcf2cf;
  background-color: var(--color-swatch-gamma-muted);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
}
.job-openings .heading {
  text-align: center;
  width: 80%;
}
.job-openings .passage {
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
.job-openings .epilogue {
  margin-top: 1rem;
  margin-top: var(--space-stack-m);
}
.job-openings .epilogue,
.job-openings .passage {
  color: #65636e;
  color: var(--color-text-subtle);
  text-align: center;
  width: 75ch;
}
.job-openings .job-offers {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 1.5rem 1rem 0;
  margin: var(--space-stack-l) var(--space-inline-m) 0 var(--space-inline-m);
}
.job-openings .job-offers .job-offer {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  box-shadow: 1px 5px 32px #aaa8ad40;
  box-shadow: var(--misc-shadow-light);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  gap: var(--space-l);
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
  width: 650px;
}
.job-openings .job-offers .job-offer .section-primary {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-m);
}
.job-openings .job-offers .job-offer .section-primary .title {
  font-size: 20px;
  font-size: var(--font-size-heading-inline:);
  font-weight: 700;
}
.job-openings .job-offers .job-offer .section-primary .location {
  color: #65636e;
  color: var(--color-text-subtle);
}
.job-openings .job-offers .job-offer .section-secondary {
  align-self: center;
}
@media (max-width:730px) {
  .job-openings .epilogue,
  .job-openings .passage {
    width: 80%;
  }
  .job-openings .job-offers .job-offer {
    width: 400px;
  }
  .job-openings .job-offers .job-offer .section-primary .title {
    font-size: 20px;
    font-size: var(--font-size-heading-inline);
  }
}
@media (max-width:480px) {
  .picture {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .job-openings {
    padding: 3rem 0;
    padding: var(--space-stack-xl) 0;
  }
  .job-openings .job-offers .job-offer {
    width: 100%;
  }
}
body.contact-index main {
  --local-contact-width:40%;
}
body.contact-index main .options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  gap: var(--space-l);
  justify-content: center;
  margin-top: -5rem;
  margin-top: calc(var(--space-stack-xxl)*-1);
  padding-bottom: 5rem;
  padding-bottom: var(--space-stack-xxl);
}
body.contact-index main .options .page-entry-component {
  width: var(--local-contact-width);
}
body.contact-index main .careers {
  align-items: center;
  background-color: #f4f3fc;
  background-color: var(--color-swatch-beta-bg);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  display: flex;
  flex-direction: column;
  margin: 0 auto 5rem;
  margin-bottom: var(--space-stack-xxl);
  padding: 3rem;
  padding: var(--space-inset-square-xl);
  width: calc(var(--local-contact-width)*2 + 2rem);
  width: calc(var(--local-contact-width)*2 + var(--space-l) + var(--space-inline-s));
}
body.contact-index main .careers p {
  text-align: center;
}
body.contact-index main .dynamic-phone {
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
  text-align: center;
}
body.contact-index main .dynamic-phone .heading {
  margin-bottom: 1.25rem;
  margin-bottom: var(--space-stack-ml);
}
body.contact-index main .regional-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  gap: var(--space-m);
  justify-content: center;
}
body.contact-index main .regional-contacts .regional-contact {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
}
body.contact-index main .regional-contacts .regional-contact .flag-component {
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
body.contact-index main .regional-contacts .regional-contact .country {
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
body.contact-index main .regional-contacts .regional-contact a.phone {
  color: inherit;
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  font-weight: 400;
}
body.contact-index main .office-address {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  gap: var(--space-stack-s);
  padding: 5rem 0;
  padding: var(--space-stack-xxl) 0;
  text-align: center;
}
@media (max-width:730px) {
  body.contact-index main .options {
    gap: 1rem;
    gap: var(--space-m);
  }
  body.contact-index main .careers,
  body.contact-index main .options .page-entry-component {
    width: 90%;
  }
}
body.contact-developer main form,
body.contact-inquiry main form,
body.contact-press main form,
body.contact-sales main form {
  background-color: #f1f0f5;
  background-color: var(--color-bg-tertiary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  margin: 0 auto 5rem;
  margin: 0 auto var(--space-stack-xxl) auto;
  max-width: 30rem;
  padding: 3rem;
  padding: var(--space-inset-square-xl);
  position: relative;
  text-align: left;
}
body.contact-developer main form .form-failure,
body.contact-developer main form .form-success,
body.contact-inquiry main form .form-failure,
body.contact-inquiry main form .form-success,
body.contact-press main form .form-failure,
body.contact-press main form .form-success,
body.contact-sales main form .form-failure,
body.contact-sales main form .form-success {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  display: none;
  height: 100%;
  left: 0;
  padding: 3rem;
  padding: var(--space-inset-square-xl);
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
body.contact-developer main form.failure .form-failure,
body.contact-developer main form.success .form-success,
body.contact-inquiry main form.failure .form-failure,
body.contact-inquiry main form.success .form-success,
body.contact-press main form.failure .form-failure,
body.contact-press main form.success .form-success,
body.contact-sales main form.failure .form-failure,
body.contact-sales main form.success .form-success {
  display: flex;
}
body.contact-developer main form.form-contact,
body.contact-inquiry main form.form-contact,
body.contact-press main form.form-contact,
body.contact-sales main form.form-contact {
  margin-top: -5rem;
  margin-top: calc(var(--space-stack-xxl)*-1);
}
body.contact-developer main form select,
body.contact-inquiry main form select,
body.contact-press main form select,
body.contact-sales main form select {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  color: #65636e;
  color: var(--color-text-subtle);
}
body.contact-developer main form button,
body.contact-inquiry main form button,
body.contact-press main form button,
body.contact-sales main form button {
  width: 100%;
}
body.contact-sales main .primary {
  align-items: center;
  display: flex;
  gap: 3rem;
  gap: var(--space-xl);
  padding-bottom: 5rem;
  padding-bottom: var(--space-stack-xxl);
}
body.contact-sales main .primary .contact-section,
body.contact-sales main .primary .content-section {
  width: 50%;
}
body.contact-sales main .primary .content-section {
  margin-top: 5rem;
  margin-top: var(--space-stack-xxl);
}
body.contact-sales main .primary .content-section .title {
  font-size: 48px;
  font-size: var(--font-size-heading2);
}
body.contact-sales main .primary .content-section .description {
  color: #65636e;
  color: var(--color-text-subtle);
  max-width: 70ch;
}
body.contact-sales main .primary .content-section ul {
  padding-bottom: 3rem;
  padding-bottom: var(--space-stack-xl);
}
body.contact-sales main .primary .content-section .review {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  padding-bottom: .5rem;
  padding-bottom: var(--space-stack-s);
}
body.contact-sales main .primary .contact-section {
  display: flex;
  justify-content: flex-end;
}
body.contact-sales main .primary .block-logo-cluster-component {
  width: 80%;
}
body.contact-sales main .primary .form-contact {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  margin-top: 5rem;
  margin-top: var(--space-stack-xxl);
}
body.contact-sales main .primary .g2-badges,
body.contact-sales main .secondary .g2-badges {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  gap: var(--space-inline-xl);
  padding-bottom: 3rem;
  padding-bottom: var(--space-stack-xl);
}
body.contact-sales main .primary .visible-wide-screen,
body.contact-sales main .secondary .visible-wide-screen {
  display: block;
}
body.contact-sales main .primary .visible-narrow-screen,
body.contact-sales main .secondary .visible-narrow-screen {
  display: none;
}
body.contact-sales main .control-select {
  display: flex;
}
body.contact-sales main .control-select .open-indicator {
  align-self: center;
  aspect-ratio: 1/1;
  background-color: #302e38;
  background-color: var(--color-text);
  -webkit-clip-path: polygon(0 30%, 10% 20%, 50% 60%, 90% 20%, 100% 30%, 50% 80%);
  clip-path: polygon(0 30%, 10% 20%, 50% 60%, 90% 20%, 100% 30%, 50% 80%);
  height: 100%;
  margin-left: -1.5rem;
  margin-left: calc(var(--space-inline-l)*-1);
  width: .8rem;
}
@media (max-width:930px) {
  body.contact-sales main .primary {
    flex-direction: column;
    gap: 1.5rem;
    gap: var(--space-l);
  }
  body.contact-sales main .primary .block-logo-cluster-component {
    width: 100%;
  }
  body.contact-sales main .primary .customer-rating {
    justify-content: center;
  }
  body.contact-sales main .primary .contact-section,
  body.contact-sales main .primary .content-section {
    width: 100%;
  }
  body.contact-sales main .primary .contact-section {
    justify-content: center;
  }
  body.contact-sales main .primary .content-section {
    text-align: center;
  }
  body.contact-sales main .primary .content-section .description {
    margin: 0 auto 1.5rem;
    margin: 0 auto var(--space-stack-l) auto;
  }
  body.contact-sales main .primary .form-contact {
    margin-top: 0;
  }
  body.contact-sales main .primary .g2-badges,
  body.contact-sales main .secondary .g2-badges {
    justify-content: center;
  }
  body.contact-sales main .primary .g2-badges img,
  body.contact-sales main .secondary .g2-badges img {
    height: 90px;
    width: 70px;
  }
  body.contact-sales main .primary .visible-wide-screen,
  body.contact-sales main .secondary .visible-wide-screen {
    display: none;
  }
  body.contact-sales main .primary .visible-narrow-screen,
  body.contact-sales main .secondary .visible-narrow-screen {
    display: block;
  }
  body.contact-sales main .primary .visible-narrow-screen .review,
  body.contact-sales main .secondary .visible-narrow-screen .review {
    margin-bottom: 1.5rem;
    margin-bottom: var(--space-stack-l);
    text-align: center;
  }
}
@media (max-width:480px) {
  body.contact-sales .all-except-footer .primary {
    gap: 0;
  }
  body.contact-sales .all-except-footer .primary .content-section {
    margin-top: 3rem;
    margin-top: var(--space-stack-xl);
  }
}
body.resources-resources-customer-stories-index main .customer-stories {
  grid-gap: 1.5rem;
  grid-gap: var(--space-l);
  display: grid;
  gap: 1.5rem;
  gap: var(--space-l);
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 5rem;
  margin-bottom: var(--space-stack-xxl);
  margin-top: -5rem;
  margin-top: calc(var(--space-stack-xxl)*-1);
}
@media (max-width:930px) {
  body.resources-resources-customer-stories-index main .customer-stories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:730px) {
  body.resources-resources-customer-stories-index main .customer-stories {
    gap: 1rem;
    gap: var(--space-m);
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  body.resources-resources-customer-stories-index main .customer-stories .page-entry-component {
    width: 90%;
  }
}
main .customer-story .customer-story-body {
  display: flex;
  flex-direction: row;
  gap: 5rem;
  gap: var(--space-xxl);
}
main .customer-story .customer-story-body .info {
  background-color: #f6f6f9;
  background-color: var(--color-bg-secondary);
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
  box-shadow: 1px 5px 32px #aaa8ad40;
  box-shadow: var(--misc-shadow-light);
  flex: 1;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100vh - 80px - 2rem);
  max-height: calc(100vh - var(--layout-header-height) - var(--space-stack-m)*2);
  overflow-y: auto;
  padding: 1.5rem;
  padding: var(--space-inset-square-l);
  position: sticky;
  top: calc(80px + 1rem);
  top: calc(var(--layout-header-height) + var(--space-stack-m));
}
main .customer-story .customer-story-body .info .logo-image {
  height: auto;
  margin: auto;
  max-height: 6.25rem;
  max-width: 100%;
  width: auto;
}
main .customer-story .customer-story-body .info .details {
  border-bottom: 1px solid #dad7e4;
  border-bottom: 1px solid var(--color-bg-contour);
  margin: 0 0 1rem;
  margin-bottom: var(--space-stack-m);
  padding: 0 0 1rem;
  padding: 0 0 var(--space-stack-m) 0;
}
main .customer-story .customer-story-body .info .details .detail {
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-size: 18px;
  font-size: var(--font-size-text-emphasis);
  margin-top: 1rem;
  margin-top: var(--space-stack-m);
}
main .customer-story .customer-story-body .info .details .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  gap: var(--space-inline-s);
}
main .customer-story .customer-story-body .info .details .pill {
  background-color: #dcefe1;
  background-color: var(--color-swatch-alpha-muted);
  border-radius: .6rem;
  border-radius: var(--misc-rounding-light);
  color: #65636e;
  color: var(--color-text-subtle);
  display: inline-block;
  margin-top: .5rem;
  margin-top: var(--space-stack-s);
  padding: .5rem;
  padding: var(--space-inset-square-s);
}
main .customer-story .customer-story-body .info .takeaways-heading {
  font-size: 18px;
  font-size: var(--font-size-header);
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
main .customer-story .customer-story-body .content {
  flex: 3;
}
main .customer-story .customer-story-body .content blockquote,
main .customer-story .customer-story-body .content p,
main .customer-story .customer-story-body .content q {
  font-size: 20px;
  font-size: var(--font-size-heading-inline);
  line-height: 1.8;
  line-height: var(--font-line-height-tall);
  max-width: 40rem;
}
main .customer-story .customer-story-body .content h3 {
  margin-top: 3rem;
  margin-top: var(--space-stack-xl);
  max-width: 40rem;
}
main .customer-story .customer-story-body .content > :last-child {
  margin-bottom: 0;
}
@media (max-width:730px) {
  main .customer-story .customer-story-body {
    flex-direction: column;
    gap: 1.5rem;
    gap: var(--space-stack-l);
  }
  main .customer-story .customer-story-body .info {
    position: relative;
    top: 0;
    width: auto;
  }
}
body.exhibit main .exhibit-entry,
body.exhibit main .exhibit-variant {
  width: -moz-max-content;
  width: max-content;
}
body.exhibit main .exhibit-entry {
  font-weight: 700;
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
  text-transform: uppercase;
}
body.exhibit main .exhibit-entry,
body.exhibit main .exhibit-variant {
  background-color: #fff799;
  background-color: var(--color-highlight);
}
body.exhibit main img {
  margin-left: auto;
  margin-right: auto;
}
body.exhibit main hr {
  margin-bottom: 1.5rem;
  margin-bottom: var(--space-stack-l);
  margin-top: 1.5rem;
  margin-top: var(--space-stack-l);
}
body.features-index main .features {
  grid-gap: 1.5rem;
  grid-gap: var(--space-l);
  display: grid;
  gap: 1.5rem;
  gap: var(--space-l);
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 5rem;
  margin-bottom: var(--space-stack-xxl);
  margin-top: -5rem;
  margin-top: calc(var(--space-stack-xxl)*-1);
}
@media (max-width:930px) {
  body.features-index main .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:730px) {
  body.features-index main .features {
    gap: 1rem;
    gap: var(--space-m);
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  body.features-index main .features .page-entry-component {
    width: 90%;
  }
}
body.index .customer-rating {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  gap: var(--space-inline-xl);
  justify-content: center;
  margin-top: -1.5rem;
  margin-top: calc(var(--space-stack-l)*-1);
  padding-bottom: 3rem;
  padding-bottom: var(--space-stack-xl);
}
@media (max-width:730px) {
  body.index .customer-rating {
    flex-wrap: wrap;
    gap: .5rem;
    gap: var(--space-inline-s);
    margin-top: 0;
  }
}
body.job-offer main {
  padding-bottom: 5rem;
  padding-bottom: var(--space-stack-xxl);
  padding-top: 1.5rem;
  padding-top: var(--space-stack-l);
}
body.job-offer main p {
  max-width: 70ch;
}
body.job-offer main p[\:has\(strong\)] {
  font-size: 38px;
  font-size: var(--font-size-heading3);
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
body.job-offer main p:has(strong) {
  font-size: 38px;
  font-size: var(--font-size-heading3);
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
body.job-offer main .button {
  margin-top: 3rem;
  margin-top: var(--space-stack-xl);
}
body.about-press .about-segment {
  padding: 5rem 1.5rem;
  padding: var(--space-stack-xxl) var(--space-inline-l);
}
body.about-press .about-segment .summary {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  margin-bottom: var(--space-stack-xl);
  text-align: center;
}
body.about-press .about-segment .summary p {
  max-width: 70ch;
}
body.about-press .about-segment .content {
  display: flex;
  gap: 3rem;
  gap: var(--space-xl);
  justify-content: center;
}
body.about-press .about-segment .content .backstory,
body.about-press .about-segment .content .company {
  max-width: 50ch;
}
@media (max-width:730px) {
  body.about-press .about-segment .content {
    display: flex;
    flex-direction: column;
  }
  body.about-press .about-segment .content .backstory,
  body.about-press .about-segment .content .company {
    width: 100%;
  }
  body.about-press .about-segment {
    padding: 3rem 1.5rem;
    padding: var(--space-stack-xl) var(--space-inline-l);
  }
}
body.resources-pricing .all-except-footer {
  background:
    linear-gradient(
      62deg,
      #edebfa,
      #dcefe1);
  background:
    linear-gradient(
      62deg,
      var(--color-swatch-beta-muted) 0,
      var(--color-swatch-alpha-muted) 100%);
}
body.resources-pricing header:not(.active) {
  background-color: transparent !important;
}
body.resources-pricing .plans {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  gap: var(--space-l);
  justify-content: center;
  margin: 0 auto;
}
body.resources-pricing .plans .plan {
  background-color: #fcfcfd;
  background-color: var(--color-bg);
  border-radius: 1rem;
  border-radius: var(--misc-rounding-heavy);
  min-width: 20rem;
  padding: 3rem;
  padding: var(--space-inset-square-xl);
  text-align: center;
  width: 30%;
}
body.resources-pricing .plans .plan .header,
body.resources-pricing .plans .plan .pricing {
  margin-bottom: 3rem;
  margin-bottom: var(--space-stack-xl);
}
body.resources-pricing .plans .plan .description {
  color: #65636e;
  color: var(--color-text-subtle);
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
}
body.resources-pricing .plans .plan .price {
  font-family: PT Sans Caption, sans-serif;
  font-family: var(--font-caption);
  font-size: 24px;
  font-size: var(--font-size-text-prominent);
  font-weight: 700;
  margin-bottom: .5rem;
  margin-bottom: var(--space-stack-s);
}
body.resources-pricing .plans .plan .header .title,
body.resources-pricing .plans .plan .pricing .description {
  margin-bottom: 1rem;
  margin-bottom: var(--space-stack-m);
}
body.resources-pricing .plans .plan .features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--space-m);
  text-align: left;
}
body.resources-pricing .plans .plan .features .feature {
  align-items: center;
  display: flex;
  gap: 1rem;
  gap: var(--space-m);
}
body.resources-pricing .plans .plan .features .feature img {
  height: 16px;
  width: 14px;
}
body.resources-pricing .plans .plan .features .feature-label {
  font-weight: 700;
}
body.resources-pricing .addendum {
  color: #93919c;
  color: var(--color-text-muted);
  font-size: 14px;
  font-size: var(--font-size-text-subtle);
  margin: 1rem 0 5rem;
  margin: var(--space-stack-m) 0 var(--space-stack-xxl) 0;
  text-align: center;
}
@media (max-width:730px) {
  body.resources-pricing .plans .plan {
    width: 90%;
  }
}
body.legal-privacy .section {
  margin-bottom: 3rem;
  margin-bottom: var(--space-stack-xl);
}
body.solutions-solutions-roles-employee,
body.solutions-solutions-roles-executive,
body.solutions-solutions-roles-finance,
body.solutions-solutions-roles-it {
  --local-workaround-max-width:75%;
  --local-mobile-max-width:60%;
}
body.solutions-solutions-roles-employee .background,
body.solutions-solutions-roles-executive .background,
body.solutions-solutions-roles-finance .background,
body.solutions-solutions-roles-it .background {
  border-radius: .8rem;
  border-radius: var(--misc-rounding);
}
body.solutions-solutions-roles-employee .vertical,
body.solutions-solutions-roles-executive .vertical,
body.solutions-solutions-roles-finance .vertical,
body.solutions-solutions-roles-it .vertical {
  max-height: 580px;
  max-width: 100%;
  width: auto;
}
body.solutions-solutions-roles-employee .overlay,
body.solutions-solutions-roles-executive .overlay,
body.solutions-solutions-roles-finance .overlay,
body.solutions-solutions-roles-it .overlay {
  position: absolute;
  z-index: 10;
}
body.solutions-solutions-roles-employee .left-bottom,
body.solutions-solutions-roles-executive .left-bottom,
body.solutions-solutions-roles-finance .left-bottom,
body.solutions-solutions-roles-it .left-bottom {
  bottom: -70px;
  left: -80px;
}
body.solutions-solutions-roles-employee .left-bottom-inner,
body.solutions-solutions-roles-executive .left-bottom-inner,
body.solutions-solutions-roles-finance .left-bottom-inner,
body.solutions-solutions-roles-it .left-bottom-inner {
  bottom: -50px;
  left: -10px;
}
body.solutions-solutions-roles-employee .left-bottom-up,
body.solutions-solutions-roles-executive .left-bottom-up,
body.solutions-solutions-roles-finance .left-bottom-up,
body.solutions-solutions-roles-it .left-bottom-up {
  bottom: -15px;
  left: -80px;
}
body.solutions-solutions-roles-employee .left-top-down,
body.solutions-solutions-roles-executive .left-top-down,
body.solutions-solutions-roles-finance .left-top-down,
body.solutions-solutions-roles-it .left-top-down {
  left: -60px;
  top: 0;
}
body.solutions-solutions-roles-employee .right-bottom,
body.solutions-solutions-roles-executive .right-bottom,
body.solutions-solutions-roles-finance .right-bottom,
body.solutions-solutions-roles-it .right-bottom {
  bottom: -90px;
  right: -60px;
}
body.solutions-solutions-roles-employee .right-bottom-inner,
body.solutions-solutions-roles-executive .right-bottom-inner,
body.solutions-solutions-roles-finance .right-bottom-inner,
body.solutions-solutions-roles-it .right-bottom-inner {
  bottom: -60px;
  right: -10px;
}
@media (max-width:1380px) {
  body.solutions-solutions-roles-employee .overlay,
  body.solutions-solutions-roles-executive .overlay,
  body.solutions-solutions-roles-finance .overlay,
  body.solutions-solutions-roles-it .overlay {
    max-width: var(--local-workaround-max-width);
  }
  body.solutions-solutions-roles-employee .landscape-narrow,
  body.solutions-solutions-roles-executive .landscape-narrow,
  body.solutions-solutions-roles-finance .landscape-narrow,
  body.solutions-solutions-roles-it .landscape-narrow {
    max-width: 100%;
  }
  body.solutions-solutions-roles-employee .left-bottom,
  body.solutions-solutions-roles-employee .left-bottom-up,
  body.solutions-solutions-roles-employee .left-top-down,
  body.solutions-solutions-roles-executive .left-bottom,
  body.solutions-solutions-roles-executive .left-bottom-up,
  body.solutions-solutions-roles-executive .left-top-down,
  body.solutions-solutions-roles-finance .left-bottom,
  body.solutions-solutions-roles-finance .left-bottom-up,
  body.solutions-solutions-roles-finance .left-top-down,
  body.solutions-solutions-roles-it .left-bottom,
  body.solutions-solutions-roles-it .left-bottom-up,
  body.solutions-solutions-roles-it .left-top-down {
    left: -40px;
  }
  body.solutions-solutions-roles-employee .right-bottom,
  body.solutions-solutions-roles-executive .right-bottom,
  body.solutions-solutions-roles-finance .right-bottom,
  body.solutions-solutions-roles-it .right-bottom {
    right: -40px;
  }
}
@media (max-width:730px) {
  body.solutions-solutions-roles-employee .vertical,
  body.solutions-solutions-roles-executive .vertical,
  body.solutions-solutions-roles-finance .vertical,
  body.solutions-solutions-roles-it .vertical {
    height: 450px;
    width: 400px;
  }
  body.solutions-solutions-roles-employee .horizontal,
  body.solutions-solutions-roles-executive .horizontal,
  body.solutions-solutions-roles-finance .horizontal,
  body.solutions-solutions-roles-it .horizontal {
    max-height: 450px;
    max-width: 500px;
    width: 100%;
  }
  body.solutions-solutions-roles-employee .background,
  body.solutions-solutions-roles-executive .background,
  body.solutions-solutions-roles-finance .background,
  body.solutions-solutions-roles-it .background {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
  body.solutions-solutions-roles-employee .it-integration,
  body.solutions-solutions-roles-executive .it-integration,
  body.solutions-solutions-roles-finance .it-integration,
  body.solutions-solutions-roles-it .it-integration {
    -o-object-position: left top;
    object-position: left top;
  }
}
@media (max-width:480px) {
  body.solutions-solutions-roles-employee .vertical,
  body.solutions-solutions-roles-executive .vertical,
  body.solutions-solutions-roles-finance .vertical,
  body.solutions-solutions-roles-it .vertical {
    height: 300px;
  }
  body.solutions-solutions-roles-employee .overlay,
  body.solutions-solutions-roles-executive .overlay,
  body.solutions-solutions-roles-finance .overlay,
  body.solutions-solutions-roles-it .overlay {
    height: auto;
    max-width: var(--local-mobile-max-width);
  }
  body.solutions-solutions-roles-employee .portrait,
  body.solutions-solutions-roles-executive .portrait,
  body.solutions-solutions-roles-finance .portrait,
  body.solutions-solutions-roles-it .portrait {
    max-width: calc(var(--local-mobile-max-width)*.9);
  }
  body.solutions-solutions-roles-employee .landscape,
  body.solutions-solutions-roles-executive .landscape,
  body.solutions-solutions-roles-finance .landscape,
  body.solutions-solutions-roles-it .landscape {
    max-width: var(--local-workaround-max-width);
  }
  body.solutions-solutions-roles-employee .landscape-narrow,
  body.solutions-solutions-roles-executive .landscape-narrow,
  body.solutions-solutions-roles-finance .landscape-narrow,
  body.solutions-solutions-roles-it .landscape-narrow {
    max-width: 100%;
  }
  body.solutions-solutions-roles-employee .left-bottom,
  body.solutions-solutions-roles-employee .left-bottom-up,
  body.solutions-solutions-roles-executive .left-bottom,
  body.solutions-solutions-roles-executive .left-bottom-up,
  body.solutions-solutions-roles-finance .left-bottom,
  body.solutions-solutions-roles-finance .left-bottom-up,
  body.solutions-solutions-roles-it .left-bottom,
  body.solutions-solutions-roles-it .left-bottom-up {
    bottom: -60px;
    left: -35px;
  }
  body.solutions-solutions-roles-employee .left-top-down,
  body.solutions-solutions-roles-executive .left-top-down,
  body.solutions-solutions-roles-finance .left-top-down,
  body.solutions-solutions-roles-it .left-top-down {
    left: -35px;
  }
  body.solutions-solutions-roles-employee .right-bottom,
  body.solutions-solutions-roles-executive .right-bottom,
  body.solutions-solutions-roles-finance .right-bottom,
  body.solutions-solutions-roles-it .right-bottom {
    right: -35px;
  }
  body.solutions-solutions-roles-employee .right-bottom-inner,
  body.solutions-solutions-roles-executive .right-bottom-inner,
  body.solutions-solutions-roles-finance .right-bottom-inner,
  body.solutions-solutions-roles-it .right-bottom-inner {
    bottom: -50px;
  }
  body.solutions-solutions-roles-employee .header,
  body.solutions-solutions-roles-executive .header,
  body.solutions-solutions-roles-finance .header,
  body.solutions-solutions-roles-it .header {
    bottom: -75px;
  }
}
body.resources-security .documents {
  display: flex;
  justify-content: center;
  margin: -5rem 0 1rem;
  margin: calc(var(--space-stack-xxl)*-1) 0 var(--space-stack-m);
}
body.resources-security .documents .page-entry-component {
  max-width: 400px;
}
body.resources-security .fingerprint {
  font-size: 10px;
  text-align: center;
}
body.resources-security .fingerprint,
body.solutions main .options {
  margin-bottom: 5rem;
  margin-bottom: var(--space-stack-xxl);
  margin-top: -5rem;
  margin-top: calc(var(--space-stack-xxl)*-1);
}
body.solutions main .options {
  grid-gap: 1.5rem;
  grid-gap: var(--space-l);
  display: grid;
  gap: 1.5rem;
  gap: var(--space-l);
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 5rem;
  padding-bottom: var(--space-stack-xxl);
}
@media (max-width:730px) {
  body.solutions main .options {
    gap: 1rem;
    gap: var(--space-m);
  }
}
@media (max-width:480px) {
  body.solutions main .options {
    grid-template-columns: repeat(1, 1fr);
  }
}
