:root {
  --bodyseasons-heading: #1f2937;
  --bodyseasons-body: #6b7280;
  --bodyseasons-muted: #94a3b8;
  --bodyseasons-rose: #fb7185;
  --bodyseasons-fuchsia: #e879f9;
  --bodyseasons-amber: #fbbf24;
  --bodyseasons-mint: #99f6e4;
  --bodyseasons-panel: #ffffff;
  --bodyseasons-field: #f8fafc;
  --bodyseasons-border: rgba(251, 113, 133, 0.18);
  --bodyseasons-gradient: linear-gradient(135deg, var(--bodyseasons-rose), var(--bodyseasons-fuchsia));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fffafc;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 68px 20px 32px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 14%, rgba(153, 246, 228, 0.28), transparent 24rem),
    radial-gradient(circle at 91% 9%, rgba(232, 121, 249, 0.15), transparent 22rem),
    linear-gradient(180deg, #fffafd 0%, #fff 54%, #fff9f4 100%);
  color: var(--bodyseasons-heading);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 7px;
  background: linear-gradient(90deg, var(--bodyseasons-rose), var(--bodyseasons-fuchsia), var(--bodyseasons-amber), var(--bodyseasons-mint));
  content: "";
}

body::after {
  position: fixed;
  right: -72px;
  bottom: 7%;
  z-index: 0;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(251, 113, 133, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.container.wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 34px 42px 42px;
  overflow: hidden;
  border: 1px solid var(--bodyseasons-border);
  border-radius: 30px 30px 30px 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.09);
}

.container.wrap::after {
  position: absolute;
  top: -74px;
  right: -58px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.16), rgba(232, 121, 249, 0.06) 52%, transparent 70%);
  content: "";
  pointer-events: none;
}

.header {
  position: relative;
  z-index: 1;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--bodyseasons-border);
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bodyseasons-heading);
  text-decoration: none;
}

.logo img,
.bodyseasons-brandmark {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(190, 24, 93, 0.14);
}

.bodyseasons-brandmark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bodyseasons-wordmark {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.wrap > section {
  position: relative;
  z-index: 1;
  padding-top: 32px;
}

.wrap > section > h1,
.wrap > section > h2,
.bodyseasons-reward h2 {
  margin: 0;
  color: var(--bodyseasons-heading);
  font-size: clamp(2rem, 7vw, 2.7rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.bodyseasons-intro {
  max-width: 38rem;
  margin: 14px 0 0;
  color: var(--bodyseasons-body);
  font-size: 1.02rem;
  line-height: 1.72;
}

.bodyseasons-perk {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 2px;
  padding: 9px 13px;
  border: 1px solid rgba(251, 113, 133, 0.2);
  border-radius: 999px;
  background: rgba(255, 241, 245, 0.82);
  color: #9f1239;
  font-size: 0.84rem;
  font-weight: 720;
}

.bodyseasons-perk::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bodyseasons-gradient);
  content: "";
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
}

.form {
  margin-top: 28px;
}

.form p {
  margin: 0 0 20px;
}

.form label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--bodyseasons-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  outline: none;
  background: var(--bodyseasons-field);
  color: var(--bodyseasons-heading);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:not([type="checkbox"]):hover,
textarea:hover,
select:hover {
  border-color: rgba(251, 113, 133, 0.48);
  background: #fff;
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  border-color: var(--bodyseasons-rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--bodyseasons-muted);
}

.nonce {
  display: none !important;
}

.lists {
  display: grid;
  gap: 11px;
  margin: 28px 0 26px;
  padding: 0;
  list-style: none;
}

.lists > h2 {
  margin: 0 0 2px;
  color: var(--bodyseasons-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.lists li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0 11px;
  margin: 0;
  padding: 15px 16px;
  border: 1px solid #e8eaf0;
  border-radius: 15px;
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.lists li:hover {
  border-color: rgba(251, 113, 133, 0.42);
  transform: translateY(-1px);
}

.lists li.bodyseasons-list--selected {
  border-color: rgba(251, 113, 133, 0.38);
  background: linear-gradient(135deg, rgba(255, 241, 245, 0.88), rgba(250, 245, 255, 0.76));
}

.lists li.bodyseasons-list--internal {
  display: none;
}

.lists input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--bodyseasons-rose);
  cursor: pointer;
}

.lists li > label {
  margin: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.lists .description {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--bodyseasons-body);
  font-size: 0.82rem;
  line-height: 1.55;
}

.button,
button[type="submit"] {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  background: var(--bodyseasons-gradient);
  box-shadow: 0 12px 28px rgba(190, 24, 93, 0.18);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
button[type="submit"]:hover {
  box-shadow: 0 15px 34px rgba(190, 24, 93, 0.24);
  filter: saturate(1.06);
  transform: translateY(-1px);
}

.button:active,
button[type="submit"]:active {
  box-shadow: 0 7px 18px rgba(190, 24, 93, 0.16);
  transform: translateY(0);
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(251, 113, 133, 0.42);
  outline-offset: 3px;
}

.bodyseasons-privacy {
  margin: -4px 0 0;
  color: var(--bodyseasons-muted);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

body > footer.container {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin: 22px auto 0;
  color: #a1a1aa;
  font-size: 0.72rem;
  text-align: center;
}

body > footer.container a {
  color: inherit;
}

.bodyseasons-reward {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--bodyseasons-border);
  border-radius: 20px 20px 20px 8px;
  background: linear-gradient(145deg, rgba(255, 241, 245, 0.9), rgba(250, 245, 255, 0.92));
  text-align: center;
}

.bodyseasons-reward h2 {
  font-size: clamp(1.65rem, 6vw, 2.1rem);
}

.bodyseasons-reward p {
  color: var(--bodyseasons-body);
}

.bodyseasons-reward__code {
  width: 100%;
  margin: 8px 0 10px;
  padding: 14px 16px;
  border: 1px dashed var(--bodyseasons-rose);
  border-radius: 13px;
  background: #fff;
  color: #9f1239;
  font: inherit;
  font-weight: 850;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.bodyseasons-reward__hint {
  margin-bottom: 0;
  color: var(--bodyseasons-muted) !important;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  body {
    padding: 28px 0 24px;
    background: #fff;
  }

  body::after {
    display: none;
  }

  .container.wrap {
    width: 100%;
    padding: 25px 22px 34px;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header {
    padding-bottom: 22px;
  }

  .logo img,
  .bodyseasons-brandmark {
    width: 43px;
    height: 43px;
  }

  .wrap > section {
    padding-top: 26px;
  }

  .wrap > section > h1,
  .wrap > section > h2 {
    font-size: 2.05rem;
  }

  .bodyseasons-intro {
    font-size: 0.96rem;
  }

  .form {
    margin-top: 25px;
  }

  .lists li {
    padding: 14px;
  }

  body > footer.container {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
