* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: #07111f;
  color: #f7f9fc;
  font-family: Inter, Arial, sans-serif;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.08), transparent 36%),
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.06), transparent 42%);
}

.page {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
}

/* Desktop */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  max-width: min(230px, 70vw);
  max-height: 70px;
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 25px;
  color: #62e7a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h1 span {
  display: block;
  color: #7e8da1;
}

.description {
  max-width: 700px;
  margin: 30px auto 0;
  color: #a2afbf;
  font-size: 18px;
  line-height: 1.7;
}

.description strong {
  color: #eef3f8;
}

.soon {
  margin: 18px 0 0;
  color: #e5ecf3;
  font-size: 15px;
  font-weight: 700;
}

footer {
  min-height: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #68788d;
  font-size: 11px;
  text-align: center;
}

/* Tablet */
@media (max-width: 900px) {
  h1 {
    font-size: clamp(52px, 9vw, 72px);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .page {
    width: calc(100% - 32px);
  }

  .hero {
    padding: 38px 0;
  }

  .brand {
    margin-bottom: 28px;
  }

  .brand img {
    width: 180px;
    max-width: 65vw;
    max-height: none;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.14em;
  }

  h1 {
    width: 100%;
    max-width: 460px;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.03;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  h1 span {
    margin-top: 5px;
  }

  .description {
    width: 100%;
    max-width: 420px;
    margin-top: 28px;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.65;
    text-wrap: balance;
  }

  .soon {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  footer {
    min-height: 58px;
    padding: 14px 8px;
    font-size: 10px;
  }
}

/* Celulares pequenos */
@media (max-width: 390px) {
  .page {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 30px 0;
  }

  .brand img {
    width: 165px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    font-size: clamp(37px, 11.5vw, 44px);
    line-height: 1.05;
  }

  .description {
    margin-top: 24px;
    font-size: 14px;
  }

  .soon {
    font-size: 13px;
  }
}
