* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffd662;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  background: #422057;
  min-height: 100vh;
  overflow: hidden;
}

.top {
  background: #ffd662;
  color: #111;
  padding: 34px 24px 150px;
  text-align: center;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  position: relative;
  z-index: 1;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand,
.page-tag {
  border: 2px solid #111;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 900;
}

.top h1 {
  margin: 70px 0 10px;
  font-size: clamp(48px, 10vw, 98px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -3px;
}

.subtitle {
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
}

.top-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-buttons a {
  min-width: 240px;
  text-decoration: none;
  color: #111;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 20px;
  font-weight: 900;
}

.image-wrap {
  position: relative;
  z-index: 10;
  margin-top: -125px;
  text-align: center;
}

.image-wrap img {
  width: 330px;
  height: 330px;
  object-fit: cover;
  border-radius: 50%;
  border: 14px solid #422057;
  background: #333;
  position: relative;
  z-index: 11;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.bottom {
  position: relative;
  z-index: 2;
  padding: 42px 28px 36px;
  text-align: center;
  color: #ffd662;
}

.bottom h2 {
  margin: 0;
  font-size: clamp(48px, 10vw, 86px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -2px;
}

.text {
  margin: 18px auto 28px;
  max-width: 680px;
  font-size: 24px;
}

form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #ffd662;
  border-radius: 10px;
  background: transparent;
  color: #ffd662;
  font-size: 20px;
  outline: none;
}

input::placeholder {
  color: rgba(255, 214, 98, 0.72);
}

.choice {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.choice label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

.choice input {
  width: 24px;
  height: 24px;
  accent-color: #ffd662;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  font-size: 17px;
  line-height: 1.4;
}

.consent input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: #ffd662;
}

button {
  margin-top: 10px;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #ffd662;
  color: #111;
  padding: 20px 28px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
}

.secure {
  margin: 22px 0 0;
  font-size: 18px;
}

.success {
  max-width: 760px;
  margin: 24px auto 0;
  border: 2px solid #ffd662;
  border-radius: 18px;
  padding: 24px;
}

.success h3 {
  margin: 0 0 8px;
  font-size: 30px;
}

.success p {
  margin: 0;
  font-size: 18px;
}

.hidden {
  display: none;
}

footer {
  margin-top: 34px;
  text-align: left;
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .top {
    padding: 24px 18px 125px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .brand,
  .page-tag {
    font-size: 13px;
    padding: 8px 12px;
  }

  .top h1 {
    margin-top: 58px;
  }

  .top-buttons a {
    width: 100%;
    min-width: auto;
  }

  .image-wrap {
    margin-top: -95px;
  }

  .image-wrap img {
    width: 240px;
    height: 240px;
    border-width: 10px;
  }

  .bottom {
    padding: 34px 20px 30px;
  }

  .text {
    font-size: 20px;
  }

  .choice {
    gap: 24px;
  }

  button {
    font-size: 22px;
  }
}