:root {
  --color-navy: #15293a;
  --color-navy-deep: #0f2236;
  --color-navy-card: #1f3343;
  --color-navy-lighter: #5b7387;
  --color-navy-faded: #a0afbb;
  --color-navy-dim: rgb(21 41 58 / 50%);
  --color-light-blue: #c8e8f4;
  --color-ice: #c8e8f4;
  --color-ice-hover: #a8d8ec;
  --color-ice-bright: #9ae0fa;
  --color-grey: #eef2f5;
  --color-grey-card: #e8edf2;
  --color-grey-cool: #d8e1ea;
  --color-grey-soft: #e6e8e9;
  --color-ice-tint: #d9eef8;
  --color-brand-logo-bg: #dee6ed;
  --color-white: #fff;
  --color-text: var(--color-navy);
  --color-text-light: var(--color-white);
  --color-text-muted: var(--color-navy-lighter);
  --color-text-faded: var(--color-navy-faded);
  --color-bg: var(--color-white);
  --color-bg-grey: var(--color-grey);
  --color-bg-dark: var(--color-navy);
  --color-border: rgb(21 41 58 / 12%);
  --color-overlay: rgb(21 41 58 / 50%);
  --color-error: #b22d2d;
  --color-error-dark: #8a2323;
  --color-star: #f5a623;
}

:root {
  --font-heading: pennypacker-semiwide, georgia, serif;
  --font-label: sweet-gothic, helvetica, sans-serif;
  --font-body: dm-sans, system-ui, -apple-system, sans-serif;
}

:root {
  --font-size-h1: 4rem;
  --font-size-h2: 3rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.125rem;
  --font-size-h6: 1rem;
  --font-size-h1-fluid: clamp(2.5rem, 5vw, 4rem);
  --font-size-h2-fluid: clamp(2rem, 3.5vw, 3rem);
  --font-size-h3-fluid: clamp(1.5rem, 2.5vw, 2rem);
  --font-size-body: 1rem;
  --font-size-body-lg: 1.125rem;
  --font-size-body-sm: 0.875rem;
  --font-size-body-xs: 0.75rem;
  --font-size-overline: 0.625rem;
  --font-size-overline-lg: 0.75rem;
  --lh-heading: 1.1;
  --lh-heading-relaxed: 1.3;
  --lh-body: 1.35;
  --lh-overline: 1;
  --ls-heading: -0.02em;
  --ls-overline: 0.0375rem;
  --ls-body: 0;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  --container-max: 1384px;
  --container-pad: clamp(1.5rem, 4.25vw, 4rem);
  --section-pad-v: clamp(4rem, 8vw, 7.5rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--color-navy);
  margin: 0 0 var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-h1-fluid);
}

h2 {
  font-size: var(--font-size-h3-fluid);
}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--lh-heading-relaxed);
}

h4 {
  font-size: var(--font-size-h4);
  letter-spacing: 0;
}

h5 {
  font-size: var(--font-size-h5);
  letter-spacing: 0;
}

h6 {
  font-size: var(--font-size-h6);
  letter-spacing: 0;
}

p {
  margin: 0 0 var(--spacing-sm);
  max-width: 75ch;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.overline,
.eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: var(--font-size-overline-lg);
  font-weight: 500;
  letter-spacing: var(--ls-overline);
  line-height: var(--lh-overline);
  text-transform: uppercase;
  color: var(--color-navy-lighter);
}

.text-white {
  color: var(--color-white);
}

.text-navy {
  color: var(--color-navy);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) -34.38%, rgba(0, 0, 0, 0) 100%);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4rem;
  padding-inline: 1rem;
  max-width: 100%;
}
@media (width <= 46.875rem) {
  .site-header__inner {
    gap: 0;
  }
}
.site-header.is-scrolled {
  background: var(--color-white);
}
.site-header.is-scrolled .site-header__logo {
  color: var(--color-navy);
}
.site-header.is-scrolled .site-header__logo svg,
.site-header.is-scrolled .site-header__logo img {
  filter: brightness(0);
}
.site-header.is-scrolled .site-header__menu a {
  color: var(--color-navy);
}
@media (pointer: fine) {
  .site-header.is-scrolled .site-header__menu a:hover {
    opacity: 0.6;
  }
}
.site-header.is-scrolled .site-header__menu .current-menu-item > a,
.site-header.is-scrolled .site-header__menu .current-menu-ancestor > a {
  border-bottom-color: var(--color-navy);
}
.site-header.is-scrolled .site-header__bar {
  background-color: var(--color-navy);
}
.site-header.is-scrolled .site-header__cta .btn--ice {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
}
.site-header__logo svg,
.site-header__logo img {
  height: 2rem;
  width: auto;
  display: block;
}
@media (width <= 46.875rem) {
  .site-header__logo svg,
  .site-header__logo img {
    height: 1.5rem;
  }
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
}
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (width <= 62.499rem) {
  .site-header__nav {
    display: none;
  }
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  margin: 0;
}
.site-header__menu a {
  font-family: var(--font-label);
  font-size: var(--font-size-overline-lg);
  font-weight: 700;
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s ease;
}
@media (pointer: fine) {
  .site-header__menu a:hover {
    opacity: 0.7;
  }
}
.site-header__menu .current-menu-item > a,
.site-header__menu .current-menu-ancestor > a {
  border-bottom: 2px solid var(--color-white);
}
.site-header__cta {
  flex-shrink: 0;
  font-size: 0.65rem !important;
  padding: 0.85rem 1.25rem;
  letter-spacing: 0;
  margin: 0 0 0 auto;
}
@media (width <= 62.499rem) {
  .site-header__cta {
    display: none;
  }
}
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
@media (width <= 62.499rem) {
  .site-header__hamburger {
    display: flex;
  }
}
.site-header__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-open .site-header__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .site-header__bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-header__mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--color-navy);
  padding: 1.5rem var(--container-pad) 2rem;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (width <= 62.499rem) {
  .site-header__mobile-menu {
    display: flex;
  }
  .site-header__mobile-menu[aria-hidden=true] {
    display: none;
  }
}
.site-header__mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-header__mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header__mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-label);
  font-size: var(--font-size-overline-lg);
  font-weight: 700;
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
}
.site-header__mobile-cta {
  align-self: stretch;
}

.admin-bar .site-header {
  top: 32px;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-video .hero__bg-img--fallback {
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 41, 58, 0.75) 0%, rgba(21, 41, 58, 0.2) 60%, rgba(21, 41, 58, 0) 100%);
}
@media (width <= 46.875rem) {
  .hero__overlay {
    background: linear-gradient(to right, rgb(21, 41, 58) 0%, rgba(21, 41, 58, 0.5) 60%, rgba(21, 41, 58, 0) 100%);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero__heading {
  font-size: var(--font-size-h2-fluid);
  line-height: 1.05;
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
}
.hero__subtext {
  font-size: var(--font-size-body);
  line-height: var(--lh-body);
  max-width: 65ch;
  margin: 0 0 2.25rem;
  color: var(--color-white);
}
.hero__subtext strong {
  color: var(--color-white);
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__video-popover {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 2;
}
@media (width <= 62.499rem) {
  .hero__video-popover {
    display: none;
  }
}
.hero__video-btn {
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  transition: transform 0.3s ease;
}
@media (pointer: fine) {
  .hero__video-btn:hover {
    transform: translateY(-2px);
  }
  .hero__video-btn:hover .hero__video-tint {
    background-color: rgba(21, 41, 58, 0.35);
  }
  .hero__video-btn:hover .hero__video-play {
    transform: scale(1.1);
  }
}
.hero__video-btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}
.hero__video-thumb {
  position: relative;
  width: 8.8125rem;
  aspect-ratio: 141/200;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--color-navy);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 394px;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero__video-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 41, 58, 0.4) 0%, rgba(21, 41, 58, 0.55) 60%, rgba(21, 41, 58, 0.75) 100%);
  transition: background-color 0.2s ease;
  pointer-events: none;
}
.hero__video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 0.75rem;
  text-align: center;
  pointer-events: none;
}
.hero__video-play {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-white);
  transition: transform 0.2s ease;
}
.hero__video-eyebrow {
  font-family: var(--font-label);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 1rem 0 0.25rem;
}
.hero__video-brand {
  display: block;
  max-width: 100%;
}
.hero__video-brand svg {
  display: block;
  width: 100%;
  max-width: 6.5rem;
  height: auto;
}
.hero__video-brand-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
@media (width <= 46.875rem) {
  .hero__brands-grid {
    flex-wrap: wrap;
    width: 100%;
  }
  .hero__brand-item {
    flex: 1 0 50%;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=atf.css.map */
