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

/* Site-wide CSS custom properties.
   Prefix everything with --ef- (Electric Fun) to stay collision-proof in the shared portal. */





:root {
  /* Horizontal gutter: the left/right edge line every full-width element aligns to. */
  --ef-gutter: 5%;

  /* Wrap container widths (.wrap utility — see objects/_wrap.css).
     Default ties to the content-width token; the variants are fixed steps.
     TODO: confirm the medium-wide / medium / small values against the Next.js source. */
  --ef-wrap-max-width: 1440px;
  --ef-wrap-medium-wide: 1080px;
  --ef-wrap-medium: 880px;
  --ef-wrap-small: 680px;

  /* ---- Color tokens (source of truth: fields.json global_colors, mirrored here for plain-CSS use) ---- */
  --ef-dark-point: #18191B;
  --ef-light-point: #FFFFFF;
  --ef-brand-yellow: #FFDD67;
  --ef-brand-purple: #C755F0;
  --ef-gradient-blue-light: #7797FF;
  --ef-gradient-blue-dark: #05288F;
  --ef-black: #000000;

  /* RGB triplets for rgba() composition (BlurredOrb gradients). Names mirror the
     Next.js source vars: --brand-rgb (yellow) and --callout-rgb (purple). */
  --ef-brand-rgb: 255, 221, 103;
  --ef-callout-rgb: 199, 85, 240;

  /* Opacity variants (named alpha steps from the Figma design system) */
  --ef-dark-point-05: rgba(24, 25, 27, 0.05);
  --ef-dark-point-10: rgba(24, 25, 27, 0.10);
  --ef-dark-point-20: rgba(24, 25, 27, 0.20);
  --ef-dark-point-30: rgba(24, 25, 27, 0.30);
  --ef-dark-point-50: rgba(24, 25, 27, 0.50);
  --ef-dark-point-70: rgba(24, 25, 27, 0.70);
  --ef-light-point-05: rgba(255, 255, 255, 0.05);
  --ef-light-point-10: rgba(255, 255, 255, 0.10);
  --ef-light-point-25: rgba(255, 255, 255, 0.25);
  --ef-light-point-50: rgba(255, 255, 255, 0.50);
  --ef-light-point-70: rgba(255, 255, 255, 0.70);
  --ef-light-point-85: rgba(255, 255, 255, 0.85);

  /* Gradients (Figma: Gradients/Button Gradient 1 & 2) */
  --ef-button-gradient-1: linear-gradient(165.41deg, var(--ef-brand-yellow) 16.05%, var(--ef-brand-purple) 149.82%);
  --ef-button-gradient-2: linear-gradient(137.83deg, var(--ef-gradient-blue-light) 22.41%, var(--ef-gradient-blue-dark) 90.06%);
  /* Gradients/Gradient 1 — the purple→yellow text gradient (used for gradient-text headings/callouts) */
  --ef-gradient-1: linear-gradient(179deg, var(--ef-brand-purple) 25%, var(--ef-brand-yellow) 128%);

  /* Drop shadows (Figma: Drop Shadow Default / Drop Shadow - Large) */
  --ef-shadow-default: 0 0 16px 0 rgba(24, 25, 27, 0.05);
  --ef-shadow-lg: 0 0 70px 8px rgba(152, 156, 163, 0.16);

  /* Responsive base font size (html element): desktop value comes from the body font token. */
  --ef-font-base: 16px;

  /* ---- Type scale ----
     Tokens are AUTHORED in rem in fields.json (body_font stays px — it defines
     the rem root) and emitted verbatim: size ~ size_unit, no unit math ever.
     rem is relative to html's --ef-font-base, so these scale 16/15/14 responsively. */
  --ef-text-h1: 4rem;
  --ef-text-h2: 2.5rem;
  --ef-text-h3: 2rem;
  --ef-text-h4: 1.5rem;
  --ef-text-h5: 1.125rem;
  --ef-text-h6: 1.125rem;
  --ef-text-p-base: 1.125rem;
  --ef-text-p-1sm: 1rem;
  --ef-text-p-2sm: 0.875rem;
  --ef-text-title-base: 0.875rem;
  --ef-text-title-1sm: 0.8125rem;
  --ef-text-button: 1.125rem;
  --ef-text-form-button: 1.125rem;
}

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --ef-font-base: 15px;

    /* Headings step down at tablet & below (Jon, 2026-07-23, tuned by eye):
       h1 by √φ ≈ 1.272, h2–h6 two notches gentler at φ^⅛ ≈ 1.062 — full φ read too
       small. All floored at body size: without the floor, φ pushes h4–h6
       below body text; scaling only some levels inverts the ramp at the
       boundary (φ'd h3 < unscaled h4). With max(), the ramp stays monotonic
       and the small levels settle at body scale. φ stacks with the
       --ef-font-base drop (both proportional, by design). */
    --ef-text-h1: max(calc(4rem / 1.272), var(--ef-text-p-base));
    --ef-text-h2: max(calc(2.5rem / 1.062), var(--ef-text-p-base));
    --ef-text-h3: max(calc(2rem / 1.062), var(--ef-text-p-base));
    --ef-text-h4: max(calc(1.5rem / 1.062), var(--ef-text-p-base));
    --ef-text-h5: max(calc(1.125rem / 1.062), var(--ef-text-p-base));
    --ef-text-h6: max(calc(1.125rem / 1.062), var(--ef-text-p-base));
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --ef-font-base: 14px;
  }
}
*, *: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 !important;
}

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



/* Full-bleed guard: 100vw breakout modules (e.g. Hero Slider) include the
   scrollbar width; clip stray horizontal overflow at the root. */
html {
  overflow-x: clip;
}

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

/* Full-bleed opt-out: a module whose root carries .ef-full-bleed takes over from
   its dnd wrappers entirely — the containing section contributes no padding, no
   width cap, no column gutter. The module owns its own spacing and line
   (via .wrap / --ef-gutter). Wins over the theme-overrides spacing rules on
   specificity, so editor-dragged placements neutralize automatically. */

.dnd-section:has(.ef-full-bleed) {
  padding: 0;
}

.dnd-section:has(.ef-full-bleed) > .row-fluid {
  max-width: none;
}

.dnd-section:has(.ef-full-bleed) .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
/* .wrap — global content container, ported from the Next.js Wrap component.
   THE standard inner container for module/section content (replaces content-wrapper).
   Base: centered, capped at --ef-wrap-max-width, 90% wide (the 5% side gutter),
   flex row with space-between. Because .wrap owns the gutter (90% width), the
   full-bleed parent it sits in should NOT also add horizontal gutter padding.
   Modifier class names mirror the original component. */

.wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--ef-wrap-max-width);
  position: relative;
  width: calc(100% - var(--ef-gutter) * 2);
}

/* Full width */
.wrap.wide {
  max-width: 100%;
}

/* Narrower caps */
.wrap.medium-wide-wrap {
  max-width: var(--ef-wrap-medium-wide);
}

.wrap.medium-wrap {
  max-width: var(--ef-wrap-medium);
}

.wrap.small-wrap {
  max-width: var(--ef-wrap-small);
}

/* Stacked/centered content instead of a space-between row */
.wrap.center {
  flex-direction: column;
  justify-content: center;
}

/* Edge-to-edge on mobile (original used a "bigPhone" breakpoint → mapped to our mobile token) */
@media (max-width: 768px) {
  .wrap.mobile-full {
    width: 100%;
  }
}

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

/* Section vertical rhythm — the default breathing room for every <section>.
   Full-bleed modules render their own <section> root, so this is the site-wide
   rhythm between stacked sections. em-based: compounds with the responsive
   base font (16/15/14), computed 96px / 75px / 56px. */





section {
  padding: 6em 0;
  width: 100%;
}

@media (max-width: 1080px) {
  section {
    padding: 5em 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4em 0;
  }
}
/* hr — themed divider. Light context (default): dark-point-10; dark contexts
   set --ef-hr-color to light-point-10 on their root (see content-cards,
   content-card) and every hr inside adapts automatically — including ones
   marketers place via the WYSIWYG toolbar. */

hr {
  border: none;
  border-top: 1px solid var(--ef-hr-color, var(--ef-dark-point-10));
  margin: 1rem 0;
  width: 100%;
}
/* 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: themed in elements/_hr.css */

/* 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:not([type=submit]):disabled,
.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: 1rem 1.4rem;
  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 — stripped to brand tokens + gutter only; real header styles come with the Figma rebuild. */

/* Themeable via CSS vars. Default (the rule): Light Point background, Dark Point text.
   The dark exception is flipped per page by the Header Theme utility module. */
.header {
  --ef-header-bg: #FFFFFF;
  --ef-header-text: #18191B;
  background-color: var(--ef-header-bg);
  color: var(--ef-header-text);
  
  padding: 2em 0;
}

/* Anything inside the header follows the header theme, overriding module-level
   color schemes (needs !important to beat scoped module CSS specificity).
   The menu toggle is bound the same way as the logo — hamburger and X both
   stroke currentColor, so they always match the logo complex text. */
.header .ah-logo-complex,
.header .header__navigation--toggle {
  color: var(--ef-header-text) !important;
}




/* Nav row: menu + CTA on one line (interim until the Figma header rebuild) */
.header__row-2 {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.header__navigation {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.header--toggle,
.header__close--toggle {
  display: none;
}

/* Tablet & below: hamburger + slide-down panel; nav AND the CTA live behind it.
   The toggle JS (js/main.js) flips .open/.hide/.show — this is the interim
   mobile menu until the Figma header rebuild (Mobile Nav Toggle component). */
@media (max-width: 1080px) {
  .header__navigation {
    display: none;
  }

  .header__navigation.open {
    align-items: flex-start;
    background: var(--ef-header-bg);
    border-top: 1px solid var(--ef-hr-color, var(--ef-dark-point-10));
    box-shadow: 0 3em 7em -4em var(--ef-dark-point);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
    left: calc(var(--ef-gutter, 5%) * -1);
    padding: 1.5rem var(--ef-gutter, 5%) 4em;
    position: absolute;
    
    top: 4.6em;
    width: calc(100% + var(--ef-gutter, 5%) * 2);
    z-index: 2;
  }

  /* Inside the panel, use the menu's mobile variant (the module switches at the
     mobile token; we extend the same switch up to the tablet token) */
  .header__navigation .menu--desktop { display: none; }
  .header__navigation .menu--mobile { display: block; width: 100%; }

  
  .header__navigation.open {
    animation: ef-mobile-nav-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
  }

  .header__navigation.open .menu--mobile .menu__item--depth-1,
  .header__navigation.open .header__cta {
    animation: ef-mobile-nav-item-in 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-delay: 0.88s; 
  }

  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(1) { animation-delay: 0.4s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(2) { animation-delay: 0.46s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(3) { animation-delay: 0.52s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(4) { animation-delay: 0.58s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(5) { animation-delay: 0.64s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(6) { animation-delay: 0.7s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(7) { animation-delay: 0.76s; }
  .header__navigation.open .menu--mobile .menu__item--depth-1:nth-child(8) { animation-delay: 0.82s; }

  @media (prefers-reduced-motion: reduce) {
    .header__navigation.open,
    .header__navigation.open .menu--mobile .menu__item--depth-1,
    .header__navigation.open .header__cta,
    .header__navigation--toggle line {
      animation: none;
      transition: none;
    }
  }

  
  .header__navigation .menu--mobile .menu__item--depth-1 {
    border-bottom: 1px solid color-mix(in srgb, var(--ef-header-text) 5%, transparent);
    display: flex;
    font-size: 1.2em;
    padding: 0;
    user-select: none;
  }

  .header__navigation .menu--mobile .menu__item--depth-1 > .menu__link {
    align-items: center;
    color: color-mix(in srgb, var(--ef-header-text) 70%, transparent);
    display: flex;
    font-size: 0.875em;
    font-weight: 800;
    justify-content: space-between;
    padding: 0.6em 0;
    transition: color 0.2s ease;
    width: 100%;
  }

  .header__navigation .menu--mobile .menu__item--depth-1 > .menu__link:hover,
  .header__navigation .menu--mobile .menu__item--depth-1 > .menu__link:focus {
    color: var(--ef-header-text);
  }

  
  .header__navigation .menu--mobile .menu__item--depth-1 > .menu__link::after {
    background: currentColor;
    content: "";
    flex-shrink: 0;
    height: 1em;
    -webkit-mask: url('https://23611777.fs1.hubspotusercontent-na2.net/hubfs/23611777/raw_assets/public/anonymous-health-electricfun/images/icons/chevron-right.svg') center / contain no-repeat;
    mask: url('https://23611777.fs1.hubspotusercontent-na2.net/hubfs/23611777/raw_assets/public/anonymous-health-electricfun/images/icons/chevron-right.svg') center / contain no-repeat;
    width: 1em;
  }

  
  .header__navigation.open .header__cta {
    margin-top: 1em;
    width: 100%;
  }

  .header__navigation.open .header__cta .ef-button {
    width: 100%;
  }

  
  .header__navigation--toggle {
    color: var(--ef-header-text);
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 9;
  }

  .header__navigation--toggle svg {
    display: block;
    height: 2rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.4;
    width: 2rem;
  }

  
  .header__navigation--toggle line {
    transition:
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header__navigation--toggle line:nth-child(1) {
    transform-origin: 12px 6px;
  }

  .header__navigation--toggle line:nth-child(3) {
    transform-origin: 12px 18px;
  }

  .header__navigation--toggle.open line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header__navigation--toggle.open line:nth-child(2) {
    opacity: 0;
  }

  .header__navigation--toggle.open line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header__navigation--toggle.hide {
    display: none;
  }

  .header__close--toggle.show {
    color: var(--ef-header-text);
    cursor: pointer;
    display: block;
    font-size: 1.25rem;
    line-height: 1;
  }

  .header__close--toggle.show::before {
    content: "✕";
  }
}

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

/* Navigation skipper (functional a11y: visually hidden until keyboard focus) */
.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;
}
/* BlurredOrb — ported 1:1 from the Next.js BlurredOrb styled-component.
   Page-level ambient orbs: fixed, orbiting the viewport center; any content
   section with a transparent background floats above them.
   NOTE: the page-level orbs (EF-Page-Settings "Background orbs" toggle) render
   as body::before/::after with these same property values — pseudos attach at
   the document root, immune to the page editor's transformed wrappers. The
   .blurred-orb classes below are kept for future scoped/manually-placed orbs
   (e.g. section-pinned variants); keep both in sync.
   Deviation from source: z-index -1 (source relied on the app shell's stacking;
   here it guarantees orbs paint behind all in-flow content without requiring
   content wrappers to carry z-index). */

@keyframes orb-orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(50vw) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(50vw) rotate(-360deg);
  }
}

.blurred-orb {
  --orb-size: 85vh;
  --orb-duration: 120s;

  animation: orb-orbit var(--orb-duration) linear infinite;
  background: radial-gradient(
    circle,
    rgba(var(--orb-color), 0.7),
    rgba(var(--orb-color), 0)
  );
  border-radius: 50%;
  filter: blur(12em);
  height: var(--orb-size);
  left: 50%;
  opacity: 0.4;
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--orb-size);
  will-change: transform;
  z-index: 0;
}

.blurred-orb.brand {
  --orb-color: var(--ef-brand-rgb);
}

.blurred-orb.purple {
  --orb-color: var(--ef-callout-rgb);
  animation-delay: calc(var(--orb-duration) / -2);
}

/* layer2 duplicate — offset copy for depth */
.blurred-orb.layer-2 {
  animation-delay: -10s;
  opacity: 0.45;
}

/* Static mode (rotation toggle off, the default): no animation, orbs parked at
   the orbit's t=0 positions — brand right of center, purple opposite (half cycle). */
.blurred-orb.static {
  animation: none;
  transform: translate(-50%, -50%) translateX(50vw);
}

.blurred-orb.static.purple {
  transform: translate(-50%, -50%) translateX(-50vw);
}

/* Reduced motion: park rotating orbs the same way */
@media (prefers-reduced-motion: reduce) {
  .blurred-orb {
    animation: none;
    transform: translate(-50%, -50%) translateX(50vw);
  }

  .blurred-orb.purple {
    transform: translate(-50%, -50%) translateX(-50vw);
  }
}

/* Layering contract — one orb set per page, sandwiched between backgrounds and
   content: section/module BACKGROUNDS stay unpositioned (paint below the z:0
   orbs), while CONTENT layers carry z:1 (paint above). Dark full-bleed sections
   therefore act as windows onto the same page orbs instead of needing their own.
   Content layers: .header/.footer (whole bars, opaque chrome), every .wrap, and
   dnd rows (so marketer-composed content is never under an orb).
   IMPORTANT: full-bleed module roots must NOT be positioned (position: relative
   on the section root would lift its background above the orbs). */
.footer,
.ah-subfooter {
  position: relative;
  z-index: 1;
}

/* Header outranks the content plane (z:1) so its overlays — the mobile nav
   panel, future dropdowns — paint above page content. Still above orbs (z:0). */
.header {
  position: relative;
  z-index: 2;
}

.wrap {
  z-index: 1;
}

.dnd-section > .row-fluid {
  position: relative;
  z-index: 1;
}

/* …EXCEPT rows hosting a full-bleed module: lifting the row would lift the
   module's background above the orbs too. Full-bleed modules protect their own
   content via .wrap (z:1), so the row stands down and the module's section
   background stays below the orb layer. */
.dnd-section:has(.ef-full-bleed) > .row-fluid {
  position: static;
  z-index: auto;
}
/* EF Button — ported 1:1 from the Figma Button component set (node 14:44).
   API mirrors the Figma props: Size (default | --large), Color (yellow default |
   --light-point | --dark-point | --yellow-pink | --blue), Style (solid default |
   --ghost). Markup contract:
     <a class="ef-button [modifiers]">
       [<span class="ef-button__icon ef-button__icon--left" aria-hidden="true"></span>]
       <span class="ef-button__label">Text</span>
       [<span class="ef-button__icon" aria-hidden="true"></span>]
     </a>
   NO hover states: the design set defines none (Jon, 2026-07-18) — do not add any.
   The icon is exclusively the arrow-right-long SVG exported from the design file,
   applied as a CSS mask so it takes solid colors AND gradient fills exactly like
   the label (left icon = mirrored right). */

.ef-button {
  align-items: center;
  background: var(--ef-brand-yellow);
  border-radius: 1000px;
  color: var(--ef-dark-point);
  display: inline-flex;
  font-family: Nunito, sans-serif;
  font-size: var(--ef-text-p-1sm);
  font-weight: 800;
  gap: 1rem;
  justify-content: center;
  line-height: 1.4;
  padding: 14px 24px;
  text-decoration: none;
  white-space: nowrap;
}

/* Size=Large — P Base Extrabold */
.ef-button--large {
  font-size: var(--ef-text-p-base);
  line-height: 1.5;
  padding: 16px 40px;
}

/* Color=* , Style=Solid */
.ef-button--light-point {
  background: var(--ef-light-point);
  color: var(--ef-dark-point);
}

.ef-button--dark-point {
  background: var(--ef-dark-point);
  color: var(--ef-light-point);
}

.ef-button--yellow-pink {
  background: var(--ef-button-gradient-1);
  color: var(--ef-dark-point);
}

.ef-button--blue {
  background: var(--ef-button-gradient-2);
  color: var(--ef-light-point);
}

/* Style=Ghost — 2px border; padding compensated by the border width so the
   outer height matches the Solid variants (Figma renders both at equal height) */
.ef-button--ghost {
  background: transparent;
  border: 2px solid var(--ef-brand-yellow);
  color: var(--ef-brand-yellow);
  padding: 12px 22px;
}

.ef-button--ghost.ef-button--large {
  padding: 14px 38px;
}

.ef-button--ghost.ef-button--light-point {
  border-color: var(--ef-light-point);
  color: var(--ef-light-point);
}

.ef-button--ghost.ef-button--dark-point {
  border-color: var(--ef-dark-point);
  color: var(--ef-dark-point);
}

/* Gradient ghosts: the 2px border is itself a gradient ring — drawn by a
   masked pseudo-element (transparent interior preserved), label + icon
   through the same gradient */
.ef-button--ghost.ef-button--yellow-pink,
.ef-button--ghost.ef-button--blue {
  border-color: transparent;
  position: relative;
}

.ef-button--ghost.ef-button--yellow-pink::before,
.ef-button--ghost.ef-button--blue::before {
  border-radius: inherit;
  content: "";
  inset: -2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  pointer-events: none;
  position: absolute;
}

.ef-button--ghost.ef-button--yellow-pink::before {
  background: var(--ef-button-gradient-1);
}

.ef-button--ghost.ef-button--blue::before {
  background: var(--ef-button-gradient-2);
}

.ef-button--ghost.ef-button--yellow-pink .ef-button__label {
  background: var(--ef-button-gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ef-button--ghost.ef-button--blue .ef-button__label {
  background: var(--ef-button-gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Icon — arrow-right-long from the design file, masked so it inherits the
   label's fill (currentColor or gradient). 17×11 intrinsic. */
.ef-button__icon {
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
  height: 11px;
  -webkit-mask: url('https://23611777.fs1.hubspotusercontent-na2.net/hubfs/23611777/raw_assets/public/anonymous-health-electricfun/images/icons/arrow-right-long.svg') center / contain no-repeat;
  mask: url('https://23611777.fs1.hubspotusercontent-na2.net/hubfs/23611777/raw_assets/public/anonymous-health-electricfun/images/icons/arrow-right-long.svg') center / contain no-repeat;
  width: 17px;
}

.ef-button__icon--left {
  transform: scaleX(-1);
}

.ef-button--ghost.ef-button--yellow-pink .ef-button__icon {
  background: var(--ef-button-gradient-1);
}

.ef-button--ghost.ef-button--blue .ef-button__icon {
  background: var(--ef-button-gradient-2);
}

/* Layout helper: full-width button (card CTAs etc.) */
.ef-button--full {
  width: 100%;
}

/* Submit buttons — HubSpot renders form submits as <input type="submit"
   class="hs-button"> (newer embeds: <button type="submit">). They carry the
   exact EF Button recipe, Default / Yellow / Solid, declaration-for-declaration
   with .ef-button above (keep the two in sync), plus input-only resets.
   NO hover/focus/active restyle — the design set defines none. The form-prefixed
   selectors out-rank the boilerplate `form input[type=submit]` rule in
   elements/_forms.css; theme-overrides.css button rules exclude submits. */
form input[type="submit"],
form .hs-button,
input[type="submit"],
button[type="submit"],
.hs-button {
  align-items: center;
  appearance: none;
  background: var(--ef-brand-yellow);
  border: none;
  border-radius: 1000px;
  color: var(--ef-dark-point);
  cursor: pointer;
  display: inline-flex;
  font-family: Nunito, sans-serif;
  font-size: var(--ef-text-p-1sm);
  font-weight: 800;
  gap: 1rem;
  justify-content: center;
  line-height: 1.4;
  padding: 14px 24px;
  text-decoration: none;
  white-space: nowrap;
}
/* Content Card — Figma "Content Card" component, shared by the standalone
   EF-Content-Card module and the EF-Content-Cards section so the two can't
   drift. The card body is WYSIWYG: headings/paragraphs/lists inside
   .content-card__body are styled to the card's type tokens.
   Two context schemes via CSS vars: dark context (default — light text on
   translucent light fill) and .content-card--light for light backgrounds. */


.content-card {
  --card-bg: var(--ef-light-point-05);
  --card-border: var(--ef-light-point-05);
  --card-fg: var(--ef-light-point);
  --card-fg-muted: var(--ef-light-point-70);
  --card-divider: var(--ef-light-point-10);
  --ef-hr-color: var(--card-divider);

  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  padding: 2rem;
}

.content-card--light {
  --card-bg: var(--ef-light-point);
  --card-border: var(--ef-dark-point-10);
  --card-fg: var(--ef-dark-point);
  --card-fg-muted: var(--ef-dark-point-70);
  --card-divider: var(--ef-dark-point-10);
  
  box-shadow: 0 4px 80px 0 var(--ef-dark-point-05);
}

/* Eyebrow — Title 1sm token */
.content-card__eyebrow {
  font-family: Nunito, sans-serif; font-style: normal; font-weight: 800; text-decoration: none;
  color: var(--card-fg-muted);
  font-size: var(--ef-text-title-1sm);
  line-height: 1.5;
  margin: 0;
}

/* WYSIWYG body: semantic elements map to the card's type styles */
.content-card__body {
  color: var(--card-fg-muted);
  font-size: var(--ef-text-p-1sm);
  line-height: 1.4;
}

/* Card title style (H 1sm token) for any heading level chosen in the editor */
.content-card__body h2,
.content-card__body h3,
.content-card__body h4 {
  font-weight: 500; text-decoration: none; font-family: Nunito, sans-serif; font-style: normal;
  color: var(--card-fg);
  font-size: var(--ef-text-h4);
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.content-card__body p {
  margin: 0 0 1rem;
}

.content-card__body p:last-child {
  margin-bottom: 0;
}

/* Divider — marketers place an <hr> in the WYSIWYG wherever the line belongs.
   Color comes from the global themed hr (elements/_hr.css) via --ef-hr-color. */
.content-card__body hr {
  margin: 0 0 1rem;
}

/* Item list — P 2sm token */
.content-card__body ul,
.content-card__body ol {
  font-family: Nunito, sans-serif; font-style: normal; font-weight: 500; text-decoration: none;
  color: var(--card-fg-muted);
  font-size: var(--ef-text-p-2sm);
  line-height: 1.5;
  margin: 0;
  padding: 0 0 0 1.3em;
}

.content-card__body li {
  margin-bottom: 0.75rem;
}

.content-card__body li:last-child {
  margin-bottom: 0;
}

/* CTA appearance comes from the EF Button component (components/_button.css);
   this only pins it to the card bottom */
.content-card__cta {
  margin-top: auto;
}
/* Footer — stripped to brand tokens + gutter only; real footer styles come with the Figma rebuild. */

.footer {
  background-color: #18191B;
  color: #FFFFFF;
  padding: 4em 0;
}
/* 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;
  }
}