/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
}

/* Coming Soon Section */
.container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  justify-content: flex-start;
  height: 100svh;
  width: 100%;
  position: relative;
  padding-top: clamp(24px, 7vh, 80px);
  overflow: hidden;
}
.container .image {
  position: absolute;
  background-color: #000;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.logo-container {
  margin-top: 0px;
}
.momentum-logo {
  max-height: 80px;
  height: auto;
  max-width: 240px;
  width: auto;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 100%;
  max-width: 820px;
  padding: 0 16px;
}
.container header {
  font-size: clamp(20px, 2.2vw, 28px);
  color: #fff;
  font-weight: 900;
  text-align: center;
  margin-bottom: 6px;
}
.container p {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  max-width: 480px;
  text-align: center;
}
.container .time-content {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.time .number,
.time .text {
  font-weight: 500;
  color: #fff;
}
.time .number {
  font-size: 24px;
}
.time .text {
  text-transform: capitalize;
  font-size: 10px;
}
.email-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
}
.email-content p {
  font-size: 13px;
}
.input-box {
  display: flex;
  align-items: center;
  height: 36px;
  max-width: 320px;
  width: 100%;
  margin-top: 15px;
  column-gap: 15px;
}
.input-box input,
.input-box button {
  height: 100%;
  outline: none;
  border: none;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.input-box input {
  width: 100%;
  padding: 0 15px;
  color: #fff;
}
input::placeholder {
  color: #fff;
}
.input-box button {
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.input-box button:hover {
  background-color: #fff;
  color: #0d6a81;
}
.screenshot-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.screenshot {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  background-color: #000;
}
.large-screenshot-container {
  margin-top: clamp(20px, 4vh, 48px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: min(75vw, 1200px);
  flex: 1 0 auto;
  min-height: 260px;
  max-height: 55vh;
  overflow: hidden;
  border-radius: 12px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
}
.large-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* keep top visible, crop bottom if needed */
  background-color: #000;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.15));
}
.logo {
  position: absolute;
  top: 15px;
  left: 10px;
}
.logo a {
  color: #fff;
  padding: 3px 5px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  border: 2px solid #fff; 
  border-radius: 4px;
}

.logo a:hover {
  color: #0d6a81;
  border-color: #0d6a81;
  transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
  .container {
    padding-top: clamp(20px, 6vh, 64px);
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .momentum-logo {
    max-height: 60px;
    max-width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-top: clamp(16px, 5vh, 48px);
  }
  .hero { max-width: 600px; }
  .time-content { column-gap: 14px; }
  .time .number { font-size: 22px; }
  .time .text { font-size: 10px; }
  .input-box { max-width: 300px; height: 34px; }
  .large-screenshot-container { width: 92vw; height: 42vh; }
}

@media screen and (max-width: 320px) {
  .container header {
    font-size: 18px;
  }
  .container p {
    font-size: 10px;
  }
  .large-screenshot-container { height: 38vh; }
  .logo a {
    display: none;
  }
  .input-box input {
    margin-left: 10px;
  }
  .input-box button {
    margin-right: 10px;
    padding: 0 8px;
  }
}

@media screen and (max-width: 375px) {
  .container header {
    font-size: 18px;
  }
  .container p {
    font-size: 10px;
  }
  .logo a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 425px) {
  .container header {
    font-size: 18px;
  }
  .container p {
    font-size: 10px;
  }
  .logo a {
    font-size: 1rem;
  }
}

/* Desktop-wide refinements */
@media screen and (min-width: 1200px) {
  .container header { font-size: 28px; }
  .container p { font-size: 13px; }
}