:root {
  --ink: #111822;
  --muted: #4c5054;
  --gold: #f3bd35;
  --gold-dark: #c4871d;
  --cream: #f4f1ec;
  --dark: #0d1720;
  --green-black: #06120e;
  --line: #dfd4c1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf8;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background-image: url("images/top_bg_desktop.png");
  background-position: top center;
  background-size: cover;
  color: #fff;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 32px;
}

.hero__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand__logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 17px;
  color: rgba(255, 255, 255, .9);
}

.challenge-label {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 72px;
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.hero h1 span {
  color: var(--gold);
}

.hero__copy > p {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.35;
}

.check-list,
.outcome-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 18px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("images/checkmark.svg") center / contain no-repeat;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  border-radius: 4px;
  background: var(--gold);
  color: #080808;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .03em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.button--hero {
  width: min(410px, 100%);
}

.hero__signup-panel {
  width: min(860px, 100%);
  margin-top: 2px;
  padding: 24px 30px 22px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .5);
}

.launch-coupon-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 189, 53, .56);
  border-radius: 999px;
  color: #fff5dc;
  background: rgba(6, 18, 14, .62);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.final-cta__form .launch-coupon-status {
  display: none;
}

.launch-coupon-status__count {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.launch-coupon-status__note {
  min-width: 0;
  color: rgba(255, 245, 220, .88);
  font-size: 13px;
  line-height: 1.25;
}

.launch-coupon-status--full {
  border-color: rgba(239, 126, 88, .75);
}

.launch-coupon-status--error {
  opacity: .86;
}

.launch-coupon-full {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(243, 189, 53, .52);
  border-radius: 14px;
  color: #fff5dc;
  background: rgba(6, 18, 14, .76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.hero__signup-panel .launch-coupon-full {
  margin-left: 0;
}

.launch-coupon-full p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.launch-coupon-full a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.hero__signup-panel .consent-placeholder,
.final-cta__form .consent-placeholder {
  margin-top: 12px;
}

.free-note,
.spots {
  color: var(--gold);
  font-size: 15px;
  text-align: center;
}

.free-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: min(410px, 100%);
  margin: 12px 0 0;
}

.hero__signup-panel .free-note {
  font-size: 24px;
  line-height: 1.35;
}

.free-note img {
  display: block;
  width: 22px;
  height: 22px;
}

.outcome-card {
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  background: rgba(18, 18, 18, .76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px);
}

.outcome-card h2 {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.25;
}

.outcome-card ul {
  display: grid;
  gap: 28px;
}

.outcome-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.outcome-icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.bars::before {
  left: 5px;
  bottom: 5px;
  width: 6px;
  height: 12px;
  border: 2px solid;
  border-top: 0;
}

.bars::after {
  left: 17px;
  bottom: 5px;
  width: 6px;
  height: 26px;
  border: 2px solid;
  border-top: 0;
  box-shadow: 12px 8px 0 -2px var(--gold);
}

.shop::before {
  left: 4px;
  top: 8px;
  width: 28px;
  height: 22px;
  border: 2px solid;
}

.shop::after {
  left: 4px;
  top: 3px;
  width: 28px;
  height: 10px;
  border: 2px solid;
  border-radius: 4px 4px 0 0;
}

.megaphone::before {
  left: 5px;
  top: 11px;
  width: 22px;
  height: 14px;
  border: 2px solid;
  border-radius: 50% 15% 15% 50%;
}

.megaphone::after {
  left: 7px;
  top: 24px;
  width: 8px;
  height: 12px;
  border-left: 2px solid;
  transform: rotate(-12deg);
}

.why,
.testimonials {
  background: #fbfaf8;
}

.why {
  padding: 34px 0 32px;
}

h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.why-card {
  min-height: 170px;
  padding: 0 36px;
  text-align: center;
}

.why-card + .why-card {
  border-left: 1px solid var(--line);
}

.why-card h3 {
  margin: 14px 0 12px;
  font-size: 17px;
}

.why-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.feature-img {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
}

.roadmap {
  padding: 34px 0 28px;
  background: var(--cream);
}

.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.week-card {
  position: relative;
  min-height: 356px;
  padding: 22px 18px 20px;
  border-radius: 11px;
  background: #fff;
  text-align: center;
}

.week-card:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 44%;
  right: -14px;
  z-index: 2;
  color: var(--gold-dark);
  font-size: 40px;
  font-weight: 300;
}

.week-icon {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.week-label {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.week-card h3 {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.25;
}

.week-card p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.testimonials {
  padding: 8px 0 28px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 18px;
}

.quote {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding-right: 28px;
}

.quote + .quote {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #f4d4b4 0 15%, transparent 16%),
    radial-gradient(circle at 50% 80%, #21242a 0 32%, transparent 33%),
    linear-gradient(135deg, #caa27d, #f1ddc6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.avatar--two {
  background:
    radial-gradient(circle at 50% 36%, #f2c6a4 0 15%, transparent 16%),
    radial-gradient(circle at 50% 80%, #111 0 32%, transparent 33%),
    linear-gradient(135deg, #cfc7bd, #f1e3d6);
}

.avatar--three {
  background:
    radial-gradient(circle at 50% 36%, #c98b5a 0 15%, transparent 16%),
    radial-gradient(circle at 50% 80%, #17242d 0 32%, transparent 33%),
    linear-gradient(135deg, #9a714f, #dfc3a4);
}

.quote blockquote {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.quote figcaption {
  color: var(--ink);
  font-size: 15px;
}

.final-cta {
  overflow: hidden;
  aspect-ratio: 1024 / 201;
  background-color: var(--dark);
  background-image: url("images/bottom_button_section.png");
  background-position: center -2px;
  background-size: 100% calc(100% + 2px);
  background-repeat: no-repeat;
  color: #fff;
}

.final-cta__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 290px;
  padding-right: 220px;
}

.final-cta__copy {
  width: min(760px, 100%);
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: 20px;
}

.final-cta p {
  margin: 12px 0 20px;
  font-size: 18px;
  text-align: center;
}

.final-cta .button {
  display: flex;
  width: min(430px, 100%);
  margin: 0 auto;
  min-height: 52px;
  box-shadow: none;
}

.spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 10px 0 0;
  color: #fff;
  font-size: 13px;
}

.spots img {
  display: block;
  width: 16px;
  height: 16px;
}

.seal {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
}

.seal strong {
  display: block;
  font-size: 34px;
  line-height: .9;
}

.seal span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.site-footer {
  padding: 14px 34px 20px;
  background: #000;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}

.footer-benefits {
  padding: 22px 0;
  background: #fbfaf8;
}

.footer-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.footer-benefits__grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-benefits__grid img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 981px) {
  .final-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .final-cta h2 {
    font-size: 22px;
    line-height: 1.18;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .final-cta__form {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 168px;
    padding-top: 30px;
    overflow: visible;
  }

  .final-cta .klaviyo-form-UyejCF {
    width: calc(100% / .76);
    max-width: calc(680px / .76);
    margin: 0 auto !important;
    transform: scale(.76);
    transform-origin: top center;
  }

  .final-cta .klaviyo-form-UyejCF form {
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF .needsclick {
    min-height: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF [data-testid="form-row"] {
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF [data-testid="form-component"] {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .final-cta .klaviyo-form-UyejCF input {
    min-height: 46px !important;
    height: 46px !important;
    border-radius: 4px !important;
    font-size: 16px !important;
  }

  .final-cta .klaviyo-form-UyejCF button {
    min-height: 46px !important;
    height: 46px !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    letter-spacing: .02em !important;
  }

  .final-cta .klaviyo-form-UyejCF label,
  .final-cta .klaviyo-form-UyejCF p,
  .final-cta .klaviyo-form-UyejCF span {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .final-cta .klaviyo-form-UyejCF [role="radiogroup"],
  .final-cta .klaviyo-form-UyejCF fieldset {
    margin-top: 6px !important;
  }

  .final-cta .klaviyo-form-UyejCF [type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background-image: url("images/top_bg_mobile.png");
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
  }

  .outcome-card {
    max-width: 460px;
  }

  .why__grid,
  .roadmap__grid,
  .quote-grid,
  .footer-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .week-card:not(:last-child)::after,
  .why-card + .why-card,
  .quote + .quote {
    border-left: 0;
  }

  .week-card:not(:last-child)::after {
    content: none;
  }

  .final-cta {
    aspect-ratio: auto;
    min-height: 400px;
    background-position: center;
    background-size: cover;
  }

  .final-cta__inner {
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 58px 18px 36px;
    text-align: center;
  }

  .final-cta__copy,
  .final-cta h2 {
    text-align: center;
  }

  .final-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .final-cta h2 {
    max-width: 480px;
    font-size: 22px;
    line-height: 1.12;
    position: relative;
    z-index: 1;
  }

  .final-cta__form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 248px;
    padding-top: 30px;
    overflow: visible;
  }

  .final-cta .klaviyo-form-UyejCF {
    width: calc(100% / .76);
    max-width: calc(680px / .76);
    margin: 0 auto !important;
    transform: scale(.76);
    transform-origin: top center;
  }

  .final-cta .klaviyo-form-UyejCF form {
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF .needsclick {
    min-height: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF [data-testid="form-row"] {
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .final-cta .klaviyo-form-UyejCF [data-testid="form-component"] {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .final-cta .klaviyo-form-UyejCF input,
  .final-cta .klaviyo-form-UyejCF button {
    min-height: 46px !important;
    height: 46px !important;
    border-radius: 4px !important;
  }

  .final-cta .klaviyo-form-UyejCF input {
    font-size: 16px !important;
  }

  .final-cta .klaviyo-form-UyejCF button {
    font-size: 15px !important;
    letter-spacing: .02em !important;
  }

  .final-cta .klaviyo-form-UyejCF label,
  .final-cta .klaviyo-form-UyejCF p,
  .final-cta .klaviyo-form-UyejCF span {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .final-cta .klaviyo-form-UyejCF [role="radiogroup"],
  .final-cta .klaviyo-form-UyejCF fieldset {
    margin-top: 6px !important;
  }

  .final-cta .klaviyo-form-UyejCF [type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
  }

  .seal {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .hero__inner {
    width: min(100% - 28px, 520px);
  }

  .hero__inner {
    padding-top: 22px;
  }

  .hero__nav {
    align-items: flex-start;
    margin-bottom: 54px;
  }

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

  .brand small,
  .challenge-label {
    font-size: 12px;
  }

  .brand__logo {
    width: 32px;
    height: 32px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__copy > p {
    font-size: 20px;
  }

  .hero__signup-panel {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .hero__signup-panel .free-note {
    font-size: 20px;
  }

  .button {
    width: 100%;
    padding: 0 18px;
    font-size: 16px;
  }

  .why__grid,
  .roadmap__grid,
  .quote-grid,
  .footer-benefits__grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .quote {
    grid-template-columns: 76px 1fr;
    padding: 0;
  }

  .quote + .quote {
    padding-left: 0;
  }
}
