/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-family: 'Roboto', sans-serif;
  background: #000 url('img/background.png') no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  object-fit: cover;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100dvh;
  /* 🔑 fix: exact fit */
  padding: 20px 0 0 0;
  /* thodu adjust top-bottom */
  text-align: center;
  position: relative;
  /* for glow */
}


/* Glow effect behind content */
.hero::after {
  content: "";
  position: absolute;
  bottom: -0px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 700px;
  background: url('img/glow.png') no-repeat center center/contain;
  z-index: 0;
  pointer-events: none;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}


/* Logo */
.logo {
  width: 100%;
  max-width: 248px;
  margin-bottom: 30px;
}

/* Headline */
.headline {
  margin-bottom: 0px;
  /* push form-section down */
}

.headline p {
  font-size: 19px;
  line-height: 24px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Montserrat";
  text-align: center;
  margin: 0px 0;
}

.headline p.sub {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: 0px;
  color: #a1a6b0;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
}

.headline h1 {
  font-size: 30px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Montserrat";
  text-align: center;
  margin: 0px 0;
}

.sub {
  font-size: 1rem;
  margin-top: 10px;
}

.cw-logo {
  height: 14px;
  vertical-align: middle;
}

/* Form */
.form-section {
  margin-top: 0px;
}

.form-section p.limited {
  font-size: 15px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Roboto";
  text-align: center;
  margin-bottom: 10px;
}
.form-section p.limited strong
{
  font-weight: 700;
}

#waitlistForm {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 45px;
  width: 100%;
  max-width: 100%;
  height: 52px;
  padding: 6px;
}

#waitlistForm button img {
  padding-left: 10px;
}

#waitlistForm input {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  border: none;
  flex: 1;
  width: 396px;
  max-width: 100%;
  opacity: 0.549;
  font-size: 15.5px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  font-family: "Roboto";
  outline: none;
}

#waitlistForm button {
  padding: 7px 28px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Roboto";
  /* width: 476px;
  height: 70px; */
  border-radius: 35px;
  background-image: linear-gradient(180deg, #fd1f5f 0%, #ff5f8d 100%);
  border: 1px solid;
}

#waitlistForm button:hover {
  background: #ff4670;
}

input::placeholder {
  color: #000;
  opacity: 1;
}

.counter {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ddd;
}

p.counter {
  font-size: 17px;
  letter-spacing: 0px;
  line-height: 80px;
  color: #a1a6b0;
  font-family: "Roboto";
  text-align: center;
  margin-top: 0px;
}

.counter .highlight {
  padding: 2px 10px;
  color: #04a9ec;
  font-weight: 900;
  border-radius: 19px;
  background-color: #1c2638;
  border: 1px solid #04a9ec;
  margin-right: 5px;
}

.countdown {
  text-align: center;
  font-family: 'Montserrat';
  position: relative;
  isolation: isolate;  
}

.countdown__title {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  letter-spacing: 0px;
  font-weight: 400;
  margin-bottom: 18px;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-card__label {
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 400;
}

.time-card__num {
  position: relative;
  background: #1f2534;
  border: 1px solid #404652;
  border-radius: 12px;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0px;
  color: #fff;
  margin-bottom: 8px;
  overflow: hidden;
}

.time-card__num::before,
.time-card__num::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 8px;
  height: 1px;
  width: 100%;
}

.time-card__num::before {
  top: 49%;
  background: rgba(0, 0, 0, 0.35);
}

.time-card__num::after {
  top: 51%;
  background: rgba(255, 255, 255, 0.15);
}

.time-card::before{
  content:"";
  position:absolute;
  inset:-160px -420px;
  top: -70px;
  background: radial-gradient(60% 50% at 50% 60%,
              rgba(254, 51, 109, 0.06) 0%,
              rgba(254, 51, 109, 0) 70%);
  filter: blur(40px);
  z-index:-1;
}

/* Thank You Page */
.thank-you {
  margin: 0;
  padding: 50px 0;
  /* height: 100vh; */
  font-family: 'Inter', sans-serif;
  background: #000 url('img/background.png') no-repeat center center/cover;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  text-align: left;
  overflow: visible;
  position: relative;
}

.thank-you::after {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.thank-you .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  width: 100%;
  max-width: 809px;
}
.thank-you .logo {
  margin: 0 auto 30px;
  display: block;
}
.thank-title ,
.thank-sub {
  font-size: 40px;
  text-align: center;
}
.thank-you .logoleft {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.thank-you .thank-title {
  float: left;
  width: 100%;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  font-family: "Montserrat";
  margin-bottom: 10px;
}

.thank-you .thank-sub {
  float: left;
  width: 100%;
  font-size: 36px;
  margin-bottom: 0;
  font-family: "Montserrat";
  color: #04a9ec;
}

.thank-you .thank-title img.heart {
  padding-left: 10px;
  width: 48px;
}

.thank-you .letter {
  float: left;
  width: 100%;
  font-size: 21px;
  line-height: 1.5;
  color: #bdc4d1;
  font-weight: 400;
  font-family: "Roboto";
  text-align: left;
  margin: 50px auto;
}

.thank-you .letter p {
  margin-bottom: 15px;
}

.thank-you .letter strong {
  color: #ffffff;
}

.thank-you .letter .highlight {
  padding: 2px 10px;
  border-radius: 15px;
  background-color: #263858;
  color: #04a9ec;
  font-weight: bold;
  margin-right: 5px;
}

.thank-you p.arrowright {
  position: relative;
}

.thank-you p.arrowright img {
  position: absolute;
  bottom: 12px;
  right: -30px;
}

.thank-you p.rank {
  margin: 23px 0 3px 0;
  color: #ffffff;
}

.thank-you .profile-card {
  display: inline-block;
}

.thank-you .profile-card img {
  width: 30%;
  float: left;
  padding-right: 20px;

}

/* .profile-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #444;
  object-fit: cover;
} */
.thank-you .profile-info {
  width: 70%;
  float: left;
}

.thank-you .profile-info h2 {
  margin: 0;
  font-size: 23px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Roboto";
}

.thank-you .profile-info p {
  margin: 2px 0 10px;
  font-size: 14px;
  color: #aaa;
}

.thank-you .signature {
  position: relative;
  padding-top: 15px;
}

.thank-you .signature img {
  width: 100%;
}

#error-message {
  color: #F24770;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 0;
}

.form-wrapper {
  position: relative;
  padding-bottom: 20px;
}

#waitlistForm.error {
  outline: 1px solid #F24770;
  box-shadow: 0 0 15px #ea8098;
}

.hidden {
  display: none;
}
/* Video */
.video-wrapper
{
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-top: 40px;
  margin-bottom: 18px;
  border-radius: 15px;
  aspect-ratio: 886 / 498;
  width: 100%;
  max-width: 765px;
}
.video-wrapper iframe
{
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Video */