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

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  width: 100%;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.top-bar-launch {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  color: #e60000;
  opacity: 1;
}

.mobile-break {
  display: none;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 20px 60px;
  max-width: 600px;
  margin: 0 auto;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 32px;
}

.headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight-box {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 4px 14px;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: 900;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 32px;
  max-width: 480px;
}

.form-vip {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: #e5e5e5;
}

.field input {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
}

.field input::placeholder {
  color: #777;
}

.field input:focus {
  border-color: #fff;
}

.field input.invalid {
  border-color: #ff4d4d;
}

.field-error {
  font-size: 12px;
  color: #ff6b6b;
  min-height: 14px;
}

.btn-submit {
  background: #e60000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 4px;
}

.btn-submit:hover {
  opacity: 0.85;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin-top: 8px;
  background: #25d366;
  color: #fff;
}

.microcopy {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  text-align: center;
}

.form-feedback {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-height: 18px;
}

.form-feedback.success {
  color: #4caf50;
}

.form-feedback.error {
  color: #ff6b6b;
}

@media (min-width: 768px) {
  .top-bar-launch {
    font-size: 14px;
  }

  .microcopy {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 11px;
  }

  .mobile-break {
    display: inline;
  }

  .headline {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
  }

  .logo {
    width: 96px;
  }
}
