@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Manrope-SemiBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Even Mono";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/EvenMono-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Katherine";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Katherine-Regular.otf") format("opentype");
  font-display: swap;
}

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

html, body {
  height: 100%;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: #181a1c;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

/* ============ DESKTOP (design baseline 1920x1080) ============ */

.stage {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(rgba(10, 14, 20, 0.18), rgba(10, 14, 20, 0.18)), url("sky.jpg");
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
}

.frame {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: clamp(20px, 2.8vh, 38px);
  margin-bottom: 0;
  padding-bottom: clamp(14px, 1.8vh, 26px);
}

.topbar {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(56px, 4.79vw, 100px);
}

.topbar__logo {
  width: clamp(150px, 15.5vw, 300px);
  height: auto;
}

.content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
  z-index: 0;
}

.content__left {
  position: relative;
  width: 45.47%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: clamp(56px, 4.79vw, 100px);
  padding-right: clamp(24px, 2vw, 48px);
  padding-top: 0;
}

.dv-logo {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 28px);
}

.dv-logo__script {
  width: clamp(100px, 9.96vw, 193px);
  height: auto;
  display: block;
}

.dv-logo__caps {
  font-family: "Even Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  font-size: clamp(1.13rem, 2.39vw, 2.46rem);
  line-height: 1;
}

.soon {
  font-family: "Katherine", cursive;
  font-weight: 400;
  font-size: clamp(41px, 3.83vw, 74px);
  line-height: 1;
}

.title {
  font-family: "Even Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(17px, 1.5vw, 30px);
  line-height: 105%;
  max-width: 785px;
  margin-bottom: clamp(8px, 1.4vh, 28px);
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
}

.field {
  border-bottom: 1px solid #fff;
  padding: 8px 0 12px;
}
.field + .field { margin-top: 2px; }

.field__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(14px, 0.833vw, 16px);
}
.field__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.lead-form__hint {
  margin-top: clamp(6px, 1vh, 14px);
  margin-bottom: clamp(6px, 1.4vh, 24px);
  font-size: clamp(14px, 0.833vw, 16px);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 50px);
  margin-top: clamp(10px, 2.5vh, 48px);
  padding: clamp(16px, 1.85vh, 21px) clamp(20px, 1.56vw, 30px);
  background: #ededed;
  border: none;
  color: #191a18;
  width: fit-content;
}

.submit-btn__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #191a18;
  flex-shrink: 0;
}

.submit-btn span:last-child {
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(13px, 0.833vw, 16px);
  letter-spacing: 0.02em;
}

.agreements {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 14px);
  margin-top: clamp(10px, 1.8vh, 22px);
  margin-bottom: 20px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.checkbox__box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid #fff;
  position: relative;
}

.checkbox input:checked + .checkbox__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox__text {
  font-size: clamp(13px, 0.833vw, 16px);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 3px;
}
.checkbox__text a { text-decoration: underline; }

.lead-form__error {
  display: none;
  margin-top: 16px;
  font-size: clamp(12px, 0.75vw, 14px);
  color: #ff8a80;
}
.lead-form__error.is-visible { display: block; }

.lead-form__success {
  display: none;
  margin-top: 24px;
  font-size: clamp(13px, 0.833vw, 16px);
  color: #fff;
}
.lead-form.is-submitted .lead-form__fields,
.lead-form.is-submitted .lead-form__hint,
.lead-form.is-submitted .submit-btn,
.lead-form.is-submitted .agreements,
.lead-form.is-submitted .lead-form__error {
  display: none;
}
.lead-form.is-submitted .lead-form__success {
  display: block;
}

.tower-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54.53%;
  overflow: hidden;
  z-index: 1;
}

.tower {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 92.87vh;
  width: auto;
  max-width: none;
  transform: translateX(-50%);
}

.content__right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 30.5%;
  width: 54.53%;
  z-index: 0;
}

.dots-grid {
  position: absolute;
  top: clamp(8px, 1.4vw, 26px);
  left: clamp(24px, 3vw, 60px);
  width: calc(100% - (2 * clamp(24px, 3vw, 60px)));
  height: calc(100% - clamp(8px, 1.4vw, 26px) - clamp(24px, 3vw, 60px));
  opacity: 0.9;
}

.footer {
  position: relative;
  z-index: 2;
  width: 45.47%;
  padding: clamp(14px, 2vh, 24px) clamp(24px, 2vw, 48px) 0 clamp(56px, 4.79vw, 100px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vh, 22px);
}

.contacts {
  font-style: normal;
}

.contacts__list {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(12px, 1.8vw, 32px);
  font-size: clamp(13px, 0.833vw, 16px);
}
.contacts__list a { text-decoration: none; }
.contacts__list a:hover { text-decoration: underline; }

.disclaimer {
  font-size: clamp(10px, 0.625vw, 12px);
  line-height: 120%;
  color: rgba(255, 255, 255, 0.5);
}


/* ============ MOBILE / TABLET (<1024px) ============ */

@media (max-width: 1023px) {

  .stage {
    background-image: linear-gradient(rgba(10, 14, 20, 0.18), rgba(10, 14, 20, 0.18)), url("sky.jpg");
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
  }

  .frame {
    margin-top: 0;
    border-bottom: none;
    padding: 28px 20px 24px;
  }

  .topbar {
    padding: 0 20px;
  }

  .topbar__logo {
    width: 140px;
  }

  .dv-logo {
    margin-bottom: 16px;
  }

  .dv-logo__script {
    width: 90px;
  }

  .dv-logo__caps {
    font-size: 1.3rem;
  }

  .content {
    flex-direction: column;
  }

  .content__left {
    width: 100%;
    padding: 0;
    justify-content: flex-start;
  }

  .tower-layer, .content__right { display: none; }

  .soon {
    margin-top: 20px;
    font-size: 36px;
  }

  .title {
    font-size: clamp(24px, 7.5vw, 32px);
    max-width: 100%;
    margin-bottom: 32px;
  }

  .field__input { font-size: 16px; }

  .submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 32px;
    gap: 16px;
  }

  .submit-btn span:last-child { font-size: 14px; }

  .agreements { margin-top: 24px; }

  .checkbox__text { font-size: 13px; }

  .footer {
    width: 100%;
    padding: 48px 0 0;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 40px;
  }

  .disclaimer {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .title { font-size: 22px; }
}

.soon-spacer {
  flex: 1 1 0%;
}
