:root {
  --orange: #fb5908;
  --orange-dark: #e94c00;
  --lime: #9ce000;
  --purple: #4c0c61;
  --ink: #172326;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background: var(--orange);
}

button,
input {
  font: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 76% 18%, rgb(255 255 255 / 16%), transparent 26%),
    linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.ring {
  position: absolute;
  border: 25px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: 1050px;
  height: 1050px;
  top: -720px;
  right: -260px;
}

.ring-two {
  width: 620px;
  height: 620px;
  right: -390px;
  bottom: -390px;
}

.card {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 30px 34px 0;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 32px;
  background: rgb(255 255 255 / 9%);
  box-shadow: 0 35px 90px rgb(93 22 0 / 25%);
  backdrop-filter: blur(9px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand strong {
  font-size: 38px;
  font-style: italic;
  letter-spacing: -3px;
}

.brand span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
}

.content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-top: 18px;
}

.copy {
  padding: 45px 0 70px;
}

.tag {
  display: inline-block;
  padding: 8px 13px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 570px;
  margin: 24px 0 18px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.copy > p {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgb(255 255 255 / 88%);
  font-size: 17px;
  line-height: 1.55;
}

form {
  max-width: 590px;
}

.upload {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 15px 18px;
  border: 2px dashed rgb(255 255 255 / 55%);
  border-radius: 16px;
  background: rgb(255 255 255 / 11%);
  cursor: pointer;
  transition: 160ms ease;
}

.upload:hover {
  border-color: var(--lime);
  background: rgb(255 255 255 / 16%);
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
}

.upload span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.upload strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload small {
  color: rgb(255 255 255 / 72%);
}

.upload input,
.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 17px 2px;
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--lime);
}

button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 57px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--purple);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 35px rgb(54 1 70 / 24%);
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.status {
  display: none;
  margin: 0 0 13px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.status.visible {
  display: block;
}

.status.success {
  color: #173000;
  background: #dfff99;
}

.status.error {
  color: #731d00;
  background: #ffe0d3;
}

.photo {
  position: relative;
  height: 670px;
  align-self: end;
  overflow: hidden;
  border-radius: 34px 34px 0 0;
  background: #f4f3ef;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.photo-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 14px 17px;
  border-radius: 15px;
  background: rgb(76 12 97 / 94%);
}

.photo-label span {
  color: #d8ff74;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-label strong {
  margin-top: 4px;
  font-size: 18px;
}

@media (max-width: 820px) {
  .page {
    padding: 18px;
  }

  .card {
    padding: 24px 22px 0;
  }

  .content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .copy {
    padding: 38px 0 45px;
  }

  .photo {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0;
    place-items: stretch;
  }

  .card {
    min-height: 100vh;
    padding: 22px 18px 0;
    border: 0;
    border-radius: 0;
  }

  .brand strong {
    font-size: 32px;
  }

  h1 {
    font-size: 45px;
  }

  .copy > p {
    font-size: 15px;
  }

  .photo {
    height: 460px;
  }
}
