@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: "Gilroy", Arial, sans-serif;
  color: #f7f8f8;
  background: #030608;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --green: #18e613;
  --muted: #b8bdc3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

::selection {
  color: #030608;
  background: #8df279;
}

.maintenance {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(36px, 6.4vh, 76px) clamp(32px, 6.1vw, 98px);
  overflow: hidden;
}

.maintenance__content {
  position: relative;
  z-index: 2;
  width: 53%;
}

.brand {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: clamp(44px, 6vh, 68px);
}

.maintenance-window {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin: 0 0 28px;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.4;
}

.maintenance-window__label {
  color: var(--green);
}

.maintenance-window__divider {
  height: 16px;
  width: 1px;
  background: #454d50;
  transform: rotate(20deg);
}

.maintenance-window__date {
  color: var(--muted);
  white-space: nowrap;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 5.55vw, 5.55rem);
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: -0.047em;
}

.title-accent {
  color: #89ed73;
  background: linear-gradient(110deg, #37e820 3%, #96f080 52%, #e3f6de 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.125rem, 1.52vw, 1.375rem);
  font-weight: 400;
  line-height: 1.5;
}

.trading-status {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 435px;
  margin: 34px 0 0;
  padding-top: 25px;
  border-top: 1px solid #ffffff24;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
}

.trading-status__dot {
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px #18e61335;
}

.maintenance__art {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  width: min(57%, 865px);
  transform: translateY(-46%);
  pointer-events: none;
  mix-blend-mode: lighten;
}

.bull {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 94%, transparent), linear-gradient(0deg, transparent, #000 13%, #000 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 94%, transparent), linear-gradient(0deg, transparent, #000 13%, #000 100%);
  mask-composite: intersect;
}

@media (min-width: 701px) and (max-height: 740px) {
  .maintenance {
    padding-block: 30px;
  }

  .brand {
    width: 150px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: clamp(3.2rem, 5vw, 4.7rem);
  }

  .maintenance-window {
    margin-bottom: 20px;
  }

  .description {
    margin-top: 21px;
  }

  .trading-status {
    margin-top: 25px;
    padding-top: 20px;
  }

  .maintenance__art {
    width: min(55%, 90svh);
    right: 1%;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .maintenance {
    padding-inline: 5vw;
  }

  .maintenance__content {
    width: 58%;
  }

  h1 {
    font-size: clamp(2.875rem, 5.65vw, 3.875rem);
  }

  .maintenance-window {
    gap: 8px 12px;
    font-size: 0.9375rem;
  }

  .maintenance__art {
    right: -4%;
    width: 55%;
  }

  .trading-status {
    max-width: 340px;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .maintenance {
    display: grid;
    grid-template-rows: auto minmax(160px, 1fr);
    align-items: start;
    gap: 12px;
    height: 100svh;
    min-height: min-content;
    padding: 28px 26px 0;
    overflow: visible;
  }

  .maintenance__content {
    width: 100%;
  }

  .brand {
    width: 142px;
    margin-bottom: 33px;
  }

  .maintenance-window {
    column-gap: 12px;
    margin-bottom: 20px;
    font-size: 0.875rem;
  }

  .maintenance-window__divider {
    height: 13px;
  }

  h1 {
    font-size: clamp(2.75rem, 8vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .description {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .trading-status {
    gap: 10px;
    max-width: 100%;
    margin-top: 21px;
    padding-top: 17px;
    font-size: 0.9375rem;
  }

  .maintenance__art {
    position: relative;
    top: auto;
    right: auto;
    align-self: end;
    width: 100%;
    height: 100%;
    max-height: 430px;
    min-height: 0;
    margin: 0;
    transform: none;
  }

  .bull {
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }
}

@media (max-width: 370px) {
  .maintenance {
    gap: 8px;
    padding-inline: 20px;
    padding-top: 22px;
  }

  .brand {
    margin-bottom: 22px;
  }

  .maintenance-window {
    column-gap: 8px;
    font-size: 0.875rem;
  }

  .maintenance-window__divider {
    display: none;
  }

  .maintenance-window__label {
    flex-basis: 100%;
  }

  h1 {
    font-size: 2.625rem;
  }
}

@media (forced-colors: active) {
  .title-accent {
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .trading-status__dot {
    border: 1px solid currentColor;
  }
}
