@font-face {
  font-family: "UNITI Bodoni";
  src: url("../fonts/bodoni-moda-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "UNITI Bodoni";
  src: url("../fonts/bodoni-moda-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "UNITI Condensed";
  src: url("../fonts/roboto-condensed-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --paper: #f5f3ee;
  --muted: #625f59;
  --logo-color: var(--ink);
  --line: color-mix(in srgb, var(--ink) 19%, transparent);
  --display: "UNITI Condensed", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --brand: "UNITI Bodoni", Didot, "Iowan Old Style", Georgia, serif;
  --body: "UNITI Condensed", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  --ease-out: cubic-bezier(.2, .74, .26, 1);
}

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

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent calc(50% - .5px), color-mix(in srgb, var(--ink) 7%, transparent) 50%, transparent calc(50% + .5px));
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  inset: 10px auto auto 10px;
  padding: 11px 14px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 650;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.launch-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.launch-header,
.launch-footer {
  display: grid;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.launch-header {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block-end: 14px;
  border-bottom: 1px solid var(--line);
}

.launch-header > span:first-child {
  display: none;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.launch-status i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.launch-edition {
  max-width: 148px;
  justify-self: end;
  text-align: end;
}

.launch-main {
  width: min(100%, 1680px);
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: clamp(30px, 7vw, 48px);
  padding-block: clamp(32px, 8vh, 58px);
}

.launch-brand {
  display: grid;
  justify-items: center;
  align-self: center;
}

.brand-stage {
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(100%, 470px);
  min-height: 176px;
}

.brand-mark {
  display: block;
  width: clamp(52px, 16vw, 84px);
  aspect-ratio: .42;
  background: var(--logo-color);
  -webkit-mask: url("../images/uniti-logo-2-black.png") center / 100% 100% no-repeat;
  mask: url("../images/uniti-logo-2-black.png") center / 100% 100% no-repeat;
}

.brand-name {
  display: block;
  max-width: 100%;
  color: var(--logo-color);
  font-family: var(--display);
  font-size: clamp(18px, 5.8vw, 32px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.brand-lockup-copy {
  margin: 2px 0 0;
  display: grid;
  justify-items: center;
  gap: 1px;
}

.brand-city {
  display: block;
  color: var(--logo-color);
  font-family: var(--display);
  font-size: clamp(13.5px, 4.35vw, 24px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.launch-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 11px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.launch-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 13.4vw, 88px);
  font-stretch: condensed;
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: .87;
  text-transform: uppercase;
}

.launch-copy h1 em {
  font-style: normal;
  font-weight: inherit;
}

.launch-deck {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 420;
  line-height: 1.45;
}

.countdown-panel {
  align-self: end;
}

.countdown-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 11px;
  border-block: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.countdown-heading p {
  margin: 0;
}

.countdown-heading time {
  color: var(--muted);
  text-align: end;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.countdown > div {
  min-width: 0;
  padding: 14px 6px 9px;
  border-inline-end: 1px solid var(--line);
}

.countdown > div:first-child {
  padding-inline-start: 0;
}

.countdown > div:last-child {
  padding-inline-end: 0;
  border-inline-end: 0;
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  min-height: 1em;
  font-family: var(--display);
  font-size: clamp(35px, 11vw, 66px);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.045em;
  line-height: .9;
}

.countdown span {
  margin-block-start: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.countdown-complete {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 720;
  line-height: .95;
  text-transform: uppercase;
}

.launch-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block-start: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.launch-footer > span:first-child {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.launch-footer > span:nth-child(2) {
  display: none;
}

.launch-footer > span:last-child {
  text-align: end;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .launch-shell {
    padding-inline: max(30px, env(safe-area-inset-left)) max(30px, env(safe-area-inset-right));
  }

  .launch-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .launch-header > span:first-child {
    display: block;
  }

  .launch-status {
    justify-self: center;
  }

  .launch-main {
    grid-template-columns: minmax(230px, .43fr) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 44px clamp(48px, 8vw, 124px);
    padding-block: clamp(46px, 8vh, 72px);
  }

  .launch-brand {
    grid-row: 1 / span 2;
  }

  .brand-stage {
    width: min(34vw, 520px);
    min-height: 250px;
  }

  .brand-mark {
    width: clamp(62px, 5.8vw, 84px);
  }

  .brand-name {
    font-size: clamp(23px, 2.4vw, 34px);
  }

  .brand-city {
    font-size: clamp(17px, 1.8vw, 25px);
  }

  .launch-copy h1 {
    font-size: clamp(65px, 7.1vw, 104px);
  }

  .countdown > div {
    padding: 17px 14px 10px;
  }

  .countdown strong {
    font-size: clamp(49px, 4.8vw, 72px);
  }

  .launch-footer {
    grid-template-columns: 1fr auto 1fr;
  }

  .launch-footer > span:nth-child(2) {
    display: block;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .launch-shell {
    padding-inline: 40px;
  }

  .launch-main {
    grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  }

  .launch-footer > span:first-child {
    font-size: 14px;
  }
}

@media (max-width: 374px) {
  .launch-header,
  .launch-footer {
    font-size: 10px;
  }

  .launch-edition {
    max-width: 116px;
  }

  .launch-main {
    gap: 27px;
    padding-block: 30px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-mark {
    width: 50px;
  }

  .launch-copy h1 {
    font-size: 41px;
  }

  .launch-deck {
    font-size: 14px;
  }

  .countdown-heading {
    font-size: 9px;
  }

  .countdown strong {
    font-size: 34px;
  }

  .countdown span {
    font-size: 9px;
  }

  .launch-footer > span:first-child {
    max-width: 184px;
    font-size: 12px;
  }
}

@media (max-height: 680px) and (min-width: 720px) {
  .launch-main {
    gap: 24px 58px;
    padding-block: 24px;
  }

  .brand-stage {
    width: min(30vw, 430px);
    min-height: 198px;
  }

  .brand-mark {
    width: 60px;
  }

  .launch-copy h1 {
    font-size: clamp(57px, 6.2vw, 86px);
  }

  .launch-deck {
    margin-block-start: 12px;
  }

  .countdown > div {
    padding-block: 11px 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
