/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* eymbr
The eymbr design system — tokens, dark base, and flat components.
Included last so it overrides the boilerplate defaults. See docs/eymbr-style-guide.md
*/

/* ============================================================
   eymbr design tokens — canonical dark theme (style guide §7)
   One orange, one green, one red. Flat. Depth = zinc ladder + 1px borders.
   ============================================================ */
:root {
  /* eymbr palette */
  --eymbr-orange:#f69200;   /* identity + warning — flat accent, never a fill (except the pill) */
  --eymbr-green:#76B900;    /* live data + health — the data fill, flat */
  --eymbr-red:#EF4444;      /* error messages + meter critical */
  --eymbr-info:#06B6D4;     /* neutral info, rare */
  --eymbr-primary:var(--eymbr-orange);   /* app alias */
  --text-eymbr:var(--eymbr-orange);

  /* zinc neutrals — elevation L0->L3, then pressed */
  --bg-primary:#18181b; --bg-secondary:#27272a; --bg-tertiary:#3f3f46; --bg-hover:#52525b; --bg-active:#71717a;

  /* text */
  --text-inverse:#fff; --text-primary:#ddd; --text-secondary:#aaa; --text-muted:#888;

  /* borders */
  --border-primary:#52525b; --border-secondary:#71717a; --border-hover:#f69200;

  /* status (aliases of the palette) */
  --success:#76B900; --warning:#f69200; --error:#EF4444; --info:#06B6D4;

  /* neutral shadows — floating overlays only (menus/modals), never inline, never colored */
  --shadow-sm:0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);

  /* type */
  --font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,Roboto,'Helvetica Neue',sans-serif;
  --font-mono:'SF Mono',Monaco,'Cascadia Code','Roboto Mono',Consolas,'Courier New',monospace;
  --font-size-xs:.75rem; --font-size-sm:.875rem; --font-size-base:1rem;
  --font-size-lg:1.125rem; --font-size-xl:1.25rem; --font-size-2xl:1.5rem;

  /* space / radius / motion */
  --space-xs:.25rem; --space-sm:.5rem; --space-md:.75rem; --space-lg:1rem; --space-xl:1.5rem; --space-2xl:2rem;
  --radius-sm:.25rem; --radius-md:.375rem; --radius-lg:.5rem; --radius-xl:.75rem; --radius-round:9999px;
  --transition-fast:.15s ease; --transition-base:.2s ease; --transition-slow:.3s ease;
}
/* ============================================================
   eymbr base — dark zinc canvas, calm typographic hierarchy
   Overrides the boilerplate's light defaults. Dark-only site.
   ============================================================ */

html { background-color: var(--bg-primary) !important; scroll-behavior: smooth; }
/* keep anchor targets clear of the sticky header */
section[id] { scroll-margin-top: 84px; }

body,
.body-wrapper,
.body-container-wrapper {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Headings — white, tight (force over field-driven inherited color) */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-inverse) !important;
  font-family: var(--font-family);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-weight: 700; }
/* Opt-in orange accent inside a heading (e.g. one emphasized word) */
h1 .accent, h2 .accent, h3 .accent { color: var(--eymbr-orange) !important; }

p { color: var(--text-primary); }

small, .text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

/* Links — eymbr orange, underline on hover. No glow. */
a { color: var(--eymbr-orange); text-decoration: none; transition: color var(--transition-base); }
a:hover, a:focus-visible { color: var(--eymbr-orange); text-decoration: underline; }

/* Machine values / code */
code, kbd, pre, samp { font-family: var(--font-mono); }
code { color: var(--text-inverse); background: var(--bg-tertiary); padding: .1em .35em; border-radius: var(--radius-sm); }

/* Selection */
::selection { background: var(--eymbr-orange); color: var(--bg-primary); }

/* Rules — thin, neutral (a thin orange rule is an allowed accent: use .rule-accent) */
hr { border: 0; border-top: 1px solid var(--border-primary); margin: var(--space-2xl) 0; }
.rule-accent { border-top: 2px solid var(--eymbr-orange); width: 48px; margin: var(--space-lg) 0; }

/* Layout helpers usable from rich-text / custom-HTML modules */
.eymbr-container { max-width: 1240px; margin-inline: auto; padding-inline: var(--space-xl); }
.eymbr-section { padding-block: 80px; background: var(--bg-primary); }
.eymbr-section--panel { background: var(--bg-secondary); }

/* Elevation utilities (respect the ladder, always with a border) */
.l0 { background: var(--bg-primary); }
.l1 { background: var(--bg-secondary); border: 1px solid var(--border-primary); }
.l2 { background: var(--bg-tertiary); border: 1px solid var(--border-primary); }
.l3 { background: var(--bg-hover);    border: 1px solid var(--border-primary); }

/* Dark-only: default any drag-and-drop section to the canvas unless it opts into a panel.
   (Beats the boilerplate's inline light section backgrounds.) */
.body-wrapper .dnd-section { background-color: var(--bg-primary); }
.dnd-section.eymbr-panel { background-color: var(--bg-secondary) !important; }

/* Simple responsive grid for building sections from rich-text/custom HTML */
.eymbr-grid { display: grid; gap: var(--space-xl); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.eymbr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.eymbr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.eymbr-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) { .eymbr-grid--2, .eymbr-grid--3, .eymbr-grid--4 { grid-template-columns: 1fr; } }

/* Hero */
.eymbr-hero { text-align: center; max-width: 820px; margin-inline: auto; }
.eymbr-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: var(--space-lg); }
.eymbr-hero .lede { font-size: var(--font-size-xl); color: var(--text-secondary); line-height: 1.5; }
.eymbr-cta-row { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; margin-top: var(--space-xl); }
.eymbr-center { text-align: center; }
.eymbr-pad { padding-block: 80px; }
.eymbr-two-col { display: grid; gap: var(--space-2xl); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; }
.eymbr-list-check { list-style: none; padding: 0; margin: 0; }
.eymbr-list-check li { position: relative; padding-left: 1.5rem; margin-bottom: var(--space-sm); color: var(--text-primary); }
.eymbr-list-check li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: var(--radius-round); background: var(--success); }
.eymbr-mt-sm { margin-top: var(--space-sm); }
.eymbr-mt { margin-top: var(--space-lg); }
.eymbr-mt-lg { margin-top: var(--space-xl); }
.tm { font-size: 0.55em; vertical-align: 0.5em; margin-left: 0.04em; font-weight: 400; }
.eymbr-mb-0 { margin-bottom: 0; }
/* ============================================================
   eymbr components — flat, token-driven. Overrides boilerplate + HubSpot chrome.
   Signature: neutral ghost buttons, one filled orange pill, green data fills,
   hover only on interactive elements (orange border + one rung lighter).
   ============================================================ */

/* ---- Buttons: neutral ghost (flat, no severity colors) ---------------- */
button, .button, .hs-button,
.hs-button.primary, a.cta_button, .cta_button {
  background: transparent !important;
  color: var(--text-inverse) !important;
  border: 1px solid var(--border-primary) !important;
  border-radius: var(--radius-md) !important;
  font: 500 var(--font-size-base)/1.2 var(--font-family) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  min-height: 36px;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
  box-shadow: none !important; text-transform: none !important;
}
button:hover, .button:hover, .hs-button:hover, a.cta_button:hover, .cta_button:hover,
button:focus-visible, .button:focus-visible, .hs-button:focus-visible {
  background: var(--bg-tertiary) !important;
  border-color: var(--eymbr-orange) !important;
  color: var(--text-inverse) !important;
  text-decoration: none;
}
button:disabled, .button:disabled, .hs-button:disabled {
  background: var(--bg-tertiary) !important; color: var(--text-muted) !important;
  border-color: var(--border-primary) !important; cursor: not-allowed;
}
.btn-sm, .hs-button.btn-sm { padding: var(--space-xs) var(--space-sm) !important; font-size: var(--font-size-sm) !important; min-height: 32px; }
/* The lone solid-fill exception — use once per view for a primary conversion CTA */
.btn-fill, .hs-button.btn-fill {
  background: var(--eymbr-orange) !important; color: var(--bg-primary) !important;
  border-color: var(--eymbr-orange) !important; font-weight: 600 !important;
}
.btn-fill:hover, .hs-button.btn-fill:hover { background: #ffa41f !important; border-color: #ffa41f !important; color: var(--bg-primary) !important; }

/* ---- Cards / panels --------------------------------------------------- */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.card-interactive {
  border: 1px solid var(--border-primary);
  transition: border-color var(--transition-base), background var(--transition-base);
  cursor: pointer;
}
.card-interactive:hover, .card-interactive:focus-visible {
  border-color: var(--eymbr-orange);
  background: var(--bg-tertiary);
}
.card-header {
  margin-bottom: var(--space-md); padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-primary);
}

/* ---- Pill / category tag: the ONE deliberate orange fill (knockout) --- */
.pill {
  display: inline-block; padding: var(--space-xs) var(--space-sm);
  background: var(--eymbr-orange); color: var(--bg-primary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs); font-weight: 600; letter-spacing: .01em;
}

/* ---- Badges: outlined status (distinct from the filled pill) ---------- */
.badge {
  display: inline-block; padding: var(--space-xs) var(--space-sm);
  background: transparent; border: 1px solid var(--border-primary);
  color: var(--text-secondary); border-radius: var(--radius-md);
  font-size: var(--font-size-xs); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.badge--success { border-color: var(--success); color: var(--success); }
.badge--warning { border-color: var(--warning); color: var(--warning); }
.badge--error   { border-color: var(--error);   color: var(--error); }
.badge--info    { border-color: var(--info);     color: var(--info); }

/* ---- Icons: bare orange strokes, no tinted square --------------------- */
.eymbr-icon { color: var(--eymbr-orange); display: inline-flex; }
.eymbr-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

/* ---- Status dots ------------------------------------------------------ */
.status-indicator { width: 12px; height: 12px; border-radius: var(--radius-round); display: inline-block; vertical-align: middle; }
.status-indicator.success { background: var(--success); }
.status-indicator.warning { background: var(--warning); }
.status-indicator.error   { background: var(--error); }
.status-indicator.info    { background: var(--info); }
.status-indicator.loading { background: var(--text-muted); animation: eymbr-pulse 2s infinite; }
@keyframes eymbr-pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ---- Progress / utilization meters (green -> orange -> red) ----------- */
.progress-bar  { height: 24px; background: var(--bg-hover); border: 1px solid var(--border-primary); border-radius: var(--radius-md); overflow: hidden; }
.progress-fill { height: 100%; background: var(--success); transition: width var(--transition-slow); }
.progress-bar.warning  .progress-fill { background: var(--warning); }
.progress-bar.critical .progress-fill { background: var(--error); }

/* ---- Stat / KPI tile (green value = live/healthy) --------------------- */
.stat { background: var(--bg-secondary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); padding: var(--space-lg); text-align: center; }
.stat__label { color: var(--text-secondary); font-size: var(--font-size-sm); font-weight: 500; }
.stat__value { color: var(--text-inverse); font-size: 2rem; font-weight: 600; line-height: 1.1; }
.stat__value--data { color: var(--success); }

/* ---- HubSpot chrome: header (dark, orange active accent on border) ---- */
.header, .header__container { background: var(--bg-secondary); }
.header { border-bottom: 1px solid var(--border-primary); }
.header__logo-link { display: inline-flex; align-items: center; }
.header__logo-img { height: 38px; width: auto; display: block; }

/* ---- eymbr custom header (sticky, logo + anchor nav) ----------------- */
.eymbr-header { position: sticky; top: 0; z-index: 50; background: var(--bg-secondary); border-bottom: 1px solid var(--border-primary); }
.eymbr-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.eymbr-header__brand { display: inline-flex; align-items: center; }
.eymbr-header__logo { height: 48px; width: auto; display: block; }
.eymbr-nav { display: flex; align-items: center; gap: var(--space-lg); }
.eymbr-nav > a {
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 16px; font-weight: 500; line-height: 1;
  white-space: nowrap; text-decoration: none;
  transition: color var(--transition-base);
}
/* keep the bar on one line until the mobile burger takes over */
@media (min-width: 901px) { .eymbr-nav { flex-wrap: nowrap; } }
.eymbr-nav > a:hover, .eymbr-nav > a:focus-visible { color: var(--text-inverse); text-decoration: none; }
.eymbr-nav__cta { min-height: 34px !important; }
.eymbr-nav__login { display: inline-flex; align-items: center; gap: 6px; }
.eymbr-nav__login::before { content: ""; width: 7px; height: 7px; border-radius: var(--radius-round); background: var(--success); }
.eymbr-nav-toggle, .eymbr-nav-burger { display: none; }

@media (max-width: 900px) {
  .eymbr-nav-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; }
  .eymbr-nav-burger span { width: 24px; height: 2px; background: var(--text-primary); display: block; }
  .eymbr-header__inner { position: relative; flex-wrap: wrap; }
  .eymbr-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-secondary); border-bottom: 1px solid var(--border-primary);
    max-height: 0; overflow: hidden; transition: max-height var(--transition-slow);
  }
  .eymbr-nav > a { padding: var(--space-md) var(--space-xl); border-top: 1px solid var(--border-primary); }
  .eymbr-nav__cta { margin: var(--space-md) var(--space-xl); }
  .eymbr-nav-toggle:checked ~ .eymbr-nav { max-height: 420px; }
}
.header__navigation .menu__link { color: var(--text-primary) !important; }
.header__navigation .menu__link:hover { color: var(--text-inverse) !important; text-decoration: none; }
/* active nav = orange border/underline, NEVER orange label text */
.header__navigation .menu__item--active-link > .menu__link,
.header__navigation .active > .menu__link {
  color: var(--text-inverse) !important;
  border-bottom: 2px solid var(--eymbr-orange);
}
.header__navigation .submenu { background: var(--bg-secondary); border: 1px solid var(--border-primary); }

/* ---- eymbr footer ----------------------------------------------------- */
.eymbr-footer { background: var(--bg-secondary); border-top: 1px solid var(--border-primary); }
.eymbr-footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: var(--space-2xl); padding-block: 56px; }
@media (max-width: 900px) { .eymbr-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }
@media (max-width: 480px) { .eymbr-footer__inner { grid-template-columns: 1fr; } }
.eymbr-footer__mark { height: 20px; width: auto; opacity: .75; }
.eymbr-footer__logo { height: 44px; width: auto; display: block; margin-bottom: var(--space-md); }
.eymbr-footer__brand p { color: var(--text-muted); font-size: var(--font-size-sm); max-width: 38ch; }
.eymbr-footer h4 { font-size: var(--font-size-xs); color: var(--text-secondary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-md); }
.eymbr-footer__col a { display: block; color: var(--text-primary); font-size: var(--font-size-sm); margin-bottom: var(--space-sm); text-decoration: none; }
.eymbr-footer__col a:hover { color: var(--eymbr-orange); text-decoration: none; }
.eymbr-footer__barwrap { border-top: 1px solid var(--border-primary); }
.eymbr-footer__bar { display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); padding-block: var(--space-lg); color: var(--text-muted); font-size: var(--font-size-xs); flex-wrap: wrap; }
.eymbr-footer__legal { display: flex; flex-direction: column; gap: var(--space-xs); font-size: 0.625rem; }
.eymbr-footer__tm { color: var(--text-muted); line-height: 1.9; }
.eymbr-footer__tm-mark { height: 13px; width: auto; vertical-align: middle; opacity: .8; margin: 0 .15em; }
.eymbr-footer__tm-icon { height: 15px; }

/* ---- Forms: fields sit one rung lighter, orange focus (flat) --------- */
.hs-form input[type=text], .hs-form input[type=email], .hs-form input[type=tel],
.hs-form input[type=number], .hs-form input[type=password], .hs-form textarea, .hs-form select,
input.hs-input, textarea.hs-input, select.hs-input {
  background: var(--bg-tertiary) !important; color: var(--text-inverse) !important;
  border: 1px solid var(--border-primary) !important; border-radius: var(--radius-md) !important;
  font-family: var(--font-family) !important;
}
.hs-form input::placeholder, .hs-form textarea::placeholder { color: var(--text-muted) !important; }
.hs-form input:focus, .hs-form textarea:focus, .hs-form select:focus, .hs-input:focus {
  border-color: var(--eymbr-orange) !important; outline: none; box-shadow: none !important;
}
.hs-form label, .hs-form .hs-form-field > label { color: var(--text-secondary) !important; font-weight: 500; }
.hs-form .hs-error-msg, .hs-error-msgs label { color: var(--error) !important; }

/* ---- Broad dark form controls (covers membership/system forms) ------- */
input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=number], input[type=url], input[type=search], textarea, select {
  background: var(--bg-tertiary); color: var(--text-inverse);
  border: 1px solid var(--border-primary); border-radius: var(--radius-md);
  font-family: var(--font-family); padding: var(--space-sm) var(--space-md);
}
input:focus, textarea:focus, select:focus { border-color: var(--eymbr-orange); outline: none; }

/* ---- Auth / customer login card -------------------------------------- */
.eymbr-auth { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: var(--space-2xl) var(--space-lg); }
.eymbr-auth__card {
  width: 100%; max-width: 420px; text-align: center;
  background: var(--bg-secondary); border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl); padding: var(--space-2xl);
}
.eymbr-auth__logo { height: 34px; width: auto; margin: 0 auto var(--space-xl); display: block; }
.eymbr-auth__title { font-size: var(--font-size-2xl); }
.eymbr-auth__sub { color: var(--text-secondary); margin-top: var(--space-sm); margin-bottom: var(--space-xl); }
.eymbr-auth__form { text-align: left; }
.eymbr-auth__form label { display: block; color: var(--text-secondary); font-size: var(--font-size-sm); font-weight: 500; margin-bottom: var(--space-xs); }
.eymbr-auth__form .hs-input, .eymbr-auth__form input[type=email], .eymbr-auth__form input[type=password] { width: 100%; margin-bottom: var(--space-md); }
.eymbr-auth__form input[type=submit], .eymbr-auth__form .hs-button {
  width: 100%; background: var(--eymbr-orange) !important; color: var(--bg-primary) !important;
  border-color: var(--eymbr-orange) !important; font-weight: 600 !important; margin-top: var(--space-sm);
}
.eymbr-auth__form input[type=submit]:hover, .eymbr-auth__form .hs-button:hover { background: #ffa41f !important; border-color: #ffa41f !important; }
.eymbr-auth__form a { color: var(--eymbr-orange); font-size: var(--font-size-sm); }
.eymbr-auth__admin { color: var(--text-muted); font-size: var(--font-size-sm); margin-top: var(--space-xl); }
.eymbr-auth__admin a { color: var(--eymbr-orange); }

/* ---- Tables: dark, 1px borders --------------------------------------- */
table { color: var(--text-primary); border-color: var(--border-primary); }
table th { background: var(--bg-secondary); color: var(--text-inverse); border: 1px solid var(--border-primary); }
table td { background: transparent; border: 1px solid var(--border-primary); }

/* ---- Header search (HubSpot search_input module) --------------------- */
.hs-search-field__input {
  background: var(--bg-tertiary) !important; color: var(--text-inverse) !important;
  border: 1px solid var(--border-primary) !important; border-radius: var(--radius-md) !important;
}
.hs-search-field__input::placeholder { color: var(--text-muted) !important; }
.hs-search-field__input:focus { border-color: var(--eymbr-orange) !important; outline: none; }
.hs-search-field__bar button { border-radius: var(--radius-md) !important; }
.header__search .header--element label, .header__search-title { color: var(--text-secondary) !important; }

/* ---- Type helpers ----------------------------------------------------- */
.eymbr-eyebrow { color: var(--text-secondary); font-size: var(--font-size-sm); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.text-data { color: var(--success); }
.mono { font-family: var(--font-mono); }
/* ============================================================
   eymbr marketing / landing patterns — flat, dark, composed.
   Wow comes from scale, rhythm and showing the product, not effects.
   ============================================================ */

/* ---- Section wrappers ------------------------------------------------- */
.sec { padding-block: 88px; }
.sec-panel { background: var(--bg-secondary); }
.stat__value--warn { color: var(--warning); }

/* ---- Hero proof trio -------------------------------------------------- */
.hero__proof { display: block; text-align: center; white-space: nowrap; margin-top: var(--space-xl); color: var(--text-inverse); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-size: var(--font-size-xs); }
.hero__proof-sep { color: var(--eymbr-orange); margin: 0 .4em; }
@media (max-width: 480px) { .hero__proof { white-space: normal; letter-spacing: .04em; } }

/* ---- Gateway (gated-content landing) --------------------------------- */
.gateway-sec { display: flex; align-items: center; min-height: 68vh; }
.gateway { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; width: 100%; }
@media (max-width: 900px) { .gateway { grid-template-columns: 1fr; gap: var(--space-xl); } }
.gateway__heading { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; margin: var(--space-sm) 0 var(--space-md); }
.gateway__desc { color: var(--text-secondary); font-size: var(--font-size-lg); line-height: 1.6; }
.gateway__list { margin-top: var(--space-lg); }
.gateway__thumb { margin-top: var(--space-xl); max-width: 220px; height: auto; border: 1px solid var(--border-primary); border-radius: var(--radius-md); }
.gateway__card { background: var(--bg-secondary); padding: var(--space-xl); }
.gateway__form-title { font-size: var(--font-size-xl); margin-bottom: var(--space-lg); }

/* ---- Section head (eyebrow + title) ---------------------------------- */
.section-head { max-width: 720px; margin: 0 auto var(--space-2xl); text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: var(--space-sm); }
.section-head p { color: var(--text-secondary); font-size: var(--font-size-lg); margin-top: var(--space-md); }

/* ---- The Physics of the Problem — three stats + a statement ---------- */
#problem .stat { background: var(--bg-tertiary); }   /* L2 nested inside the L1 panel */
#problem .stat__label { margin-top: var(--space-sm); line-height: 1.5; }
#problem .stat__ref { font-size: 0.5em; font-weight: 500; vertical-align: super; margin-left: 2px; }
.problem-close { max-width: 720px; margin: var(--space-2xl) auto 0; text-align: center; }
.problem-footnote { margin-top: var(--space-md); text-align: center; color: var(--text-muted); font-size: 0.625rem; font-style: italic; line-height: 1.5; }
.problem-close__lead { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 600; color: var(--text-inverse); line-height: 1.3; }
.problem-close__body { margin-top: var(--space-md); color: var(--text-secondary); font-size: var(--font-size-lg); line-height: 1.6; }
.problem-close__body strong { color: var(--text-inverse); font-weight: 600; }

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
/* flat techy grid — lines, not glow */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(82,82,91,.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(82,82,91,.14) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 78%);
}
.hero > * { position: relative; z-index: 1; }
.hero__mark {
  position: absolute; top: -60px; right: -80px; width: 460px; max-width: 55%;
  opacity: .05; z-index: 0; pointer-events: none; user-select: none;
}
.hero__inner { max-width: 860px; margin-inline: auto; text-align: center; padding-block: 96px 72px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.02em; margin: var(--space-lg) 0; }
.hero .lede { font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: var(--text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.5; }

/* ---- Product console mockup (mirrors the app) ------------------------ */
.console {
  max-width: 860px; margin: 56px auto 0; text-align: left;
  background: var(--bg-secondary); border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.console__bar {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-primary); border-bottom: 1px solid var(--border-primary);
}
.console__dot { width: 10px; height: 10px; border-radius: var(--radius-round); background: var(--border-secondary); }
.console__title { margin-left: var(--space-sm); font-size: var(--font-size-sm); color: var(--text-muted); }
.console__status { margin-left: auto; display: inline-flex; align-items: center; gap: var(--space-sm); font-size: var(--font-size-xs); color: var(--text-secondary); }
.console__body { padding: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-lg); }
.msg { max-width: 90%; }
.msg--user { align-self: flex-end; text-align: right; }
.msg--user .msg__bubble { background: var(--bg-tertiary); border: 1px solid var(--border-primary); display: inline-block; padding: var(--space-sm) var(--space-md); border-radius: var(--radius-lg); color: var(--text-primary); }
.msg--eymbr .msg__who { display: inline-flex; align-items: center; gap: var(--space-sm); color: var(--text-muted); font-size: var(--font-size-xs); margin-bottom: var(--space-sm); }
.msg--eymbr .msg__bubble { color: var(--text-primary); }
.msg--eymbr .msg__bubble strong { color: var(--text-inverse); }
.source-chip {
  display: inline-flex; align-items: center; gap: 6px; margin-top: var(--space-md);
  border: 1px solid var(--border-primary); border-radius: var(--radius-md);
  padding: 2px var(--space-sm); font-size: var(--font-size-xs); color: var(--text-secondary);
  font-family: var(--font-mono);
}
.source-chip::before { content: ""; width: 6px; height: 6px; border-radius: var(--radius-round); background: var(--eymbr-orange); }
.metric-line { font-family: var(--font-mono); font-size: var(--font-size-sm); color: var(--text-secondary); }
.metric-line .ok { color: var(--success); }

/* ---- Video embed frame (16:9, ready for HubSpot/YouTube/Vimeo/MP4) ---- */
.eymbr-video {
  position: relative; max-width: 820px; margin: 40px auto 0;
  aspect-ratio: 16 / 9; background: var(--bg-secondary);
  border: 1px solid var(--border-primary); border-radius: var(--radius-xl); overflow: hidden;
}
.eymbr-video iframe, .eymbr-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.eymbr-video__poster {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-md); background: transparent; border: 0; cursor: pointer; width: 100%;
}
.eymbr-video__play {
  width: 72px; height: 72px; border-radius: var(--radius-round); background: var(--eymbr-orange);
  display: flex; align-items: center; justify-content: center; transition: transform var(--transition-base);
}
.eymbr-video__poster:hover .eymbr-video__play { transform: scale(1.06); }
.eymbr-video__play svg { width: 30px; height: 30px; fill: var(--bg-primary); margin-left: 4px; }
.eymbr-video__label { color: var(--text-secondary); font-size: var(--font-size-sm); }

/* ---- Feature grid with bare orange icons ----------------------------- */
.feature { padding: var(--space-lg) 0; }
.feature__icon { color: var(--eymbr-orange); margin-bottom: var(--space-md); display: block; }
.feature__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.feature h3 { font-size: var(--font-size-lg); margin-bottom: var(--space-sm); }
.feature p { color: var(--text-secondary); font-size: var(--font-size-base); }

/* ---- Agentic Decision Support / closing CTA (canvas section) --------- */
#contact .card h3 { font-size: var(--font-size-lg); margin-bottom: var(--space-sm); }
#contact .card h3 .card__note { color: var(--text-muted); font-weight: 400; font-size: var(--font-size-sm); }
#contact .card p { color: var(--text-secondary); font-size: var(--font-size-base); line-height: 1.6; margin: 0; }
#contact .card .extreme__gap { margin-bottom: var(--space-md); font-size: var(--font-size-sm); text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.extreme__gap-word { color: var(--warning); font-weight: 600; }
.cta-close { max-width: 720px; margin: var(--space-2xl) auto 0; text-align: center; }
.cta-close__lead { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 600; color: var(--text-inverse); line-height: 1.3; }
.cta-close__body { margin-top: var(--space-md); color: var(--text-secondary); font-size: var(--font-size-lg); line-height: 1.6; }
.cta-close__punch { margin-top: var(--space-lg); color: var(--text-inverse); font-weight: 600; font-size: var(--font-size-xl); }
.cta-close .eymbr-cta-row { margin-top: var(--space-xl); }

/* ---- Air gap checklist card (now an L1 panel section) ---------------- */
#airgap .card { background: var(--bg-tertiary); }   /* L2 nested inside the L1 panel */

/* ---- Pillars: balanced full-width rows (label left, body right) ------ */
.pillars { display: flex; flex-direction: column; gap: var(--space-lg); max-width: 960px; margin: 0 auto; }
.pillar { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-2xl); align-items: start; padding: var(--space-xl); }
.pillar__head { display: flex; flex-direction: column; gap: var(--space-sm); }
.pillar__head .feature__icon { margin-bottom: 0; }
.pillar__num { display: block; font-size: 2.75rem; font-weight: 700; line-height: 1; color: var(--eymbr-orange); }
.pillar__content .pillar__body { margin-bottom: var(--space-lg); }
.pillar__logo { display: block; width: auto; max-width: 180px; height: auto; }
.pillar__head h3 { font-size: var(--font-size-xl); margin: 0; line-height: 1.25; }
.pillar__body { color: var(--text-secondary); font-size: var(--font-size-base); line-height: 1.7; margin: 0; }
@media (max-width: 767px) { .pillar { grid-template-columns: 1fr; gap: var(--space-md); } }

/* ---- Spotlight (Tenable): two columns -------------------------------- */
.spotlight { display: grid; gap: var(--space-2xl); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 767px) { .spotlight { grid-template-columns: 1fr; } }
.access-card { background: var(--bg-tertiary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); padding: var(--space-lg); }
.access-card + .access-card { margin-top: var(--space-md); }
.access-card h4 { font-size: var(--font-size-base); margin-bottom: var(--space-xs); }
.access-card p { color: var(--text-secondary); font-size: var(--font-size-sm); }

/* ---- Deployment options ---------------------------------------------- */
.deploy { display: grid; gap: var(--space-xl); grid-template-columns: 1fr 1fr; }
@media (max-width: 767px) { .deploy { grid-template-columns: 1fr; } }
.deploy-card { background: var(--bg-secondary); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); padding: var(--space-xl); }
.deploy-card h3 { font-size: var(--font-size-xl); margin-bottom: var(--space-sm); }
.deploy-card p { color: var(--text-secondary); }
.deploy-card .tag { color: var(--eymbr-orange); font-size: var(--font-size-sm); font-weight: 600; }

/* ---- Pricing ---------------------------------------------------------- */
.price-card { max-width: 560px; margin-inline: auto; background: var(--bg-secondary); border: 1px solid var(--border-primary); border-radius: var(--radius-xl); padding: var(--space-2xl); text-align: center; }
.price { font-size: 3.25rem; font-weight: 700; color: var(--text-inverse); line-height: 1; }
.price sup { font-size: 1.25rem; font-weight: 600; color: var(--text-secondary); vertical-align: super; }
.price__term { color: var(--text-secondary); margin-top: var(--space-sm); }
.price-features { list-style: none; padding: 0; margin: var(--space-xl) 0; text-align: left; max-width: 380px; margin-inline: auto; }
.price-features li { position: relative; padding-left: 1.6rem; margin-bottom: var(--space-md); color: var(--text-primary); }
.price-features li::before { content: ""; position: absolute; left: 0; top: .45em; width: 9px; height: 9px; border-radius: var(--radius-round); background: var(--success); }
.price-note { color: var(--text-muted); font-size: var(--font-size-sm); margin-top: var(--space-md); }

/* ---- Roles pills ------------------------------------------------------ */
.role-pills { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.role-pill { border: 1px solid var(--border-primary); border-radius: var(--radius-round); padding: var(--space-xs) var(--space-md); color: var(--text-secondary); font-size: var(--font-size-sm); }
.role-pill:hover { border-color: var(--eymbr-orange); color: var(--text-inverse); }

/* Force the eymbr system-font stack over field-driven fonts */
body, h1, h2, h3, h4, h5, h6, p, a, li, td, th, label,
button, .button, .hs-button, input, textarea, select {
  font-family: var(--font-family);
}