/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.hubl.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;
}

/*
 * Remove default margin to figure out the correct spacing
 */

figure,
figcaption {
  margin: 0;
}

/* 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 0;
}

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

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

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

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


/* Elements
Base HMTL 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.6;
  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;
  margin: 0 0 1lh;
  text-wrap: pretty;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
  margin: 0 0 .5lh;
  text-wrap: balance;
}

/* Lists */

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

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;
}



/* 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
*/

/* 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;
  }
}










:root {
  /*
   * Progresus design tokens
   * Sources:
   * - Progresus DS - Foundations
   * https://www.figma.com/design/T6yJwC45X8lmGKrGpq8l9G/Progresus-DS---Foundations
   * - Progresus DS - Core Components
   * https://www.figma.com/design/FxLA02gOBTsTHYVoBUgVBx/Progresus-DS---Core-Components
   * - Progresus DS - CMS Modules
   * https://www.figma.com/design/o3E0WBtvvAOEZv88IE1h8Q/Progresus-DS---CMS-Modules
   *
   * Contract:
   * - Primitive and Alias values mirror the variable groups used in Figma.
   * - Mapped tokens expose the semantic names used by components.
   */

  /* Figma variable names. Keep these exact: CSS custom properties are case-sensitive. */
  --Primary-default: oklch(from #245136 l c h);
  --Secondary-default: oklch(from #534140 l c h);
  --Accent-default: oklch(from #BC5B28 l c h);
  --Contrast-1-base: oklch(from #3a4133 l c h);
  --Contrast-2-base: oklch(from #413333 l c h);
  --Error-default: oklch(from #EA1818 l c h);
  --Success-default: oklch(from #43A469 l c h);
  --Warning-default: oklch(from #FF9800 l c h);
  --Information-default: oklch(from #2763FC l c h);
  --White: #ffffff;
  --Black: #000000;

  /* Figma Alias / Border radius/{token} and Border width/{token}. */
  --Border-radius-none: 0;
  --Border-radius-sm: 0.5rem;
  --Border-radius-md: 1rem;
  --Border-radius-lg: 1.5rem;
  --Border-radius-pill: 4rem;
  --Border-width-none: 0;
  --Border-width-sm: 1px;
  --Border-width-md: 2px;
  --Border-width-lg: 4px;

  /* Figma Primitive / Scale/{token}. Core controls consume this compact scale. */
  --Scale-50: 0.125rem;
  --Scale-100: 0.25rem;
  --Scale-200: 0.5rem;
  --Scale-300: 0.75rem;
  --Scale-400: 1rem;

  /* Figma Alias / Spacing/{token}. Numeric primitives back semantic aliases. */
  --Spacing-0: 0;
  --Spacing-1: 0.25rem;
  --Spacing-2: 0.5rem;
  --Spacing-3: 0.75rem;
  --Spacing-4: 1rem;
  --Spacing-5: 1.5rem;
  --Spacing-6: 2rem;
  --Spacing-7: 3rem;
  --Spacing-8: 4rem;
  --Spacing-xs: var(--Spacing-1);
  --Spacing-sm: var(--Spacing-2);
  --Spacing-md: var(--Spacing-4);
  --Spacing-lg: var(--Spacing-6);
  --Spacing-xl: var(--Spacing-8);
  --Spacing-16: 1rem;
  --Spacing-64: 4rem;

  /* Figma Responsive / Typography. HubSpot controls the font family and rem defaults. */
  --Font-family-body: "Quicksand", sans-serif;
  --Font-family-headings-primary: "Libre Baskerville", serif;
  --Font-family-headings: var(--Font-family-headings-primary);
  --Font-family-headings-secondary: "Averia Sans Libre", sans-serif;
  --Font-family-primary: var(--Font-family-body);
  --Font-weight-medium: 500;
  --Font-weight-bold: 700;
  --Paragraph-md-font-size: 1rem;
  --Paragraph-md-line-height: 1.8125rem;
  --Paragraph-md-letter-spacing: 0;
  --H1-font-size: clamp(2.85rem, 4.596774193548387vw, 3.5625rem);
  --H2-font-size: clamp(2.15rem, 3.467741935483871vw, 2.6875rem);
  --H3-font-size: clamp(1.6rem, 2.5806451612903225vw, 2rem);
  --H4-font-size: clamp(1.2rem, 1.935483870967742vw, 1.5rem);
  --H5-font-size: clamp(1rem, 1.6129032258064515vw, 1.25rem);
  --H6-font-size: clamp(0.8rem, 1.2903225806451613vw, 1rem);
  --H1-font-weight: 500;
  --H2-font-weight: 600;
  --H3-font-weight: 600;
  --H4-font-weight: 600;
  --H5-font-weight: 600;
  --H6-font-weight: 600;
  --Body-font-size: 1rem;
  --Body-small-font-size: 0.875rem;
  --Body-large-font-size: 1.125rem;
  --Hero-font-size: clamp(2rem, 5.64516129032258vw, 4.375rem);
  --Caption-font-size: 0.75rem;
  --Caption-small-font-size: 0.625rem;
  --Small-font-size: 0.75rem;
  --Headings-line-height: 1.2;
  --Headings-letter-spacing: -0.02em;
  --Body-font-weight: 400;
  --Body-line-height: 1.6;
  --Body-letter-spacing: 0em;

  /* Layout primitives used by the current template. */
  --container-width: 1240px;
  --lateral-width: 4rem;
  --header-height: 0px;
  --header-height-sticky: var(--header-height);
  --elevate-1: 0 0.25rem 1rem hsl(from var(--Black) h s l / 0.12);
  --ease-in-out-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  /*
   * Figma Core Components.
   * Sources:
   * - Progresus DS - Core Components / 01 Forms
   * - Progresus DS - CMS Modules / testimonial container
   */
  --Surface-default: var(--White);
  --Surface-page: var(--Surface-default);
  --Surface-action-base: var(--Primary-default);
  --Surface-action-hover: #1b3a28;
  --Surface-action-hover-light: var(--Primary-100);
  --Surface-action: var(--Surface-action-base);
  --Surface-action-primary-default: var(--Primary-default);
  --Surface-action-primary-hover: var(--Surface-action-hover);
  --Surface-action-secondary-default: var(--Secondary-default);
  --Surface-action-secondary-hover: var(--Secondary-900);
  --Surface-action-accent-default: var(--Accent-default);
  --Surface-action-accent-hover: var(--Accent-900);
  --Surface-disabled: #e7e7e7;
  --Surface-action-disabled: var(--Surface-disabled);
  --Surface-action-focus: var(--Surface-action-hover-light);

  --Border-action: var(--Primary-default);
  --Border-action-primary-default: var(--Primary-default);
  --Border-action-primary-hover: #1b3a28;
  --Border-action-secondary-default: var(--Secondary-default);
  --Border-action-secondary-hover: var(--Secondary-900);
  --Border-action-accent-default: var(--Accent-default);
  --Border-action-accent-hover: var(--Accent-900);
  --Border-disabled: #b0b0b0;
  --Border-action-disabled: var(--Border-disabled);

  --Text-on-action: var(--White);
  --Text-disabled: #888888;
  --Icon-disabled: var(--Text-disabled);

  --Button-icon-size: 1.25rem;
  --Button-icon-gap: 1rem;
  --Button-height-lg: 3rem;
  --Button-height-md: 2.5rem;
  --Button-height-sm: 2rem;
  --Button-padding-inline-lg: 1.25rem;
  --Button-padding-block-lg: 0.75rem;
  --Button-padding-inline-md: 1rem;
  --Button-padding-block-md: 0.5rem;
  --Button-padding-inline-sm: 0.75rem;
  --Button-padding-block-sm: 0.25rem;
  --Button-text-size-lg: 1rem;

  --Field-icon-size: 1.25rem;
  --Field-height: 3rem;
  --Field-padding-inline: 1rem;
  --Field-padding-block: 0.5rem;
  --Field-radius: 0.125rem;
  --Field-gap: var(--Scale-200);
  --Field-text-default: #0d2618;
  --Field-text-placeholder: #6d6d6d;
  --Field-text-disabled: var(--Text-disabled);
  --Field-bg-default: var(--Surface-default);
  --Field-bg-hover: #e2f6e9;
  --Field-bg-focus: #e2f6e9;
  --Field-bg-disabled: var(--Surface-disabled);
  --Field-border-default: #d1d1d1;
  --Field-border-hover: var(--Primary-default);
  --Field-border-focus: #1b3a28;
  --Field-border-disabled: var(--Border-disabled);

  /* Component defaults. */
  --Button-font-size: 1rem;
  --Button-font-weight: 600;
  --Button-gap: var(--Button-icon-gap);
  --Button-line-height: var(--Paragraph-md-line-height);
  --Button-padding-block: var(--Button-padding-block-lg);
  --Button-padding-inline: var(--Button-padding-inline-lg);
  --Button-radius: var(--Border-radius-pill);
  --Button-border-width: var(--Border-width-md);

  --Tag-font-size: 0.875rem;
  --Tag-font-weight: 600;
  --Tag-gap: var(--Spacing-1);
  --Tag-line-height: 1;
  --Tag-padding-block: 0.5em;
  --Tag-padding-inline: 0.75em;
  --Tag-radius: var(--Border-radius-pill);

  /* Figma Alias / Primary/{token}. Hybrid palette derived from the editable HubSpot default. */
  --Primary-50: hsl(from var(--Primary-default) h calc(s * 1.07) calc(l + (100 - l) * 0.957));
  --Primary-100: hsl(from var(--Primary-default) h calc(s * 1.37) calc(l + (100 - l) * 0.903));
  --Primary-200: hsl(from var(--Primary-default) h calc(s * 1.23) calc(l + (100 - l) * 0.807));
  --Primary-300: hsl(from var(--Primary-default) h calc(s * 1.20) calc(l + (100 - l) * 0.651));
  --Primary-400: hsl(from var(--Primary-default) h calc(s * 1.07) calc(l + (100 - l) * 0.456));
  --Primary-500: hsl(from var(--Primary-default) h calc(s * 1.09) calc(l + (100 - l) * 0.290));
  --Primary-600: hsl(from var(--Primary-default) h calc(s * 1.19) calc(l + (100 - l) * 0.173));
  --Primary-700: hsl(from var(--Primary-default) h calc(s * 1.13) calc(l + (100 - l) * 0.081));
  --Primary-900: hsl(from var(--Primary-default) h calc(s * 0.93) calc(l * 0.880));
  --Primary-925: hsl(from var(--Primary-default) h calc(s * 0.95) calc(l * 0.727));
  --Primary-950: hsl(from var(--Primary-default) h calc(s * 1.27) calc(l * 0.436));
  --Primary-1000: hsl(from var(--Primary-default) h calc(s * 1.11) calc(l * 0.299));

  --Secondary-50: hsl(from var(--Secondary-default) calc(h + 11.842) calc(s * 1.289) calc(l + (100 - l) * 0.934));
  --Secondary-100: hsl(from var(--Secondary-default) calc(h + 30.175) calc(s * 1.142) calc(l + (100 - l) * 0.832));
  --Secondary-200: hsl(from var(--Secondary-default) calc(h + 20.842) calc(s * 1.311) calc(l + (100 - l) * 0.675));
  --Secondary-300: hsl(from var(--Secondary-default) calc(h + 18.842) calc(s * 1.248) calc(l + (100 - l) * 0.488));
  --Secondary-400: hsl(from var(--Secondary-default) calc(h + 16.842) calc(s * 1.262) calc(l + (100 - l) * 0.342));
  --Secondary-500: hsl(from var(--Secondary-default) calc(h + 14.211) calc(s * 1.215) calc(l + (100 - l) * 0.262));
  --Secondary-600: hsl(from var(--Secondary-default) calc(h + 9.967) calc(s * 1.202) calc(l + (100 - l) * 0.163));
  --Secondary-700: hsl(from var(--Secondary-default) calc(h + 3.765) calc(s * 1.197) calc(l + (100 - l) * 0.058));
  
  --Secondary-900: hsl(from var(--Secondary-default) calc(h - 3.158) calc(s * 0.934) calc(l * 0.789));
  --Secondary-950: hsl(from var(--Secondary-default) calc(h - 9.158) calc(s * 1.075) calc(l * 0.490));

  --Accent-50: hsl(from var(--Accent-default) calc(h + 13.610) calc(s * 1.078) calc(l + (100 - l) * 0.929));
  --Accent-100: hsl(from var(--Accent-default) calc(h + 16.622) calc(s * 1.000) calc(l + (100 - l) * 0.798));
  --Accent-200: hsl(from var(--Accent-default) calc(h + 15.780) calc(s * 1.023) calc(l + (100 - l) * 0.578));
  --Accent-300: hsl(from var(--Accent-default) calc(h + 13.539) calc(s * 1.030) calc(l + (100 - l) * 0.358));
  --Accent-400: hsl(from var(--Accent-default) calc(h + 11.161) calc(s * 1.016) calc(l + (100 - l) * 0.209));
  --Accent-500: hsl(from var(--Accent-default) calc(h + 5.574) calc(s * 0.970) calc(l + (100 - l) * 0.099));

  --Accent-700: hsl(from var(--Accent-default) calc(h - 5.804) calc(s * 0.954) calc(l * 0.829));
  --Accent-800: hsl(from var(--Accent-default) calc(h - 9.342) calc(s * 0.867) calc(l * 0.702));
  --Accent-900: hsl(from var(--Accent-default) calc(h - 9.991) calc(s * 0.833) calc(l * 0.592));
  --Accent-950: hsl(from var(--Accent-default) calc(h - 11.545) calc(s * 0.984) calc(l * 0.316));
  --Accent-1000: hsl(from var(--Accent-default) calc(h - 4.676) calc(s * 1.005) calc(l * 0.202));

  /* Figma Alias / Error/{token}. Hybrid semantic palette. */
  --Error-50: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.957));
  --Error-100: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.903));
  --Error-200: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.807));
  --Error-300: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.651));
  --Error-400: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.456));
  --Error-600: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.173));
  --Error-700: hsl(from var(--Error-default) h s calc(l + (100 - l) * 0.081));
  --Error-800: hsl(from var(--Error-default) h s calc(l * 0.702));
  --Error-900: hsl(from var(--Error-default) h s calc(l * 0.592));
  --Error-950: hsl(from var(--Error-default) h s calc(l * 0.436));

  /* Figma Alias / Success, Warning and Information scales. */
  --Success-50: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.957));
  --Success-100: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.903));
  --Success-200: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.807));
  --Success-300: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.651));
  --Success-400: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.456));
  --Success-600: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.173));
  --Success-700: hsl(from var(--Success-default) h s calc(l + (100 - l) * 0.081));
  --Success-800: hsl(from var(--Success-default) h s calc(l * 0.880));
  --Success-900: hsl(from var(--Success-default) h s calc(l * 0.727));
  --Success-950: hsl(from var(--Success-default) h s calc(l * 0.436));
  --Warning-50: hsl(from var(--Warning-default) h s calc(l + (100 - l) * 0.957));
  --Warning-100: hsl(from var(--Warning-default) h s calc(l + (100 - l) * 0.903));
  --Warning-200: hsl(from var(--Warning-default) h s calc(l + (100 - l) * 0.807));
  --Warning-300: hsl(from var(--Warning-default) h s calc(l + (100 - l) * 0.651));
  --Warning-400: hsl(from var(--Warning-default) h s calc(l + (100 - l) * 0.456));
  --Warning-600: hsl(from var(--Warning-default) h s calc(l * 0.880));
  --Warning-700: hsl(from var(--Warning-default) h s calc(l * 0.727));
  --Warning-800: hsl(from var(--Warning-default) h s calc(l * 0.592));
  --Warning-900: hsl(from var(--Warning-default) h s calc(l * 0.490));
  --Warning-950: hsl(from var(--Warning-default) h s calc(l * 0.299));
  --Information-50: hsl(from var(--Information-default) h s calc(l + (100 - l) * 0.957));
  --Information-100: hsl(from var(--Information-default) h s calc(l + (100 - l) * 0.903));
  --Information-200: hsl(from var(--Information-default) h s calc(l + (100 - l) * 0.807));
  --Information-300: hsl(from var(--Information-default) h s calc(l + (100 - l) * 0.651));
  --Information-400: hsl(from var(--Information-default) h s calc(l + (100 - l) * 0.456));
  --Information-600: hsl(from var(--Information-default) h s calc(l * 0.880));
  --Information-700: hsl(from var(--Information-default) h s calc(l * 0.727));
  --Information-800: hsl(from var(--Information-default) h s calc(l * 0.592));
  --Information-900: hsl(from var(--Information-default) h s calc(l * 0.490));
  --Information-950: hsl(from var(--Information-default) h s calc(l * 0.299));

  /*
   * Figma Mapped tokens.
   * The Figma source currently spells Text/sucesss incorrectly. The CSS contract
   * intentionally exposes the corrected --Text-success name.
   */
  --Text-primary: #0A1910;
  --Text-secondary: #454545;
  --Text-headings: #0A1910;
  --Text-action: var(--Primary-default);
  --Text-success: var(--Primary-700);
  --Text-warning: var(--Warning-700);
  --Text-error: var(--Error-default);
  --Text-information: var(--Information-default);
  --Text-contrast-1: var(--Contrast-1-base);
  --Text-contrast-2: var(--Contrast-2-base);
  --Surface-contrast-1: var(--Contrast-1-base);
  --Surface-contrast-2: var(--Contrast-2-base);
  --Border-contrast-1: var(--Contrast-1-base);
  --Border-contrast-2: var(--Contrast-2-base);
  --Icon-contrast-1: var(--Contrast-1-base);
  --Icon-contrast-2: var(--Contrast-2-base);
  --Icon-primary: var(--Primary-default);
  --Icon-secondary: var(--Secondary-default);
  --Icon-accent: var(--Accent-default);
  --Icon-success: var(--Success-default);
  --Icon-warning: var(--Warning-default);
  --Icon-error: var(--Error-default);
  --Icon-information: var(--Information-default);
  --Surface-success: var(--Success-100);
  --Surface-warning: var(--Warning-100);
  --Surface-error: var(--Error-100);
  --Surface-information: var(--Information-100);
  --Border-success: var(--Success-300);
  --Border-warning: var(--Warning-300);
  --Border-error: var(--Error-300);
  --Border-information: var(--Information-300);
  --Card-bg: #ffffff;
  --Card-border: #D1D1D1;
  --Card-border-radius: var(--Border-radius-md);
  --Field-bg: var(--Field-bg-default);
  --Field-border: var(--Field-border-default);
  --Field-border-width: 1px;
  --Field-border-radius: var(--Field-radius);
  --Field-text: var(--Field-text-default);
  --Field-label: #614a47;
  --Field-placeholder: var(--Field-text-placeholder);
  --Field-focus: var(--Field-border-focus);
  --Field-error: var(--Error-300);
  --Checkbox: #245136;
  --Radio: #245136;
  --Select: #413333;
  --Button-primary: #245136;
  --Button-secondary: #534140;
  --Button-accent: #bc5b28;
  --Button-default-variant: solid;
  --Tag-bg: #e5f0ff;
  --Tag-border: #e5f0ff;
  --Tag-text: #063e95;
  --Modal-bg: #ffffff;
  --Modal-border: #d1d1d1;
  --Modal-border-radius: var(--Border-radius-lg);
  --Snackbar-bg: #f3faf5;
  --Snackbar-text: #2a6b43;
  --Snackbar-border-radius: var(--Border-radius-sm);
  --Snackbar-success-bg: var(--Surface-success);
  --Tabs-bg: #ffffff;
  --Tabs-text: #0d2618;
  --Tabs-active: #245136;
  --Divider: #d1d1d1;
  --Divider-width: 1px;
  --Dropdown-bg: #ffffff;
  --Dropdown-border: #d1d1d1;
  --Dropdown-text: #413333;
  --Tooltip-bg: #413333;
  --Tooltip-text: #ffffff;
  --Border-default: #D1D1D1;
  --H2-letter-spacing: -0.02em;
}

body {
  font-family: var(--Font-family-body);
  font-size: var(--Body-font-size);
  font-weight: var(--Body-font-weight);
  letter-spacing: var(--Body-letter-spacing);
  line-height: var(--Body-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--Text-headings);
  font-family: var(--Font-family-headings-primary);
  letter-spacing: var(--Headings-letter-spacing);
  line-height: var(--Headings-line-height);
}

h1 { font-size: var(--H1-font-size); font-weight: var(--H1-font-weight); }
h2 { font-size: var(--H2-font-size); font-weight: var(--H2-font-weight); }
h3 { font-size: var(--H3-font-size); font-weight: var(--H3-font-weight); }
h4 { font-size: var(--H4-font-size); font-weight: var(--H4-font-weight); }
h5 { font-size: var(--H5-font-size); font-weight: var(--H5-font-weight); }
h6 { font-size: var(--H6-font-size); font-weight: var(--H6-font-weight); }





.content-wrapper {
  max-width: var(--container-width);
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: var(--lateral-width);
}

.dnd-section > .row-fluid {
  max-width: var(--container-width);
}