@import 'https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Gabarito:wght@400;500;600;700;800;900&display=swap';
:root {
  --brand-hue: 23;
  --brand-saturation: 90%;
  --brand-lightness: 54%;
  --brand: hsl(var(--brand-hue), var(--brand-saturation), var(--brand-lightness));
  /* Base colors */
  --color-base-900: #15181A;
  --color-base-850: #1C1F22;
  --color-base-800: #272B2F;
  --color-base-750: #33373B;
  --color-base-600: #595F63;
  --color-base-400: #8C9295;
  --color-base-300: #A8AEB2;
  --color-base-200: #C5C9CC;
  --color-base-150: #D2D7D9;
  --color-base-100: #E1E5E7;
  --color-base-50: #ECF0F2;
  --color-base-30: #F0F3F5;
  --color-white-white: #FFF;
  --color-white-70: rgb(255, 255, 255, 0.70);
  --color-white-50: rgb(255, 255, 255, 0.50);
  --color-white-40: rgb(255, 255, 255, 0.40);
  --color-white-20: rgb(255, 255, 255, 0.20);
  --color-black-black: #000;
  --color-black-80: rgb(0, 0, 0, 0.80);
  --color-black-50: rgb(0, 0, 0, 0.50);
  --color-black-20: rgb(0, 0, 0, 0.20);
  --color-black-10: rgb(0, 0, 0, 0.10);
}

:root {
  /* Text on surface */
  --text-on-surface-primary: var(--color-black-black);
  --text-on-surface-secondary: var(--color-base-750);
  --text-on-surface-tertiary: var(--color-base-400);
  --text-on-surface-disabled: var(--color-base-300);
  --text-on-surface-inverted: var(--color-white-white);
  /* Text on media (images/videos) */
  --text-on-media-primary: var(--color-white-white);
  --text-on-media-secondary: var(--color-white-70);
  --text-on-media-tertiary: var(--color-white-50);
  --text-on-media-disabled: var(--color-white-40);
  --text-on-media-inverted: var(--color-black-black);
  /* Surfaces */
  --surface-base-base: var(--color-white-white);
  --surface-base-base-inverted: var(--color-black-black);
  --surface-elevated-elevated-a: var(--color-base-30);
  --surface-elevated-elevated-max: var(--color-base-800);
  --surface-system-disabled: var(--color-base-150);
  --surface-on-media-elevated-a: var(--color-white-20);
  --surface-on-media-elevated-max: var(--color-white-white);
  /* Borders */
  --border-on-surface-weak-weak-a: var(--color-base-50);
  --border-on-surface-weak-weak-b: var(--color-base-100);
  --border-on-surface-strong-strong-a: var(--color-black-black);
  --border-on-surface-strong-to-weak-a: var(--color-black-black);
  --border-system-disabled: var(--color-base-300);
  --border-system-focused: #00EAFF;
  --border-on-media-weak: var(--color-white-40);
  --border-on-media-medium: var(--color-white-70);
  --border-on-media-strong: var(--color-white-white);
  --border-on-media-disabled: var(--color-white-40);
  /* Overlays */
  --overlay-weak: var(--color-black-20);
  --overlay-medium: var(--color-black-50);
  --overlay-strong: var(--color-black-80);
  --overlay-max: var(--color-black-black);
  /* These will be overridden by brand-specific files */
  --color-text-accented-primary: inherit;
  --color-text-accented-secondary: inherit;
  --color-text-on-accented-primary-surface: inherit;
  --color-text-on-accented-secondary-surface: inherit;
  /* Accented surfaces */
  --color-accented-surface-primary-strong-strong: inherit;
  --color-accented-surface-primary-strong-strong-elevated: inherit;
  --color-accented-surface-secondary-strong-strong: inherit;
  --color-accented-surface-secondary-strong-strong-elevated: inherit;
  /* Accented borders */
  --color-accented-border-primary-strong-strong-b: inherit;
  /* Default fonts - can be overridden by brand configs */
  --font-family-display: "Oswald", sans-serif;
  --font-family-heading: "Gabarito", sans-serif;
  --font-family-title: "Gabarito", sans-serif;
  --font-family-body: "Gabarito", sans-serif;
  --font-family-label: "Gabarito", sans-serif;
  --font-family-supporting: "Oswald", sans-serif;
  --font-family-button: "Gabarito", sans-serif;
  /* Default weights - can be overridden by brand configs */
  --font-weight-display: 700;
  --font-weight-heading: 800;
  --font-weight-title: 700;
  --font-weight-label-regular: 400;
  --font-weight-label-medium: 500;
  --font-weight-label-heavy: 600;
  --font-weight-body-regular: 400;
  --font-weight-supporting: 400;
  --font-weight-supporting-alt: 500;
  --font-weight-button: 600;
  --radius-zero: 0;
  --radius-xxs: 6px;
  --radius-xs: 8px;
  --radius-s: 10px;
  --radius-l: 16px;
  --radius-xl: 30px;
  --radius-max: 6000px;
  /* Placeholder shadow values - adjust as needed */
  --shadow-sm: 0 1px 2px rgb(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgb(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgb(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgb(0, 0, 0, 0.15);
  --shadow-xl-negative: 0 -20px 25px rgb(0, 0, 0, 0.15);
}

.dark-mode {
  /* Text on surface */
  --text-on-surface-primary: var(--color-base-100);
  --text-on-surface-secondary: var(--color-base-200);
  --text-on-surface-tertiary: var(--color-base-300);
  --text-on-surface-disabled: var(--color-base-600);
  --text-on-surface-inverted: var(--color-black-black);
  /* Text on media (images/videos) */
  --text-on-media-primary: var(--color-white-white);
  --text-on-media-secondary: var(--color-white-70);
  --text-on-media-tertiary: var(--color-white-50);
  --text-on-media-disabled: var(--color-white-40);
  --text-on-media-inverted: var(--color-black-black);
  /* Surface */
  --surface-base-base: var(--color-black-black);
  --surface-base-base-inverted: var(--color-white-white);
  --surface-elevated-elevated-a: var(--color-base-900);
  --surface-elevated-elevated-max: var(--color-base-30);
  --surface-system-disabled: var(--color-base-800);
  --surface-on-media-elevated-a: var(--color-white-20);
  --surface-on-media-elevated-max: var(--color-white-white);
  /* Border */
  --border-on-surface-weak-weak-a: var(--color-base-850);
  --border-on-surface-weak-weak-b: var(--color-base-800);
  --border-on-surface-strong-strong-a: var(--color-white-white);
  --border-on-surface-strong-to-weak-a: var(--color-base-600);
  --border-system-disabled: var(--color-base-750);
  --border-system-focused: #344FEC;
  --border-on-media-weak: var(--color-white-40);
  --border-on-media-medium: var(--color-white-70);
  --border-on-media-strong: var(--color-white-white);
  --border-on-media-disabled: var(--color-white-40);
  /* Overlay */
  --overlay-weak: var(--color-black-20);
  --overlay-medium: var(--color-black-50);
  --overlay-strong: var(--color-black-80);
  --overlay-max: var(--color-black-black);
}

/* Import Google Fonts for Mondial */
:root {
  /* Brand colors */
  --color-brand-mondial-blue-120: #1C1F88;
  --color-brand-mondial-blue-100: #2E3192;
  --color-brand-mondial-red-120: #D81A1E;
  --color-brand-mondial-red-100: #E03A3E;
  /* Accented colors */
  --color-text-accented-primary: var(--color-brand-mondial-red-100);
  --color-text-accented-secondary: var(--color-brand-mondial-blue-100);
  --color-text-on-accented-primary-surface: var(--color-white-white);
  --color-text-on-accented-secondary-surface: var(--color-white-white);
  /* Accented surfaces */
  --color-accented-surface-primary-strong-strong: var(--color-brand-mondial-blue-100);
  --color-accented-surface-primary-strong-strong-elevated: var(--color-brand-mondial-blue-120);
  --color-accented-surface-secondary-strong-strong: var(--color-brand-mondial-red-100);
  --color-accented-surface-secondary-strong-strong-elevated: var(--color-brand-mondial-red-120);
  /* Accented borders */
  --color-accented-border-primary-strong-strong-b: var(--color-brand-mondial-blue-100);
  /* Font families */
  --font-family-display: "Gabarito", sans-serif;
  --font-family-heading: "Gabarito", sans-serif;
  --font-family-title: "Gabarito", sans-serif;
  --font-family-body: "Gabarito", sans-serif;
  --font-family-label: "Gabarito", sans-serif;
  --font-family-supporting: "Oswald", sans-serif;
  --font-family-button: "Gabarito", sans-serif;
  /* Font weights */
  --font-weight-display: 900; /* Black */
  --font-weight-heading: 800; /* Extra Bold */
  --font-weight-title: 700; /* Bold */
  --font-weight-label-regular: 400;
  --font-weight-label-medium: 500;
  --font-weight-label-heavy: 600; /* Semibold */
  --font-weight-body-regular: 400;
  --font-weight-supporting: 400;
  --font-weight-supporting-alt: 500; /* Medium */
  --font-weight-button: 600; /* Semibold */
}

/* stylelint-disable */
/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/
:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

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

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

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

strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

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

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input {
  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 { /* 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.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

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

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

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

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-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 Chrome and Safari.
*/
summary {
  display: list-item;
}
@media (min-width: 1200px) {
  .is-hidden-lg-up {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .is-hidden-lg-down {
    display: none !important;
  }
}
:root {
  --container-padding: clamp(20px, 6.25vw, 120px);
  --content-width: calc(1680px + (2 * var(--container-padding)));
  --container-margin: calc((100vw - var(--content-width)) / 2);
  --grid-row-gap: clamp(1.25rem, 4vw, 2.5rem);
  --grid-column-gap: clamp(0.75rem, 3vw, 1.25rem);
}
@media (max-width: 1919px) {
  :root {
    --container-margin: 0;
  }
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  margin: 0 auto;
  /* stylelint-disable-next-line selector-class-pattern */
}
.container:not(.container--fluid) {
  max-width: var(--content-width);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-row-gap) var(--grid-column-gap);
}

.col-12 {
  grid-column-end: span 12;
}
@media (min-width: 768px) {
  .col-sm-6 {
    grid-column-end: span 6;
  }
}
@media (min-width: 992px) {
  .col-md-3 {
    grid-column-end: span 3;
  }
  .col-md-6 {
    grid-column-end: span 6;
  }
}
@media (min-width: 1200px) {
  .offset-lg-2 {
    grid-column-start: 3;
  }
  .col-lg-3 {
    grid-column-end: span 3;
  }
  .col-lg-4 {
    grid-column-end: span 4;
  }
  .col-lg-6 {
    grid-column-end: span 6;
  }
  .col-lg-8 {
    grid-column-end: span 8;
  }
}
@media (min-width: 1440px) {
  .offset-xl-3 {
    grid-column-start: 4;
  }
  .col-xl-6 {
    grid-column-end: span 6;
  }
}
/**
 * Spacing System
 * Responsive spacing scales using clamp() with values from Desktop/Mobile tokens
 *
 * SCALE TYPES:
 * - Soft: Scales smoothly from mobile to desktop (~90% usage)
 * - Hard: Scales but maintains minimum values (section-level)
 * - Variable: Fixed values at each breakpoint
 * - To-zero: Scales down to 0 on mobile (decorative spacing)
 * - From-zero: Starts at 0 on desktop, has value on mobile
 * - Site-specific: Navigation offsets
 */
:root {
  /* ================================
     SOFT SCALE - Smooth responsive scaling
     ================================ */
  /* Scale variants */
  --scale-soft-2: clamp(0px, -3.84px + 0.5vw, 2px);
  --scale-soft-4: clamp(2px, -1.84px + 0.5vw, 4px);
  --scale-soft-6: clamp(4px, 0.16px + 0.5vw, 6px);
  --scale-soft-8: clamp(6px, 2.16px + 0.5vw, 8px);
  --scale-soft-10: clamp(8px, 4.16px + 0.5vw, 10px);
  --scale-soft-12: clamp(10px, 6.16px + 0.5vw, 12px);
  --scale-soft-16: clamp(12px, 5.088px + 0.9vw, 16px);
  --scale-soft-20: clamp(16px, 9.088px + 0.9vw, 20px);
  --scale-soft-24: clamp(20px, 13.088px + 0.9vw, 24px);
  --scale-soft-32: clamp(24px, 9.408px + 1.9vw, 32px);
  --scale-soft-40: clamp(32px, 17.408px + 1.9vw, 40px);
  --scale-soft-48: clamp(40px, 25.408px + 1.9vw, 48px);
  --scale-soft-64: clamp(48px, 19.584px + 3.7vw, 64px);
  --scale-soft-72: clamp(56px, 27.584px + 3.7vw, 72px);
  --scale-soft-80: clamp(64px, 35.584px + 3.7vw, 80px);
  --scale-soft-96: clamp(72px, 28.992px + 5.6vw, 96px);
  --scale-soft-112: clamp(88px, 44.992px + 5.6vw, 112px);
  --scale-soft-128: clamp(104px, 60.992px + 5.6vw, 128px);
  /* ================================
     HARD SCALE - Maintains minimum values
     ================================ */
  /* Scale variants */
  --scale-hard-12: clamp(6px, -4.752px + 1.4vw, 12px);
  --scale-hard-16: clamp(8px, -6.592px + 1.9vw, 16px);
  --scale-hard-20: clamp(10px, -7.664px + 2.3vw, 20px);
  --scale-hard-24: clamp(12px, -9.504px + 2.8vw, 24px);
  --scale-hard-32: clamp(16px, -12.416px + 3.7vw, 32px);
  --scale-hard-40: clamp(20px, -15.328px + 4.6vw, 40px);
  --scale-hard-48: clamp(24px, -19.008px + 5.6vw, 48px);
  --scale-hard-64: clamp(32px, -24.832px + 7.4vw, 64px);
  --scale-hard-72: clamp(36px, -27.744px + 8.3vw, 72px);
  --scale-hard-80: clamp(40px, -31.424px + 9.3vw, 80px);
  --scale-hard-96: clamp(48px, -37.248px + 11.1vw, 96px);
  --scale-hard-112: clamp(56px, -43.84px + 13vw, 112px);
  --scale-hard-128: clamp(64px, -49.664px + 14.8vw, 128px);
  /* ================================
     VARIABLE SCALE - Distinct breakpoint values
     ================================ */
  --scale-variable-16: 12px;
  --scale-variable-24: 20px;
  /* Padding variants */
  --padding-variable-16: var(--scale-variable-16);
  --padding-variable-24: var(--scale-variable-24);
  /* Desktop values for media queries */
  /* ================================
     TO-ZERO SCALE - Scales to 0 on mobile
     ================================ */
  --scale-to-zero-4: 0;
  --scale-to-zero-8: 0;
  --scale-to-zero-12: 0;
  --scale-to-zero-16: 0;
  --scale-to-zero-20: 0;
  --scale-to-zero-24: 0;
  --scale-to-zero-32: 0;
  --scale-to-zero-40: 0;
  --scale-to-zero-48: 0;
  --scale-to-zero-64: 0;
  --scale-to-zero-80: 0;
  --scale-to-zero-96: 0;
  --scale-to-zero-112: 0;
  --scale-to-zero-128: 0;
  /* Desktop values */
  /* TODO check that all breaks will be at sm breakpoint */
  /* ================================
     FROM-ZERO SCALE - 0 on desktop, value on mobile
     ================================ */
  --scale-from-zero-4: 4px;
  --scale-from-zero-8: 8px;
  --scale-from-zero-12: 12px;
  --scale-from-zero-16: 16px;
  --scale-from-zero-20: 20px;
  --scale-from-zero-24: 24px;
  --scale-from-zero-32: 32px;
  --scale-from-zero-40: 40px;
  --scale-from-zero-48: 48px;
  --scale-from-zero-64: 64px;
  --scale-from-zero-80: 80px;
  --scale-from-zero-96: 96px;
  --scale-from-zero-112: 112px;
  --scale-from-zero-128: 128px;
  /* Desktop values - set to 0 */
  /* TODO check that all breaks will be at sm breakpoint */
  /* ================================
     SITE-SPECIFIC - Navigation offsets set in _header.scss
     ================================ */
  /* ================================
     FOCUSED SIZING
     ================================ */
  --atom-focused-state-border-offset: 2px;
  --atom-focused-state-border-weight: 2px;
  --atom-focused-state-border-radius: 4px;
}
@media (min-width: 1200px) {
  :root {
    --scale-variable-16: 16px;
    --scale-variable-24: 24px;
  }
}
@media (min-width: 1200px) {
  :root {
    --scale-to-zero-4: 4px;
    --scale-to-zero-8: 8px;
    --scale-to-zero-12: 12px;
    --scale-to-zero-16: 16px;
    --scale-to-zero-20: 20px;
    --scale-to-zero-24: 24px;
    --scale-to-zero-32: 32px;
    --scale-to-zero-40: 40px;
    --scale-to-zero-48: 48px;
    --scale-to-zero-64: 64px;
    --scale-to-zero-80: 80px;
    --scale-to-zero-96: 96px;
    --scale-to-zero-112: 112px;
    --scale-to-zero-128: 128px;
  }
}
@media (min-width: 1200px) {
  :root {
    --scale-from-zero-4: 0;
    --scale-from-zero-8: 0;
    --scale-from-zero-12: 0;
    --scale-from-zero-16: 0;
    --scale-from-zero-20: 0;
    --scale-from-zero-24: 0;
    --scale-from-zero-32: 0;
    --scale-from-zero-40: 0;
    --scale-from-zero-48: 0;
    --scale-from-zero-64: 0;
    --scale-from-zero-80: 0;
    --scale-from-zero-96: 0;
    --scale-from-zero-112: 0;
    --scale-from-zero-128: 0;
  }
}

.no-margin {
  margin: 0;
}

/**
 * Removes top margin from all paragraphs and bottom margin from the last paragraph
 * Useful for content areas where paragraph spacing should be controlled by the container
 */
:root {
  --font-size-display-l: clamp(56px, -57.664px + 14.8vw, 120px);
  --font-size-heading-xl: clamp(34px, -5.168px + 5.1vw, 56px);
  --font-size-heading-l: clamp(30px, -2.256px + 4.2vw, 48px);
  --font-size-heading-m: clamp(26px, 1.424px + 3.2vw, 40px);
  --font-size-title-xl: clamp(22px, 7.408px + 1.9vw, 30px);
  --font-size-title-l: clamp(20px, 9.248px + 1.4vw, 26px);
  --font-size-title-m: clamp(18px, 11.088px + 0.9vw, 22px);
  --font-size-title-s: clamp(16px, 12.16px + 0.5vw, 18px);
  --font-size-label-19: clamp(18px, 16.464px + 0.2vw, 19px);
  --font-size-label-17: clamp(16px, 14.464px + 0.2vw, 17px);
  --font-size-label-15: clamp(14px, 12.464px + 0.2vw, 15px);
  --font-size-label-13: clamp(12px, 10.464px + 0.2vw, 13px);
  --font-size-body-18: clamp(17px, 15.464px + 0.2vw, 18px);
  --font-size-body-16: clamp(15px, 13.464px + 0.2vw, 16px);
  --font-size-body-14: clamp(13px, 11.464px + 0.2vw, 14px);
  --font-size-supporting-20: clamp(18px, 14.16px + 0.5vw, 20px);
  --font-size-supporting-16: clamp(14px, 10.16px + 0.5vw, 16px);
  --font-size-supporting-14: clamp(12px, 8.16px + 0.5vw, 14px);
  --font-size-supporting-12: clamp(10px, 6.16px + 0.5vw, 12px);
}

.text-display-l { /* not supposed to be used on mobile */
  font-family: var(--font-family-display);
  font-size: var(--font-size-display-l);
  font-weight: var(--font-weight-display);
  line-height: 1;
  letter-spacing: 0;
}

.text-heading-xl,
.text-heading-l,
.text-heading-m {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

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

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

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


.text-title-m,
.text-title-s {
  font-family: var(--font-family-title);
  font-weight: var(--font-weight-title);
  line-height: 1.2;
  letter-spacing: 0;
}

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

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

.text-label-19,
.text-label-17,
.navi-link-group__text-title,
.navi-section__menu,
.button.button--appearance-text,
.navi-link-group__text-meta,
.site-switch__label,
.navi-announcement-strip__content,
.text-label-13,
.navi-link-group__badge {
  font-family: var(--font-family-label);
  font-weight: var(--font-weight-label-regular);
  line-height: 1.2;
  letter-spacing: 0;
}
.text-label-19.weight-medium,
.text-label-17.weight-medium,
.weight-medium.navi-link-group__text-title,
.weight-medium.navi-section__menu,
.weight-medium.button.button--appearance-text,
.weight-medium.navi-link-group__text-meta,
.weight-medium.site-switch__label,
.weight-medium.navi-announcement-strip__content,
.text-label-13.weight-medium,
.weight-medium.navi-link-group__badge {
  font-weight: var(--font-weight-label-medium);
}

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

.text-label-17, .navi-link-group__text-title, .navi-section__menu, .button.button--appearance-text {
  font-size: var(--font-size-label-17);
}

 .navi-link-group__text-meta, .site-switch__label, .navi-announcement-strip__content {
  font-size: var(--font-size-label-15);
}

.text-label-13, .navi-link-group__badge {
  font-size: var(--font-size-label-13);
}

.text-body-18,
.text-body-16,
.text-body-14 {
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-body-regular);
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

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

.text-supporting-20,
.text-supporting-16,
.text-supporting-14 {
  font-family: var(--font-family-supporting);
  font-weight: var(--font-weight-supporting);
  line-height: 1.4;
  letter-spacing: 0;
}

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

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

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

html,
body {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.skip-to-content {
  position: absolute;
  left: -100%;
  z-index: 200;
  opacity: 0;
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}

.is-hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

:root {
  --navi-section-height: clamp(60px, 31.584px + 3.7vw, 76px);
  --navi-announcement-strip-height: clamp(37px, 27.784px + 1.2vw, 42px);
  --navi-offset: var(--navi-section-height);
}
:root:has(.header .navi-announcement-strip) {
  --navi-offset: calc(var(--navi-section-height) + var(--navi-announcement-strip-height));
}

.header {
  position: absolute;
  z-index: 100;
  width: 100%;
  top: 0;
}

.footer {
  background: var(--surface-base-base);
  color: var(--text-on-surface-primary);
  padding-top: var(--scale-soft-40);
}
.footer__brand-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--scale-soft-24);
  padding-top: var(--scale-soft-40);
}
.footer__brand-inner a {
  height: clamp(48px, 19.584px + 3.7vw, 64px);
  max-width: 180px;
}
.footer__brand-inner img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
}
.footer__gradient-line {
  flex: 1 0 0;
  height: 1px;
  min-width: 1px;
  background: linear-gradient(to right, var(--surface-base-base), var(--border-on-surface-strong-to-weak-a));
}
.footer__gradient-line--right {
  background: linear-gradient(to right, var(--border-on-surface-strong-to-weak-a), var(--surface-base-base));
}
.footer__content {
  padding: var(--scale-hard-72) 0;
  gap: var(--scale-soft-32) clamp(24px, 9.408px + 1.9vw, 32px);
}
.footer__column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-32);
  padding: var(--scale-to-zero-32) var(--scale-to-zero-24);
}
.footer__column--outlined {
  border: 1px solid var(--border-on-surface-strong-to-weak-a);
  border-radius: var(--radius-l);
  padding: var(--scale-soft-32);
}
@media (max-width: 991px) {
  .footer__column--outlined {
    margin-top: var(--scale-soft-16);
  }
}
.footer__column--outlined p {
  margin: 0;
}
.footer__column--outlined .button {
  width: 100%;
}
.footer__column-header {
  text-transform: uppercase;
  margin: 0;
  color: var(--text-on-surface-primary);
}
@media (max-width: 991px) {
  .footer__column:not(.footer__column--outlined, :first-child) .footer__column-header {
    padding-top: var(--scale-soft-32);
  }
}
.footer__column-header--link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.footer__column-header--link:hover, .footer__column-header--link:focus-visible {
  text-decoration: underline;
}
.footer__column-header, .footer__separator-text {
  line-height: 1.2;
}
.footer__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin: 0;
}
.footer__header-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.footer__header-icon svg path {
  fill: currentcolor;
}
.footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-16);
}
.footer__link-list li a {
  color: var(--text-on-surface-primary);
  text-decoration: none;
}
.footer__link-list li a:hover, .footer__link-list li a:focus-visible {
  text-decoration: underline;
}
.footer__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--scale-soft-24);
}
.footer__separator p {
  text-transform: uppercase;
  margin: 0;
}
.footer__secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: var(--scale-hard-48) var(--scale-hard-32) var(--scale-hard-64);
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1392px;
  width: 100%;
  gap: var(--scale-hard-48);
}
.footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(20px, -15.328px + 4.6vw, 40px);
}
.footer__logo-link img {
  display: block;
  width: auto;
  height: 100%;
}
.footer__tertiary {
  background: var(--surface-elevated-elevated-a);
  padding: var(--scale-soft-24) var(--scale-hard-32) var(--scale-soft-32);
}
.footer__tertiary-inner {
  display: flex;
  gap: var(--scale-variable-24);
  max-width: 1392px;
  width: 100%;
}
@media (max-width: 991px) {
  .footer__tertiary-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .footer__tertiary-inner {
    align-items: flex-end;
  }
}
.footer__tertiary-left {
  display: flex;
  align-items: flex-end;
  gap: var(--scale-soft-32);
}
@media (max-width: 991px) {
  .footer__tertiary-left {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .footer__tertiary-left {
    flex: 1 0 0;
    min-width: 0;
  }
}
.footer__tertiary-left p {
  margin: 0;
  color: var(--text-on-surface-tertiary);
}
@media (max-width: 991px) {
  .footer__tertiary-left p {
    flex: 1 0 0;
    min-width: 0;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .footer__tertiary-left p {
    flex: 1 0 0;
    min-width: 0;
  }
}
.footer__tertiary-right {
  display: flex;
  align-items: center;
  gap: var(--scale-hard-16);
  color: var(--text-on-surface-tertiary);
}
@media (max-width: 991px) {
  .footer__tertiary-right {
    border-top: 1px solid var(--border-on-surface-weak-weak-b);
    padding-top: var(--scale-from-zero-16);
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .footer__tertiary-right {
    flex: 1 0 0;
    min-width: 0;
    justify-content: flex-end;
    padding-top: 0;
  }
}
.footer__credit-link {
  margin: 0;
  text-decoration: none;
  color: var(--text-on-surface-tertiary);
}
.footer__credit-link:hover, .footer__credit-link:focus-visible {
  text-decoration: underline;
}
.footer__cmt-badge {
  display: block;
  height: clamp(32px, 17.408px + 1.9vw, 40px);
  width: auto;
}

.footer-simple {
  background-color: var(--surface-base-base);
  border-top: 1px solid var(--color-black-black);
  padding: var(--scale-hard-80) var(--scale-hard-40);
  isolation: isolate;
}
.footer-simple__inner {
  display: flex;
  gap: var(--scale-soft-32) clamp(24px, -4.416px + 3.7vw, 40px);
}
@media (max-width: 991px) {
  .footer-simple__inner {
    flex-direction: column;
  }
}
.footer-simple__brand-column {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-24);
  flex: 1 0 0;
  min-width: 0;
}
@media (max-width: 991px) {
  .footer-simple__brand-column {
    flex: 0 0 auto;
    width: 100%;
  }
}
.footer-simple__brand-column img {
  display: block;
  height: clamp(40px, 25.408px + 1.9vw, 48px);
  width: auto;
}
.footer-simple__brand-column p {
  color: var(--text-on-surface-secondary);
}
.footer-simple__link-column {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-32);
  width: 300px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .footer-simple__link-column {
    width: 100%;
  }
}
.footer-simple__link-column h3 {
  text-transform: uppercase;
  color: var(--text-on-surface-primary);
}
.footer-simple__link-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-20);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-simple__link-column ul a {
  color: var(--text-on-surface-primary);
  text-decoration: none;
  transition: color 150ms ease;
  flex: 1 0 0;
  min-width: 0;
}
.footer-simple__link-column ul a:hover, .footer-simple__link-column ul a:focus {
  color: var(--color-text-accented-primary);
}
.footer-simple__link-column ul a:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}

.button {
  --button-icon-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  font-family: var(--font-family-button);
  font-weight: var(--font-weight-button);
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
  padding: clamp(12px, 8.16px + 0.5vw, 14px) clamp(20px, -1.504px + 2.8vw, 32px);
  gap: clamp(6px, 2.16px + 0.5vw, 8px);
  line-height: 1.55;
  color: inherit;
  /* Sizes */
  /* Appearance + style */
}
.button svg {
  display: block;
  width: var(--button-icon-size);
  height: var(--button-icon-size);
  flex: 0 0 auto;
}
.button.button--disabled, .button[aria-disabled=true], .button:disabled {
  cursor: not-allowed;
}
.button:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}
.button:focus:not(:focus-visible) {
  outline: none;
}
.button.button--loading {
  cursor: progress;
}
.button__text {
  display: inline-block;
}
.button--size-large { /* This class is present for semantic clarity and future overrides. Large size is the default, so no extra styles are needed here. */ }
.button--size-medium {
  --button-icon-size: 18px;
  padding: clamp(10px, 6.16px + 0.5vw, 12px) clamp(18px, 3.408px + 1.9vw, 26px);
  gap: clamp(4px, 0.16px + 0.5vw, 6px);
  line-height: 1.5;
}
.button--icon-only {
  padding: clamp(12px, 8.16px + 0.5vw, 14px) !important;
  min-width: 0;
  border-radius: 100% !important;
}
.button--icon-only svg {
  width: clamp(20px, 16.16px + 0.5vw, 22px) !important;
  height: clamp(20px, 16.16px + 0.5vw, 22px) !important;
}
.button--appearance-filled {
  font-feature-settings: "calt" off;
}
.button--appearance-filled.button--style-primary {
  background-color: var(--color-accented-surface-primary-strong-strong);
  color: var(--color-text-on-accented-primary-surface);
}
.button--appearance-filled.button--style-primary svg path {
  fill: var(--color-text-on-accented-primary-surface);
}
.button--appearance-filled.button--style-primary:hover, .button--appearance-filled.button--style-primary:active, .button--appearance-filled.button--style-primary.is-active {
  background-color: var(--color-accented-surface-primary-strong-strong-elevated);
}
.button--appearance-filled.button--style-secondary {
  background-color: var(--color-accented-surface-secondary-strong-strong);
  color: var(--color-text-on-accented-secondary-surface);
}
.button--appearance-filled.button--style-secondary svg path {
  fill: var(--color-text-on-accented-secondary-surface);
}
.button--appearance-filled.button--style-secondary:hover, .button--appearance-filled.button--style-secondary:active, .button--appearance-filled.button--style-secondary.is-active {
  background-color: var(--color-accented-surface-secondary-strong-strong-elevated);
}
.button--appearance-filled.button--style-strong {
  background-color: var(--surface-base-base-inverted);
  color: var(--text-on-surface-inverted);
}
.button--appearance-filled.button--style-strong svg path {
  fill: var(--text-on-surface-inverted);
}
.button--appearance-filled.button--style-strong:hover, .button--appearance-filled.button--style-strong:active, .button--appearance-filled.button--style-strong.is-active {
  background-color: var(--surface-elevated-elevated-max);
}
.button--appearance-filled.button--disabled, .button--appearance-filled.button--loading, .button--appearance-filled[aria-disabled=true], .button--appearance-filled:disabled {
  background-color: var(--surface-system-disabled) !important;
  color: var(--text-on-surface-disabled) !important;
}
.button--appearance-filled.button--disabled svg path, .button--appearance-filled.button--loading svg path, .button--appearance-filled[aria-disabled=true] svg path, .button--appearance-filled:disabled svg path {
  fill: var(--text-on-surface-disabled) !important;
}
.button--appearance-outlined {
  font-feature-settings: "calt" off;
  background-color: transparent;
}
.button--appearance-outlined.button--style-strong {
  border-color: var(--border-on-surface-strong-strong-a);
  color: var(--text-on-surface-primary);
  background-color: transparent;
}
.button--appearance-outlined.button--style-strong svg path {
  fill: var(--text-on-surface-primary);
}
.button--appearance-outlined.button--style-strong:hover, .button--appearance-outlined.button--style-strong:active, .button--appearance-outlined.button--style-strong.is-active {
  background-color: var(--surface-base-base-inverted);
  color: var(--text-on-surface-inverted);
}
.button--appearance-outlined.button--style-strong:hover svg path, .button--appearance-outlined.button--style-strong:active svg path, .button--appearance-outlined.button--style-strong.is-active svg path {
  fill: var(--text-on-surface-inverted);
}
.button--appearance-outlined.button--style-strong.button--disabled, .button--appearance-outlined.button--style-strong.button--loading, .button--appearance-outlined.button--style-strong[aria-disabled=true], .button--appearance-outlined.button--style-strong:disabled {
  background-color: transparent !important;
  color: var(--text-on-surface-disabled) !important;
  border-color: var(--border-system-disabled) !important;
}
.button--appearance-outlined.button--style-strong.button--disabled svg path, .button--appearance-outlined.button--style-strong.button--loading svg path, .button--appearance-outlined.button--style-strong[aria-disabled=true] svg path, .button--appearance-outlined.button--style-strong:disabled svg path {
  fill: var(--text-on-surface-disabled) !important;
}
.button--appearance-outlined.button--style-on-media-strong {
  background-color: var(--overlay-medium);
  border-color: var(--border-on-media-strong);
  color: var(--text-on-media-primary);
  /* stylelint-disable-next-line no-descending-specificity */
}
.button--appearance-outlined.button--style-on-media-strong svg path {
  fill: var(--text-on-media-primary);
}
.button--appearance-outlined.button--style-on-media-strong:hover, .button--appearance-outlined.button--style-on-media-strong:active, .button--appearance-outlined.button--style-on-media-strong.is-active {
  background-color: var(--surface-on-media-elevated-max);
  color: var(--text-on-media-inverted);
}
.button--appearance-outlined.button--style-on-media-strong:hover svg path, .button--appearance-outlined.button--style-on-media-strong:active svg path, .button--appearance-outlined.button--style-on-media-strong.is-active svg path {
  fill: var(--text-on-media-inverted);
}
.button--appearance-outlined.button--style-on-media-strong.button--disabled, .button--appearance-outlined.button--style-on-media-strong.button--loading, .button--appearance-outlined.button--style-on-media-strong[aria-disabled=true], .button--appearance-outlined.button--style-on-media-strong:disabled {
  background-color: var(--surface-on-media-elevated-a) !important;
  color: var(--text-on-media-disabled) !important;
  border-color: var(--border-on-media-disabled) !important;
}
.button--appearance-outlined.button--style-on-media-strong.button--disabled svg path, .button--appearance-outlined.button--style-on-media-strong.button--loading svg path, .button--appearance-outlined.button--style-on-media-strong[aria-disabled=true] svg path, .button--appearance-outlined.button--style-on-media-strong:disabled svg path {
  fill: var(--text-on-media-disabled) !important;
}
.button--appearance-outlined.button--style-on-media-weak {
  background-color: var(--overlay-weak);
  border-color: var(--border-on-media-weak);
  color: var(--text-on-media-primary);
  /* stylelint-disable-next-line no-descending-specificity */
}
.button--appearance-outlined.button--style-on-media-weak svg path {
  fill: var(--text-on-media-primary);
}
.button--appearance-outlined.button--style-on-media-weak:hover, .button--appearance-outlined.button--style-on-media-weak:active, .button--appearance-outlined.button--style-on-media-weak.is-active {
  background-color: var(--surface-on-media-elevated-max);
  color: var(--text-on-media-inverted);
}
.button--appearance-outlined.button--style-on-media-weak:hover svg path, .button--appearance-outlined.button--style-on-media-weak:active svg path, .button--appearance-outlined.button--style-on-media-weak.is-active svg path {
  fill: var(--text-on-media-inverted);
}
.button--appearance-outlined.button--style-on-media-weak.button--disabled, .button--appearance-outlined.button--style-on-media-weak.button--loading, .button--appearance-outlined.button--style-on-media-weak[aria-disabled=true], .button--appearance-outlined.button--style-on-media-weak:disabled {
  background-color: var(--surface-on-media-elevated-a) !important;
  color: var(--text-on-media-disabled) !important;
  border-color: var(--border-on-media-disabled) !important;
}
.button--appearance-outlined.button--style-on-media-weak.button--disabled svg path, .button--appearance-outlined.button--style-on-media-weak.button--loading svg path, .button--appearance-outlined.button--style-on-media-weak[aria-disabled=true] svg path, .button--appearance-outlined.button--style-on-media-weak:disabled svg path {
  fill: var(--text-on-media-disabled) !important;
}
.button--appearance-outlined.button--style-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--text-on-surface-primary);
  /* stylelint-disable-next-line no-descending-specificity */
}
.button--appearance-outlined.button--style-ghost svg path {
  fill: var(--text-on-surface-primary);
}
.button--appearance-outlined.button--style-ghost:hover, .button--appearance-outlined.button--style-ghost:active, .button--appearance-outlined.button--style-ghost.is-active {
  background-color: var(--surface-base-base-inverted);
  color: var(--text-on-surface-inverted);
}
.button--appearance-outlined.button--style-ghost:hover svg path, .button--appearance-outlined.button--style-ghost:active svg path, .button--appearance-outlined.button--style-ghost.is-active svg path {
  fill: var(--text-on-surface-inverted);
}
.button--appearance-outlined.button--style-ghost.button--disabled, .button--appearance-outlined.button--style-ghost.button--loading, .button--appearance-outlined.button--style-ghost[aria-disabled=true], .button--appearance-outlined.button--style-ghost:disabled {
  background-color: transparent !important;
  color: var(--text-on-surface-disabled) !important;
  border-color: var(--border-system-disabled) !important;
}
.button--appearance-outlined.button--style-ghost.button--disabled svg path, .button--appearance-outlined.button--style-ghost.button--loading svg path, .button--appearance-outlined.button--style-ghost[aria-disabled=true] svg path, .button--appearance-outlined.button--style-ghost:disabled svg path {
  fill: var(--text-on-surface-disabled) !important;
}
.button.button--appearance-text {
  background-color: transparent;
  border-color: transparent;
  border-width: 0 0 1px;
  padding: 0;
  border-radius: 0;
  border-bottom-color: var(--overlay-weak);
  color: var(--text-on-surface-primary);
  font-weight: var(--font-weight-label-heavy);
  /* stylelint-disable-next-line no-descending-specificity */
}
.button.button--appearance-text svg path {
  fill: var(--text-on-surface-primary);
}
.button.button--appearance-text:hover, .button.button--appearance-text:active, .button.button--appearance-text.is-active {
  border-bottom-color: var(--border-on-surface-strong-strong-a);
}
.button.button--appearance-text.button--style-on-media-strong {
  color: var(--text-on-media-primary);
  /* stylelint-disable-next-line no-descending-specificity */
}
.button.button--appearance-text.button--style-on-media-strong svg path {
  fill: var(--text-on-media-primary);
}
.button--loading {
  cursor: progress;
}
.button--loading svg {
  animation: button-spin 900ms linear infinite;
}
.button:not(.button--loading):hover svg, .button:not(.button--loading):active svg, .button:not(.button--loading).is-active svg {
  animation: button-pulse 900ms linear infinite;
}
.button--no-border {
  border: none !important;
}

@keyframes button-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-pulse {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-20);
  text-align: center;
}
.section-heading__small-title {
  color: var(--text-on-surface-secondary);
  text-transform: uppercase;
  margin: 0;
}
.section-heading__title {
  color: var(--text-on-surface-primary);
  margin: 0;
}
.section-heading__description {
  color: var(--text-on-surface-primary);
  margin: 0;
}
.section-heading__description p {
  margin-top: 0;
}
.section-heading__description p:last-child {
  margin-bottom: 0;
}

.anchor-cards {
  background-color: var(--surface-base-base);
  padding: var(--scale-hard-80) 0;
  isolation: isolate;
}
.anchor-cards__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 25.408px + 1.9vw, 48px);
}

.anchor-card {
  background-color: var(--surface-base-base);
  border: 1px solid var(--border-on-surface-weak-weak-b);
  border-radius: var(--radius-xl);
  padding: var(--scale-soft-32);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-24);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
@media (max-width: 991px) {
  .anchor-card {
    padding: clamp(20px, 6.176px + 1.8vw, 24px);
    gap: clamp(16px, 2.176px + 1.8vw, 20px);
  }
}
.anchor-card:hover {
  border-color: var(--border-on-surface-weak-strong-b);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.anchor-card__icon-wrapper {
  background-color: var(--color-accented-surface-primary-strong-strong);
  border-radius: var(--radius-max);
  padding: var(--scale-soft-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .anchor-card__icon-wrapper {
    padding: clamp(14px, 7.088px + 0.9vw, 16px);
  }
}
.anchor-card__icon-wrapper svg {
  width: clamp(24px, 9.408px + 1.9vw, 32px);
  height: clamp(24px, 9.408px + 1.9vw, 32px);
  display: block;
}
.anchor-card__icon-wrapper svg path {
  fill: var(--color-text-on-accented-primary-surface);
}
.anchor-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-12);
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .anchor-card__content {
    gap: clamp(8px, 1.088px + 0.9vw, 10px);
  }
}
.anchor-card__title {
  color: var(--text-on-surface-primary);
  margin: 0;
}
.anchor-card__description {
  color: var(--text-on-surface-primary);
  margin: 0;
}
.anchor-card__button {
  width: 100%;
}

.icon-text-box {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-24);
  align-items: center;
  text-align: center;
  padding: 0 var(--scale-to-zero-8);
}
.icon-text-box__icon-wrapper {
  background-color: var(--surface-base-base);
  border-radius: var(--radius-max);
  padding: var(--scale-soft-20);
}
.icon-text-box__icon-wrapper svg {
  width: 24px;
  height: 24px;
  display: block;
}
@media (max-width: 991px) {
  .icon-text-box__icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
}
.icon-text-box__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-16);
  width: 100%;
}
.icon-text-box__text-wrapper h4 {
  color: var(--text-on-surface-primary);
}
.icon-text-box__text-wrapper p {
  color: var(--text-on-surface-secondary);
}

.image-icon-box-grid {
  margin: var(--scale-hard-80) 0;
}
.image-icon-box-grid__inner {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-48);
  padding: var(--scale-hard-64);
  background-color: var(--surface-elevated-elevated-a);
  border-radius: var(--radius-xl);
}
.image-icon-box-grid__image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.image-icon-box-grid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.image-icon-box-grid__image--horizontal {
  height: 300px;
}
@media (max-width: 991px) {
  .image-icon-box-grid__image--horizontal {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.image-icon-box-grid__image--center {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .image-icon-box-grid__image--center {
    max-width: 100%;
    order: 1;
  }
}
.image-icon-box-grid__center-layout {
  display: flex;
  gap: var(--scale-soft-20);
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .image-icon-box-grid__center-layout {
    flex-direction: column;
  }
}
.image-icon-box-grid__column {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-40);
  flex: 1;
}
@media (max-width: 991px) {
  .image-icon-box-grid__column {
    width: 100%;
    padding-top: var(--scale-soft-32);
  }
}
.image-icon-box-grid__column--left {
  padding-right: var(--scale-to-zero-32);
}
@media (max-width: 991px) {
  .image-icon-box-grid__column--left {
    order: 2;
  }
}
.image-icon-box-grid__column--right {
  padding-left: var(--scale-to-zero-32);
}
@media (max-width: 991px) {
  .image-icon-box-grid__column--right {
    order: 3;
  }
}
.image-icon-box-grid__container {
  gap: var(--scale-hard-48);
}
@media (max-width: 991px) {
  .image-icon-box-grid__container {
    gap: var(--scale-soft-32);
    justify-content: center;
  }
}
.image-icon-box-grid__cta {
  text-align: center;
  margin-top: var(--scale-soft-16);
}

@keyframes navi-announcement-strip-marquee {
  0% {
    transform: translateX(0);
  }
  4% {
    transform: translateX(0);
  }
  52% {
    /*
      Move left by (text width - container width).
      -100% is the text width.
      100cqw is the container (wrapper) width.
      If the text is shorter than the container, the calc is positive;
      min(0px, ...) clamps it to 0 so there is no movement.
    */
    transform: translateX(min(0px, -100% + 100cqw));
  }
  100% {
    transform: translateX(0);
  }
}
.navi-announcement-strip {
  background-color: var(--color-accented-surface-secondary-strong-strong);
  width: 100%;
  display: flex;
  padding: var(--scale-soft-12) var(--scale-soft-20) var(--scale-soft-12) var(--scale-soft-20);
  align-items: center;
  gap: var(--scale-soft-8);
  height: var(--navi-announcement-strip-height, auto);
}
.navi-announcement-strip__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 var(--scale-soft-16);
  width: 100%;
  flex-wrap: nowrap;
  color: var(--text-on-surface-primary);
}
@media (min-width: 768px) {
  .navi-announcement-strip__content {
    margin-inline: auto;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}
.navi-announcement-strip__text {
  flex: auto;
  min-width: 0;
  line-height: inherit;
  height: 1lh;
  opacity: 0.9;
  font-weight: var(--font-weight-label-medium);
  overflow: hidden; /* Mobile: single line + auto horizontal scrolling (CSS-only). */
  white-space: nowrap;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .navi-announcement-strip__text {
    text-overflow: ellipsis;
    container-type: normal;
  }
}
.navi-announcement-strip__text-inner {
  display: inline-block;
  will-change: transform;
  animation: navi-announcement-strip-marquee 10s linear infinite;
}
@media (min-width: 768px) {
  .navi-announcement-strip__text-inner {
    animation: none;
    transform: none;
  }
}
.navi-announcement-strip__cta .button {
  font-size: inherit;
}

.product-hero-slider {
  --product-hero-slider-progress: 0;
  position: relative;
  isolation: isolate;
  color: var(--text-on-media-primary);
}
.product-hero-slider__slides {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-hero-slider__pagination {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  max-width: var(--content-width);
  padding: 0 var(--scale-hard-40) var(--scale-hard-48) var(--scale-hard-40);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--scale-soft-20);
  align-items: center;
}
@media (min-width: 992px) {
  .product-hero-slider__pagination {
    display: flex;
    gap: var(--scale-soft-48);
  }
}
.product-hero-slider__progress {
  grid-column: 1/-1;
  grid-row: 1;
  height: 2px;
  background-color: var(--surface-on-media-elevated-a);
  overflow: clip;
}
@media (min-width: 992px) {
  .product-hero-slider__progress {
    flex: 1 1 auto;
  }
}
.product-hero-slider__progress-bar {
  height: 100%;
  width: 100%;
  background-color: var(--surface-on-media-elevated-max);
  transform-origin: left;
  transform: scaleX(var(--product-hero-slider-progress));
}
.product-hero-slider__numbers {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: flex-end;
  gap: var(--scale-hard-24);
}
@media (min-width: 992px) {
  .product-hero-slider__numbers {
    flex: 0 0 auto;
  }
}
.product-hero-slider__page {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--text-on-media-tertiary);
  text-transform: uppercase;
  font-feature-settings: "calt" off;
}
.product-hero-slider__page.is-active, .product-hero-slider__page:hover, .product-hero-slider__page[aria-current=true] {
  color: var(--text-on-media-primary) !important;
}
.product-hero-slider__page:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
  border-radius: var(--atom-focused-state-border-radius);
}
.product-hero-slider__controls {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: var(--scale-soft-12);
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .product-hero-slider__controls {
    flex: 0 0 auto;
  }
}
.product-hero-slider__arrow {
  flex: 0 0 auto;
}

.product-hero-slide {
  position: relative;
}
.product-hero-slide__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: -moz-fit-content;
  height: fit-content;
}
.product-hero-slide__background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.product-hero-slide__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, var(--overlay-strong) 1%, transparent 25%), linear-gradient(180deg, transparent 0%, var(--overlay-strong) 80%);
}
.product-hero-slide__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: var(--scale-soft-40);
  justify-content: flex-end;
  padding: var(--navi-offset) var(--scale-hard-40) var(--scale-hard-48) var(--scale-hard-40);
}
.product-hero-slide__banner-wrapper {
  flex: 1 1 auto;
}
.product-hero-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  gap: var(--scale-soft-32);
  /* to properly align with __pagination element, calc pagination size + --scale-soft-40 */
  padding-bottom: clamp(96px, 61.44px + 4.5vw, 106px);
}
@media (min-width: 992px) {
  .product-hero-slide__content {
    padding-bottom: clamp(85px, 51.272px + 3.4vw, 92px);
  }
}
.product-hero-slide__title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 6.16px + 0.5vw, 12px);
  align-self: stretch;
}
.product-hero-slide__eyebrow {
  text-transform: uppercase;
  font-feature-settings: "calt" off;
}
.product-hero-slide__text p {
  margin-top: 0;
}
.product-hero-slide__text p:last-child {
  margin-bottom: 0;
}
.product-hero-slide__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--scale-soft-16);
}

.product-hero-slider-banner {
  border: 1px solid var(--border-on-surface-strong-to-weak-a);
  border-radius: var(--radius-l);
  margin-top: var(--scale-soft-24);
  background: linear-gradient(180deg, var(--color-accented-surface-primary-strong-strong) 35%, var(--surface-base-base) 75%);
}
.product-hero-slider-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--scale-soft-20);
  color: var(--color-text-on-accented-primary-surface);
}
@media (min-width: 992px) {
  .product-hero-slider-banner__inner {
    flex-direction: row;
    align-items: center;
  }
}
.product-hero-slider-banner__text {
  flex-grow: 1;
}
.product-hero-slider-banner__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
@media (min-width: 992px) {
  .product-hero-slider-banner__meta {
    justify-content: flex-start;
    gap: var(--scale-soft-24);
  }
}
.product-hero-slider-banner__steps {
  display: flex;
  align-items: center;
  border-radius: var(--radius-max);
  background-color: var(--surface-base-base);
}
.product-hero-slider-banner__step {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: var(--scale-soft-6) var(--scale-soft-20) var(--scale-soft-6) var(--scale-soft-16);
  text-transform: uppercase;
  font-feature-settings: "calt" off;
  white-space: nowrap;
}
.product-hero-slider-banner__step--primary {
  position: relative;
  background-color: var(--color-accented-surface-secondary-strong-strong);
  color: var(--color-text-on-accented-secondary-surface);
}
.product-hero-slider-banner__step--primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 99.5%;
  width: clamp(12px, 7.392px + 0.6vw, 14.5px);
  background-color: var(--color-accented-surface-secondary-strong-strong);
  pointer-events: none;
  z-index: 1;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.product-hero-slider-banner__step--secondary {
  color: var(--text-on-surface-primary);
  padding-left: clamp(23px, 16.088px + 0.9vw, 27px);
}
.product-hero-slider-banner__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 8.16px + 0.5vw, 14px);
  border-radius: var(--radius-max);
}
.product-hero-slider-banner__info svg {
  display: block;
  width: clamp(20px, 16.16px + 0.5vw, 22px);
  height: clamp(20px, 16.16px + 0.5vw, 22px);
}
.product-hero-slider-banner__info svg path {
  fill: currentcolor;
}

.navi-section {
  width: 100%;
  height: var(--navi-section-height);
}
.navi-section__bar {
  position: relative;
  z-index: 2;
  padding: 0 var(--scale-hard-24);
}
.navi-section__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--scale-hard-24);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-on-media-weak);
}
@media (min-width: 1200px) {
  .navi-section__container {
    padding: 0;
  }
}
.navi-section__brand {
  display: flex;
  gap: var(--scale-hard-24);
  align-items: center;
}
.navi-section__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: var(--scale-soft-48);
}
.navi-section__logo img {
  height: 100%;
  width: auto;
}
.navi-section__mobile-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 0 0;
}
.navi-section__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 44px;
  height: 44px;
  color: var(--text-on-media-primary);
  border: none;
  background: transparent;
}
.navi-section__mobile-toggle .line {
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  position: relative;
  display: block;
}
.navi-section__mobile-toggle .line::before, .navi-section__mobile-toggle .line::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 20px;
  height: 2px;
  background-color: currentcolor;
  transition: transform 300ms ease, width 300ms ease;
  transform: rotate(0);
  transform-origin: right center;
}
.navi-section__mobile-toggle .line::before {
  top: -6px;
}
.navi-section__mobile-toggle .line::after {
  top: 6px;
}
.navi-section__button-group {
  display: flex;
  gap: var(--scale-soft-12);
}
.navi-section__nav {
  display: flex;
  align-items: center;
  padding: 16px 0;
  position: relative;
}
.navi-section__menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--scale-soft-12);
}
.navi-section__item {
  position: relative;
  padding: 11px 12px 13px;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) {
  .navi-section__item {
    position: unset;
  }
}
 .navi-section__trigger {
  color: var(--text-on-media-primary);
  border: none;
  text-decoration: none;
}
 .navi-section__trigger svg {
  height: var(--font-size-label-17);
  width: 20px;
}
 .navi-section__trigger svg path {
  fill: var(--text-on-media-primary);
}
.navi-section__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  color: var(--text-on-surface-primary);
  z-index: 3;
}
.navi-section__item.is-open .navi-section__panel {
  display: block;
}
.navi-section__desktop-nav {
  display: flex;
  gap: 24px;
}
.navi-section__desktop-nav .navi-section__menu--main {
  gap: 0;
}
.navi-section__mobile {
  border-bottom: 1px solid var(--border-on-media-weak);
  padding: 0;
  overflow: hidden;
  height: 0;
}
@media (min-width: 1200px) {
  .navi-section__mobile {
    display: none;
  }
}
.navi-section__mobile .navi-section__menu {
  flex-direction: column;
  align-items: stretch;
}
.navi-section.is-open .navi-section__mobile {
  height: auto;
}
.navi-section.is-open .navi-section__mobile-toggle {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}
.navi-section.is-open .navi-section__mobile-toggle .line {
  height: 0;
}
.navi-section.is-open .navi-section__mobile-toggle .line::before {
  transform: rotate(-45deg);
  width: 17px;
}
.navi-section.is-open .navi-section__mobile-toggle .line::after {
  transform: rotate(45deg);
  width: 17px;
}

.navi-section-mobile {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-base-base);
  border-radius: var(--radius-xl);
  align-self: stretch;
  overflow: hidden;
}
.navi-section-mobile__panels {
  overflow: hidden;
  max-height: 420px;
}
.navi-section-mobile__panel {
  width: 100%;
  overflow-y: auto;
}
.navi-section-mobile__panel .navi-link-group {
  border-radius: 0;
}
.navi-section-mobile__tabs-item-container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--border-on-surface-weak-weak-b);
  background-color: var(--surface-base-base);
  padding: 0 var(--scale-soft-20);
  scrollbar-width: none;
}
.navi-section-mobile__tabs-item-container::-webkit-scrollbar {
  display: none;
}
.navi-section-mobile__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid transparent;
  padding: 20px 0;
}
.navi-section-mobile__item.is-active {
  border-top-color: var(--border-on-surface-strong-strong-a);
}
.navi-section-mobile__item.is-active .navi-section-mobile__trigger {
  background-color: var(--surface-elevated-elevated-a);
}
.navi-section-mobile__item.is-active .button svg {
  transform: rotate(180deg);
}
.navi-section-mobile__item .button {
  padding: 11px 12px 13px;
}
.navi-section-mobile__footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 24px 24px 32px;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid var(--border-on-surface-weak-weak-b);
  background-color: var(--surface-base-base);
}
.navi-section-mobile__footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navi-section-mobile__footer-social .button--icon-only {
  padding: 0 !important;
}

.site-switch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  background-color: var(--surface-on-media-elevated-a);
}
@media (min-width: 1200px) {
  .site-switch {
    background-color: transparent;
  }
}
.site-switch__label {
  display: none;
  color: var(--text-on-media-secondary);
}
@media (min-width: 1200px) {
  .site-switch__label {
    display: block;
  }
}
.site-switch__trigger span {
  display: none;
}
@media (min-width: 1200px) {
  .site-switch__trigger span {
    display: inline-block;
  }
}
.site-switch__panel {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 260px;
  flex-direction: column;
  color: var(--text-on-surface-primary);
}
.site-switch.is-open .site-switch__panel {
  display: flex;
}

.language-switch {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  .language-switch {
    padding: 10px 14px;
  }
}
.language-switch__panel {
  display: none;
  position: absolute;
  left: 0;
  top: 83%;
  min-width: 80px;
  flex-direction: column;
  color: var(--text-on-surface-primary);
  z-index: 3;
}
.language-switch.is-open .language-switch__panel {
  display: flex;
}

.navi-link-group {
  max-width: 100%;
  border-radius: var(--radius-xl);
  background: var(--surface-base-base);
  align-self: stretch;
}
.navi-link-group__list {
  list-style: none;
  margin: 0;
  display: flex;
  padding: var(--scale-soft-20);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-soft-6);
  align-self: stretch;
}
.navi-link-group__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.navi-link-group__link {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: var(--scale-soft-16);
  align-self: stretch;
  border-radius: var(--radius-s);
  text-decoration: none;
  color: var(--text-on-surface-primary);
}
.navi-link-group__link:focus {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}
.navi-link-group__link:focus:not(:focus-visible) {
  outline: none;
}
.navi-link-group__thumb {
  border-radius: var(--radius-s);
  border: 1px solid var(--border-on-surface-strong-strong-a);
  background-color: var(--surface-elevated-elevated-a);
  width: 40px;
  height: 40px;
  align-items: center;
  gap: 10px;
}
.navi-link-group__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.navi-link-group__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--scale-soft-4);
  flex: 1 0 0;
}
.navi-link-group__text-title {
  font-weight: var(--font-weight-label-heavy);
  color: var(--text-on-surface-primary);
}
.navi-link-group__text-meta {
  font-weight: var(--font-weight-label-medium);
  color: var(--text-on-surface-tertiary);
}
.navi-link-group__badge {
  height: 24px;
  font-weight: var(--font-weight-label-medium);
  padding: var(--scale-soft-4) var(--scale-soft-8);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--scale-soft-6);
  border-radius: var(--radius-xs);
  color: var(--color-text-on-accented-primary-surface);
  background-color: var(--color-accented-surface-primary-strong-strong);
}
.navi-link-group__badge--sold-out {
  color: var(--color-base-750);
  background-color: var(--color-base-100);
}
.navi-link-group__badge svg {
  height: 100%;
}
.navi-link-group--with-labels {
  width: 500px;
}

/**
 * Sub Page Hero Component
 * Hero banner for subpages with breadcrumb navigation and heading
 */
.sub-page-hero {
  position: relative;
  width: 100%;
}
.sub-page-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(400px, 121.216px + 36.3vw, 557px);
  padding: var(--navi-offset) var(--scale-hard-40) var(--scale-hard-80) var(--scale-hard-40);
}
.sub-page-hero__content {
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-page-hero__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-soft-32);
  width: 100%;
  max-width: clamp(343px, -262.952px + 78.9vw, 684px);
  padding: var(--scale-soft-32) var(--scale-soft-32) var(--scale-soft-48);
  background-color: var(--surface-base-base-inverted);
  border-radius: var(--radius-xl);
  border-bottom: 10px solid var(--color-accented-surface-secondary-strong-strong);
}
.sub-page-hero__breadcrumbs {
  width: 100%;
}
.sub-page-hero__breadcrumbs ol {
  justify-content: center;
  display: flex;
}
.sub-page-hero__heading {
  text-align: center;
  color: var(--text-on-surface-inverted);
  width: 100%;
  margin: 0;
}
.sub-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, var(--overlay-strong) 1%, transparent 61.538%);
  pointer-events: none;
}
.sub-page-hero__background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tertiary-hero {
  position: relative;
  background-color: var(--color-base-800);
  color: var(--text-on-media-primary);
}
.tertiary-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(300px, 122.592px + 23.1vw, 400px);
  padding: var(--navi-offset) var(--scale-hard-40) var(--scale-hard-64) var(--scale-hard-40);
}
.tertiary-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-24);
}
.tertiary-hero .breadcrumbs ol {
  justify-content: center;
}
.tertiary-hero h1 {
  text-align: center;
  color: var(--text-on-media-primary);
}
.tertiary-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, var(--overlay-strong) 0%, transparent 50%, var(--overlay-strong) 100%);
  pointer-events: none;
}
.tertiary-hero__background-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumbs {
  width: 100%;
  color: var(--text-on-media-primary);
  font-family: var(--font-family-label);
  font-size: var(--font-size-label-13);
  font-weight: var(--font-weight-label-regular);
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__separator {
  display: flex;
  align-items: center;
  width: 8px;
  height: 8px;
  margin: 0 var(--scale-soft-4);
}
.breadcrumbs__separator svg {
  width: 100%;
  height: 100%;
}
.breadcrumbs__link {
  color: var(--text-on-media-primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus-visible {
  color: var(--text-on-media-secondary);
}
.breadcrumbs__link:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
  border-radius: var(--atom-focused-state-border-radius);
}
.breadcrumbs__current {
  color: inherit;
  font-weight: var(--font-weight-label-heavy);
}

.image-and-text {
  padding: var(--scale-hard-80) var(--scale-hard-40);
}
@media (max-width: 991px) {
  .image-and-text {
    padding-left: 0;
    padding-right: 0;
  }
}
.image-and-text--gray-bg {
  background-color: var(--color-base-30);
}
.image-and-text__inner {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 991px) {
  .image-and-text__inner {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
}
.image-and-text__image-column {
  flex: 1 0 0;
  padding-right: var(--scale-to-zero-64);
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .image-and-text__image-column {
    flex: 0 0 auto;
    max-width: none;
    padding-right: 0;
  }
}
.image-and-text__image-column img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-and-text__text-column {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-24);
  padding-left: var(--scale-to-zero-64);
}
.image-and-text__supertitle {
  margin: 0;
  text-transform: uppercase;
  color: var(--text-on-surface-secondary);
}
.image-and-text__title {
  margin: 0;
  color: var(--text-on-surface-primary);
}
.image-and-text__description {
  margin: 0;
  color: var(--text-on-surface-secondary);
}
.image-and-text__description p {
  margin-top: 0;
}
.image-and-text__description p:last-child {
  margin-bottom: 0;
}
.image-and-text__button {
  align-self: flex-start;
  margin-top: var(--scale-soft-8);
}
.image-and-text--image-right .image-and-text__inner {
  flex-direction: column-reverse;
}
@media (min-width: 1200px) {
  .image-and-text--image-right .image-and-text__inner {
    flex-direction: row-reverse;
  }
}
.image-and-text--image-right .image-and-text__image-column {
  padding-right: 0;
  padding-left: var(--scale-to-zero-64);
}
@media (max-width: 991px) {
  .image-and-text--image-right .image-and-text__image-column {
    padding-left: 0;
  }
}
.image-and-text--image-right .image-and-text__text-column {
  padding-left: 0;
  padding-right: var(--scale-to-zero-64);
}
@media (max-width: 991px) {
  .image-and-text--image-right .image-and-text__text-column {
    padding-right: 0;
  }
}

.text-columns {
  background-color: var(--surface-base-base);
  padding: var(--scale-hard-80) 0;
}
.text-columns__grid {
  padding: 0 var(--scale-to-zero-64);
}
.text-columns__left {
  padding-right: var(--scale-to-zero-64);
}
.text-columns__right {
  padding-left: var(--scale-to-zero-64);
}
.text-columns__text {
  color: var(--text-on-surface-secondary);
  margin: 0 0 var(--scale-soft-32);
}
.text-columns__text p:last-child {
  margin-bottom: 0;
}
.text-columns h3 {
  color: var(--text-on-surface-secondary);
  text-transform: uppercase;
  margin: 0 0 var(--scale-soft-16);
}
.text-columns h2 {
  color: var(--text-on-surface-primary);
  margin: 0 0 var(--scale-soft-24);
}

.icon-boxes {
  background-color: var(--color-accented-surface-primary-strong-strong);
  padding: var(--scale-hard-72) 0;
  color: var(--color-text-on-accented-primary-surface);
}
.icon-boxes__inner {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-64);
}
.icon-boxes__top {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-12);
  text-align: center;
  max-width: 100%;
}
.icon-boxes h3 {
  text-transform: uppercase;
}
.icon-boxes__item {
  display: flex;
  align-items: center;
  gap: var(--scale-soft-16);
}
.icon-boxes__number {
  --icon-box-size: 64px;
  flex-shrink: 0;
  width: var(--icon-box-size);
  height: var(--icon-box-size);
  border-radius: var(--radius-l);
  background-color: var(--surface-base-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--scale-soft-8);
  color: var(--color-accented-surface-primary-strong-strong);
}
@media (max-width: 991px) {
  .icon-boxes__number {
    --icon-box-size: 60px;
  }
}
.icon-boxes__number svg path {
  fill: var(--color-accented-surface-primary-strong-strong);
}
.icon-boxes__cta {
  text-align: center;
}

.stats {
  background-color: var(--surface-base-base);
  padding: var(--scale-hard-80) 0;
}
.stats__wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  background-color: var(--surface-elevated-elevated-a);
  border-radius: var(--radius-xl);
  padding: var(--scale-hard-64);
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .stats__wrapper {
    flex-direction: column;
  }
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-20);
  padding: var(--scale-soft-32) var(--scale-soft-24);
  border-right: 1px solid var(--border-on-surface-weak-weak-b);
  flex: 1 0 0;
  min-width: 0;
}
@media (max-width: 991px) {
  .stats__item {
    border-right: none;
    border-bottom: 1px solid var(--border-on-surface-weak-weak-b);
    width: 100%;
  }
}
.stats__item:last-child {
  border-right: none;
  border-bottom: none;
}
.stats__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-6);
  width: 100%;
}
.stats__title, .stats__subtitle {
  color: var(--text-on-surface-primary);
}
.stats__description {
  color: var(--text-on-surface-secondary);
}

.logos {
  padding: var(--scale-hard-80) 0;
  background-color: var(--surface-base-base);
}
.logos__wrapper {
  background-color: var(--surface-elevated-elevated-a);
  border-radius: var(--radius-xl);
  padding: var(--scale-hard-40) var(--scale-hard-64) var(--scale-hard-64);
}
.logos__title {
  padding-bottom: var(--scale-soft-32);
  text-transform: uppercase;
  color: var(--text-on-surface-secondary);
  text-align: center;
}
.logos__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-24);
}
@media (min-width: 992px) {
  .logos__grid {
    flex-flow: row wrap;
    justify-content: center;
    gap: var(--scale-soft-32);
  }
}
.logos__item {
  width: 100%;
  max-width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .logos__item {
    max-width: 140px;
  }
}
@media (min-width: 1200px) {
  .logos__item {
    max-width: 160px;
  }
}
.logos__item img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.logos__link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.image-box-accordion-grid {
  background-color: var(--surface-base-base);
  padding: var(--scale-hard-80) 0;
}
.image-box-accordion-grid__inner {
  display: flex;
  flex-direction: column;
  padding: var(--scale-hard-64);
  background-color: var(--surface-elevated-elevated-a);
  border-radius: var(--radius-xl);
}
@media (max-width: 1199px) {
  .image-box-accordion-grid__inner {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .image-box-accordion-grid__inner .section-heading {
    padding-bottom: var(--scale-soft-48);
    border-bottom: 1px solid var(--border-on-surface-weak-weak-b);
  }
}
.image-box-accordion-grid__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-40);
  padding: var(--scale-soft-40) var(--scale-to-zero-40);
  border-bottom: 1px solid var(--border-on-surface-weak-weak-b);
}
@media (min-width: 1200px) {
  .image-box-accordion-grid__item:nth-last-child(1), .image-box-accordion-grid__item:nth-last-child(2):not(:nth-child(3n)), .image-box-accordion-grid__item:nth-last-child(3):nth-child(3n+1) {
    border-bottom: none;
  }
}
.image-box-accordion-grid__item:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  right: 0;
  top: var(--scale-soft-40);
  bottom: var(--scale-soft-40);
  width: 1px;
  background-color: var(--border-on-surface-weak-weak-b);
}
@media (max-width: 1199px) {
  .image-box-accordion-grid__item:last-child {
    border-bottom: none;
  }
  .image-box-accordion-grid__item::after {
    display: none;
  }
}
.image-box-accordion-grid__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--scale-soft-80);
  width: 100%;
  flex-shrink: 0;
}
.image-box-accordion-grid__image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
}
.image-box-accordion-grid__content {
  color: var(--text-on-surface-primary);
  width: 100%;
}
.image-box-accordion-grid__box-title {
  margin: 0;
  padding-bottom: var(--scale-soft-12);
  text-align: center;
}
.image-box-accordion-grid__box-description {
  margin: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.image-box-accordion-grid__toggle {
  display: none;
  align-self: flex-start;
  font-size: var(--font-size-label-15);
}
.image-box-accordion-grid__toggle--visible {
  display: flex;
}
.image-box-accordion-grid__toggle svg {
  transition: transform 0.3s ease;
}
.image-box-accordion-grid__item--expanded .image-box-accordion-grid__box-description {
  overflow: visible;
  -webkit-line-clamp: unset;
}
.image-box-accordion-grid__item--expanded .image-box-accordion-grid__toggle svg {
  transform: rotate(180deg);
}

.image-card {
  position: relative;
  display: flex;
  width: 330px;
  height: 440px;
  border-radius: var(--radius-l);
  overflow: hidden;
  padding: var(--scale-soft-32);
}
@media (min-width: 1200px) {
  .image-card {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}
.image-card__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-card__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-16);
  align-items: center;
  width: 100%;
}
.image-card__badge {
  padding: var(--scale-soft-6) var(--scale-soft-16);
  border-radius: var(--radius-xxs);
  font-family: var(--font-family-supporting);
  font-size: var(--font-size-supporting-16);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-on-surface-inverted);
  background-color: var(--surface-base-base-inverted);
}
.image-card__title {
  margin: 0;
  font-family: var(--font-family-title);
  font-size: var(--font-size-title-l);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--text-on-surface-primary);
}

.image-cards {
  padding: var(--scale-hard-80) 0;
  background-color: var(--surface-elevated-elevated-a);
  overflow-x: clip;
}
.image-cards__heading {
  margin-bottom: var(--scale-soft-48);
  text-align: center;
}
.image-cards__title {
  margin: 0;
  color: var(--text-on-surface-primary);
}
.image-cards__wrapper {
  position: relative;
}
.image-cards__swiper {
  overflow: visible;
  padding-bottom: var(--scale-soft-48);
  margin: 0 calc(var(--container-padding) * -1);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
@media (min-width: 1200px) {
  .image-cards__swiper {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .image-cards__swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--scale-soft-24);
  }
}
.image-cards__swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
}
.image-cards__pagination {
  display: flex;
  gap: var(--scale-soft-6);
  justify-content: center;
  align-items: center;
  padding-top: var(--scale-soft-24);
  min-height: 12px;
}
@media (min-width: 1200px) {
  .image-cards__pagination {
    display: none;
  }
}
.image-cards__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--scale-soft-64);
}

.social-media-cards {
  padding: var(--scale-hard-80) 0;
  background-color: var(--surface-elevated-elevated-a);
  overflow-x: clip;
}
.social-media-cards__heading {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-16);
}
.social-media-cards__small-title {
  margin: 0;
  color: var(--text-on-surface-secondary);
  text-transform: uppercase;
}
.social-media-cards__title {
  margin: 0;
  color: var(--text-on-surface-primary);
}
.social-media-cards__carousel-wrapper {
  position: relative;
}
.social-media-cards__swiper {
  overflow: visible;
  padding-top: var(--scale-soft-48);
}
@media (min-width: 992px) {
  .social-media-cards__swiper {
    overflow: hidden;
  }
}
.social-media-cards__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.social-media-cards__card {
  background-color: var(--surface-base-base);
  border-radius: var(--radius-xl);
  padding: var(--scale-hard-40);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--scale-soft-24);
  height: 100%;
  width: 100%;
}
.social-media-cards__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-media-cards__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-media-cards__name {
  margin: 0;
  font-size: clamp(16px, 12.16px + 0.5vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--text-on-surface-primary);
}
.social-media-cards__social-links {
  display: flex;
  gap: var(--scale-soft-12);
  flex-wrap: wrap;
  justify-content: center;
}
.social-media-cards__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid var(--border-on-surface-strong-strong-a);
  background-color: transparent;
  color: var(--text-on-surface-primary);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.social-media-cards__social-link:hover {
  background-color: var(--surface-elevated-elevated-a);
}
.social-media-cards__social-link:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}
.social-media-cards__icon {
  width: 20px;
  height: 20px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-media-cards__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--scale-soft-32);
}
.social-media-cards__pagination {
  display: flex;
  gap: var(--scale-soft-8);
  align-items: center;
  min-height: 8px;
  pointer-events: none;
}
@media (min-width: 992px) {
  .social-media-cards__pagination {
    pointer-events: auto;
  }
}
.social-media-cards__navigation {
  display: flex;
  gap: var(--scale-soft-12);
}
.social-media-cards__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-on-surface-strong-strong-a);
  background-color: transparent;
  color: var(--text-on-surface-primary);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.social-media-cards__nav-button .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-media-cards__nav-button .icon svg {
  width: 100%;
  height: 100%;
}
.social-media-cards__nav-button:focus-visible {
  outline: var(--atom-focused-state-border-weight) solid var(--border-system-focused);
  outline-offset: var(--atom-focused-state-border-offset);
}
.social-media-cards__nav-button:disabled, .social-media-cards__nav-button.swiper-button-disabled {
  border-color: var(--border-system-disabled);
  opacity: 0.6;
  cursor: auto;
}
.social-media-cards__nav-button:hover:not(:disabled, .swiper-button-disabled) {
  border-color: var(--border-on-surface-strong-strong-a);
}
.social-media-cards .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-on-surface-weak-weak-b);
  opacity: 1;
  transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
  display: inline-block;
}
@media (min-width: 992px) {
  .social-media-cards .swiper-pagination-bullet {
    cursor: pointer;
  }
  .social-media-cards .swiper-pagination-bullet:hover {
    background-color: var(--border-on-surface-strong-strong-a);
  }
}
.social-media-cards .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-on-surface-primary);
}

.help-center-contact {
  padding: var(--scale-hard-80) 0;
}
.help-center-contact__inner {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-48);
}
.help-center-contact__section {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-32);
}
.help-center-contact__section > div:first-child {
  display: flex;
  flex-direction: column;
  gap: var(--scale-soft-16);
}
.help-center-contact__section > div:first-child h2 {
  margin: 0;
}
.help-center-contact__description {
  margin: 0;
  color: var(--text-on-surface-secondary);
}
.help-center-contact__description p {
  margin-top: 0;
}
.help-center-contact__description p:last-child {
  margin-bottom: 0;
}
.help-center-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--scale-soft-16);
}
@media (max-width: 991px) {
  .help-center-contact__buttons {
    flex-direction: column;
    align-items: start;
  }
}