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

@font-face {
  font-family: "Manrope", sans-serif;
  src: url(../font/Rubik-VariableFont_wght.ttf);
}


body {
  font-family: "Rubik", sans-serif !important;
  background: radial-gradient(circle at top, #0f172a, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #fff;
}


/* section */

.coming-section {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* card */

.coming-card {

  background: linear-gradient(145deg, #111827, #020617);

  border-radius: 18px;

  padding: 30px 50px;

  text-align: center;

  max-width: 650px;

  width: 100%;

  border: 1px solid rgb(255, 255, 255);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);

}

/* brand */

.brand {

  font-size: 22px;

  font-weight: 600;

  color: #ffffff;

  margin-bottom: 10px;

}

/* top subtitle */

.top-subtitle {

  font-size: 14px;

  color: #9ca3af;

  margin-bottom: 10px;

}

/* title */

.title {

  font-size: 45px;
  color: white;

  font-weight: 700;

  margin-bottom: 10px;

}

/* description */

.subtitle {

  font-size: 16px;

  color: #9ca3af;

  line-height: 1.6;

  max-width: 500px;

  margin: auto;

  margin-bottom: 20px;

}

/* countdown */

.countdown {

  display: flex;

  justify-content: center;

  gap: 18px;

  margin-bottom: 45px;

}

.time-box {

  background: #1f2937;

  padding: 20px 22px;

  border-radius: 10px;

  min-width: 85px;

}

.time-box h3 {

  font-size: 28px;

  margin-bottom: 5px;

}

.time-box span {

  font-size: 13px;

  color: #9ca3af;

}

/* email form */

.notify-wrapper {

  display: flex;

  justify-content: center;

  gap: 10px;

}

.notify-wrapper input {

  background: #e5e7eb;

  border: none;

  padding: 14px 18px;

  border-radius: 8px;

  width: 260px;

  font-size: 14px;

}

.notify-wrapper button {

  background: #3b82f6;

  border: none;

  padding: 14px 22px;

  color: #fff;

  border-radius: 8px;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s;

}

.notify-wrapper button:hover {

  background: #2563eb;

}

/* footer */

.footer {

  margin-top: 30px;

  font-size: 13px;

  color: #6b7280;

}

/* responsive */

@media(max-width:768px) {

  .coming-card {
    padding: 30px 30px;
  }

  .title {
    font-size: 34px;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .notify-wrapper {
    flex-direction: column;
  }

  .notify-wrapper input {
    width: 100%;
  }

}