*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  color: #fff;
  background-color: #070a14;
}

@font-face {
  font-family: "Nimbus Sans T";
  src: url("../fonts/NimbusSansT-BoldCondensed.otf") format("opentype");
  font-weight: 700;
  font-stretch: condensed;
  font-style: normal;
  font-display: swap;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: url("../images/prodsense-coming-soon-bg.png") center / cover no-repeat;
}

.hero__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero__logo {
  display: block;
  width: 500px;
  max-width: 100%;
  height: auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__title__container {
  margin: 0;
}

.hero__title__1 {
  margin: 0;
  font-family: "Nimbus Sans T", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  display: block;
}

.hero__title__2 {
  margin: 0 0 24px;
  font-family: "Nimbus Sans T", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  display: block;
}

.hero__soon {
  margin: 0 0 48px;
  font-family: "Nimbus Sans T", "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 290px;
  max-width: 100%;
  height: 46px;
  padding: 0 1rem;
  border-radius: 9999px;
  border: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  background-image: linear-gradient(
    270deg,
    rgb(37, 99, 235) 21%,
    rgb(0, 212, 255) 52%,
    rgb(108, 92, 231) 79%
  );
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
}

.hero__cta:focus-visible {
  outline: 2px solid rgb(0, 212, 255);
  outline-offset: 3px;
}

@media screen and (max-width: 1200px) {
  .hero {
    padding: 40px 28px;
  }

  .hero__inner {
    padding-inline: 20px;
  }

  .hero__brand {
    margin-bottom: 40px;
  }

  .hero__logo {
    width: 380px;
  }

  .hero__title__1 {
    font-size: 84px;
  }

  .hero__title__2 {
    font-size: 84px;
    margin-bottom: 20px;
  }

  .hero__soon {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    padding: 36px 24px;
  }

  .hero__inner {
    padding-inline: 16px;
  }

  .hero__brand {
    margin-bottom: 36px;
  }

  .hero__logo {
    width: 320px;
  }

  .hero__title__1 {
    font-size: 64px;
  }

  .hero__title__2 {
    font-size: 64px;
    margin-bottom: 20px;
  }

  .hero__soon {
    font-size: 26px;
    margin-bottom: 36px;
  }

  .hero__cta {
    width: 300px;
    height: 52px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 32px 20px;
  }

  .hero__inner {
    padding-inline: 12px;
  }

  .hero__brand {
    margin-bottom: 28px;
  }

  .hero__logo {
    width: 280px;
  }

  .hero__title__1 {
    font-size: 48px;
    margin-bottom: 6px;
  }

  .hero__title__2 {
    font-size: 48px;
    margin-bottom: 18px;
  }

  .hero__soon {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .hero__cta {
    width: 100%;
    max-width: 343px;
    height: 52px;
  }
}

@media screen and (max-width: 576px) {
  .hero {
    padding: 28px 16px;
  }

  .hero__inner {
    padding-inline: 8px;
  }

  .hero__brand {
    margin-bottom: 24px;
  }

  .hero__logo {
    width: 240px;
  }

  .hero__title__1 {
    font-size: 34px;
    margin-bottom: 4px;
  }

  .hero__title__2 {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .hero__soon {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .hero__cta {
    height: 50px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta {
    transition: none;
  }

  .hero__cta:hover {
    transform: none;
  }
}
