@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-navy: #010767;
  --color-navy-deep: #020219;
  --color-navy-process: #02021b;
  --color-ink: #040c6d;
  --color-blue: #0938df;
  --color-blue-mid: #457be1;
  --color-accent: #5697fe;
  --color-maroon: #b0002d;
  --color-maroon-cta: #ce0637;
  --color-border-glass: #151515;
  --color-rule: #848282;
  --font-display: "Montserrat", sans-serif;
  --font-accent: "Instrument Sans", sans-serif;
  --font-card: "Inter", sans-serif;
  --container-max: 107.5rem;
  --container-pad: clamp(1.25rem, calc(100 / 1920 * 100vw), 6.25rem);
  --radius-logo: 0.2739rem;
  --radius-btn: 1rem;
  --radius-glass: 1.25rem;
  --radius-pill: 1.875rem;
  --radius-card: 1.25rem;
  --radius-section: 2.8125rem;
  --shadow-logo: 0 0.411rem 4.657rem rgba(0, 0, 0, 0.13),
    0 0.172rem 1.945rem rgba(0, 0, 0, 0.09),
    0 0.092rem 1.04rem rgba(0, 0, 0, 0.08),
    0 0.051rem 0.583rem rgba(0, 0, 0, 0.06);
  --shadow-form: 4px 4px 15px rgba(0, 0, 0, 0.15);
  --shadow-icon: 0 15px 80px rgba(0, 0, 0, 0.07),
    0 6.267px 33.422px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 0 104px rgba(0, 0, 0, 0.09),
    0 0 43.449px rgba(0, 0, 0, 0.06);
  --fs-80: clamp(3.125rem, calc(80 / 1920 * 100vw), 5rem);
  --fs-64: clamp(2.5rem, calc(64 / 1920 * 100vw), 4rem);
  --fs-60: clamp(2.375rem, calc(60 / 1920 * 100vw), 3.75rem);
  --fs-48: clamp(1.875rem, calc(48 / 1920 * 100vw), 3rem);
  --fs-40: clamp(1.5rem, calc(40 / 1920 * 100vw), 2.5rem);
  --fs-36: clamp(1.375rem, calc(36 / 1920 * 100vw), 2.25rem);
  --fs-32: clamp(1.25rem, calc(32 / 1920 * 100vw), 2rem);
  --fs-28: clamp(1.125rem, calc(28 / 1920 * 100vw), 1.75rem);
  --fs-26: clamp(1.0625rem, calc(26 / 1920 * 100vw), 1.625rem);
  --fs-24: clamp(1rem, calc(24 / 1920 * 100vw), 1.5rem);
  --fs-20: clamp(0.9375rem, calc(20 / 1920 * 100vw), 1.25rem);
  --fs-18: clamp(0.875rem, calc(18 / 1920 * 100vw), 1.125rem);
  --space-100: clamp(3.125rem, calc(100 / 1920 * 100vw), 6.25rem);
  --space-80: clamp(2.5rem, calc(80 / 1920 * 100vw), 5rem);
  --space-60: clamp(1.875rem, calc(60 / 1920 * 100vw), 3.75rem);
  --space-40: clamp(1.25rem, calc(40 / 1920 * 100vw), 2.5rem);
  --space-24: clamp(0.75rem, calc(24 / 1920 * 100vw), 1.5rem);
  --space-20: clamp(0.75rem, calc(20 / 1920 * 100vw), 1.25rem);
  --space-16: clamp(0.625rem, calc(16 / 1920 * 100vw), 1rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-display);
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-align: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
  margin-inline: auto;
  padding-inline: 0;
}

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

.scrollReveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.scrollReveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scrollReveal--delay-1 {
  transition-delay: 0.1s;
}

.scrollReveal--delay-2 {
  transition-delay: 0.2s;
}

.scrollReveal--delay-3 {
  transition-delay: 0.3s;
}

.primaryButton {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-btn);
  background: var(--color-maroon);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.primaryButtonIcon {
  width: clamp(2rem, calc(40 / 1920 * 100vw), 2.5rem);
  height: clamp(2rem, calc(40 / 1920 * 100vw), 2.5rem);
  flex-shrink: 0;
}

.primaryButton--footer {
  background: var(--color-maroon-cta);
  font-family: var(--font-accent);
}

.swiperPagination {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.swiperPagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-navy);
  opacity: 0.25;
}

.swiperPagination .swiper-pagination-bullet-active {
  background: var(--color-blue);
  opacity: 1;
}

@media (max-width: 1199px) {
  .swiperPagination {
    display: flex;
  }
}

.mobApplyBar {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
  }

  .mobApplyBar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    box-sizing: border-box;
  }

  .mobApplyBarShell {
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: transparent;
  }

  .mobApplyBarCta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    padding: 0.875rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: var(--color-maroon-cta);
    color: var(--color-white);
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .mobApplyBarCta:hover,
  .mobApplyBarCta:focus-visible {
    background: #b0052f;
  }

  .mobApplyBarCta:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
  }

  .mobApplyBarLabel {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: left;
  }

  .mobApplyBarIconWrap {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
  }

  .mobApplyBarIcon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    max-width: none;
  }
}

@media print {
  .mobApplyBar {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scrollReveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
