/* ==========================================================================
   GLOBAL.CSS — All shared styles for the marketing site
   Combined from: icons, variables, base, standards, grid, components, website
   ========================================================================== */


/* ==========================================================================
   1. ICONS — only 3 icons used on marketing site
   ========================================================================== */

.siu-icon {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  padding: auto;
  vertical-align: middle;
}

.siu-custom-dropdown {
  content: url("../icons/custom/dropdown.svg");
  height: 20px;
  width: 20px;
}

.siu-custom-confetti {
  content: url("../icons/custom/confetti.svg");
  height: 20px;
  width: 20px;
}


/* ==========================================================================
   2. VARIABLES — CSS Custom Properties (design tokens)
   ========================================================================== */

/* Font loaded via @font-face in section 3 (self-hosted) */

:root {
  /* Typography */
  --font-family-primary: "Source Sans 3", sans-serif;
  --font-family-title: "Source Sans 3", sans-serif;
  --font-family-body: "Source Sans 3", sans-serif;

  /* Font Sizes */
  --font-size-headers-h1: 32px;
  --font-size-headers-h2: 28px;
  --font-size-headers-h3: 28px;
  --font-size-headers-h4: 24px;
  --font-size-headers-h5: 20px;
  --font-size-headers-h6: 16px;
  --font-size-other-button: 14px;
  --font-size-other-caption: 12px;
  --font-size-other-overline: 10px;
  --font-size-body-default: 16px;
  --font-size-body-link: 16px;
  --font-size-body-bold: 16px;
  --font-size-body-italic: 16px;
  --font-size-body-fine-print: 14px;
  --font-size-blockquote-body: 20px;
  --font-size-blockquote-header: 32px;

  /* Line Heights */
  --font-line-height-headers-h1: 38px;
  --font-line-height-headers-h2: 34px;
  --font-line-height-headers-h3: 34px;
  --font-line-height-headers-h4: 29px;
  --font-line-height-headers-h5: 24px;
  --font-line-height-headers-h6: 24px;
  --font-line-height-other-button: 16px;
  --font-line-height-other-caption: 14px;
  --font-line-height-other-overline: 12px;
  --font-line-height-body-default: 24px;
  --font-line-height-body-link: 24px;
  --font-line-height-body-bold: 24px;
  --font-line-height-body-italic: 24px;
  --font-line-height-blockquote-body: 30px;
  --font-line-height-body-fine-print: 21px;
  --font-line-height-blockquote-header: 38px;

  /* Letter Spacing */
  --font-letter-spacing-headers-h1: 1px;
  --font-letter-spacing-headers-h2: 1px;
  --font-letter-spacing-headers-h3: 1px;
  --font-letter-spacing-headers-h4: 1px;
  --font-letter-spacing-headers-h5: 1px;
  --font-letter-spacing-headers-h6: 1px;
  --font-letter-spacing-other-button: 1.25px;
  --font-letter-spacing-other-caption: 0.4px;
  --font-letter-spacing-other-overline: 1.5px;
  --font-letter-spacing-body-default: 1px;
  --font-letter-spacing-body-link: 1px;
  --font-letter-spacing-body-fine-print: 1px;
  --font-letter-spacing-body-bold: 1px;
  --font-letter-spacing-body-italic: 1px;
  --font-letter-spacing-blockquote-body: 1px;
  --font-letter-spacing-blockquote-header: 1px;

  /* Font Weights Mapping */
  --font-weight-black: 900;
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-regular: 400;

  /* Font Weights (Light Mode - Default) */
  --font-weights-headers-h1: var(--font-weight-bold);
  --font-weights-headers-h2: var(--font-weight-semibold);
  --font-weights-headers-h3: var(--font-weight-semibold);
  --font-weights-headers-h4: var(--font-weight-semibold);
  --font-weights-headers-h5: var(--font-weight-semibold);
  --font-weights-headers-h6: var(--font-weight-semibold);
  --font-weights-body-default: var(--font-weight-regular);
  --font-weights-body-link: var(--font-weight-regular);
  --font-weights-body-fine-print: var(--font-weight-regular);
  --font-weights-body-bold: var(--font-weight-bold);
  --font-weights-body-italic: var(--font-weight-regular);
  --font-weights-blockquote-body: var(--font-weight-regular);
  --font-weights-blockquote-header: var(--font-weight-semibold);
  --font-weights-other-button: var(--font-weight-semibold);
  --font-weights-other-caption: var(--font-weight-regular);
  --font-weights-other-overline: var(--font-weight-regular);

  /* ===== COLOR PALETTE - BLUE SCALE (17 stops) ===== */
  --blue-050: #00060d;
  --blue-100: #000e1c;
  --blue-200: #001c38;
  --blue-300: #002b57;
  --blue-400: #05386b;
  --blue-500: #2a5580;
  --blue-550: #5b91c7;
  --blue-600: #93c0ed;
  --blue-650: #c5e1fc;
  --blue-700: #d9ecff;
  --blue-750: #e5f2ff;
  --blue-800: #edf6ff;
  --blue-850: #f2f9ff;
  --blue-900: #f7fbff;
  --blue-950: #fcfeff;
  --blue-999: #ffffff;

  /* ===== COLOR PALETTE - GREEN SCALE (17 stops) ===== */
  --green-050: #000d04;
  --green-100: #001c08;
  --green-200: #003810;
  --green-300: #005719;
  --green-400: #056b22;
  --green-500: #2a8042;
  --green-550: #00dd8d;
  --green-600: #8fdba4;
  --green-650: #bff2ce;
  --green-700: #d4fadf;
  --green-750: #defae6;
  --green-800: #edfff2;
  --green-850: #f2fff6;
  --green-900: #f7fffa;
  --green-950: #fafffb;
  --green-999: #ffffff;

  /* ===== SIGNAL COLORS - SEMANTIC ===== */
  /* Dangerous Red */
  --red-dark: #6a3235;
  --red-medium: #be3a3a;
  --red-main: #ff5b5b;
  --red-light: #ff7e7e;
  --red-faint: #ffebeb;
  --red-transparent: #ff5b5b66;

  /* Cautious Orange */
  --orange-dark: #603e1b;
  --orange-medium: #be7c3a;
  --orange-main: #f29333;
  --orange-light: #f2a85c;
  --orange-faint: #fff5eb;
  --orange-transparent: #f2933366;

  /* Attentive Yellow */
  --yellow-dark: #4e4d17;
  --yellow-medium: #beb53a;
  --yellow-main: #fff236;
  --yellow-light: #ffff80;
  --yellow-faint: #fffeeb;
  --yellow-transparent: #fff23666;

  /* Tranquil Blue (Info) */
  --info-blue-dark: #255063;
  --info-blue-medium: #1e6b8a;
  --info-blue-main: #0c83b2;
  --info-blue-light: #79d9ff;
  --info-blue-faint: #ebf9ff;
  --info-blue-transparent: #79d9ff66;

  /* Celebratory Green (Success) */
  --success-green-dark: #005719;
  --success-green-medium: #2a8042;
  --success-green-main: #00dd8d;
  --success-green-light: #00fa75;
  --success-green-faint: #edfff2;
  --success-green-transparent: #00fa7566; /* 40% in light mode */

  /* Indecisive Grey (Disabled) */
  --grey-dark: #5e5e5e;
  --grey-medium: #7a7a7a;
  --grey-main: #949494;
  --grey-light: #b8b8b8;
  --grey-faint: #f2f2f2;
  --grey-transparent: #c7c7c766;

  /* Neutral White */
  --white: #ffffff;
  --white-neutral: #c8cacc;

  /* ===== SURFACE & COMPONENT COLORS ===== */
  /* Base Fills */
  --surface-light: #fcfeff;
  --surface-dark: #002b57;
  --website-background: #002b57;

  /* Card Surfaces */
  --card-fill: #f7fbff;
  --card-stroke: #e5f2ff;
  --card-highlight: #edf6ff;
  --card-radius: 0.5rem;

  /* Button Styles */
  --button-primary-fill: #05386b;
  --button-primary-shadow: #001c38;
  --button-secondary-fill: #f2f9ff;
  --button-secondary-shadow: #d9ecff;
  --button-tertiary-fill: #93c0ed;
  --button-tertiary-shadow: #93c0ed;
  --button-fab-highlight: #00dd8d;
  --button-fab-shadow: #2a8042;
  --button-destructive: #be3a3a;
  --button-destructive-shadow: #6a3235;

  /* Field/Input Components */
  --field-passive-fill: #fcfeff;
  --field-passive-stroke: #e5f2ff;
  --field-active-stroke: #93c0ed;
  --field-active-fill: #ffffff;
  --field-radius: 4px;
  --field-fill: #ffffff;

  /* Tab Components */
  --tab-backdrop-fill: #edf6ff;
  --tab-active-fill: #fcfeff;
  --tab-active-stroke: #05386b;
  /* Temporary compat: requested surface token */
  --surfaces-base-base-fill: var(--tab-backdrop-fill);
  --tab-inactive-fill: #f7fbff;
  --tab-inactive-stroke: transparent;
  --tab-hover-fill: #e5f2ff;
  --tab-hover-stroke: #05386b;
  --tab-dropdown-fill: #fcfeff;
  --tab-dropdown-stroke: #e5f2ff;

  /* ===== TEXT COLORS & EMPHASIS ===== */
  /* Light Theme - Standard Text */
  --text-high-emphasis: #05386bde;
  --text-medium-emphasis: #05386b99;
  --text-low-emphasis: #05386b61;


  --text-standard-disabled: #05386B26 ;

  /* Light Theme - Inverted (on dark bg) */
  --text-inverted-high: #cce5fff2;
  --text-inverted-medium: #cce5ffad;
  --text-inverted-low: #cce5ff75;
  --text-inverted-input-passive: #8fb5dbad;

  /* Text on Colors */
  --text-on-dark-color-1: #fffffff2;
  --text-on-dark-color-2: #cce5fff2;
  --text-on-light-color-1: #000000f2;
  --text-on-light-color-2: #05386bde;
  --text-on-colour: #ffffff;

  /* ===== ICON COLORS & EMPHASIS ===== */
  /* Standard Icons */
  --icon-high-emphasis: #05386bde;
  --icon-medium-emphasis: #05386b99;
  --icon-low-emphasis: #05386b61;

  /* Inverted Icons */
  --icon-inverted-high: #cce5fff2;
  --icon-inverted-medium: #cce5ffad;
  --icon-inverted-low: #cce5ff75;
  --icon-inverted-input-passive: #8fb5dbad;

  /* Icons on Dark Images */
  --icon-on-dark-high: #fffffff2;
  --icon-on-dark-medium: #ffffffad;
  --icon-on-dark-low: #ffffff75;

  /* Icons on Light Images */
  --icon-on-light-high: #000000f2;
  --icon-on-light-medium: #000000ad;
  --icon-on-light-low: #00000075;

  /* ===== OVERLAYS & EFFECTS ===== */
  --hover-overlay: #ffffff1a;
  --disabled-overlay: #fcfeffb2;
  --highlight-underlay: #d9ecff;
  --destructive-underlay: #ff5b5b66;

  /* ===== LEGACY ALIASES (FOR BACKWARDS COMPATIBILITY) ===== */
  /* Colors - Text (Light Mode - Default) */
  --text-primary: var(--text-high-emphasis);
  --text-medium: var(--text-medium-emphasis);
  --text-on-light: var(--text-on-light-color-2);
  --text-on-dark: var(--text-on-dark-color-2);
  --text-on-dark-medium: var(--text-inverted-medium);

  /* Colors - Surfaces */
  --surface-base: #002b57;
  --surface-field-passive: #fcfeff;
  --surface-field-active: #ffffff;
  --surface-field-stroke: #e5f2ff;
  --surface-field-highlight: #93c0ed;

  /* Colors - Brand (Simplified) */
  --brand-green: #00dd8d;
  --brand-green-hover: #2a8042;
  --brand-blue: #05386b;
  --brand-blue-hover: #042a52;

  /* Brand Blue Opacity Variants */
  --brand-blue-08: rgba(5, 56, 107, 0.08);
  --brand-blue-10: rgba(5, 56, 107, 0.1);
  --brand-blue-12: rgba(5, 56, 107, 0.12);
  --brand-blue-14: rgba(5, 56, 107, 0.14);
  --brand-blue-15: rgba(5, 56, 107, 0.15);
  --brand-blue-16: rgba(5, 56, 107, 0.16);
  --brand-blue-18: rgba(5, 56, 107, 0.18);
  --brand-blue-20: rgba(5, 56, 107, 0.2);
  --brand-blue-24: rgba(5, 56, 107, 0.24);
  --brand-blue-26: rgba(5, 56, 107, 0.26);
  --brand-blue-30: rgba(5, 56, 107, 0.3);
  --brand-blue-32: rgba(5, 56, 107, 0.32);
  --brand-blue-35: rgba(5, 56, 107, 0.35);
  --brand-blue-40: rgba(5, 56, 107, 0.4);

  /* Light Blue Opacity Variants (for text on dark backgrounds) */
  --light-blue-24: rgba(204, 229, 255, 0.24);
  --light-blue-40: rgba(204, 229, 255, 0.4);

  /* Purple to Brand Blue Migration (for voice button focus states) */
  --brand-blue-purple-60: rgba(5, 56, 107, 0.6);
  --brand-blue-purple-45: rgba(5, 56, 107, 0.45);

  /* Signal Colors (Legacy) */
  --signal-red: #ff5b5b;
  --signal-orange: #f29333;
  --signal-yellow: #fff236;
  --signal-blue: #0c83b2;

  /* Colors - Error/Danger */
  --error-border: #be3a3a;
  --error-background: rgba(242, 124, 124, 0.4);
  --error-background-overlay: rgba(252, 254, 255, 0.9);

  /* Colors - Secondary Button */
  --secondary-button-border: #2a5580;
  --secondary-button-background: #001c38;

  /* Border Radius */
  --border-radius-xs: 4px;
  --border-radius-s: 8px;
  --border-radius-m: 24px;

  /* Spacing */
  --spacing-xxxs: 0px;
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 32px;
  --spacing-xl: 40px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 56px;

  --gutter-x: 1.5rem;
  --gutter-y: 0;

  /* Component Sizes */
  --input-height: 32px;
  --button-height: 40px;
  --logo-width-desktop: 515px;
  --card-max-width: 515px;
  --card-width-mobile: 100%;

  /* Layout */
  --container-gap: 3rem;
  --form-gap: 24px;
  --field-gap: 8px;

  /* Breakpoints - Single Source of Truth */
  /* Mobile: 0-1023px (includes tablets) | Desktop: 1024px+ (menu switches here) */
  --breakpoint-mobile-max: 1023px;
  --breakpoint-desktop-min: 1024px;
  --breakpoint-desktop-md: 1200px;
  --breakpoint-desktop-lg: 1400px;

  /* Container widths aligned to breakpoints (maintains consistent page width) */
  --container-width-mobile: 100%;
  --container-width-desktop: 1100px;
  --container-width-desktop-md: 1300px;
  --container-width-desktop-lg: 1600px;

  /* Transitions */
  --transition-fast: 0.1s ease;
  --transition-normal: 0.2s ease;
  --transition-slow: 1s ease-in-out;

  /* Z-Index */
  --z-index-overlay: 1000;
  --z-index-modal: 1001;
  --z-index-tooltip: 1002;

  /* Shadows */
  --shadow-focus: 0 0 0 4px var(--surface-field-highlight);
  --shadow-modal: 0 8px 25px rgba(0, 0, 0, 0.15);

  /* Backdrop */
  --backdrop-overlay: rgba(0, 0, 0, 0.5);

  /* Semantic color aliases (light mode) */
  /* Dangerous Red */
  --danger-red-dark: var(--red-dark);
  --danger-red-medium: var(--red-medium);
  --danger-red-light: var(--red-light);
  --danger-red-faint: var(--red-faint);
  --danger-red-transparent: var(--red-transparent);

  /* Cautious Orange */
  --caution-orange-dark: var(--orange-dark);
  --caution-orange-medium: var(--orange-medium);
  --caution-orange-light: var(--orange-main);
  --caution-orange-faint: var(--orange-faint);
  --caution-orange-transparent: var(--orange-transparent);

  /* Attentive Yellow */
  --attention-yellow-dark: var(--yellow-dark);
  --attention-yellow-medium: var(--yellow-medium);
  --attention-yellow-light: var(--yellow-main);
  --attention-yellow-faint: var(--yellow-faint);
  --attention-yellow-transparent: var(--yellow-transparent);

  /* Indecisive Grey */
  --neutral-grey-dark: var(--grey-dark);
  --neutral-grey-medium: var(--grey-medium);
  --neutral-grey-light: var(--grey-main);
  --neutral-grey-faint: var(--grey-faint);
  --neutral-grey-transparent: var(--grey-transparent);

  /* Neutral White */
  --neutral-white-dark: #AFB0B2;
  --neutral-white-medium: #C8CACC;
  --neutral-white-light: #E1E3E5;
  --neutral-white-transparent-60: rgba(250, 252, 255, 0.6);
  --neutral-white-transparent-40: rgba(250, 252, 255, 0.4);

  /* Website Theme Colors (text on dark navy background) */
  --accent-green: #40e6b4;
  --text-blue: #8dceef;
  --text-light-blue: #b2ceec;

  /* Background Gradients */
  --gradient-radial-blue: radial-gradient(87.76% 87.76% at 50% 12.24%,
      #05386b 0%,
      #002849 50%,
      #021c2b 100%);

  --gradient-error: linear-gradient(0deg,
      var(--error-background) 0%,
      var(--error-background) 100%);
}

:root.dark-mode {
  /* Semantic color remaps (dark mode) */
  --danger-red-dark: var(--red-faint);
  --danger-red-medium: var(--red-light);
  --danger-red-light: var(--red-medium);
  --danger-red-faint: var(--red-dark);
  --danger-red-transparent: var(--red-transparent);

  --caution-orange-dark: var(--orange-faint);
  --caution-orange-medium: var(--orange-main);
  --caution-orange-light: var(--orange-medium);
  --caution-orange-faint: var(--orange-dark);
  --caution-orange-transparent: var(--orange-transparent);

  --attention-yellow-dark: #FFEEBB;
  --attention-yellow-medium: var(--yellow-main);
  --attention-yellow-light: var(--yellow-medium);
  --attention-yellow-faint: var(--yellow-dark);
  --attention-yellow-transparent: rgba(255, 248, 143, 0.4);

  --info-blue-dark: #EBF9FF;
  --info-blue-medium: #0C83B2;
  --info-blue-main: #1E6B8A;
  --info-blue-faint: #255063;
  --info-blue-transparent: rgba(177, 233, 255, 0.4);

  --success-green-dark: var(--green-800);
  --success-green-medium: var(--green-550);
  --success-green-light: var(--green-500);
  --success-green-faint: var(--green-300);
  --success-green-transparent: rgba(77, 255, 190, 0.4);

  --neutral-grey-dark: var(--grey-faint);
  --neutral-grey-medium: var(--grey-main);
  --neutral-grey-light: var(--grey-medium);
  --neutral-grey-faint: var(--grey-dark);
  --neutral-grey-transparent: var(--grey-transparent);

  --neutral-white-dark: #E1E3E5;
  --neutral-white-medium: #C8CACC;
  --neutral-white-light: #AFB0B2;
  --neutral-white-transparent-40: rgba(250, 252, 255, 0.4);
}

:root.dark-mode {
  --font-weights-headers-h1: var(--font-weight-black);
  --font-weights-headers-h2: var(--font-weight-bold);
  --font-weights-headers-h3: var(--font-weight-bold);
  --font-weights-headers-h4: var(--font-weight-bold);
  --font-weights-headers-h5: var(--font-weight-bold);
  --font-weights-headers-h6: var(--font-weight-bold);
  --font-weights-body-default: var(--font-weight-semibold);
  --font-weights-body-link: var(--font-weight-semibold);
  --font-weights-body-fine-print: var(--font-weight-semibold);
  --font-weights-body-bold: var(--font-weight-black);
  --font-weights-body-italic: var(--font-weight-semibold);
  --font-weights-blockquote-body: var(--font-weight-semibold);
  --font-weights-blockquote-header: var(--font-weight-bold);
  --font-weights-other-button: var(--font-weight-bold);
  --font-weights-other-caption: var(--font-weight-semibold);
  --font-weights-other-overline: var(--font-weight-semibold);

  /* Text emphasis colors - switch to light colors for dark mode */
  --text-high-emphasis: var(--text-inverted-high);
  --text-medium-emphasis: var(--text-inverted-medium);
  --text-low-emphasis: var(--text-inverted-low);

  --text-primary: var(--text-inverted-high);
  --text-medium: var(--text-inverted-medium);
  --text-on-light: var(--text-inverted-high);
  --text-on-dark: var(--text-inverted-high);

  --surface-base: #0a1929;
  --surface-field-passive: #1e2936;
  --surface-field-active: #0f1419;
  --surface-field-stroke: #334155;
  --surface-field-highlight: #475569;

  --secondary-button-background: #1e2936;
  --error-background: rgba(239, 68, 68, 0.4);
  --error-background-overlay: rgba(15, 20, 25, 0.9);

  /* Dark mode field colors */
  --field-passive-fill: #1e2936;
  --field-passive-stroke: #334155;
  --field-active-stroke: #475569;
  --field-active-fill: #0f1419;
  --field-fill: #0f1419;

  /* Dark mode surface colors */
  --surface-light: #2d3748;

  /* Dark mode card colors */
  --card-fill: #1e293b;
  --card-stroke: #334155;

  /* Dark mode overlays */
  --hover-overlay: rgba(255, 255, 255, 0.08);
  --disabled-overlay: rgba(15, 20, 25, 0.7);
  --highlight-underlay: #2a5580;
  --destructive-underlay: #be3a3a;

  /* Temporary compat: requested surface token */
  --surfaces-base-base-fill: var(--surface-field-passive);

  /* Semantic color remaps (dark mode) */
  /* Dangerous Red */
  --danger-red-dark: var(--red-faint);
  --danger-red-medium: var(--red-light);
  --danger-red-light: var(--red-medium);
  --danger-red-faint: var(--red-dark);
  --danger-red-transparent: var(--red-transparent);

  /* Cautious Orange */
  --caution-orange-dark: var(--orange-faint);
  --caution-orange-medium: var(--orange-main);
  --caution-orange-light: var(--orange-medium);
  --caution-orange-faint: var(--orange-dark);
  --caution-orange-transparent: var(--orange-transparent);

  /* Attentive Yellow */
  --attention-yellow-dark: #FFEEBB;
  --attention-yellow-medium: var(--yellow-main);
  --attention-yellow-light: var(--yellow-medium);
  --attention-yellow-faint: var(--yellow-dark);
  --attention-yellow-transparent: rgba(255, 248, 143, 0.4);

  /* Tranquil Blue */
  --info-blue-dark: #EBF9FF;
  --info-blue-medium: #0C83B2;
  --info-blue-main: #1E6B8A;
  --info-blue-faint: #255063;
  --info-blue-transparent: rgba(177, 233, 255, 0.4);

  /* Celebratory Green */
  --success-green-dark: var(--green-800);
  --success-green-medium: var(--green-550);
  --success-green-light: var(--green-500);
  --success-green-faint: var(--green-300);
  --success-green-transparent: rgba(77, 255, 190, 0.4);

  /* Indecisive Grey */
  --neutral-grey-dark: var(--grey-faint);
  --neutral-grey-medium: var(--grey-main);
  --neutral-grey-light: var(--grey-medium);
  --neutral-grey-faint: var(--grey-dark);
  --neutral-grey-transparent: var(--grey-transparent);

  /* Neutral White */
  --neutral-white-dark: #E1E3E5;
  --neutral-white-medium: #C8CACC;
  --neutral-white-light: #AFB0B2;
  --neutral-white-transparent-40: rgba(250, 252, 255, 0.4);
}

@supports (container-type: inline-size) {
  .container {
    --container-mobile: 480px;
    --container-desktop: 1024px;
  }
}


/* ==========================================================================
   3. BASE — Reset, font-face, accessibility
   ========================================================================== */

/* Self-hosted Source Sans 3 variable font */
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: optional;
  src: url('../fonts/source-sans-3-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: optional;
  src: url('../fonts/source-sans-3-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: optional;
  src: url('../fonts/source-sans-3-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: optional;
  src: url('../fonts/source-sans-3-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus styles for accessibility */
:focus {
  outline: 2px solid var(--surface-field-highlight);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Skip link - hidden until focused */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1a3a5c;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
}

/* Selection styles */
::selection {
  background: var(--surface-field-highlight);
  color: var(--text-on-light);
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Button reset */
button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* List restore — bare <ul>/<ol> in content need bullets/numbers */
ul,
ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
}

ol {
  list-style-type: decimal;
  list-style-position: outside;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
  margin-top: 0.25rem;
}

small,
.small {
  font-size: 0.875em;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --surface-field-highlight: #ffffff;
    --text-primary: #ffffff;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}


/* ==========================================================================
   4. STANDARDS — Typography system
   ========================================================================== */

/* Base typography reset */

* {
  font-family: var(--font-family-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
textarea,
label {
  margin: 0;
  padding: 0;
  color: var(--text-primary);
}

/* Header Styles */
h1,
.h1 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h1);
  font-size: var(--font-size-headers-h1);
  line-height: var(--font-line-height-headers-h1);
  letter-spacing: var(--font-letter-spacing-headers-h1);
}

h2,
.h2 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h2);
  font-size: var(--font-size-headers-h2);
  line-height: var(--font-line-height-headers-h2);
  letter-spacing: var(--font-letter-spacing-headers-h2);
}

h3,
.h3 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h3);
  font-size: var(--font-size-headers-h3);
  line-height: var(--font-line-height-headers-h3);
  letter-spacing: var(--font-letter-spacing-headers-h3);
}

h4,
.h4 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h4);
  font-size: var(--font-size-headers-h4);
  line-height: var(--font-line-height-headers-h4);
  letter-spacing: var(--font-letter-spacing-headers-h4);
}

h5,
.h5 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h5);
  font-size: var(--font-size-headers-h5);
  line-height: var(--font-line-height-headers-h5);
  letter-spacing: var(--font-letter-spacing-headers-h5);
}

h6,
.h6 {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-headers-h6);
  font-size: var(--font-size-headers-h6);
  line-height: var(--font-line-height-headers-h6);
  letter-spacing: var(--font-letter-spacing-headers-h6);
}

/* Body Text Styles */
p,
.body-default {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-body-default);
  font-size: var(--font-size-body-default);
  line-height: var(--font-line-height-body-default);
  letter-spacing: var(--font-letter-spacing-body-default);
}

a,
.body-link {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-body-link);
  font-size: var(--font-size-body-link);
  line-height: var(--font-line-height-body-link);
  letter-spacing: var(--font-letter-spacing-body-link);
}

strong,
.body-bold {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-body-bold);
  font-size: var(--font-size-body-bold);
  line-height: var(--font-line-height-body-bold);
  letter-spacing: var(--font-letter-spacing-body-bold);
}

em,
.body-italic {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-body-italic);
  font-style: italic;
  font-size: var(--font-size-body-italic);
  line-height: var(--font-line-height-body-italic);
  letter-spacing: var(--font-letter-spacing-body-italic);
}

.fine-print {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-body-fine-print);
  font-size: var(--font-size-body-fine-print);
  line-height: var(--font-line-height-body-fine-print);
  letter-spacing: var(--font-letter-spacing-body-fine-print);
}

/* Blockquote Styles */
blockquote {
  margin: 0;
  padding: 0;
}

blockquote .blockquote-header {
  font-family: var(--font-family-title);
  font-weight: var(--font-weights-blockquote-header);
  font-size: var(--font-size-blockquote-header);
  line-height: var(--font-line-height-blockquote-header);
  letter-spacing: var(--font-letter-spacing-blockquote-header);
}

blockquote .blockquote-body,
blockquote:not(.blockquote-header) {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-blockquote-body);
  font-size: var(--font-size-blockquote-body);
  line-height: var(--font-line-height-blockquote-body);
  letter-spacing: var(--font-letter-spacing-blockquote-body);
}

/* Button and Interactive Element Styles */
button,
.btn {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-other-button);
  font-size: var(--font-size-other-button);
  line-height: normal;
  letter-spacing: var(--font-letter-spacing-other-button);
}

/* Caption and Small Text */
.caption {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-other-caption);
  font-size: var(--font-size-other-caption);
  line-height: var(--font-line-height-other-caption);
  letter-spacing: var(--font-letter-spacing-other-caption);
}

.overline {
  font-family: var(--font-family-body);
  font-weight: var(--font-weights-other-overline);
  font-size: var(--font-size-other-overline);
  line-height: var(--font-line-height-other-overline);
  text-transform: uppercase;
  letter-spacing: var(--font-letter-spacing-other-overline);
}

/* Responsive Typography */
@media (max-width: 1023px) {

  h1,
  .h1 {
    font-size: clamp(28px, 8vw, var(--font-size-headers-h1));
    line-height: clamp(34px, 9vw, var(--font-line-height-headers-h1));
  }

  h2,
  .h2 {
    font-size: clamp(24px, 6vw, var(--font-size-headers-h2));
    line-height: clamp(30px, 7vw, var(--font-line-height-headers-h2));
  }

  h3,
  .h3 {
    font-size: clamp(22px, 5vw, var(--font-size-headers-h3));
    line-height: clamp(28px, 6vw, var(--font-line-height-headers-h3));
  }
}

/* Typography modifiers */
.text-large {
  font-size: 1.125em;
  line-height: 1.4;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75em;
  line-height: 1.6;
}

/* Text color utilities */
.text-primary {
  color: var(--text-primary);
}

.text-medium {
  color: var(--text-medium);
}

.text-on-light {
  color: var(--text-on-light);
}

/* Font weight utilities */
.font-black {
  font-weight: var(--font-weight-black);
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-regular {
  font-weight: var(--font-weight-regular);
}

/* Text alignment utilities */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* Text decoration utilities */
.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

/* Letter spacing utilities */
.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-normal {
  letter-spacing: 0;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* Line height utilities */
.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-loose {
  line-height: 2;
}


/* ==========================================================================
   5. GRID — Container and row system
   ========================================================================== */

.container {
  width: 100%;
  margin: 0 auto;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
}

@media (max-width: 1023px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Row System using Flexbox */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-.5 * var(--gutter-x));
  margin-left: calc(-.5 * var(--gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * .5);
  padding-left: calc(var(--gutter-x) * .5);
  margin-top: var(--gutter-y);
}

/* Responsive container max-widths */
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-width-desktop);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-width-desktop-md);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-width-desktop-lg);
  }
}


/* ==========================================================================
   6. COMPONENTS — Navigation, footer, buttons, shared UI
   ========================================================================== */

/*
 * BREAKPOINT SYSTEM:
 * Mobile:     0-1023px   (includes tablets, hamburger menu)
 * Desktop-SM: 1024-1199px (full menu, 1100px container)
 * Desktop-MD: 1200-1399px (1300px container)
 * Desktop-LG: 1400px+     (1600px container)
 *
 * Navigation toggles at: 1024px
 * See variables section for centralized breakpoint values
 */

html,
body {
  overflow-x: hidden;
  background: #001c38;
}
/* =====================================================
   2-LAYER NAVIGATION SYSTEM
   Top Bar: Logo | Partners | Demo Button
   Nav Bar: Menu Items with hover dropdowns
   Mobile: Fullscreen overlay with tap-to-expand
   ===================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background: #001c38;
}

.site-topbar {
  padding: 16px 0;
  border-bottom: 1px solid rgba(149, 217, 252, 0.1);
}

.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-topbar__logo {
  flex-shrink: 0;
  user-select: none;
}

.site-topbar__logo .site-logo--desktop {
  width: 220px;
  height: auto;
  display: block;
}

.site-topbar__logo .site-logo--mobile {
  width: 40px;
  height: auto;
  display: none;
}

.site-topbar__partners {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  user-select: none;
}

.site-topbar__partners img {
  width: 280px;
  height: auto;
}

.site-topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Nav-scoped compact button overrides */
.site-topbar__actions .button-green,
.site-topbar__actions .button-blue {
  padding: 8px 16px;
  font-size: 14px;
  height: 40px;
  white-space: nowrap;
  letter-spacing: 1.25px;
}

.site-topbar__actions .button-green img,
.site-topbar__actions .button-green svg,
.site-topbar__actions .button-blue img,
.site-topbar__actions .button-blue svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  user-select: none;
}

/* Hamburger - hidden on desktop */
.site-topbar__toggler {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: none;
  padding: 4px 8px;
  min-width: 52px;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s ease;
}

@media (hover: hover) {
  .site-topbar__toggler:hover {
    background: rgba(149, 217, 252, 0.1);
  }
}

.site-topbar__toggler:active {
  background: rgba(149, 217, 252, 0.1);
}

.site-topbar__toggler-icon {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28204, 229, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.site-topbar__toggler-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-inverted-high, #cce5fff2);
  line-height: 1;
}

/* Hamburger X state when menu open */
.site-topbar__toggler.is-active .site-topbar__toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28204, 229, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M7 23l16-16'/%3e%3c/svg%3e");
}

/* ----- NAV BAR (Desktop) ----- */
.desktop-nav {
  padding: 12px 0;
}

.desktop-nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Align first menu item with logo/content by removing left padding */
.desktop-nav-menu .desktop-nav-item:first-child .desktop-nav-link {
  padding-left: 0;
}

.desktop-nav-item {
  position: relative;
  list-style: none;
}

.desktop-nav-link {
  color: var(--Text-Light-Blue, rgba(149, 217, 252, 0.87));
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav-link:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Dropdown toggle buttons - keep hover feedback but no pointer cursor (dropdown opens on hover, not click) */
button.desktop-nav-link.dropdown-toggle {
  cursor: default;
  background: none;
  border: none;
}

/* Dropdown arrow icon */
.desktop-nav-link .siu-icon {
  font-size: 10px;
  width: 10px;
  height: 4px;
  transition: transform 0.25s ease;
  margin-left: 2px;
}

/* Arrow flip and color change on hover for dropdown items */
.desktop-nav-item.dropdown:hover .desktop-nav-link .siu-icon {
  transform: rotate(180deg);
  filter: brightness(0) invert(1); /* Makes the icon white */
}

/* ----- DROPDOWN MENUS (Desktop - hover) ----- */
.desktop-nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  display: flex;
  padding: 12px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border-radius: 12px;
  border: 1px solid rgba(149, 217, 252, 0.2);
  background: #001c38;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s;
  z-index: 1021;
  list-style: none;
  min-width: 200px;
}

/* Hover bridge to prevent menu from closing when moving mouse through the gap */
.desktop-nav-dropdown::before {
  content: "";
  position: absolute;
  top: -8px; /* Cover the 8px margin-top gap */
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

/* Show dropdown on hover */
.desktop-nav-item.dropdown:hover .desktop-nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.desktop-nav-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.desktop-nav-dropdown li a {
  display: block;
  padding: 8px 0;
  color: rgba(149, 217, 252, 0.87);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.15s ease;
}

.desktop-nav-dropdown li a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ----- MOBILE MENU OVERLAY ----- */
.mobile-nav {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #001c38;
  z-index: 1019;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s;
  display: flex;
  flex-direction: column;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: rgba(149, 217, 252, 0.87);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

@media (hover: hover) {
  .mobile-nav-link:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

/* Dropdown toggle: label left, arrow right */
button.mobile-nav-link.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  justify-content: space-between;
}

/* Right-pointing chevron arrow */
.mobile-nav-link .siu-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0;
  transition: transform 0.25s ease;
  filter: none;
}

.mobile-nav-link .siu-icon::before {
  content: '' !important;
  font-family: inherit;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: -2px;
}

.mobile-nav-item.dropdown.is-open .mobile-nav-link .siu-icon {
  transform: rotate(90deg);
  filter: none;
}

/* Dropdown content */
.mobile-nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.15);
}

.mobile-nav-item.dropdown.is-open .mobile-nav-dropdown {
  max-height: 700px;
}

.mobile-nav-dropdown li a {
  display: block;
  padding: 12px 24px 12px 40px;
  color: rgba(149, 217, 252, 0.87);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.15s ease;
}

@media (hover: hover) {
  .mobile-nav-dropdown li a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

/* CTA buttons at bottom */
.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  margin-top: auto;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav-buttons {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-buttons .button-blue,
.mobile-nav-buttons .button-green {
  width: 100%;
  justify-content: center;
}

/* ----- RESPONSIVE ----- */

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .site-topbar__toggler {
    display: none !important;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Tablet/Mobile: 0-1023px */
@media (max-width: 1023px) {
  .site-topbar {
    padding: 12px 0;
  }

  .site-topbar__inner {
    padding: 0;
  }

  .site-topbar__logo .site-logo--desktop {
    display: none;
  }

  .site-topbar__logo .site-logo--mobile {
    display: block;
  }

  .site-topbar__partners {
    display: none;
  }

  .site-topbar__actions {
    gap: 12px;
  }

  .site-topbar__actions .button-green,
  .site-topbar__actions .button-blue {
    display: none;
  }

  .site-topbar__toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop nav bar on mobile */
  .desktop-nav {
    display: none;
  }

  /* Adjust mobile menu top position */
  .mobile-nav {
    top: 61px;
  }

  /* Body scroll lock when menu open */
  body.site-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

/* Small mobile adjustments */
@media (max-width: 400px) {
  .site-topbar__actions .button-green {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Shared buttons */
.button-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  background: var(--brand-green, #00dd8d);
  color: #002b57;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.button-green img,
.button-green svg,
.button-blue img,
.button-blue svg {
  user-select: none;
  pointer-events: none;
}

.button-green:hover {
  background: #00c97f;
  box-shadow: 0 4px 20px rgba(0, 221, 141, 0.3);
}

.button-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  background: #2A5580;
  color: rgba(204, 229, 255, 0.95);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.button-blue:hover {
  background: #325f8f;
  box-shadow: 0 4px 20px rgba(42, 85, 128, 0.3);
}

.desktop-nav-item.dropdown {
  position: relative;
}

.is-homepage .site-footer {
  padding-top: 60px !important;
}

@media (max-width: 1023px) {
  .is-homepage .site-footer {
    padding-top: 40px !important;
  }
}

.site-footer {
  background: #001c38;
  color: var(--Text-Light-Blue, rgba(149, 217, 252, 0.87));
  padding: 60px 0;
}

@media (max-width: 1023px) {
  .site-footer {
    padding: 40px 0;
  }
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-left: 0;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-left: -21px;
}

.footer-logo a {
  display: block;
}

.footer-logo img,
.footer-logo svg {
  width: auto;
  height: auto;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  margin-top: 40px;
}

.footer-copyright {
  margin: 0;
  color: var(--Text-Light-Blue, rgba(149, 217, 252, 0.87));
}

@media (max-width: 1023px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 24px;
    padding-left: 6px;
  }
}
@media (max-width: 1023px) {
  .bottom_footer_details {
    display: flex;
    justify-content: center;
  }
}

/* Update footer links color */
.site-footer-link {
  color: var(--Text-Light-Blue, rgba(149, 217, 252, 0.87));
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer-link:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer info styles */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-row .emoji {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.info-row .text {
  flex: 1;
  min-width: 180px;
  text-align: left;
  color: var(--Text-Light-Blue, rgba(149, 217, 252, 0.87));
}
.info-row a:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1023px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-col {
    display: none;
  }
}

.footer-col--google {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* Google Reviews Emblem (shared partial) */
.google-emblem {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.google-emblem__logo {
  flex-shrink: 0;
}

.google-emblem__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-emblem__stars {
  display: flex;
  gap: 3px;
}

.google-emblem__score {
  color: #e8f4ff;
  font-size: 14px;
  font-weight: 600;
}

.google-emblem__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(204, 229, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  margin-left: 8px;
  transition: color 0.2s ease;
}

.google-emblem__cta svg {
  transition: transform 0.2s ease;
}

.google-emblem:hover .google-emblem__cta {
  color: var(--brand-green, #00dd8d);
}

.google-emblem:hover .google-emblem__cta svg {
  transform: translateX(3px);
}

/* Phone number styling */
.phone-number {
  display: inline;
}


@media (max-width: 1023px) {
  .phone-number {
    display: none;
  }

  .phone-link {
    display: inline;
  }
}

/* Special styling for address row */
.address-row {
  align-items: flex-start;
}

.address-row .text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-style: normal;
}

.address-row .text,
.address-row .text span {
  color: rgba(149, 217, 252, 0.87) !important;
}

.address-row .text span {
  display: block;
  text-align: left;
  width: 100%;
}

/* Mobile styles - legacy utility classes */
.large-only {
  display: block;
}
.small-only {
  display: none;
}

@media (max-width: 1023px) {
  .large-only {
    display: none !important;
  }
  .small-only {
    display: block;
  }
}

/* Mobile footer styles */
@media (max-width: 1023px) {
  .footer-content {
    padding: 0;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    width: auto;
    margin: auto;
    max-width: 300px;
    transform: none;
  }

  .footer-main {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    gap: 16px;
  }

  .footer-logo {
    justify-content: flex-start;
    margin-left: -12px;
  }

  .footer-info {
    align-items: flex-start;
    padding-left: 6px;
    gap: 6px;
  }

  .info-row {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .info-row .emoji {
    width: 24px;
    text-align: right;
  }

  .info-row .text {
    min-width: 180px;
    text-align: left;
    margin-left: 0;
  }

  .address-row {
    align-items: flex-start;
  }

  .address-row .text {
    align-items: flex-start;
  }

  .site-footer .container-fluid {
    align-items: center;
  }

  .site-footer-logo {
    margin-left: 10px;
  }

  .site-nav {
    margin-left: 0px;
  }

  .site-nav .container {
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    justify-content: space-between;
    transform: none;
    flex-wrap: wrap;
  }

  .navbar-collapse {
    position: fixed;
    top: 85px;
    left: 0;
    background: #001c38;
    width: 100%;
    z-index: 1021;
  }

  .desktop-nav-link {
    font-size: 18px;
  }

  .desktop-nav-item.dropdown {
    padding: 0.5rem 1rem;
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .desktop-nav-link.show,
  .desktop-nav-link.dropdown-toggle.show {
    background: none !important; /* Override any Bootstrap background */
    background-image: none !important;
    background-color: transparent !important;
  }
  /* Add padding to the body to account for the fixed navbar */
  .site-body {
    padding-top: 72px; /* Adjust this value based on your navbar height */
  }

  .desktop-nav-dropdown {
    margin-top: 1.4rem !important;
  }
}

/* Hide CookieConfirm floating icon - users can access settings via /cookieverklaring/ */
#cc-icon {
  display: none !important;
}


/* ==========================================================================
   7. WEBSITE — Shared styles for marketing pages
   ========================================================================== */

/* Typography overrides (website-specific) */

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #95d9fc;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  color: #95d9fc;
}

h3 {
  letter-spacing: 0.01em;
  color: #95d9fc;
  font-size: 24px;
  font-weight: 600;
}

main p {
  color: var(--text-blue);
  line-height: 1.3;
}

/* Hero section */

.hero-section {
  font-weight: 600;
  text-align: center;
  padding-top: 200px;
}

.hero-section h1,
.hero-section p {
  max-width: 1000px;
  margin: 0 auto 24px;
}

.hero-section p {
  font-size: 20px;
}

/* Contact / Demo hero variants */

.contact-form-section .hero-section {
  text-align: left;
  padding-top: 200px;
  margin-bottom: 40px;
}

.contact-form-section.no-hero-margin .hero-section {
  margin-bottom: 0;
}

.contact-form-section .hero-section h1 {
  text-align: left;
  margin: 0 0 16px 0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 1px;
  color: rgba(204, 229, 255, 0.95);
  max-width: 800px;
}

.contact-form-section .hero-section .hero-description {
  text-align: left;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0 0 0 0;
  max-width: 800px;
  color: rgba(204, 229, 255, 0.95);
}

/* Demo page layout + Calendly */

.demo-page-layout {
  display: flex;
  gap: 8px;
}

.demo-page-layout .demo-left {
  flex: 0 0 55%;
  align-self: flex-start;
}

.demo-page-layout .demo-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.demo-page-layout .demo-right img {
  max-width: 100%;
  height: auto;
}

.demo-page-layout .hero-section {
  text-align: left;
  padding-top: 0;
  margin-bottom: 40px;
}

.demo-page-layout .calendly-inline-widget {
  width: 100%;
  height: 650px;
}

@media (max-width: 1023px) {
  .demo-page-layout {
    flex-direction: column;
  }

  .demo-page-layout .demo-left {
    flex: 1;
  }

  .demo-page-layout .demo-right {
    display: none;
  }

  .demo-page-layout .calendly-inline-widget {
    width: 100%;
    height: 950px;
  }
}

.calendly-inline-widget iframe {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.calendly-inline-widget iframe::-webkit-scrollbar {
  display: none;
}

/* Inline links */

.link {
  color: #00dd8d;
  text-decoration: underline;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.phone-link {
  color: #00dd8d;
  text-decoration: none;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  pointer-events: none;
  cursor: default;
}

.phone-link:hover {
  color: #00dd8d;
  text-decoration: none;
}

@media (max-width: 1023px) {
  .phone-link {
    pointer-events: auto;
    cursor: pointer;
  }

  .phone-link:hover {
    text-decoration: underline;
    color: #FFFFFF;
  }
}

/* Highlight (integration category pages) */

.highlight {
  color: var(--accent-green);
  text-decoration: underline;
}

/* Image left/right sections (integration category pages) */

.image-left-section,
.image-right-section {
  max-width: 1132px;
  margin: 0 auto;
  margin-top: 160px;
  display: grid;
  gap: 32px;
}

.image-left-section {
  grid-template-columns: 0.65fr 1.35fr;
  color: var(--text-blue);
}

.image-right-section {
  grid-template-columns: 1.35fr 0.65fr;
}

.image-left-section-image,
.image-right-section-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text grid box + checkmark (vacature page) */

.text-grid-box {
  background: linear-gradient(to bottom, #004f89, #003a71);
  padding: 0;
  width: 100%;
  border-radius: 8px;
  min-height: 0;
  position: relative;
  height: 100%;
  grid-column: span 1;
  justify-content: center;
  display: flex;
  align-items: center;
}

.text-grid-box p {
  margin: 8px 8px;
  width: 100%;
}

.text-grid-box.nogradient {
  background: var(--blue-300);
  max-width: 30vw;
  min-height: 80px;
}

.text-grid-box.double {
  grid-column: span 2;
  justify-content: center;
}

.checkmark-alternate {
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

/* Narrow section (vacature page) */

.narrow-section h2,
.narrow-description {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.narrow-section {
  padding-top: 80px;
}

/* Contact form */

.contact-form-wrapper {
  max-width: 1326px;
  margin: 0 auto 80px 0;
  padding: 0 0 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  align-items: flex-start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 800px;
}

.form-group.full-width {
  width: 100%;
  max-width: 800px;
}

/* Fix Cloudflare Turnstile visibility and reserve space to prevent CLS */
.form-group:has(.cf-turnstile) {
  display: block;
  min-height: 75px;
}

.cf-turnstile {
  min-height: 75px;
}

.form-group label {
  color: rgba(204, 229, 255, 0.95);
  font-size: 16px;
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  line-height: 24px;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  background-color: #000e1c;
  border: 1px solid #2a5580;
  border-radius: 4px;
  overflow: hidden;
  color: var(--Text-Standard-Standard-Disabled, rgba(204, 229, 255, 0.46));
  -webkit-text-fill-color: var(--Text-Standard-Standard-Disabled, rgba(204, 229, 255, 0.46));
  text-overflow: ellipsis;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--Font-Size-Body-Default, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Font-Line-Height-Body-Default, 24px);
  letter-spacing: var(--Font-Letter-Spacing-Body-Default, 1px);
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  height: 52px;
}

.form-group input:valid,
.form-group input:invalid,
.form-group textarea:valid,
.form-group textarea:invalid {
  color: var(--Text-Standard-Standard-Disabled, rgba(204, 229, 255, 0.46));
  -webkit-text-fill-color: var(--Text-Standard-Standard-Disabled, rgba(204, 229, 255, 0.46));
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(204, 229, 255, 0.46);
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid #2a5580;
  outline: none;
}

/* Override browser autofill styling - WebKit (Chrome, Safari) */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #000e1c inset !important;
  -webkit-text-fill-color: #CCE5FF !important;
  box-shadow: 0 0 0 1000px #000e1c inset !important;
  color: #CCE5FF !important;
  caret-color: #CCE5FF !important;
  background-color: #000e1c !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
  -webkit-transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s !important;
}

/* Override browser autofill styling - Standard (Firefox, modern browsers) */
.form-group input:autofill,
.form-group input:autofill:hover,
.form-group input:autofill:focus,
.form-group input:autofill:active,
.contact-form input:autofill,
.contact-form input:autofill:hover,
.contact-form input:autofill:focus,
.contact-form input:autofill:active,
.contact-form textarea:autofill,
.contact-form textarea:autofill:hover,
.contact-form textarea:autofill:focus,
.contact-form textarea:autofill:active {
  box-shadow: 0 0 0 1000px #000e1c inset !important;
  -webkit-text-fill-color: #CCE5FF !important;
  color: #CCE5FF !important;
  caret-color: #CCE5FF !important;
  background-color: #000e1c !important;
}

.form-group textarea {
  min-height: 205px;
  height: 205px;
  resize: none;
  padding-top: 20px;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 14px;
}

/* Contact form error message */
.contact-form-error {
  color: #ff6b6b;
  font-size: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Submit button */
.btn-submit-contact {
  background-color: #00dd8d;
  color: var(--Icons-On-Light-Image-Icon-on-Light-Image-2-High-Emphasis, rgba(5, 56, 107, 0.95));
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: var(--Font-Size-Other-Button, 14px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--Font-Line-Height-Other-Button, 16px);
  letter-spacing: var(--Font-Letter-Spacing-Other-Button, 1.25px);
  cursor: pointer;
  transition: opacity 0.2s ease;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  min-width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.btn-submit-contact:hover {
  opacity: 0.9;
}

.btn-submit-contact .btn-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.submit-group {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
}

.contact-form-section .submit-group {
  justify-content: flex-start;
  width: 100%;
}

.contact-form-section .form-row .submit-group {
  justify-content: flex-start;
  width: 100%;
  flex: 1;
}

/* FAQ (details/summary accordion) */

.page--dark .page-layout__content details {
  border-bottom: 1px solid rgba(204, 229, 255, 0.1);
  padding: 16px 0;
}

.page--dark .page-layout__content details:first-of-type {
  border-top: 1px solid rgba(204, 229, 255, 0.1);
}

.page--dark .page-layout__content details summary {
  cursor: pointer;
  color: rgba(204, 229, 255, 0.95);
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.page--dark .page-layout__content details summary::-webkit-details-marker {
  display: none;
}

.page--dark .page-layout__content details summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: rgba(204, 229, 255, 0.4);
  flex-shrink: 0;
}

.page--dark .page-layout__content details[open] summary::after {
  content: "\2212";
}

.page--dark .page-layout__content details p {
  margin-top: 12px;
  color: rgba(204, 229, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.page--dark .page-layout__content details p a {
  color: var(--brand-green, #00dd8d);
  text-decoration: underline;
}

/* Contact Simple (CTA Box) — shared across all page--dark pages */

.page--dark .contact-simple {
  margin-top: 60px;
  background: #011627;
  border: 1px solid var(--blue-400, #05386B);
  border-radius: 16px;
  padding: 32px;
  max-width: 50%;
}

.page--dark .contact-simple__title {
  color: rgba(204, 229, 255, 0.95);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.page--dark .contact-simple__subtitle {
  color: rgba(204, 229, 255, 0.7);
  font-family: var(--font-family-primary, "Source Sans 3", sans-serif);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.page--dark .contact-simple__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.page--dark .contact-simple__phone {
  color: rgba(204, 229, 255, 0.7);
  font-size: 14px;
}

.page--dark .contact-simple__phone a {
  color: var(--brand-green, #00dd8d);
  text-decoration: underline;
}

.page--dark .contact-simple__phone a:hover {
  color: rgba(204, 229, 255, 0.95);
}

/* Responsive — Mobile & Tablet (below 1024px) */

@media (max-width: 1023px) {
  .hero-section {
    padding-top: 80px;
  }

  .contact-form-section .hero-section {
    padding-top: 32px !important;
    margin-bottom: 24px;
  }

  .contact-form-wrapper {
    padding: 0;
  }

  .form-group,
  .submit-group {
    padding-left: 0;
    padding-right: 0;
  }

  .image-left-section,
  .image-right-section {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .image-left-section-image,
  .image-right-section-image {
    display: none;
  }

  .narrow-section {
    padding: 0 18px;
  }

  .text-grid-box.nogradient {
    max-width: 90vw;
    min-height: 0px;
  }

  .page--dark .contact-simple {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page--dark .contact-simple__buttons {
    flex-direction: column;
  }
  .page--dark .contact-simple__buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .contact-form-section .hero-section {
    padding-top: 24px !important;
    margin-bottom: 20px;
  }

  .contact-form-section .hero-section h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
