* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   PAGE
========================= */

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #111111;
  color: #efefec;

  font-family: Arial, Helvetica, sans-serif;

  overflow: hidden;
}

.page {
  position: relative;

  width: 100vw;
  height: 100vh;

  overflow: hidden;

  background: #111111;
}

/* =========================
   CENTRE CONTENT
========================= */

.center-wrap {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%) translateY(-1vh);

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========================
   EMAIL SIGNUP
========================= */

.notify-form {
  position: absolute;

  bottom: calc(100% + 58px);

  width: 390px;
  height: 58px;

  display: flex;
  align-items: center;

  padding: 5px;

  margin: 0;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid rgba(255, 255, 255, 0.16);

  border-radius: 100px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 12px 35px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(18px) saturate(130%);

  -webkit-backdrop-filter: blur(18px) saturate(130%);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.notify-form:focus-within {
  background: rgba(255, 255, 255, 0.075);

  border-color: rgba(255, 255, 255, 0.28);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 14px 40px rgba(0, 0, 0, 0.22);
}

.email-input {
  flex: 1;
  min-width: 0;
  height: 100%;

  padding: 0 18px;

  background: transparent;

  border: none;
  outline: none;

  color: #f0f0ed;

  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.42);

  opacity: 1;
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-button {
  height: 48px;

  padding: 0 18px 0 22px;

  display: flex;
  align-items: center;

  gap: 16px;

  flex-shrink: 0;

  background: rgba(245, 245, 242, 0.95);

  color: #111111;

  border: 1px solid rgba(255, 255, 255, 0.68);

  border-radius: 100px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 4px 15px rgba(0, 0, 0, 0.12);

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.submit-button:hover {
  background: rgba(15, 15, 15, 0.78);

  color: #f0f0ed;

  border-color: rgba(255, 255, 255, 0.28);
}

.arrow {
  font-size: 21px;
  font-weight: 400;

  line-height: 1;

  transition: transform 0.25s ease;
}

.submit-button:hover .arrow {
  transform: translateX(4px);
}

/* =========================
   COUNTDOWN
========================= */

.countdown {
  display: flex;

  gap: 9px;

  margin-bottom: 72px;
}

.time-box {
  width: 66px;
  height: 66px;

  background: #1b1b1b;

  border-radius: 6px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
}

.number {
  color: #f3f3ef;

  font-size: 17px;
  font-weight: 700;

  line-height: 1;
}

.label {
  margin-top: 7px;

  color: #8f8f8f;

  font-size: 5px;
  font-weight: 600;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

/* =========================
   BRAND LOCKUP
========================= */

.brand-row {
  display: flex;
  align-items: center;
}

.brand-left {
  display: flex;
  align-items: center;

  gap: 18px;
}

.symbol {
  color: #ff3b19;

  font-size: 63px;
  font-weight: 700;

  line-height: 0.7;

  transform: translateY(-1px);
}

.brand-name {
  display: flex;
  flex-direction: column;

  color: #f0f0ed;

  font-size: 29px;
  font-weight: 700;

  line-height: 0.78;

  letter-spacing: -0.045em;
}

.divider {
  width: 2px;
  height: 60px;

  margin-left: 31px;
  margin-right: 31px;

  background: #ecece8;
}

.descriptor {
  color: #f0f0ed;

  font-size: 20px;
  font-weight: 600;

  line-height: 1.02;

  letter-spacing: -0.035em;

  white-space: nowrap;
}

/* =========================
   GIANT "COMING SOON"
========================= */

.coming-soon-wrap {
  position: absolute;

  left: 50%;
  bottom: -1.2vw;

  transform: translateX(-50%);

  width: max-content;

  pointer-events: none;
}

.coming-soon {
  display: block;

  color: #ebeae5;

  font-size: 16.2vw;
  font-weight: 600;

  line-height: 0.78;

  letter-spacing: -0.07em;

  white-space: nowrap;

  transform-origin: center bottom;

  will-change: transform;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .center-wrap {
    top: 47%;
  }

  .notify-form {
    bottom: calc(100% + 45px);

    width: 350px;
  }

  .countdown {
    margin-bottom: 55px;
  }

  .time-box {
    width: 58px;
    height: 58px;
  }

  .number {
    font-size: 16px;
  }

  .symbol {
    font-size: 52px;
  }

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

  .divider {
    height: 52px;

    margin-left: 24px;
    margin-right: 24px;
  }

  .descriptor {
    font-size: 17px;
  }

  .coming-soon {
    font-size: 17vw;
  }

  .coming-soon-wrap {
    bottom: -0.7vw;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .center-wrap {
    top: 44%;

    width: 100%;

    padding: 0 15px;
  }

  .notify-form {
    position: absolute;

    bottom: calc(100% + 38px);

    width: min(340px, calc(100vw - 32px));

    height: 54px;
  }

  .submit-button {
    height: 44px;

    padding: 0 15px 0 18px;

    gap: 11px;

    font-size: 14px;
  }

  .email-input {
    font-size: 14px;

    padding: 0 15px;
  }

  .countdown {
    gap: 6px;

    margin-bottom: 48px;
  }

  .time-box {
    width: 54px;
    height: 54px;
  }

  .number {
    font-size: 15px;
  }

  .label {
    font-size: 5px;
  }

  .brand-row {
    transform: scale(0.78);
  }

  .coming-soon {
    font-size: 23vw;
  }

  .coming-soon-wrap {
    bottom: 0;
  }
}
