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

body.has-bg-video {
  position: relative;
  overflow-x: hidden;
}
body.has-bg-video::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(60% 80% at 70% 50%, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.7) 100%);
  z-index: -1;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

.cs {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
.cs .cs-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cs .hero-top {
  margin: 0;
  font-weight: 900;
  content: url(../images/logo.png);
  width: 50%;
  margin: 120px auto 40px;
  position: relative;
  z-index: 9999;
}
.cs .hero-main {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: clamp(28px, 9vw, 92px);
}
.cs .hero-badge {
  padding: 10px 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 15, 66, 0.9), rgba(20, 15, 66, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  font-size: clamp(12px, 2vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.cs .hero-badge span {
  display: block;
  width: 100%;
}
.cs .hero-sub {
  opacity: 0.9;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 24px;
}
.cs .countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 24px);
  flex-wrap: wrap;
}
.cs .countdown .unit {
  display: grid;
  justify-items: center;
  gap: 6px;
}
.cs .countdown .unit .num {
  font-weight: 700;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 20px 20px 30px;
  margin: 20px 0 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.cs .countdown .unit .label {
  color: #1d1d1d;
  opacity: 0.8;
  letter-spacing: 0.28em;
  font-size: 14px;
  color: #fff;
}
.cs .cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
}
.cs .cs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  flex-wrap: wrap;
  opacity: 0.95;
  position: relative;
  z-index: 9999;
}
.cs .cs-footer .footer-left {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.cs .cs-footer .footer-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cs .cs-footer .social-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  font-size: 14px;
  letter-spacing: 0.08em;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8px 0 8px 45px;
  margin: 0 10px;
}
.cs .cs-footer .social-link.web {
  background-image: url(../images/icon-web.png);
}
.cs .cs-footer .social-link.instagram {
  background-image: url(../images/icon-instagram.png);
}
.cs .cs-footer .social-link.x {
  background-image: url(../images/icon-x.png);
}

@media (max-width: 960px) {
  .cs .countdown {
    gap: 12px;
  }
  .cs .countdown .unit {
    width: 25vw;
    max-width: 180px;
  }
  .cs .countdown .unit .num {
    font-size: 48px;
  }
  .cs .cs-footer .footer-right {
    gap: 12px;
  }
  .cs .hero-top {
    width: 80% !important;
  }
  .form-card {
    width: 80% !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.32));
  }
  .modal__close {
    z-index: 9 !important;
    right: 16px !important;
  }
  .modal__overlay {
    background-color: rgba(0, 0, 0, 0.6) !important;
  }
}
@media screen and (max-width: 960px) {
  .cs .cs-footer {
    justify-content: center;
  }
}
body.modal-open {
  overflow: hidden;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
}
.modal__content {
  position: relative;
  width: min(92vw, 680px);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  cursor: pointer;
}

/* Form card in modal */
.form-card {
  width: 100%;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 18px;
}

.form-field {
  position: relative;
}
.form-field:last-child::after {
  display: none;
}

.form-field input {
  width: 100%;
  height: 56px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.form-field input::placeholder {
  color: #fff;
  opacity: 1;
}
.form-field input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.form-field input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.form-field input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.form-field input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.form-field::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

/* CTA variant in modal */
.cta--modal {
  margin-top: 4px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #0e0e0e;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  body {
    overflow: hidden !important;
  }
}

/*# sourceMappingURL=app.css.map */
