@import url('https://fonts.googleapis.com/css2?family=Archivo+Condensed:wght@500;600;700&family=Bricolage+Grotesque:opsz,wght@12..96,400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;500;600&family=Manrope:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;500;600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  color-scheme: dark;
  --black: #0b0b0c;
  --surface: #121214;
  --surface-2: #18181b;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.07);
  --white: #f7f7f5;
  --muted: #96969d;
  --red: #df1726;
  --red-dark: #b90f1c;
  --green: #3faf70;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.site-header {
  height: 58px;
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wordmark {
  font: 700 16px/1 'Archivo Condensed', sans-serif;
  letter-spacing: -0.01em;
}

.wordmark b {
  color: var(--red);
}

.header-link,
.back-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 600 12px/1 'Manrope', sans-serif;
  cursor: pointer;
  transition: color 160ms ease;
}

.header-link:hover,
.back-link:hover {
  color: var(--white);
}

.option-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  border: 1px solid var(--line);
  background: rgba(11, 11, 12, 0.94);
  z-index: 20;
}

.option-switcher a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font: 600 12px/1 'Manrope', sans-serif;
}

.option-switcher a:first-child {
  border-left: 0;
}

.option-switcher a:hover,
.option-switcher a[aria-current='page'] {
  background: var(--red);
  color: #fff;
}

.cta {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 700 14px/1 'Manrope', sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.cta:active {
  transform: translateY(1px);
}

.cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cta--wide {
  width: 100%;
}

.mobile-apply-bar {
  display: none;
}

.cta-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #070708;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-control {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 4, 5, 0.5);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease;
}

.video-control.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-control__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font: 700 11px/1 'Manrope', sans-serif;
  letter-spacing: 0.18em;
}

.play-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.72);
}

.play-icon svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
  fill: #fff;
}

.video-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.proof-kicker {
  color: var(--red);
  font: 700 11px/1 'Manrope', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rule-title::before {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--red);
}

.application {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  background: var(--black);
}

.application.is-open {
  display: block;
  animation: application-open 180ms ease-out both;
}

@keyframes application-open {
  from { opacity: 0; }
  to { opacity: 1; }
}

.application__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 33.333%;
  background: var(--red);
  transition: width 140ms ease;
}

.application__top {
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.application__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.application__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.application__body {
  width: min(calc(100% - 40px), 720px);
  min-height: 100dvh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 90px 0;
}

.application__body.is-calendar {
  width: min(calc(100% - 48px), 1152px);
  align-content: start;
  padding: 40px 0 0;
}

.application--calendar .application__progress,
.application--calendar .application__top {
  display: none;
}

[data-screen-view] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 140ms ease, transform 180ms cubic-bezier(.2, .75, .25, 1);
  will-change: opacity, transform;
}

[data-screen-view].is-leaving {
  opacity: 0;
  transform: translate3d(var(--flow-exit-x, -10px), 0, 0);
}

[data-screen-view].is-entering {
  opacity: 0;
  transform: translate3d(var(--flow-enter-x, 10px), 0, 0);
  transition: none;
}

.application__question {
  margin: 0;
  font: 600 clamp(28px, 4vw, 42px)/1.12 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.025em;
}

.application__intro {
  max-width: 620px;
  margin: 12px 0 30px;
  color: var(--muted);
  font: 400 14px/1.6 'Manrope', sans-serif;
}

.application__form,
.application__fields {
  display: grid;
  gap: 26px;
}

.application__group {
  min-width: 0;
}

.application__label {
  margin: 0 0 10px;
  font: 600 16px/1.45 'Manrope', sans-serif;
}

.application__helper {
  margin: -4px 0 12px;
  color: var(--muted);
  font: 400 12px/1.5 'Manrope', sans-serif;
}

.application__choices {
  display: grid;
  gap: 10px;
}

.application__choice {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: 500 15px/1.3 'Manrope', sans-serif;
  transition: border-color 140ms ease, background-color 140ms ease, transform 120ms ease;
}

.application__choice:active {
  transform: scale(.995);
}

.application__choice:hover,
.application__choice:focus-visible,
.application__choice.is-selected {
  border-color: var(--red);
  background: var(--surface-2);
  outline: none;
}

.application__field {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--white);
  outline: none;
  font: 500 17px/1.3 'Manrope', sans-serif;
}

.application__field:focus {
  border-color: var(--red);
}

.application__phone {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
}

.application__country-picker {
  position: relative;
  min-width: 0;
}

.application__country-trigger {
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
  font: 600 14px/1 'Manrope', sans-serif;
}

.application__country-trigger svg {
  width: 14px;
  height: 14px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.application__country-trigger:focus-visible {
  border-color: var(--red);
  outline: none;
}

.application__flag {
  width: 22px;
  height: 16px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  object-fit: cover;
}

.application__country-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 6px);
  left: 0;
  width: 270px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  box-shadow: 0 6px 8px rgba(0, 0, 0, .28);
}

.application__country-menu[hidden] {
  display: none;
}

.application__country-option {
  width: 100%;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font: 500 13px/1.3 'Manrope', sans-serif;
}

.application__country-option:last-child {
  border-bottom: 0;
}

.application__country-option strong {
  color: var(--muted);
  font-weight: 600;
}

.application__country-option:hover,
.application__country-option:focus-visible,
.application__country-option[aria-selected="true"] {
  background: var(--surface-2);
  outline: none;
}

.application__country-native {
  min-width: 0;
}

.application__field--textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.application__character-count {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  text-align: right;
  font: 500 11px/1.4 'Manrope', sans-serif;
}

.application__next {
  width: 100%;
  margin-top: 2px;
}

.application__next[hidden] {
  display: none;
}

.application__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.application__actions[hidden] {
  display: none;
}

.application__error {
  margin: 14px 0 0;
  color: #ff7b83;
  font: 600 13px/1.5 'Manrope', sans-serif;
}

.application__field-error {
  margin: 8px 0 0;
  color: #ff7b83;
  font: 600 12px/1.45 'Manrope', sans-serif;
}

.application__next:disabled {
  cursor: wait;
  opacity: .65;
}

.application__success {
  display: none;
}

.application__success.is-visible {
  display: block;
  animation: application-success 220ms ease-out both;
}

@keyframes application-success {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.application__success h2 {
  margin: 0 0 12px;
  color: var(--white);
  font: 700 clamp(30px, 4vw, 48px)/1.08 'Manrope', sans-serif;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.application__success p {
  margin: 0;
  color: var(--muted);
  font: 400 13px/1.55 'Manrope', sans-serif;
}

.booking-intro {
  width: min(100%, 672px);
  margin: 0 auto 24px;
  text-align: center;
}

.booking-wordmark {
  margin-bottom: 16px;
  font: 700 24px/1 'Manrope', sans-serif;
  letter-spacing: -.04em;
}

.booking-wordmark b {
  color: var(--red);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(63, 175, 112, .22);
  border-radius: 999px;
  background: rgba(63, 175, 112, .12);
  color: var(--green);
  font: 700 12px/1 'Manrope', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-intro > p {
  max-width: 672px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.5;
}

.booking-meta {
  min-height: 54px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  border-block: 1px solid var(--line-soft);
  color: #d8d8dc;
  font-size: 14px;
}

.booking-meta strong,
.booking-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.booking-meta svg,
.booking-notice > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-notice {
  margin-top: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid rgba(223, 23, 38, .26);
  border-radius: 6px;
  background: rgba(105, 12, 19, .22);
  text-align: left;
}

.booking-notice > svg {
  margin-top: 2px;
}

.booking-notice p {
  color: #b4b4ba;
  font-size: 14px;
  line-height: 1.5;
}

.booking-notice a {
  color: var(--white);
  font-weight: 700;
}

.calendar-embed {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.calendar-embed__mount {
  min-width: 320px;
  min-height: 860px;
  overflow: hidden;
}

.calendar-embed__mount iframe {
  display: block;
  width: 100%;
  height: 860px;
  border: 0;
  overflow: auto;
}

.calendar-embed__error {
  margin: 0;
  padding: 48px 20px;
  color: var(--muted);
  text-align: center;
  font: 400 13px/1.5 'Manrope', sans-serif;
}

.hub {
  min-height: 100dvh;
  padding: 70px 24px 90px;
  background: #ededeb;
  color: #171719;
  font-family: 'Manrope', sans-serif;
}

.hub__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.hub__top {
  max-width: 720px;
  margin-bottom: 52px;
}

.hub__label {
  margin: 0 0 16px;
  color: #bc1521;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hub h1 {
  margin: 0;
  font: 600 clamp(40px, 6vw, 72px)/0.98 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.05em;
}

.hub__intro {
  margin: 22px 0 0;
  max-width: 650px;
  color: #5d5d63;
  font-size: 17px;
  line-height: 1.65;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #c9c9c5;
  border-left: 1px solid #c9c9c5;
}

.hub-card {
  min-height: 340px;
  padding: 32px;
  border-right: 1px solid #c9c9c5;
  border-bottom: 1px solid #c9c9c5;
  background: #f5f5f2;
  display: flex;
  flex-direction: column;
  transition: background-color 160ms ease;
}

.hub-card:hover {
  background: #fff;
}

.hub-card__number {
  color: #9a9a9b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hub-card h2 {
  margin: 54px 0 12px;
  font: 600 31px/1.05 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.03em;
}

.hub-card p {
  margin: 0;
  max-width: 43ch;
  color: #66666c;
  line-height: 1.6;
}

.hub-card__meta {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #bc1521;
  font-size: 13px;
  font-weight: 700;
}

.hub-card__meta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 760px) {
  .mobile-apply-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(11, 11, 12, .96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
    transition:
      opacity 160ms ease,
      transform 180ms cubic-bezier(.2, .75, .25, 1),
      visibility 0s linear 180ms;
  }

  .mobile-apply-bar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .mobile-apply-bar .cta {
    width: 100%;
  }

  body.modal-open .mobile-apply-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 100%, 0);
  }

  .site-header__inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .header-link {
    display: none;
  }

  .option-switcher {
    right: 10px;
    bottom: 10px;
  }

  .application__top {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .application__body {
    width: min(calc(100% - 36px), 720px);
    align-content: start;
    padding: 118px 0 70px;
  }

  .application__body.is-calendar {
    width: min(calc(100% - 32px), 1152px);
    padding: 32px 0 0;
  }

  .booking-intro { margin-bottom: 24px; }
  .booking-wordmark { font-size: 20px; }
  .application__success h2 { font-size: 30px; }
  .booking-intro > p { font-size: 14px; line-height: 1.5; }
  .booking-meta { gap: 8px 20px; font-size: 13px; }
  .booking-notice { padding: 12px 16px; }
  .booking-notice p { font-size: 13px; }

  .calendar-embed__mount {
    min-height: 780px;
  }

  .calendar-embed__mount iframe {
    height: 780px;
  }

  .application__question {
    font-size: 30px;
  }

  .application__phone {
    grid-template-columns: 100px 1fr;
  }

  .application__intro {
    margin-bottom: 26px;
  }

  .application__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .application__actions .cta {
    width: 100%;
  }

  .hub {
    padding: 48px 18px 72px;
  }

  .hub__top {
    margin-bottom: 36px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 300px;
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
