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

/* Design Tokens
CSS custom properties from Figma variables (colors, typography, spacing, radius)
*/

/* Design Tokens
   CSS custom properties for theme variables
   Imported from Figma: team.blue – Website
*/

/* ==========================================================================
   Breakpoints (CSS cannot use variables in media queries)
   ==========================================================================
   Mobile:  max-width: 767px   (@media (max-width: 767px))
   Tablet:  min-width: 768px   (@media (min-width: 768px))
   Desktop: min-width: 1024px  (@media (min-width: 1024px))
   Wide:    min-width: 1440px  (@media (min-width: 1440px))
   ========================================================================== */

:root {
   /* Horizontal Overscroll Fix */
   overflow-x: clip;

  /* ==========================================================================
     Color Primitives
     ========================================================================== */

  /* Grey Scale */
  --color-grey-black: #000000;
  --color-grey-dark: #292b26;
  --color-grey-light: #f1f3f6;
  --color-grey-white: #ffffff;

  /* Neutral Greyscale */
  --color-neutral-50: #f1f3f6;
  --color-neutral-100: #e9ecf0;
  --color-neutral-200: #d8dee5;
  --color-neutral-300: #bcc6d4;
  --color-neutral-400: #9caabe;
  --color-neutral-500: #8492ad;
  --color-neutral-600: #727e9e;
  --color-neutral-700: #666f8f;
  --color-neutral-800: #575d76;
  --color-neutral-900: #484d60;
  --color-neutral-950: #2f323c;

  /* Blue Palette */
  --color-blue-night: #04182b;
  --color-blue-sky: #161f36;
  --color-blue-sea: #2d4470;
  --color-blue-coral: #00627f;
  --color-blue-aqua-aaa: #438699;
  --color-blue-aqua: #599db1;

  /* Red Palette */
  --color-red-blood: #b21500;
  --color-red-strawberry: #e72107;
  --color-red-peach: #ff4b33;
  --color-red-pink: #ef0648;

  /* Green Palette */
  --color-green-forest: #4e664f;
  --color-green-olive: #8cb88e;
  --color-green-grass: #a8dcab;

  /* Purple */
  --color-purple: #6179ff;

  /* Accent - Violet */
  --color-accent-violet: #4b56bb;
  --color-accent-violet-20: rgba(75, 86, 187, 0.1);

  /* Accent - Burgundy */
  --color-accent-burgundy: #af476a;
  --color-accent-burgundy-20: rgba(175, 71, 106, 0.1);

  /* Accent - Forrest */
  --color-accent-forrest: #0f7d79;
  --color-accent-forrest-20: rgba(15, 125, 121, 0.1);

  /* Brand - Loopia */
  --color-brand-loopia-pink: #ff7dfa;
  
  /* Radial / Gradient */
   --radial-red:  radial-gradient(61.54% 141.42% at 0% 0%, rgba(175, 71, 106, 0.00) 0%, rgba(175, 71, 106, 0.25) 100%);
   --radial-green: radial-gradient(61.54% 141.42% at 0% 0%, rgba(15, 125, 121, 0.00) 0%, rgba(15, 125, 121, 0.25) 100%);
   --radial-purple: radial-gradient(61.54% 141.42% at 0% 0%, rgba(75, 86, 187, 0.00) 0%, rgba(75, 86, 187, 0.25) 100%);
   --radial-brand: radial-gradient(61.54% 141.42% at 0% 0%, rgba(255, 125, 250, 0.25) 0%, rgba(255, 125, 250, 0.06) 100%);
   --radial-text-red:linear-gradient(180deg, #FFF 25%, #AF476A 100%);
   --radial-text-green:linear-gradient(180deg, #FFF 25%, #36ADA9 100%);
   --radial-text-purple:linear-gradient(180deg, #FFF 25%, #4B56BB 100%);
   /* Gradients */
   --gradient-white-transparent: linear-gradient(180deg, var(--color-white-0) 25%, var(--color-white) 100%);

  /* Transparent Black */
  --color-black-100: #000000;
  --color-black-90: rgba(0, 0, 0, 0.9);
  --color-black-80: rgba(0, 0, 0, 0.8);
  --color-black-70: rgba(0, 0, 0, 0.7);
  --color-black-60: rgba(0, 0, 0, 0.6);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-40: rgba(0, 0, 0, 0.4);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-5: rgba(0, 0, 0, 0.05);
  --color-black-0: rgba(0, 0, 0, 0);

  /* Transparent White */
  --color-white: #ffffff;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-40: rgba(255, 255, 255, 0.4);
  --color-white-30: rgba(255, 255, 255, 0.3);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-5: rgba(255, 255, 255, 0.05);
  --color-white-0: rgba(255, 255, 255, 0);

  /* ==========================================================================
     Theme Semantic Colors
     ========================================================================== */
  --color-background: #04182b;
  --color-foreground: #FFFFFF;
  --color-card: var(--color-white-10);
  --color-card-foreground: var(--color-white);
  --color-brand: var(--color-brand-loopia-pink);
  --color-brand-foreground: var(--color-black-100);
  --color-primary: var(--color-red-pink);
  --color-primary-foreground: var(--color-white);
  --color-secondary: var(--color-blue-aqua);
  --color-secondary-foreground: var(--color-blue-aqua-aaa);
  --color-muted: var(--color-neutral-50);
  --color-muted-foreground: var(--color-white-70);
  --color-accent: var(--color-green-olive);
  --color-accent-foreground: var(--color-blue-night);
  --color-destructive: var(--color-red-blood);
  --color-destructive-foreground: var(--color-white);
  --color-border: var(--color-white-10);
  --color-input: var(--color-white-10);
  --color-ring: var(--color-purple);

  --fallback-glass-bg: linear-gradient(198deg, rgba(255, 255, 255, 0.18) 12.02%, rgba(255, 255, 255, 0.20) 50.04%, rgba(255, 255, 255, 0.19) 88.06%);
  --fallback-glass-border: rgba(255, 255, 255, 0.28); /* 1px glass rim; ~matches old 0.5px line weight */

  
  /* ==========================================================================
     Typography - Font Families & Weights (from theme global fonts)
     ========================================================================== */
  --font-family-heading: "Inter", sans-serif;
  --font-family-body: "Inter", sans-serif;
  --font-family-action: "Inter", sans-serif;
  
  --font-weight-bold: 700; /* Semibold */
  --font-weight-heading: 600; /* Semibold */
  --font-weight-action: 500; /* Medium */
  --font-weight-body: 400; /* Regular */

  --line-height-heading: 1.3;
  --line-height-body: 1.5;
  --opacity-body: 0.7;

  /* Typography - Desktop Sizes */
  --font-size-heading-xl: 4rem;
  --font-size-heading-lg: 3.5rem;
  --font-size-heading-md: 2.5rem;
  --font-size-heading-sm: 2rem;
  --font-size-heading-xs: 1.5rem;
  --font-size-body-lg: 1.25rem;
  --font-size-body-md: 1rem;
  --font-size-body-sm: 0.875rem;
  --font-size-usp: 6.125rem;

  /* ==========================================================================
     Spacing - Desktop
     ========================================================================== */

  /* Section Spacing */
  --spacing-section-horizontal-lg: 5rem;
  --spacing-section-horizontal-md: 3.5rem;
  --spacing-section-horizontal-sm: 1.5rem;
  --spacing-section-vertical-xl: 10rem;
  --spacing-section-vertical-lg: 7.0rem;
  --spacing-section-vertical-md: 5.0rem;

  /* Container Margin */
  --spacing-container-margin-xl: 8rem; 
  --spacing-container-margin-lg: 5rem; 
  --spacing-container-margin-md: 4rem;
  --spacing-container-margin-sm: 3rem;

  /* Container Gap */
  --spacing-container-gap-xl: 2rem;
  --spacing-container-gap-lg: 1.5rem;
  --spacing-container-gap-md: 1rem;
  --spacing-container-gap-sm: 0.75rem;
  --spacing-container-gap-xs: 0.5rem;

  /* Card Padding */
  --spacing-card-padding-2xl: 5rem;
  --spacing-card-padding-xl: 3.5rem;
  --spacing-card-padding-lg: 3rem;
  --spacing-card-padding-md: 2rem;
  --spacing-card-padding-sm: 1.5rem;
  --spacing-card-padding-xs: 1rem;
  --spacing-card-padding-2xs: 0.5rem;

  /* Button Padding */
  --spacing-button-padding-xl: 2rem;
  --spacing-button-padding-lg: 1.5rem;
  --spacing-button-padding-md: 1rem;
  --spacing-button-padding-sm: 0.75rem;
  --spacing-button-padding-xs: 0.5rem;
  --spacing-button-padding-2xs: 0.25rem;

   /*  global section padding */
  --section-padding-global:5vw;
  --section-padding-global-sm:1.75vw;
  
  /* Grid */
  --grid-columns: 12;
  --blog-width:848px;

  /* Card height - shared by cards-showcase and cards-two-columns (40% of ~1200px container) */
  --card-height-desktop: 33rem;

  /* ==========================================================================
     Border Radius - Desktop
     ========================================================================== */
  --radius-full: 500px;
  --radius-xl: 4rem;
  --radius-lg: 3.5rem;
  --radius-md: 3rem;
  --radius-sm: 2.5rem;
  --radius-xs: 2rem;
  --radius-xxs: 1.5rem;
  --radius-xxxs: 1rem;
  --radius-icon: 1rem;
  --radius-checkbox:0.5rem;
}

@media (max-width: 1024px) {
   :root {
      --section-padding-global:4vw;
   }
}

/* ==========================================================================
   Mobile Overrides (< 48rem)
   ========================================================================== */
@media (max-width: 767px) {
  :root {
    /* Typography - Mobile Sizes */
    --font-size-heading-xl: 2rem;
    --font-size-heading-lg: 1.75rem;
    --font-size-heading-md: 1.5rem;
    --font-size-heading-sm: 1.375rem;
    --font-size-heading-xs: 1.125rem;
    --font-size-body-lg: 1.125rem;
    --font-size-body-md: 0.875rem;
    --font-size-body-sm: 0.75rem;
    --font-size-usp: 4rem;
    --font-size-usp-lg:5rem;
    --font-size-default:1rem;

    /* Section Spacing - Mobile */
    --spacing-section-horizontal-lg: 1rem;
    --spacing-section-horizontal-md: 1rem;
    --spacing-section-horizontal-sm: 1rem;
    --spacing-section-vertical-xl: 4.0rem;
    --spacing-section-vertical-lg: 4.0rem;
    --spacing-section-vertical-md: 2.0rem;

    /* Container Margin - Mobile */
    --spacing-container-margin-xl: 3.5rem;
    --spacing-container-margin-lg: 3.5rem;
    --spacing-container-margin-md: 2.5rem;
    --spacing-container-margin-sm: 2rem;

    /* Card Padding - Mobile */
    --spacing-card-padding-2xl: 1rem;
    --spacing-card-padding-xl: 1.5rem;
    --spacing-card-padding-lg: 1.5rem;
    --spacing-card-padding-md: 1.5rem;
    --spacing-card-padding-sm: 1rem;
    --spacing-card-padding-xs: 1rem;
    --spacing-card-padding-2xs: 0.5rem;

    /* Grid - Mobile */
    --grid-columns: 4;

    /* Border Radius - Mobile */
    --radius-xl: 4rem;
    --radius-lg: 3rem;
    --radius-md: 2.5rem;
    --radius-sm: 2rem;
    --radius-xs: 1.5rem;
    --radius-xxs: 1rem;
    --radius-xxxs: 0.5rem;
    --radius-icon: 1rem;

    --section-padding-global:4vw;
    --section-padding-global-sm:4vw;
  }
}

html { font-size: calc(0.625rem + 0.41666666666666663vw); }
@media screen and (max-width:2560px) { html { font-size: calc(0.8092105263157895rem + 0.2631578947368421vw); } }
@media screen and (max-width:1920px) { html { font-size: calc(0.2499999999999999rem + 0.8333333333333335vw); } }
@media screen and (max-width:1440px) { html { font-size: calc(0.1346153846153847rem + 0.9615384615384615vw); } }
@media screen and (max-width:1024px) { html { font-size: calc(-0.24610894941634232rem + 1.5564202334630348vw); } }
@media screen and (max-width:767px) { html { font-size: 1rem; } }
/* ==========================================================================
   Module Base Styles
   Shared styles for all module wrappers
   ========================================================================== */

/* Shared module scoping - applies box-sizing to all module wrappers */
[class$="-wrapper"] *,
[class$="-wrapper"] *::before,
[class$="-wrapper"] *::after {
  box-sizing: border-box;
}

/* 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: 0.0625rem 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;
}
body {
  background-color: var(--color-background);
  overflow-x: clip; /* Prevent horizontal scrollbars from hero background gradient; allow vertical bleed */
  /* Push entire page content below fixed header using measured nav height */
  padding-top: 6rem;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 5rem;
  }
}

section {
  position: relative;
}

/**** COLORS ****/
.color-foreground, .color-foreground h1, .color-foreground h2, .color-foreground h3, .color-foreground h4, .color-foreground h5, .color-foreground h6, .color-foreground p {
  color: var(--color-foreground);
}

.color-background, .color-background h1, .color-background h2, .color-background h3, .color-background h4, .color-background h5, .color-background h6, .color-background p {
  color: var(--color-background);
}

.color-background-dark {
  background-color:var(--color-background)
}

.color-background-lightgrey {
  background-color:var(--color-grey-light);
}

.tag-green {
  color:var(--color-accent-forrest);
  background-color:var(--color-accent-forrest-20);
}

.tag-white {
  color:var(--color-background);
  background-color:var(--color-foreground);
}

.tag-red {
  color:var(--color-accent-burgundy);
  background-color:var(--color-accent-burgundy-20);
}

.tag-blue {
  color:var(--color-accent-violet);
  background-color:var(--color-accent-violet-20);
}

.color-text-muted {
  color:var(--color-muted-foreground);
}

/**** FLEX ****/
.flex-col-mob-row-desk {
  display:flex;
  flex-direction: column;
  @media (min-width: 768px) {
    flex-direction: row;
  }
}

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

.flex {
  display:flex;
}

.flex-column {
  display:flex;
  flex-direction: column;
}

.flex-column-center {
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.flex-column-center-center {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-center {
  display:flex;
  justify-content: center;
}

@media (max-width: 768px) {
    .mobile-top-section-indent {
      padding-right:0.6rem;
      padding-left:0.6rem;
    }
}



/**** GRID/WIDTH CLASSES ****/
.width-50-desk, .width-30-desk, .width-70-desk, .width-100, .width-40-desk, .width-45-desk, .width-55-desk, .width-60-desk, .width-35-desk, .width-65-desk {
  width:100%;
}

.width-100 {
  width:100%;
}

@media (min-width: 768px) {
  .width-50-desk {
    width:50%;
  }

  .width-30-desk {
    width:30%;
  }

  .width-40-desk {
    width:40%;
  }

  .width-45-desk {
    width:45%;
  }

  .width-55-desk {
    width:55%;
  }

  .width-60-desk {
    width:60%;
  }

  .width-70-desk {
    width:70%;
  }

  .width-35-desk {
    width:35%;
  }

  .width-65-desk {
    width:65%;
  }
}


/*** TAGS ***/
.tags-wrapper {
  display:flex;
  flex-wrap: wrap;
  gap: var(--spacing-container-gap-xs);
  max-width:100%;
}


.tag {
  padding:var(--spacing-button-padding-xs) var(--spacing-button-padding-md);
  font-size:var(--font-size-body-md);
  border-radius:var(--radius-xl);
  font-weight:var(--font-weight-action);
} 

/**** General  ****/
.text-align-center {
  text-align: center;
}

.hide-on-mobile {
  display: none !important;
}

@media (min-width: 768px) {
  .hide-on-mobile {
    display: flex !important;
  }
}

/* Utility classes for hiding gradients on mobile */
@media (max-width: 768px) {
  .gradient-hide-on-mobile {
    display: none !important;
  }
  .gradient-wrapper-hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .gradient-wrapper-hide-on-mobile {
    display: block !important;
  }
}

/* Desktop-only: visible on desktop, hidden on mobile */
.gradient-blobs-desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .gradient-blobs-desktop-only {
    display: none !important;
  }
}

/* Mobile-only: hidden on desktop, visible on mobile */
.gradient-blobs-mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .gradient-blobs-mobile-only {
    display: block !important;
  }
}


/* Opacity */
.opacity-70 {
  opacity: 0.7;
}

/* Event image gradient background */
.event-image-gradient-bg {
  background-color: lightgray;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: darken, normal;
}


/* Divider */

.c-divider {
  height:1px;
  margin-top:var(--spacing-container-margin-sm);
  margin-bottom:var(--spacing-container-margin-sm);
  background-color:var(--color-white-20);
}


/* SVG Backgrounds */

/* Ellipse SVG BG */
.ellipse-svg-bg {
  display:none
}

@media (min-width: 1024px) {

  /* Ellipse SVG BG */
.ellipse-svg-bg {
  width:100%;
  height:auto;
  display:block;
  position:absolute;
  top: calc(var(--spacing-section-vertical-lg) * -1);
  left:0;
  z-index:-1;
  fill: radial-gradient(43.84% 100.83% at 62.97% 0%, #0F7D79 0%, rgba(15, 125, 121, 0.00) 90%), radial-gradient(46.38% 100.85% at 36.97% 0%, #4B56BB 0%, rgba(75, 86, 187, 0.00) 90%);
  opacity: 0.35;
  filter: blur(50px);
}
}

/* 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));
    }
  
}
/* ==========================================================================
   Global Container System
   ========================================================================== 
   
   Container Width Classes:
   - container-small   : 50rem  - Narrow content (blog, text-heavy)
   - container-medium  : 67.5rem - Standard content sections
   - container-large   : 90rem - Wide content, still constrained
   - (no container)    : 100%   - Fullscreen/edge-to-edge sections
   
   Usage: Apply to .dnd-section OR inner wrappers within modules
   Sections that span edge-to-edge should NOT use container classes.
   ========================================================================== */

/* Container Width Tokens */
:root {
  --container-small: 800px;
  --container-medium: 1080px;
  --container-large: 1440px;
}

/* Base Container Behavior */
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* ==========================================================================
   Container Width Classes
   ========================================================================== */

/* Small Container - Narrow content (blog, focused text) */
.container-small,
.dnd-section.container-small > .row-fluid {
  max-width: var(--container-small);
  margin-left: auto;
  margin-right: auto;
}

/* Medium Container - Standard content width */
.container-medium,
.dnd-section.container-medium > .row-fluid {
  max-width: var(--container-medium);
  margin-left: auto;
  margin-right: auto;
}

/* Large Container - Wide but constrained */
.container-large,
.dnd-section.container-large > .row-fluid {
  max-width: var(--container-large);
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Section Layout Defaults
   ========================================================================== */

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

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

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

/* ==========================================================================
   Container + Padding Combinations
   Useful for sections that need both width constraint and edge padding
   ========================================================================== */

/* Container with horizontal global padding */
.container-small.section-padding-horiz-global,
.container-medium.section-padding-horiz-global,
.container-large.section-padding-horiz-global {
  padding-left: var(--section-padding-global);
  padding-right: var(--section-padding-global);
}

/* Container with smaller horizontal padding */
.container-small.section-padding-horiz-global-sm,
.container-medium.section-padding-horiz-global-sm,
.container-large.section-padding-horiz-global-sm {
  padding-left: var(--section-padding-global-sm);
  padding-right: var(--section-padding-global-sm);
}

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

* {
  font-family: var(--font-family-body);
}

h1,h2,h3,h4,h5,h6 {
  font-weight:var(--font-weight-heading);
  font-family: var(--font-family-heading);
  color:var(--color-background);
  line-height: 110%;
}

h1, .heading-xl {
  font-size:var(--font-size-heading-xl);
  margin: 0 0 var(--spacing-container-gap-lg);

}

h2, .heading-lg {
  font-size:var(--font-size-heading-lg);
  margin: 0 0 var(--spacing-container-gap-lg);

}

h3, .heading-md {
  font-size:var(--font-size-heading-md);
  margin: 0 0 var(--spacing-container-gap-lg);

}

h4, .heading-sm {
  font-size:var(--font-size-heading-sm);
  margin :0 0 var(--spacing-container-gap-md);
}

h5, .heading-xs {
  font-size:var(--font-size-heading-xs);
  margin :0 0 var(--spacing-container-gap-md);
}

h6 {  
  font-size:var(--font-size-heading-xs);
  margin :0 0 var(--spacing-container-gap-md);
}

p {
  font-size:var(--font-size-body-md);
  font-weight:var(--font-weight-body);
  color:var(--color-background);
  margin :0 0 var(--spacing-container-gap-md);
  line-height: 150%;
}

.text-xl {
  font-size:var(--font-size-body-lg);
}

.text-sm {
  font-size:var(--font-size-body-sm);
}

.text-usp {
  font-size:var(--font-size-usp);
}

.bold {
  font-weight: var(--font-weight-heading);
}

nav a {
  font-family:var(--font-family-body);
  font-weight:var(--font-weight-action);
  line-height:150%;
  color:var(--color-foreground);
  text-decoration: none;
}

nav ul li {
  list-style:none;
}


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


/* Anchors */

a {
  cursor: pointer;
}


/* Headings */


/* Lists */

ul,
ol {
  margin: 0 0 var(--spacing-container-gap-md);
}

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;
}
/* Critical CSS variables for module preview (fallback if not available globally) */
.button-wrapper {
  --color-primary: #ef0648;
  --color-primary-rgb: 239, 6, 72;
  --color-foreground: #ffffff;
  --color-background: #000000;
  --color-grey-black: #000000;
  --font-family-action: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --btn-duration: 0.4s;
  --btn-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.button-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-family-action, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.button-wrapper {
  display: inline-block;
  background-color: transparent;
  cursor: pointer;
  height: 3.625rem;
  vertical-align: top;
}

.button {
  display: flex;
  padding: 0.25rem;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-full, 62.4375rem);
  background-color: var(--color-background, #000000);
  color: var(--color-foreground, #ffffff);
  height: 3.625rem;
  box-shadow: 0 0.5rem 3.75rem -0.25rem rgba(var(--color-primary-rgb, 239, 6, 72), 0);
  transition: box-shadow var(--btn-duration) var(--btn-ease), background-color 0.3s var(--btn-ease);
  position: relative;
  font-weight: var(--font-weight-action);
  gap:var(--spacing-container-gap-md);
}


.button-wrapper:hover .button {
  box-shadow: 0 0.5rem 3.75rem -0.25rem rgba(var(--color-primary-rgb, 239, 6, 72), 0.50);
}

.button-icon-left {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius-full, 62.4375rem);
  background-color: var(--color-foreground, #ffffff);
  color: var(--color-foreground, #ffffff);
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  backface-visibility: hidden;
  contain: layout;
  transition: width var(--btn-duration) var(--btn-ease),
              height var(--btn-duration) var(--btn-ease),
              opacity var(--btn-duration) var(--btn-ease);
  pointer-events: none;
  flex-shrink: 0;
  align-self: center;
}

.button-wrapper:hover .button-icon-left {
  width: 0;
  height: 0;
  opacity: 0;
}

.button-icon-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  min-height: 0;
  border-radius: var(--radius-full, 62.4375rem);
  background-color: var(--color-foreground, #ffffff);
  width: 0;
  height: 0;
  overflow: hidden;
  backface-visibility: hidden;
  contain: layout;
  transition: width var(--btn-duration) var(--btn-ease),
              height var(--btn-duration) var(--btn-ease),
              opacity var(--btn-duration) var(--btn-ease);
  pointer-events: none;
  opacity: 0;
  flex-shrink: 0;
  align-self: center;
}

.button-wrapper:hover .button-icon-right {
  width: 3rem;
  height: 3rem;
  opacity: 1;
}

.arrow-icon {
  line-height: 0;
  color: var(--color-grey-black);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  backface-visibility: hidden;
  transform-origin: center;
  transform: translateZ(0);
  transition: color 0.3s var(--btn-ease), transform var(--btn-duration) var(--btn-ease);
}

/* Arrow scales with container for smooth GPU-accelerated visibility */
.button-icon-right .arrow-icon {
  transform: translateZ(0) scale(0);
}

.button-wrapper:hover .button-icon-right .arrow-icon {
  transform: translateZ(0) scale(1);
}

.button-wrapper:hover .button-icon-left .arrow-icon {
  transform: translateZ(0) scale(0);
}

.arrow-icon svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  shape-rendering: geometricPrecision;
}

.arrow-icon path {
  stroke-width: 1.75;
}

/* External link - rotate arrow to point top-right */
.arrow-icon.arrow-external {
  transform: translateZ(0) rotate(-45deg);
}

.button-icon-right .arrow-icon.arrow-external {
  transform: translateZ(0) rotate(-45deg) scale(0);
}

.button-wrapper:hover .button-icon-right .arrow-icon.arrow-external {
  transform: translateZ(0) rotate(-45deg) scale(1);
}

.button-wrapper:hover .button-icon-left .arrow-icon.arrow-external {
  transform: translateZ(0) rotate(-45deg) scale(0);
}

.button-text {
  font-size: var(--font-size-body-md, 1rem);
  align-self: center;
  flex-shrink: 0;
  font-family: var(--font-family-action, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
}

.button-text-content {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-family: inherit;
  /* line-height: var(--line-height-body, 1.5); */
  line-height:1;
}

/* Secondary Variant */
.button--secondary {
  background-color: transparent;
  border: 0.125rem solid var(--color-primary, #ef0648);
  box-shadow: none;
}

.button--secondary .button-text-content {
  color: var(--color-grey-black, #000000);
}

.button--secondary .button-icon-left {
  background-color: var(--color-primary, #ef0648);
  color: var(--color-foreground, #ffffff);
}

.button--secondary .button-icon-left .arrow-icon {
  color: var(--color-foreground, #ffffff);
}

.button--secondary .button-icon-right {
  background-color: var(--color-primary, #ef0648);
  color: var(--color-foreground, #ffffff);
}

.button--secondary .button-icon-right .arrow-icon {
  color: var(--color-foreground, #ffffff);
}

.button-wrapper--secondary:hover .button--secondary {
  box-shadow: none;
}

/* Tertiary Variant */
.button--tertiary {
  background-color: transparent;
  border: none;
  box-shadow: none;
  gap:var(--spacing-container-gap-sm);
}

.button--tertiary .button-text-content {
  color: var(--color-grey-black, #000000);
}

.button--tertiary .button-icon-left {
  background-color: var(--color-primary, #ef0648);
  color: var(--color-foreground, #ffffff);
}

.button--tertiary .button-icon-left .arrow-icon {
  color: var(--color-foreground, #ffffff);
}

.button--tertiary .button-icon-right {
  background-color: var(--color-primary, #ef0648);
  color: var(--color-foreground, #ffffff);
}

.button--tertiary .button-icon-right .arrow-icon {
  color: var(--color-foreground, #ffffff);
}

.button-wrapper--tertiary:hover .button--tertiary {
  box-shadow: none;
}

/* Primary Color Variant */
.primary-color {
  background-color: var(--primary-color, #ef0648);
}


.button-wrapper:hover .primary-color {
  box-shadow: 0 0.5rem 3.75rem -0.25rem rgba(var(--color-primary-rgb, 239, 6, 72), 0.50);
}

/* Primary color for arrow icons */
.arrow-icon.primary-color {
  color: var(--primary-color, #ef0648);
  background-color: unset !important;
}

/* Primary color for arrow icons */
.arrow-icon.primary-color {
  color: var(--primary-color, #ef0648);
}

/* Small Size Variant */
.button-wrapper:has(.button-small) {
  height: 3.125rem;
}

.button-wrapper.button-wrapper-small {
  height: 3.125rem;
}

.button-small {
  height: 3.125rem;
}

.button-small .button-icon-left {
  width: 2.5rem;
  height: 2.5rem;
}

.button-wrapper:hover .button-small .button-icon-left {
  width: 0;
  height: 0;
}

.button-small .button-icon-right {
  width: 0;
  height: 0;
}

.button-wrapper:hover .button-small .button-icon-right {
  width: 2.5rem;
  height: 2.5rem;
}

.button-small .arrow-icon {
  width: 1rem;
  height: 1rem;
}

.button-small .arrow-icon svg {
  width: 1rem;
  height: 1rem;
}

.button-small .arrow-icon path {
  stroke-width: 1.5;
}

.button-small .button-text-content {
  font-size: 1rem;
}

/* Mobile Button Text */
.button-text-mobile {
  display: none;
}

@media (max-width: 767px) {
  .button-text-desktop {
    display: none;
  }

  .button-text-mobile {
    display: inline;
  }

  /* Mobile Button Style - override variant on mobile (same options as Button Style) */
  .button-wrapper--mobile-primary .button {
    background-color: var(--primary-color, #ef0648);
    border: none;
    box-shadow: 0 0.5rem 3.75rem -0.25rem rgba(var(--color-primary-rgb, 239, 6, 72), 0);
  }

  .button-wrapper--mobile-primary .button .button-text-content {
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-primary .button .button-icon-left,
  .button-wrapper--mobile-primary .button .button-icon-right {
    background-color: var(--color-foreground, #ffffff);
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-primary .button .button-icon-left .arrow-icon,
  .button-wrapper--mobile-primary .button .button-icon-right .arrow-icon {
    color: var(--primary-color, #ef0648);
  }

  .button-wrapper--mobile-secondary .button {
    background-color: transparent;
    border: 0.125rem solid var(--color-primary, #ef0648);
    box-shadow: none;
  }

  .button-wrapper--mobile-secondary .button .button-text-content {
    color: var(--color-grey-black, #000000);
  }

  .button-wrapper--mobile-secondary .button .button-icon-left,
  .button-wrapper--mobile-secondary .button .button-icon-right {
    background-color: var(--color-primary, #ef0648);
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-secondary .button .button-icon-left .arrow-icon,
  .button-wrapper--mobile-secondary .button .button-icon-right .arrow-icon {
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-tertiary .button {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .button-wrapper--mobile-tertiary .button .button-text-content {
    color: var(--color-grey-black, #000000);
  }

  .button-wrapper--mobile-tertiary .button .button-icon-left,
  .button-wrapper--mobile-tertiary .button .button-icon-right {
    background-color: var(--color-primary, #ef0648);
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-tertiary .button .button-icon-left .arrow-icon,
  .button-wrapper--mobile-tertiary .button .button-icon-right .arrow-icon {
    color: var(--color-foreground, #ffffff);
  }

  .button-wrapper--mobile-primary:hover .button,
  .button-wrapper--mobile-secondary:hover .button,
  .button-wrapper--mobile-tertiary:hover .button {
    box-shadow: none;
  }

  .button-wrapper--mobile-primary:hover .button {
    box-shadow: 0 0.5rem 3.75rem -0.25rem rgba(var(--color-primary-rgb, 239, 6, 72), 0.50);
  }
}

/* ==========================================================================
   Reduced Motion - Accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }

  .button-wrapper:hover .button {
    box-shadow: none;
  }

  .button-icon-left,
  .button-icon-right {
    transition: none;
  }

  .button-wrapper:hover .button-icon-left {
    width: 3rem;
    height: 3rem;
    opacity: 1;
  }

  .button-wrapper:hover .button-icon-right {
    width: 0;
    height: 0;
    opacity: 0;
  }

  .button-wrapper:hover .button-small .button-icon-left {
    width: 2.5rem;
    height: 2.5rem;
  }

  .button-wrapper:hover .button-small .button-icon-right {
    width: 0;
    height: 0;
  }

  .arrow-icon {
    transition: none;
  }

  /* Keep default arrow visibility when hover effect is disabled */
  .button-wrapper:hover .button-icon-left .arrow-icon {
    transform: translateZ(0) scale(1);
  }

  .button-wrapper:hover .button-icon-left .arrow-icon.arrow-external {
    transform: translateZ(0) rotate(-45deg) scale(1);
  }
}
.form {
  border-radius: var(--radius-sm);
  padding:var(--spacing-card-padding-md);
  background: var(--card, rgba(255, 255, 255, 0.10)) !important;
}

.form fieldset {
  max-width:unset !important;
}

.form .hs-main-font-element h2, .form .hs-main-font-element h3 {
  font-weight: var(--font-weight-heading);
  font-size:var(--font-size-heading-sm);
  color:var(--color-foreground);
  margin-bottom:var(--spacing-container-gap-xs);
}

.form form {
  display:flex;
  flex-direction: column;
  gap:var(--spacing-container-gap-md);
}

/* Match filled value typography so placeholders read like real field content */
.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-foreground, #ffffff);
  opacity: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: var(--color-foreground, #ffffff);
}

.form input::-moz-placeholder,
.form textarea::-moz-placeholder {
  color: var(--color-foreground, #ffffff);
  opacity: 1;
}

.form-title {
  margin:0;
}

/* Inline thank-you / success body (HubSpot replaces fields with .submitted-message) */
.form .submitted-message,
.form .submitted-message p,
.form .submitted-message span,
.form .submitted-message div,
.form .submitted-message a,
.hs-form .submitted-message,
.hs-form .submitted-message p,
.hs-form .submitted-message span,
.hs-form .submitted-message div,
.hs-form .submitted-message a,
.newsletter-form .submitted-message,
.newsletter-form .submitted-message p,
.newsletter-form .submitted-message span,
.newsletter-form .submitted-message div,
.newsletter-form .submitted-message a,
[data-hs-forms-root] .submitted-message,
[data-hs-forms-root] .submitted-message p,
[data-hs-forms-root] .submitted-message span,
[data-hs-forms-root] .submitted-message div,
[data-hs-forms-root] .submitted-message a {
  color: var(--color-foreground, #ffffff) !important;
}

.form .submitted-message :where(h1, h2, h3, h4, h5, h6),
.hs-form .submitted-message :where(h1, h2, h3, h4, h5, h6),
.newsletter-form .submitted-message :where(h1, h2, h3, h4, h5, h6),
[data-hs-forms-root] .submitted-message :where(h1, h2, h3, h4, h5, h6) {
  color: var(--color-foreground, #ffffff) !important;
}

/*
  :where() keeps specificity like the original .form input so .form input[type="submit"] can
  override background to --color-primary. Textarea is omitted here and styled below so HubSpot’s
  .hs-form textarea rules don’t fight ours, and Safari can respect radius with appearance: none.
*/
.form :where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]):not([type="button"]):not([type="image"]),
  select
) {
  border-radius: var(--radius-full);
  height: 3rem;
  padding-left: 1.25rem;
  color: var(--color-foreground);
  width: 100% !important;
  font-size: var(--P2);
  outline: none;
  background: var(--color-white-20);
  border: 0.0625rem solid var(--color-white-20);
  box-shadow: 0 0.5rem 3rem 0.75rem rgba(4, 24, 43, 0.15);
  font-family: var(--font-family-body);
}

/*
  Half radius vs single-line fields. Safari often ignores border-radius on textarea until
  -webkit-appearance is stripped; HubSpot may load .hs-form textarea after theme CSS — extra
  selectors + !important on radius only win over their defaults.
*/
.form .hs-form textarea,
.form .hs-fieldtype-textarea textarea,
.form textarea.hs-input,
.form textarea {
  border-radius: calc(var(--radius-full) / 2) !important;
  min-height: 6.5rem;
  height: auto;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  color: var(--color-foreground);
  width: 100% !important;
  font-size: var(--P2);
  outline: none;
  background: var(--color-white-20);
  border: 0.0625rem solid var(--color-white-20);
  box-shadow: 0 0.5rem 3rem 0.75rem rgba(4, 24, 43, 0.15);
  font-family: var(--font-family-body);
  resize: vertical;
  line-height: var(--line-height-body, 1.5);
  -webkit-appearance: none;
  appearance: none;
}

.form select {
  padding-right: 2.5rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form select[multiple] {
  height: auto;
  min-height: 6.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-right: 1.25rem;
  background-image: none;
  border-radius: var(--radius-md);
}

/* Unselected dropdown — same text color as inputs / placeholders */
.form select.is-placeholder {
  color: var(--color-foreground, #ffffff);
}

/* Dropdown options styling */
.form select option {
  color: var(--color-background);
}

.form .hs-form-booleancheckbox-display,
.form .hs-form-checkbox-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  color: #ffffff;
  font-size: var(--P2);
  font-family: var(--font-family-body);
}

.form .inputs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.form .inputs-list > li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  color: #ffffff;
}

.form .inputs-list > li::marker {
  content: none;
}

.form .inputs-list > li.hs-form-checkbox,
.form .inputs-list > li.hs-form-booleancheckbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  color: #ffffff;
}

.form .hs-form-booleancheckbox {
  list-style: none;
}

.form .hs-form-booleancheckbox-display > span,
.form .hs-form-checkbox-display > span,
.form label > input[type="checkbox"] + span {
  margin-left: 0.5rem;
}

/* Sibling layout: input then label (multi-checkbox). Boolean uses label > input + span instead. */
.form .inputs-list > li.hs-form-checkbox > label {
  margin-left: 0.5rem;
}

.form .inputs-list label,
.form .hs-form-booleancheckbox-display > span,
.form .hs-form-checkbox-display > span,
.form .hs-form-booleancheckbox-display label,
.form .hs-form-checkbox-display label {
  color: #ffffff;
  font-size: var(--P2);
  font-family: var(--font-family-body);
}

.form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0.5rem;
  color: #ffffff;
}

.form .legal-consent-container .hs-form-booleancheckbox-display label {
  color: #ffffff;
}

.form label > span {
  color: #ffffff;
}

@media (max-width: 767px) {
  .form-columns-2 {
    display:flex;
    flex-direction: column;
    gap:var(--spacing-container-gap-md);
  }

  .hs-form-field {
    width: 100% !important;
  }
}

.form input[type="checkbox"] {
  height:1.5rem;
  width:1.5rem !important;
  border-radius:var(--BORDER_RADIUS);
  background: var(--color-white-20) !important;
  border-radius:var(--radius-sm);
  position:relative;
}

.form .hs-fieldtype-text label,
.form .hs-fieldtype-email label,
.form .hs-fieldtype-textarea label,
.form .hs-fieldtype-phonenumber label,
.form .hs-fieldtype-select label,
.form .hs-fieldtype-number label,
.form .hs-fieldtype-date label,
.form .hs-fieldtype-datetime label,
.form .hs-fieldtype-file label {
  display: none;
}

/* --- CHECKBOX STYLING --- */

.form input[type="checkbox"] {
  /* 1. Nollställ arv och webbläsarstil */
  -webkit-appearance: none;
  appearance: none;
  padding: 0 !important; /* VIKTIGT: Detta fixar bockens position! */
  margin: 0;
  outline: none;

  /* 2. Storlek & Form */
  height: 1.5rem;
  width: 1.5rem !important; /* !important behövs för att inte bli 100% bred */
  border-radius: var(--radius-checkbox) !important;      /* 4px ger en mjuk fyrkant. 24px gör den helt rund. */
  
  /* 3. Färg & Border */
  background-color: var(--color-white-20) !important;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Lite tydligare kant */
  cursor: pointer;
  position: relative;
  
  /* 4. Centrera bocken */
  display: grid;
  place-content: center;
}

.form input[type="submit"],
.form .hs-button.primary,
.form button[type="submit"] {
  height: 3.5rem;
  background: var(--color-primary);
  color: var(--color-foreground);
  font-weight: var(--font-weight-action);
  font-size: var(--font-size-body-lg);
  padding-right: 0;
  padding-left: 0;
  cursor: pointer;
}

/* Required / validation copy — match primary CTA (team red); !important beats HubSpot defaults */
.form .hs-error-msg,
.form .hs-error-msgs,
.form .hs-error-msgs li,
.form .hs-error-msgs label,
.newsletter-form .hs-error-msg,
.newsletter-form .hs-error-msgs,
.newsletter-form .hs-error-msgs li,
.newsletter-form .hs-error-msgs label,
.hs-form .hs-error-msg,
.hs-form .hs-error-msgs,
.hs-form .hs-error-msgs li,
.hs-form .hs-error-msgs li label,
.hs-form .hs-error-msgs label {
  color: var(--color-primary) !important;
}

.form .hs-error-msg,
.form .hs-error-msgs,
.hs-form .hs-error-msg,
.hs-form .hs-error-msgs,
.newsletter-form .hs-error-msg,
.newsletter-form .hs-error-msgs {
  margin-top: var(--spacing-container-gap-xs);
}

/* När den är ikryssad */
.form input[type="checkbox"]:checked {
  background-color: #007bff !important; /* Byt till din primärfärg */
  border-color: #007bff !important;
}

/* Skapa bocken */
.form input[type="checkbox"]::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em white;
  transform-origin: center;
  /* CSS-mask för bock */
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Visa bocken vid checked */
.form input[type="checkbox"]:checked::before {
  transform: scale(1);
}
/* 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;
}
.image {
    display:block;
    width:100%;
    height:auto;
    object-fit: cover;
}

.social-icons-wrapper {
    display: flex;
    gap: var(--spacing-container-gap-xs);
}

.social-icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 1.125rem !important;
    height: 1.125rem !important;
    color: white;
}

.social-icon svg path {
    fill: white;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    background-color: white;
}

.social-icon:hover svg path {
    fill: var(--color-primary);
}

.rich-text img {
    margin-top:var(--spacing-container-margin-sm);
    margin-bottom:var(--spacing-container-margin-sm);
    border-radius:var(--radius-sm);
}
/* ==========================================================================
   Focus Styles - WCAG 2.1 AA Compliant
   Uses :focus-visible for keyboard-only focus indicators
   ========================================================================== */

/* Global focus-visible styles
   Using --color-ring token (#6179ff) for consistent focus indication
   ========================================================================== */

:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
}

/* Links */
a:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}

/* Buttons and interactive controls */
button:focus-visible,
[role="button"]:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
}

/* Form inputs */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
}

/* Cards and clickable containers */
.card:focus-visible,
.flip-card-link:focus-visible,
.flip-card-wrapper:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
  border-radius: var(--radius-lg, 1rem);
}

/* Social icons */
.social-icon:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
  border-radius: var(--radius-full, 62.4375rem);
}

/* Navigation links */
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}

/* Logo link */
.logo-link:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

/* Hamburger menu button */
.hamburger-menu:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
}

/* Button component specific styles */
.button-wrapper:focus-visible,
.button-link:focus-visible {
  outline: 0.125rem solid var(--color-ring, #6179ff);
  outline-offset: 0.125rem;
  border-radius: var(--radius-full, 62.4375rem);
}

/* Remove default outline on elements that have custom focus styles */
.tab-menu-segment:focus {
  outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :focus-visible {
    outline-width: 0.1875rem;
    outline-color: var(--color-foreground, #ffffff);
  }
}


/* 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: 0.0625rem;
  left: -62.5rem;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -62.5rem;
  width: 0.0625rem;
}

.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: 12.5rem;
  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: 2.8125rem;
  padding: 0 0.7rem;
}



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

  .header__search .hs-search-field__button svg {
    height: 1.5625rem;
  }


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

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 0.125rem solid #D1D6DC;
  border-radius: 0 0 0.375rem 0.375rem;
  border-top-width: 0.0625rem;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 0.0625rem 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: 0.125rem 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: 0.125rem solid;
  border-radius: 0.1875rem;
  box-shadow: 0 0.125rem 0.5625rem 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 1.5rem);
  opacity: 0;
  min-width: 6.25rem;
  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: -1.5625rem;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -1.375rem;
}

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

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

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

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

.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: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.375rem solid #494A52;
  content: "";
  display: block;
  height: 0;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

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

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 1.875rem;
    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: 1.25rem!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 - 7.1875rem);
    position: absolute;
    right: 0;
    top: 4.6875rem;
    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: 2.5rem;
    text-transform: uppercase;
    top: -0.625rem;
  }

  .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: 1.5625rem;
    width: 1.5625rem;
  }

  .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: 1.5625rem;
    width: 1.5625rem;
  }

  .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: 1.5625rem;
    width: 1.5625rem;
  }

  .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: 1.5625rem;
    margin-right: 0;
    width: 1.5625rem;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Glass Effect Component
   Shared glass morphism styles used across multiple modules
*/

.glass-effect {
  border-radius: var(--Radius-XLarge, 32px);
  /* 1px borders antialias better on border-radius than 0.5px */
  border-top: 1px solid var(--fallback-glass-border, rgba(255, 255, 255, 0.28));
  border-bottom: 1px solid var(--fallback-glass-border, rgba(255, 255, 255, 0.28));
  background: var(--fallback-glass-bg, linear-gradient(198deg, rgba(255, 255, 255, 0.18) 12.02%, rgba(255, 255, 255, 0.20) 50.04%, rgba(255, 255, 255, 0.19) 88.06%));
  /* FALLBACK GLASS */
  box-shadow: -4px -4px 16px 16px rgba(0, 0, 0, 0.16) inset, 4px 4px 16px 0 rgba(0, 0, 0, 0.24) inset, 0 -1px 2px -1px rgba(255, 255, 255, 0.12) inset, 0 1px 3px -1px rgba(255, 255, 255, 0.18) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-effect-transparent {
  border-radius: var(--Radius-XLarge, 32px);
  border-top: 1px solid var(--fallback-glass-border, rgba(255, 255, 255, 0.28));
  border-bottom: 1px solid var(--fallback-glass-border, rgba(255, 255, 255, 0.28));
  /* FALLBACK GLASS */
  box-shadow: -4px -4px 16px 16px rgba(0, 0, 0, 0.16) inset, 4px 4px 16px 0 rgba(0, 0, 0, 0.24) inset, 0 -1px 2px -1px rgba(255, 255, 255, 0.12) inset, 0 1px 3px -1px rgba(255, 255, 255, 0.18) inset, 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-effect-no-borders {
  background: var(--FALLBACK-GLASS-BG, linear-gradient(198deg, rgba(255, 255, 255, 0.18) 12.02%, rgba(255, 255, 255, 0.20) 50.04%, rgba(255, 255, 255, 0.19) 88.06%));
  box-shadow: 4px 4px 48px 0 rgba(0, 0, 0, 0.10) inset, 0 1px 1px 0 rgba(255, 255, 255, 0.20) inset;
  backdrop-filter: blur(12px);
}

.glass-effect-transparent-no-borders {
  box-shadow: 4px 4px 48px 0 rgba(0, 0, 0, 0.10) inset, 0 1px 1px 0 rgba(255, 255, 255, 0.20) inset;
  backdrop-filter: blur(12px);
}


.glass-text {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: translate(0px, 0px);
  font-family: 'Georgia', 'Microsoft YaHei', '微软雅黑', serif;
}



/* .glass-effect {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
    will-change: backdrop-filter;
    transform: translateZ(0);
}

.glass-effect::before, .glass-effect-transparent::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 0.09375rem;
    padding:2px;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 8%,
        rgba(255, 255, 255, 0.5) 25%,
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 255, 255, 0) 92%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}
 */

/* .glass-effect-transparent {
    position: relative;
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
    will-change: backdrop-filter;
    transform: translateZ(0);
} */

.glass-effect-dark {
    background-color:rgba(0, 0, 0, 0.20);
}


.glass-effect-hamburger {
    position: relative;
    /* Force the glass background even if other button styles exist */
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.35);
}

/* Custom border for hamburger: visible mainly on top-left and bottom-right corners */
.glass-effect-hamburger::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* Match glass-effect thickness but localized to corners */
    background:
      conic-gradient(
        from 0deg,
        /* Transparent across most of the circle */
        rgba(255, 255, 255, 0.0) 0deg,
        rgba(255, 255, 255, 0.0) 115deg,
        /* Top-left corner highlight (around 135°) – slightly longer */
        rgba(255, 255, 255, 0.45) 125deg,
        rgba(255, 255, 255, 0.45) 195deg,
        rgba(255, 255, 255, 0.0) 210deg,
        rgba(255, 255, 255, 0.0) 295deg,
        /* Bottom-right corner highlight (around 315°) */
        rgba(255, 255, 255, 0.45) 305deg,
        rgba(255, 255, 255, 0.45) 350deg,
        rgba(255, 255, 255, 0.0) 360deg
      );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Liquid glass effect (Figma-like refraction + frost) */
/* 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: -624.9375rem;
  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%;
}
/* ============================================
   Statistics Cards - Shared Styles
   ============================================ */

/* Shared styles for stat numbers */
.stat-number {
    font-size: var(--font-size-usp-lg);
    font-weight: var(--font-weight-heading);
    line-height: 105%;
    letter-spacing: -3.2px;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: var(--font-size-usp);
        font-weight: var(--font-weight-heading);
        line-height: 105%;
        letter-spacing: -0.30625rem;
    }
}

.stat-description {
    margin-bottom:0;
}

.stat-description,
.stat-heading {
    color: white;
}

/* ============================================
   Statistics Divider Module
   ============================================ */

/* Statistics card base styles for divider module */
.statistics-divider .statistics-card {
    position: relative;
    gap: var(--spacing-container-gap-lg);
    aspect-ratio: 405.33/405.33;
    border-radius: var(--radius-lg);
    align-items: center;
    /* Ensure glass effect maintains transparency */
    background: transparent;
}


/* Radial backgrounds moved to ::after pseudo-element to sit behind glass effect */
.statistics-divider .statistics-card.stat-card-1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--radial-red);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.statistics-divider .stat-card-1 .stat-number {
    background: var(--radial-text-red);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.statistics-divider .statistics-card.stat-card-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--radial-purple);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.statistics-divider .stat-card-2 .stat-number {
    background: var(--radial-text-purple);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.statistics-divider .statistics-card.stat-card-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--radial-green);
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

.statistics-divider .stat-card-3 .stat-number {
    background: var(--radial-text-green);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   About Us Hero Module
   ============================================ */

/* Wrapper has solid background color */
.about-us-hero .statistics-card-wrapper {
    background-color: var(--color-background);
    border-radius: var(--radius-xs);
}

/* Inner card gets the radial gradient */
.about-us-hero .statistics-card-wrapper.stat-card-1 .about-us-hero-statistics-card {
    background: var(--radial-red);
}

.about-us-hero .statistics-card-wrapper.stat-card-1 .stat-number {
    background: var(--radial-text-red);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-hero .statistics-card-wrapper.stat-card-2 .about-us-hero-statistics-card {
    background: var(--radial-green);
}

.about-us-hero .statistics-card-wrapper.stat-card-2 .stat-number {
    background: var(--radial-text-green);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-hero .statistics-card-wrapper.stat-card-3 .about-us-hero-statistics-card {
    background: var(--radial-purple);
}

.about-us-hero .statistics-card-wrapper.stat-card-3 .stat-number {
    background: var(--radial-text-purple);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media (max-width: 768px) {
    .statistics-divider .statistics-card {
        gap: var(--spacing-container-gap-sm);
    }

    .statistics-card .stat-description  {
        font-size: var(--font-size-heading-md) !important;
    }
}
/* Module-scoped base styles for standalone preview */
.flip-card-wrapper *,
.flip-card-wrapper *::before,
.flip-card-wrapper *::after {
  box-sizing: border-box;
}

/* Critical CSS variables for module preview (fallback if not available globally) */
.flip-card-wrapper {
  --color-background-dark: #19202A;
  --color-foreground-dark: #FFFFFF;
  --color-background-light: #FFFFFF;
  --color-foreground-light: #19202A;
  --color-primary: #EB0057;
  --font-family-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-family-script: 'Brush Script MT', 'Brush Script', cursive, serif;
  --spacing-card-padding-md: 1.5rem;
  --spacing-card-padding-sm: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: 0.5rem;
}

/* Dark mode (default) */
.flip-card-wrapper--dark {
  --color-background: var(--color-background-dark, #19202A);
  --color-foreground: var(--color-foreground-dark, #FFFFFF);
}

/* Light mode */
.flip-card-wrapper--light {
  --color-background: var(--color-background-light, #FFFFFF);
  --color-foreground: var(--color-foreground-light, #19202A);
}

/* Apply color mode to both front and back */
.flip-card-wrapper--dark .flip-card-front,
.flip-card-wrapper--dark .flip-card-back {
  background-color: var(--color-background-dark, #19202A);
}

.flip-card-wrapper--light .flip-card-front,
.flip-card-wrapper--light .flip-card-back {
  background-color: var(--color-background-light, #FFFFFF);
}

.flip-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.flip-card-wrapper {
  display: block;
  perspective: 1000px;
  width: 100%;
  max-width: 25rem; /* 400px */
  margin: 0 auto;
}

.flip-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Click effect - card flips when wrapper has 'flipped' class */
.flip-card-wrapper.flipped .flip-card,
.flip-card-link.flipped .flip-card {
  transform: rotateY(180deg);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-xxs);
  overflow: hidden;
}

.flip-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #19202A;
}

.flip-card-back {
  background-color: #fff;
  color: #19202A;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-button-padding-md);
  transform-style: flat;
}

.flip-card-front-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.flip-card-logo {
  font-family: var(--font-family-script, 'Brush Script MT', 'Brush Script', cursive, serif);
  font-size: 3rem; /* 48px */
  font-weight: 400;
  color: var(--color-foreground, #FFFFFF);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.flip-card-logo-image {
  filter: contrast(100%) grayscale(100%) brightness(0) invert(1);
  mix-blend-mode: screen;
  max-width: 100%;
  width:50%;
  height: auto;
}

.flip-card-logo-image img {
  filter: contrast(100%) grayscale(100%) brightness(0) invert(1);
}

.trademark {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: normal;
}

.flip-card-svg {
  width: 60%;
  max-width: 12rem; /* 192px */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #FFFFFF);
}

.flip-card-svg svg {
  width: 100%;
  height: auto;
  max-height: 12rem; /* 192px */
  display: block;
}

.flip-card-back-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
  padding-top: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.flag-icon {
  width: 1.25rem !important; /* 20px */
  height: 1.25rem !important; /* 20px */
  border-radius: 999px;
  border: 0.0625rem solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flag-icon-element {
  height: 100% !important;  
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  object-fit: cover;
  object-position: center;
}

.flag-icon-element.fi {
  width: 1.25rem;
  height: 1.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flag-icon svg {
  width: 100%;
  height: 100%;
}

.action-icon {
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  background-color: var(--color-primary, #EB0057);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-foreground-dark, #FFFFFF);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Action icon text color adapts to mode */
.flip-card-wrapper--dark .action-icon {
  color: var(--color-foreground-dark, #FFFFFF);
}

.flip-card-wrapper--light .action-icon {
  color: var(--color-foreground-dark, #FFFFFF);
}

.action-icon svg {
  width: 0.625rem; /* 10px */
  height: 0.625rem; /* 10px */
}

.flip-card-back-content {
  margin-top: auto;
  text-align: left;
  padding-bottom: 0;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.flip-card-back-text {
  color: #19202A;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-family-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif);
}

/* Mobile-first responsive adjustments */
@media (min-width: 768px) {
  .flip-card-logo {
    font-size: 3rem; /* 48px */
  }
  
  .flip-card-svg {
    max-width: 12rem; /* 192px */
  }
  
  .flip-card-svg svg {
    max-height: 12rem; /* 192px */
  }
  
  .flip-card-back-text {
    font-size: 1rem; /* 16px */
  }
}

@media (max-width: 767px) {
  .flip-card-logo {
    font-size: 2.25rem; /* 36px */
  }
  
  .flip-card-svg {
    max-width: 9rem; /* 144px */
  }
  
  .flip-card-svg svg {
    max-height: 9rem; /* 144px */
  }
  
  .flip-card-back-text {
    font-size: 0.875rem; /* 14px */
  }
}
/* Module-scoped base styles for standalone preview */
.select-field-wrapper *,
.select-field-wrapper *::before,
.select-field-wrapper *::after {
  box-sizing: border-box;
}

/* Critical CSS variables for module preview (fallback if not available globally) */
.select-field-wrapper {
  --color-primary: #ef0648;
  --color-primary-rgb: 239, 6, 72;
/*   --color-foreground: #ffffff;
  --color-background: #000000; */
  --color-grey-black: #000000;
  --color-select-bg: #1A2736;
  --font-family-action: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.select-field-wrapper {
  display: block;
  width: 100%;
}

.select-field {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-select-bg, #1A2736);
  border-radius: var(--radius-full, 62.4375rem);
  padding: 0.25rem;
  padding-left: 1.25rem;
  min-height: 3rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s ease;
}

.select-field:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.select-field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #ffffff);
  margin-right: 0.75rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.select-field-icon svg {
  width: 100%;
  height: 100%;
}

.select-field-content {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 1rem;
}

.select-field-label {
  color: var(--color-foreground, #ffffff);
  font-family: var(--font-family-action, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--font-size-body-md, 1rem);
  line-height: var(--line-height-body, 1.5);
  flex-shrink: 0;
  white-space: nowrap;
}

.select-field-control {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.select-field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  color: var(--color-muted-foreground);
  font-family: var(--font-family-action, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  font-size: var(--font-size-body-md, 1rem);
  line-height: var(--line-height-body, 1.5);
  width: 100%;
  padding: 0;
  padding-right: 2.5rem;
  cursor: pointer;
  outline: none;
  font-weight:var(--font-weight-body);
}

.select-field-select:focus {
  outline: none;
}

.select-field-select option {
  background-color: var(--color-select-bg, #1A2736);
  color: var(--color-foreground, #ffffff);
  padding: 0.5rem;
}

.select-field-chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-foreground, #ffffff);
  border-radius: 50%;
  color: var(--color-grey-black, #000000);
  pointer-events: none;
  flex-shrink: 0;
}

.select-field-chevron svg {
  width: 1rem;
  height: 1rem;
}

/* Hover state */
.select-field:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Focus state */
.select-field:focus-within .select-field-chevron {
  background-color: var(--color-primary, #ef0648);
  color: var(--color-foreground, #ffffff);
}

/* Disabled state */
.select-field-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Reusable background color utilities */

/* Inline icon wrapper for placing icons inside headings */
.inline-icon-wrapper {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: 0;
  margin: 0 0.25rem;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  .inline-icon-wrapper {
    margin: 0 0.125rem;
    top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .inline-icon-wrapper {
    margin: 0 0.1875rem;
    top: -0.125rem;
  }
}

@media (min-width: 1024px) {
  .inline-icon-wrapper {
    top: -0.5rem;
    margin: 0 0.25rem;
  }
}

/* Icon Wrapper */
.icons {
  display: flex;
  align-items: flex-end;
  padding-right: 0.75rem;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-card);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border-radius: var(--radius-icon);
  margin-right: -0.75rem;
  transition: transform 0.3s ease;
}

.icon-wrapper:first-child {
  transform: rotate(-8deg);
}

.icon-wrapper:last-child {
  transform: rotate(8deg);
}

.icon-wrapper svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-foreground);
}

.icon-green {
  background: var(--radial-green);
}

.icon-purple {
  background: var(--radial-purple);
}

.icon-red {
  background: var(--radial-red);
}

@media (max-width: 767px) {
  .icon-small {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-xxxs);
    margin-right:-0.4rem;
  }
  
  .icon-small  svg {
    width: 1rem;
    height: 1rem;
  }
}




.icon-red svg, .icon-purple svg, .icon-green svg {
  color: var(--color-background);
}
/* Shared Event Component Styles
   Used by event-showcase.module, event-hero.module, and events-list.module
*/

/* Event Date Components */
.event-date-day {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.2;
  color: var(--color-foreground);
}

.event-date-month-year {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: var(--spacing-button-padding-2xs);
}

.event-date-month {
  font-family: var(--font-family-action);
  font-weight: var(--font-weight-action);
  line-height: 1;
  color: var(--color-muted-foreground);
}

.event-date-year {
  font-family: var(--font-family-action);
  font-weight: var(--font-weight-action);
  line-height: 1;
  color: var(--color-muted-foreground);
}

/* Event Detail Components (used for time, location, etc.) */
.event-detail {
  display: flex;
  align-items: center;
  gap: var(--spacing-container-gap-xs);
  font-family: var(--font-family-action);
  font-size: var(--font-size-body-md);
  font-weight: var(--font-weight-action);
  line-height: var(--line-height-body);
  color: var(--color-foreground);
  opacity: 0.7;
}

.event-detail svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-secondary);
}


/* 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: 0.0625rem !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: 0.0625rem !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 0.0625rem !important;
  }
}

/* Background transparency utilities
 * Use these to allow page-level gradients to show through sections
 */
.bg-transparent,
.bg-none {
  background-color: transparent !important;
  background-image: none !important;
}

/* For dnd_section elements that need gradient visibility */
.dnd-section.bg-transparent,
.dnd-section.bg-none {
  background-color: transparent !important;
  background-image: none !important;
}

/* Allow gradient bleeding between sections.
 * HubSpot sets overflow:hidden on .dnd-section by default which clips
 * gradient blobs at section boundaries. Override globally with
 * overflow-x:clip (prevents horizontal scrollbars) + overflow-y:visible
 * (allows vertical bleed). Unlike hidden/auto, clip can be mixed with
 * visible on the other axis without visible being coerced to auto.
 * Body-level overflow-x:clip in _general.css provides fallback safety.
 */
.dnd-section {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* Eliminate 1px sub-pixel gaps between adjacent white/light sections.
 * Root cause: Browser sub-pixel rendering at section boundaries lets the dark
 * body background show through. Overlap by 1px when two light sections are
 * adjacent. Works for both dnd and dynamic templates.
 */
[data-layout="light"] {
  margin-top: -2px !important;
}
/* Full overflow control when both axes need visible (e.g. horizontal bleed) */
.overflow-visible {
  overflow: visible !important;
}
/*** SECTION ***/
  .section-padding-horiz-global {
    padding-right:var(--section-padding-global);
    padding-left:var(--section-padding-global);
  }
  
  .section-padding-horiz-global-sm {
    padding-right:var(--section-padding-global-sm);
    padding-left:var(--section-padding-global-sm);
  }
  
  @media screen and (min-width: 1024px) {
    .blog-width {
      max-width:var(--blog-width);
      margin:0 auto;
    }
  }

  .section-padding-vert-lg {
    padding-top: var(--spacing-section-vertical-lg);
    padding-bottom: var(--spacing-section-vertical-lg);
  }

  .section-padding-vert-md {
    padding-top: var(--spacing-section-vertical-md);
    padding-bottom: var(--spacing-section-vertical-md);
  }

  .section-padding-vert-sm {
    padding-top: var(--spacing-section-vertical-sm);
    padding-bottom: var(--spacing-section-vertical-sm);
  }

  .section-padding-global-sm {
    padding: var(--spacing-section-vertical-lg) var(--section-padding-global-sm);
  }
  
  .section-padding-lg {
    padding: var(--spacing-section-vertical-lg) var(--section-padding-global);
  }

  .section-padding-horiz-global {
    padding-right: var(--section-padding-global);
    padding-left: var(--section-padding-global);
  }

  .section-padding-horiz-global-sm {
    padding-right: var(--section-padding-global-sm);
    padding-left: var(--section-padding-global-sm);
  }

  .section-padding-md {
    padding: var(--spacing-section-vertical-md) var(--spacing-section-horizontal-md);
  }
  
  .section-padding-vertical-lg {
    padding-top: var(--spacing-section-vertical-lg);
    padding-bottom: var(--spacing-section-vertical-lg);
  }

  @media (min-width: 768px) {
    .section-padding-top-desktop-none {
      padding-top: 0 !important;
    }

    .section-padding-top-desktop-medium {
      padding-top: var(--spacing-section-vertical-md) !important;
    }

    .section-padding-top-desktop-large {
      padding-top: var(--spacing-section-vertical-lg) !important;
    }

    .section-padding-bottom-desktop-none {
      padding-bottom: 0 !important;
    }

    .section-padding-bottom-desktop-medium {
      padding-bottom: var(--spacing-section-vertical-md) !important;
    }

    .section-padding-bottom-desktop-large {
      padding-bottom: var(--spacing-section-vertical-lg) !important;
    }
  }

  @media (max-width: 767px) {
    .section-padding-top-mobile-none {
      padding-top: 0 !important;
    }

    .section-padding-top-mobile-medium {
      padding-top: var(--spacing-section-vertical-md) !important;
    }

    .section-padding-top-mobile-large {
      padding-top: var(--spacing-section-vertical-lg) !important;
    }

    .section-padding-bottom-mobile-none {
      padding-bottom: 0 !important;
    }

    .section-padding-bottom-mobile-medium {
      padding-bottom: var(--spacing-section-vertical-md) !important;
    }

    .section-padding-bottom-mobile-large {
      padding-bottom: var(--spacing-section-vertical-lg) !important;
    }
  }
  
  /**** MARGIN CLASSES ****/
  .margin-auto {
    margin-right: auto;
    margin-left: auto;
  }

  .margin-bt-0, .margin-bt-0 h1, .margin-bt-0 h2, .margin-bt-0 h3, .margin-bt-0 h4, .margin-bt-0 h5, .margin-bt-0 h6 {
    margin-bottom: 0;
  }
  

  .margin-bt-container-gap-xl {
    margin-bottom: var(--spacing-container-gap-xl);
  }

  .margin-bt-container-gap-md {
    margin-bottom: var(--spacing-container-gap-md);
  }
  
  /**** GAP CLASSES ****/
  .gap-container-md {
    gap: var(--spacing-container-gap-md);
  }
  
  .gap-container-margin-md {
    gap:var(--spacing-container-margin-md);
  }

  .gap-container-margin-lg {
    gap:var(--spacing-container-margin-lg);
  }
  
  .gap-flex-column-container-gap-lg {
    display:flex;
    flex-direction: column;
    gap:var(--spacing-container-gap-lg);
  }
  
    /**** PADDING ****/
.padding-container-card-md {
  padding:var(--spacing-card-padding-md);
}


.row-fluid {
    display: block;
  }