/*#################################################
  General Theme Styles (block CSS located in /template-parts/)
################################################# */

/* Abstracts */

/* additional variables located in postcss.config.js */

/* check sharedVars for more details */

:root {
  /* Primitives - Mapped to theme.json */
  --color-brand-white: var(--wp--preset--color--brand-white, #FFFFFF);
  --color-brand-alice-blue: var(--wp--preset--color--brand-alice-blue, #F7FDFF);
  --color-brand-light-blue: var(--wp--preset--color--brand-light-blue, #C0EBF6);
  --color-brand-air-force-blue: var(--wp--preset--color--brand-air-force-blue, #5C8DA5);
  --color-brand-ink-black: var(--wp--preset--color--brand-ink-black, #041A2A);
  --color-brand-black: var(--wp--preset--color--brand-black, #000000);
  --color-grey-50: var(--wp--preset--color--grey-50, #F1F1F1);
  --color-grey-200: var(--wp--preset--color--grey-200, #D3D3D3);
  --color-grey-400: var(--wp--preset--color--grey-400, #AFAFAF);
  --color-grey-600: var(--wp--preset--color--grey-600, #858585);
  --color-grey-800: var(--wp--preset--color--grey-800, #343434);

  /* Radius Primitives */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-2xl: 128px;
  --radius-3xl: 360px;

  /* Breakpoints */
  --bp-sm: 520px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1440px;

  /* Spacing */
  /* Fluid Spacing (80/40) */
  --space-lg: 80px;
  --space-md: 40px;

  /* Fixed Spacing */
  --space-fixed-20: 20px;
  --space-fixed-40: 40px;
  --space-fixed-80: 80px;

  /* Tokens - Light Mode */
}

@media (max-width: 767px) {

:root {
    --space-lg: 40px;
    --space-md: 20px;
}
  }

:root {

  --padding-container: 40px;
}

@media(max-width: 767px) {

:root {
    --padding-container: 20px;
}
  }

:root {
  --text-text-primary: var(--color-brand-ink-black);
  --text-text-secondary: var(--color-grey-600);
  --text-text-brand: var(--color-brand-ink-black);
  --text-text-invert: var(--color-brand-white);
  --surface-surface-primary: var(--color-brand-alice-blue);
  --surface-surface-secondary: var(--color-brand-white);
  --surface-surface-invert: var(--color-brand-ink-black);
  --surface-surface-brand: var(--color-brand-light-blue);
  --surface-surface-overlay: rgba(4, 26, 42, 0.2);
  --background-background-primary: var(--color-brand-alice-blue);
  --background-background-secondary: var(--color-brand-white);
  --background-background-invert: var(--color-brand-ink-black);
  --border-stroke-border-primary: var(--color-brand-ink-black);
  --border-stroke-border-secondary: #FFFFFF;
  --border-stroke-border-invert: #FFFFFF;
  --border-stroke-border-none: transparent;
  --spacing-none: 0px;
  --radius-radius-minimal: var(--radius-sm);
  --radius-radius-rounded: var(--radius-lg);
  --radius-radius-full: var(--radius-3xl);
}

[data-theme="dark"] {
  /* Tokens - Dark Mode */
  --text-text-primary: var(--color-brand-white);
  --text-text-secondary: var(--color-grey-200);
  --text-text-brand: #9747FF;
  --text-text-invert: #9747FF;
  --surface-surface-primary: #9747FF;
  --surface-surface-secondary: #9747FF;
  --surface-surface-invert: #9747FF;
  --surface-surface-brand: #9747FF;
  --background-background-primary: var(--color-brand-alice-blue);
  --background-background-secondary: var(--color-brand-white);
  --background-background-invert: var(--color-brand-ink-black);
  --border-stroke-border-primary: #9747FF;
  --border-stroke-border-secondary: #9747FF;
  --border-stroke-border-invert: #9747FF;
  --surface-surface-overlay: rgba(4, 26, 42, 0.2);
}

/* Base Styles */

/*
  CSS based on Chris Coyer's excellent reset: https://frontendmasters.com/blog/the-coyier-css-starter/
  Modified by 👑 to be less opinionated, though
  @layer used to lower priority, allowing theme styles to override more easily
*/

@layer reset {
  html {
    color-scheme: light;
    -moz-tab-size: 2;
      -o-tab-size: 2;
         tab-size: 2;
    hanging-punctuation: first allow-end last;
    word-break: break-word;
  }

  body {
    margin: 0;
    padding: 0;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  h1,
  h2,
  h3 {
    line-height: 1.1;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-wrap: balance;
    margin-block-start: 0;
  }

  p,
  li,
  dd {
    text-wrap: pretty;
  }

  a {
    text-underline-offset: 2px;
  }

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sub {
    inset-block-end: -0.25em;
  }

  sup {
    inset-block-start: -0.5em;
  }

  ul,
  ol,
  dl {
    margin: 0;
    padding: 0;
  }

  img,
  video,
  iframe {
    block-size: auto;
    border-style: none;
    display: block;
    max-inline-size: 100%;
  }

  figure {
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
  }

  input,
  select,
  textarea,
  button {
    font: inherit;
  }

  label {
    display: block;
  }

  input:not(
    :where(
      [type="submit"],
      [type="checkbox"],
      [type="radio"],
      [type="button"],
      [type="reset"]
    )
  ) {
    inline-size: 100%;
  }

  button,
  input:where(
    [type="submit"],
    [type="reset"],
    [type="button"]
  ) {
    cursor: pointer;
  }

  textarea {
    field-sizing: content;
    min-block-size: 5lh;
    inline-size: 100%;
  }

  pre,
  code,
  kbd,
  samp {
    font-family: ui-monospace, SFMono-Regular, monospace;
  }

  svg {
    fill: currentColor;
  }

  [aria-disabled="true" i],
  [disabled] {
    cursor: not-allowed;
  }

  [disabled],
  label:has(input[disabled]) {
    opacity: 0.5;
  }

    [disabled] [disabled], label:has(input[disabled]) [disabled] {
      opacity: 1;
    }

  hr {
    border-style: solid;
    border-width: 1px 0 0;
    color: inherit;
    height: 0;
    overflow: visible;
  }

  :target {
    scroll-margin: 3rlh;
  }

  table {
    caption-side: bottom;
    border-collapse: collapse;
  }

  [role="region"][aria-labelledby][tabindex] {
    overflow: auto;
  }

  [hidden] {
    display: none !important;
  }

  .screenreader-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  :focus-visible {
    outline-offset: 2px;
  }

  @media (prefers-reduced-motion: no-preference) {
    @view-transition {
      navigation: auto;
    }

    html {
      interpolate-size: allow-keywords;
    }
      html:focus-within {
        scroll-behavior: smooth;
      }
  }
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-brand-air-force-blue) var(--color-brand-ink-black) ;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-brand-ink-black);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-grey-600);
    border: 2px solid var(--color-brand-ink-black);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-grey-400);
}

html, body { overflow-x:hidden; overflow-x: clip; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-background-primary);
}

.skip-link {
    position: absolute;
    top: -1000px;
    width: 0px;
    left: 50%;
    border: 1px solid black;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 8px;
    font-family: "Neue Haas Grotesk Text Pro";
    z-index: 10000;
    text-decoration: none;
    font-weight: bold;
}

.skip-link:focus {
        top: 20px;
        width: auto;
    }

@media(max-width: 767px) {

.show-tablet-desktop {
    display: none !important
}
  }

@media(min-width: 768px) {

.hide-tablet-desktop {
    display: none !important
}
  }

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

input:-webkit-autofill:-webkit-autofill, input:-webkit-autofill:-webkit-autofill:hover, input:-webkit-autofill:-webkit-autofill:focus, input:-webkit-autofill:-webkit-autofill:active {
        box-shadow: 0 0 0px 1000px transparent inset !important;

        -webkit-text-fill-color: var(--text-text-primary, #041A2A) !important;

        -webkit-transition: background-color 5000s ease-in-out 0s;

        transition: background-color 5000s ease-in-out 0s;
    }

input:not([type="submit"]):-webkit-autofill:-webkit-autofill,
    input:not([type="submit"]):-webkit-autofill:-webkit-autofill:hover,
    input:not([type="submit"]):-webkit-autofill:-webkit-autofill:focus,
    input:not([type="submit"]):-webkit-autofill:-webkit-autofill:active,
    input:-internal-autofill-selected:-webkit-autofill,
    input:-internal-autofill-selected:-webkit-autofill:hover,
    input:-internal-autofill-selected:-webkit-autofill:focus,
    input:-internal-autofill-selected:-webkit-autofill:active,
    input:autofill:-webkit-autofill,
    input:autofill:-webkit-autofill:hover,
    input:autofill:-webkit-autofill:focus,
    input:autofill:-webkit-autofill:active {
        box-shadow: 0 0 0px 1000px transparent inset !important;

        -webkit-text-fill-color: var(--text-text-primary, #041A2A) !important;

        -webkit-transition: background-color 5000s ease-in-out 0s;

        transition: background-color 5000s ease-in-out 0s;
    }

/* body {} */

h2 {
  color: var(--text-text-primary, #041A2A);
  font-family: "Corporate A Cond";
  font-size: 110px;
  font-style: normal;
  font-weight: 500;
  line-height: 114px;
  letter-spacing: -2.2px;
  margin:0 0 40px;
  text-align: center;
}

.hero-title {
  text-align: center;
  font-family: "Corporate A Cond";
  font-weight: 500;
  line-height: 96.667%;
  margin: 0;
  font-size: clamp(80px, calc(80px + (240 - 120) * ((100vw - 390px) / (1728 - 390))), 240px);
  letter-spacing: -9.6px;
}

@media(max-width: 1024px) {

.hero-title { letter-spacing: -7.6px
} }

@media(max-width: 768px) {

.hero-title { letter-spacing: -4px
} }

.section-title {
  font-size: clamp(56px, calc(56px + (110 - 56) * ((100vw - 390px) / (1728 - 390))), 110px);
  font-style: normal;
  font-weight: 500;
  line-height: 106%;
  letter-spacing: -2.2px;
  margin-bottom: 20px;
  text-align: center;
}

@media(max-width: 767px) {

.section-title {
    letter-spacing: -1.12px;
    font-size:48px;
    margin-bottom: 10px
}
  }

.section-description {
  color: var(--text-text-primary, #041A2A);
  text-align: center;
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: clamp(20px, calc(20px + (28 - 20) * ((100vw - 390px) / (1728 - 390))), 28px);  
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.56px;
  margin-top: 0;
}

.large-bold {
  color: var(--text-text-primary, #041A2A);
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.429%;
  letter-spacing: -0.56px;
  text-align: center;
}

h2 + .large-bold {
  margin-bottom: 80px;
}

.eyebrow {
  color: var(--text-text-primary, #041A2A);
  text-align: center;
  font-family: "Neue Haas Grotesk Text Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 111.111%;
}

@media(max-width: 767px) {

.eyebrow {
    font-size: 16px
}
  }

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
  }

@font-face {
  font-family: "Corporate A Cond";
  src: url('../fonts/corp-a-cond-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url('../fonts/nhg-display-45-light.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url('../fonts/nhg-display-55-roman.woff2') format('woff2');
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url('../fonts/nhg-display-65-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url('../fonts/nhg-display-65-medium.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url('../fonts/nhg-display-75-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Text Pro";
  src: url('../fonts/nhg-text-55-roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Text Pro";
  src: url('../fonts/nhg-text-56-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Text Pro";
  src: url('../fonts/nhg-text-75-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Text Pro";
  src: url('../fonts/nhg-text-76-bold-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/**
 * ─────────────────────────────────────────────────────────
 * TEXT WAVE REVEAL ANIMATION 
 * ─────────────────────────────────────────────────────────
 */

.wr-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.08em;
    line-height: inherit;
    padding-right: 0.1em;
    margin-right: -0.1em;
    backface-visibility: hidden;
}

.wr-word {
    display: inline-block;
    white-space: pre;
    line-height: inherit;
    will-change: transform, opacity;
    padding-right: 0.1em;
  margin-right: -0.1em;
}

/* Components */

.block__inner {
    margin: 0 auto;
    max-width: 1300px;
}

.block__inner--padded {
        padding: 0 var(--space-lg);
    }

.block__inner--full {
        max-width:none;
    }

.btn {
  background: var(--surface-surface-invert, #041A2A);
  border-radius: var(--radius-radius-full, 360px);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  padding: 16px 24px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 767px) {

.btn {
    padding: 16px 20px
}
  }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

.btn--ghost {
    background: rgba(213, 213, 213, 0.20);
  }

.btn--primary {
    background: var(--surface-surface-invert, #041A2A);
    color: var(--text-text-invert, #FFF);
  }

.btn--secondary {
    background: var(--surface-surface-secondary, #FFF);
    color: var(--text-text-primary, #041A2A);
  }

.btn--glass {
    position: relative;
    overflow: hidden;
    color: white;
  
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
 
  }

.btn--glass::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px; /* border thickness */

      background: linear-gradient(
        -55deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.2) 20%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.2) 80%,
        rgba(255,255,255,0.9)
      );
 
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
    }

.btn--light-blue {
    position: relative;
    overflow: hidden;
    color: var(--color-brand-ink-black, #041A2A);
    background: var(--color-brand-light-blue, #C0EBF6);
    
  }

.btn--light-blue::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px; /* border thickness */
      pointer-events: none;
    }

.btn svg {
    width: 16px;
    height: 16px;
  }

.block-error-404 {
    min-height: 80vh !important;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 768px) {

.block-error-404 {
        padding: 80px 0
}
    }

.block-error-404 .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 840px;
        padding: 0 var(--space-md);
    }

.block-error-404 .container .content {
            text-align: center;
        }

.block-error-404 .container .content h1 {
                color: var(--text-text-primary, #041A2A);
                text-align: center;
                margin: 0;
                font-family: "Corporate A Cond";
                font-size: clamp(160px, calc(160px + (240 - 160) * ((100vw - 390px) / (1444 - 390))), 240px);
                font-style: normal;
                font-weight: 500;
                line-height: 96%;
                letter-spacing: -9.6px;
                text-transform: capitalize;
            }

.block-error-404 .container .content h2 {
                color: var(--text-text-primary, #041A2A);
                text-align: center;
                font-family: "Neue Haas Grotesk Text Pro";
                font-size: clamp(20px, calc(20px + (28 - 20) * ((100vw - 390px) / (1728 - 390))), 28px);
                font-style: normal;
                font-weight: 700;
                line-height: 121.429%;
                letter-spacing: -0.56px;
                margin: 0;
                width: 100%;
                text-wrap: unset;
                margin: 40px 0 80px;
            }

@media(max-width: 768px) {

.block-error-404 .container .content h2 {
                    margin: 20px 0 40px
            }
                }

body.error404 {
    background: var(--surface-surface-primary, #F7FDFF);
    animation: background-color-change 3s forwards;
}

body.error404 footer {
        background: var(--surface-surface-primary, #F7FDFF);
        animation: background-color-change 3s forwards;
    }

@keyframes background-color-change {
    0% {
        background: var(--surface-surface-primary, #F7FDFF);
    }
    
    100% {
       background: var(--surface-surface-brand, #C0EBF6);
    }
}