:root {
  --color-brand-black: #131415;
  --color-brand-gray: #27292B;
  --color-brand-blue: #3772FF;
  --color-brand-red: #DF2935;
  --color-brand-yellow: #FDCA40;
  --color-brand-white: #E6E8E6;
}

html {
  overflow-x: hidden;
}

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  color: var(--color-brand-white);

  &:not(p) {
    margin: 0;
    padding: 0;
  }
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

h4 {
  font-size: 28px;
  font-weight: 700;
}

body {
  background: var(--color-brand-gray);
  background: linear-gradient(180deg, var(--color-brand-gray) 0%, var(--color-brand-black) 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.button {
  display: block;
  margin-top: 36px;
  width: 270px;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 28px;
  border-radius: 9999px;
  cursor: pointer;

  &.red {
    background-color: var(--color-brand-red);
  }

  &.blue {
    background-color: var(--color-brand-blue);
  }

  &.yellow {
    color: var(--color-brand-gray);
    background-color: var(--color-brand-yellow);
  }
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 64px 28px 0;
  align-items: center;
  justify-content: center;

  img {
    max-width: 80%;
  }

  p {
    margin-top: 14px;
    font-size: 16px;
  }

  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    justify-content: normal;
    align-items: center;

    a {
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 700;
      font-size: 28px;
      padding: 16px 0;
      width: 100%;
      max-width: 200px;
      text-align: center;
      border: 1px solid transparent;
      border-radius: 9999px;
      transition: border-color .25s ease-in-out;

      &:hover {
        cursor: pointer;
        border: 1px solid var(--color-brand-white);
      }

      &:active, &.active {
        background-color: var(--color-brand-blue);
      }
    }
  }

  aside {
    margin-top: 20px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);

    p {
      text-align: center;
    }

    .ticker {
      margin-top: 30px;

      .swiper-slide {
        width: auto;
        padding: 0 8px;
      }

      img {
        width: 100px;
        aspect-ratio: 140 / 60;
        object-fit: contain;
        display: block;
      }
    }
  }
}

#summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;

  > div {
    max-width: 350px;
    width: 90%;

    &:not(:first-child) {
      margin-top: 50px;
    }
  }

  ul {
    margin-top: 30px;

    li {
      list-style: none;
      padding-left: 1em;
      position: relative;
      font-size: 16px;

      &::before {
        content: "•";
        position: absolute;
        left: 0;
        font-size: 16px;
        line-height: 1.1;
      }
    }
  }

  .button {
    width: 100%;
  }
}

footer {
  margin-top: 64px;
  text-align: center;

  .separator {
    display: block;
    visibility: hidden;
    height: 0.5em;
  }
}@media screen and (min-width: 1399px) {
  h2 {
    font-size: 60px;
    font-weight: 700;
  }

  h3 {
    font-size: 36px;
    font-weight: 700;
  }

  h4 {
    font-size: 32px;
    font-weight: 700;
  }

  p {
    font-size: 20px;
    margin-top: 30px;
  }

  .button {
    margin-top: 50px;
    font-size: 36px;
  }

  header {
    padding: 186px 28px 0;

    img {
      max-width: 600px;
    }

    p {
      margin-top: 22px;
      font-size: 26px;
    }

    nav {
      flex-direction: row;
      margin-top: 118px;
      margin-bottom: 144px;
      justify-content: space-evenly;

      a {
        font-size: 36px;
        padding: 28px 0;
      }
    }

    aside {
      .ticker img {
        width: 140px;
      }
    }
  }

#summary {
    flex-direction: row;
    margin-top: 0;
    justify-content: space-evenly;

    > div {
      max-width: 33.3%;
    }

    ul {
      li {
        list-style: none;
        padding-left: 1em;
        position: relative;
        font-size: 20px;

        &::before {
          content: "•";
          position: absolute;
          left: 0;
          font-size: 20px;
          line-height: 1.1;
        }
      }
    }

    .button {
      width: 320px;
    }
  }

  footer {
    font-size: 20px;
    margin-top: 100px;

    .separator {
      display: inline;
      visibility: visible;
      height: auto;
    }
  }
}