@font-face {
  font-family: "Fraunces Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("assets/fraunces-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --brand-navy: #03354c;
  --brand-light: #f7f7f7;
  --brand-sand: #f4d29f;
  --display-font: "Fraunces Variable", Fraunces, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-width: 320px;
  overflow: hidden;
  background: var(--brand-navy);
}

body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--brand-navy);
  color: var(--brand-light);
  font-family: var(--display-font);
  text-rendering: optimizeLegibility;
}

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

.logo-negative {
  filter: brightness(0) invert(1);
}

.concept-b {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows:
    clamp(7.25rem, 18dvh, 10.75rem)
    minmax(0, 1fr)
    clamp(13rem, 32dvh, 22rem);
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--brand-navy);
}

.b-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(10.5rem, 15vw, 14rem);
  min-height: 0;
  border-bottom: 1px solid rgb(247 247 247 / 16%);
}

.b-brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: clamp(1.25rem, 2.2vw, 2.75rem);
  padding: clamp(1.5rem, 4dvh, 3.25rem) clamp(2.75rem, 6vw, 7.5rem);
  animation: rise-in 760ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.b-wordmark {
  flex: none;
  width: clamp(15.5rem, 19vw, 21rem);
  height: auto;
}

.b-brand-divider {
  flex: none;
  width: 1px;
  height: clamp(3rem, 4.6vw, 4rem);
  background: rgb(244 210 159 / 64%);
}

.b-descriptor {
  margin: 0;
  color: var(--brand-sand);
  font-size: clamp(1.02rem, 1.22vw, 1.28rem);
  font-variation-settings: "opsz" 28, "wght" 430, "SOFT" 15, "WONK" 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.b-descriptor span,
.b-tagline span {
  display: block;
  white-space: nowrap;
}

.b-mark-cell {
  display: grid;
  place-items: center;
  min-width: 0;
}

.b-mark {
  width: clamp(4.85rem, 7.25vw, 6.5rem);
  height: auto;
}

.b-status-stage {
  position: relative;
  z-index: 1;
  min-height: 0;
  border-bottom: 1px solid rgb(247 247 247 / 16%);
}

.b-status-title {
  display: grid;
  grid-template-columns: minmax(0, 61fr) minmax(18rem, 39fr);
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
}

.b-status-word {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  font-size: clamp(5rem, min(9vw, 18dvh), 10.75rem);
  font-variation-settings: "opsz" 144, "wght" 330, "SOFT" 0, "WONK" 0;
  font-weight: 330;
  letter-spacing: -0.06em;
  line-height: 0.84;
  white-space: nowrap;
}

.b-status-coming {
  justify-content: flex-end;
  padding: clamp(1.5rem, 4dvh, 4rem) clamp(2rem, 3.35vw, 4rem)
    clamp(1.5rem, 4dvh, 4rem) clamp(2.75rem, 6vw, 7.5rem);
}

.b-status-coming > span {
  animation: status-coming-in 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.b-status-soon {
  position: relative;
  justify-content: flex-start;
  padding: clamp(1.5rem, 4dvh, 4rem) clamp(2.75rem, 6vw, 7.5rem)
    clamp(1.5rem, 4dvh, 4rem) clamp(2rem, 3.35vw, 4rem);
  overflow: hidden;
  background: var(--brand-sand);
  color: var(--brand-navy);
  transform-origin: right center;
  animation: status-plane-lock 1600ms 140ms
    cubic-bezier(0.24, 0.08, 0.18, 1) both;
}

.b-status-soon > span {
  position: relative;
  animation: status-soon-in 1380ms 320ms
    cubic-bezier(0.24, 0.08, 0.18, 1) both;
}

.b-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  min-height: 0;
  padding: clamp(1.75rem, 3.8dvh, 3rem) clamp(2.75rem, 6vw, 7.5rem)
    calc(clamp(2rem, 5.5dvh, 5rem) + env(safe-area-inset-bottom));
  animation: rise-in 900ms 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.b-tagline {
  margin: 0;
  font-size: clamp(4.25rem, min(7.7vw, 13.5dvh), 9.25rem);
  font-variation-settings: "opsz" 144, "wght" 305, "SOFT" 0, "WONK" 0;
  font-weight: 305;
  letter-spacing: -0.058em;
  line-height: 0.84;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-plane-lock {
  from {
    opacity: 0.92;
    transform: translateX(1.75rem) scaleX(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes status-coming-in {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-soon-in {
  from {
    opacity: 0;
    transform: translateX(0.85rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 820px) {
  .concept-b {
    grid-template-rows: auto minmax(0, 1fr) clamp(8.5rem, 24dvh, 12.5rem);
  }

  .b-header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto clamp(4.25rem, 18vw, 5rem);
    min-height: 0;
    border-bottom: 0;
  }

  .b-brand-lockup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    column-gap: clamp(0.7rem, 3vw, 0.95rem);
    min-height: clamp(6.25rem, 26vw, 7rem);
    padding: calc(clamp(1.25rem, 5dvh, 2rem) + env(safe-area-inset-top))
      clamp(1.5rem, 6.5vw, 2.75rem) clamp(1.1rem, 4dvh, 1.75rem);
  }

  .b-wordmark {
    justify-self: end;
    width: min(100%, clamp(9.25rem, 41vw, 11.5rem));
  }

  .b-brand-divider {
    justify-self: center;
    height: clamp(2.5rem, 11vw, 3rem);
  }

  .b-descriptor {
    justify-self: start;
    min-width: 0;
    max-width: 8rem;
    font-size: clamp(0.76rem, 3vw, 0.88rem);
    letter-spacing: 0.01em;
    line-height: 1.1;
  }

  .b-mark-cell {
    width: 100%;
  }

  .b-mark {
    width: clamp(3.15rem, 13.5vw, 3.85rem);
  }

  .b-status-title {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 52fr) minmax(0, 48fr);
  }

  .b-status-word {
    justify-content: center;
    padding: clamp(1rem, 3dvh, 1.75rem) clamp(1.5rem, 7vw, 2.5rem);
    font-size: clamp(3.5rem, min(18vw, 12dvh), 6.25rem);
    letter-spacing: -0.058em;
  }

  .b-status-soon {
    transform-origin: right center;
  }

  .b-content {
    padding: clamp(1.1rem, 2.8dvh, 1.75rem) clamp(1.5rem, 6.5vw, 2.75rem)
      calc(clamp(1.4rem, 4.5dvh, 2.5rem) + env(safe-area-inset-bottom));
  }

  .b-tagline {
    font-size: clamp(2.75rem, min(13.5vw, 8.8dvh), 5rem);
    letter-spacing: -0.052em;
    line-height: 0.88;
  }
}

@media (max-width: 360px) {
  .b-brand-lockup {
    column-gap: 0.25rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .b-wordmark {
    width: min(100%, 9.25rem);
  }

  .b-descriptor {
    font-size: 0.76rem;
  }
}

@media (max-width: 820px) and (max-height: 620px) {
  .b-header {
    grid-template-rows: auto 3.75rem;
  }

  .b-brand-lockup {
    min-height: 5.75rem;
    padding-top: calc(1.1rem + env(safe-area-inset-top));
    padding-bottom: 1rem;
  }

  .b-mark {
    width: 3rem;
  }

  .b-content {
    padding-top: 1.1rem;
    padding-bottom: calc(1.4rem + env(safe-area-inset-bottom));
  }
}

@media (min-width: 821px) and (max-height: 680px) {
  .concept-b {
    grid-template-rows: clamp(6.75rem, 18dvh, 7.5rem) minmax(0, 1fr)
      clamp(11rem, 31dvh, 13rem);
  }

  .b-tagline {
    font-size: clamp(4rem, min(7.2vw, 12.5dvh), 7.5rem);
  }

  .b-brand-lockup {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .b-content {
    padding-top: 1.25rem;
    padding-bottom: 1.625rem;
  }

  .b-status-word {
    font-size: clamp(4.75rem, min(8.35vw, 17dvh), 8rem);
  }
}

@media (max-height: 559px) {
  html {
    height: auto;
    overflow-y: auto;
  }

  body {
    height: auto;
    overflow-y: auto;
  }

  .concept-b {
    grid-template-rows: auto minmax(15rem, 1fr) auto;
    height: auto;
    min-height: 35rem;
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b-brand-lockup,
  .b-status-coming > span,
  .b-status-soon,
  .b-status-soon > span,
  .b-content {
    animation: none;
  }
}
