:root {
  color-scheme: light;
  --ink: #101722;
  --ink-soft: #344354;
  --paper: #f5f2e9;
  --paper-bright: #fffdf8;
  --acid: #d9ff63;
  --acid-deep: #a9de24;
  --warm: #f1a673;
  --line: #c9cdc7;
  --shell: 56rem;
  --radius: 1.5rem;
  --shadow: 0 1rem 2.5rem rgba(16, 23, 34, .13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.has-sticky-cta {
  padding-bottom: var(--sticky-height, 5.5rem);
}

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.hero {
  padding: 1rem 0 1.25rem;
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 255, 99, .24), transparent 31rem),
    var(--paper-bright);
}

.hero__inner {
  display: grid;
  gap: 1.25rem;
}

.brand-mark {
  display: flex;
  width: 3.75rem;
  height: 2rem;
  align-items: center;
  gap: .2rem;
}

.brand-mark span {
  display: block;
  width: .5rem;
  height: 1.75rem;
  border-radius: 1rem;
  background: var(--ink);
  transform: rotate(28deg);
}

.brand-mark span:nth-child(2) {
  height: 1.1rem;
  background: var(--acid-deep);
}

.hero__copy {
  display: grid;
  gap: 1rem;
}

h1,
h2,
p,
blockquote,
figure {
  margin: 0;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 10vw, 4.75rem);
  font-weight: 830;
  letter-spacing: -.065em;
  line-height: .95;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.65rem, 7vw, 3.25rem);
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero__sub {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  line-height: 1.4;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: .125rem solid var(--ink);
  border-radius: 999px;
  padding: .75rem 1.35rem;
  font-weight: 780;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button--primary {
  color: var(--ink);
  background: var(--acid);
  box-shadow: .3rem .3rem 0 var(--ink);
}

.button--primary:hover {
  background: #e5ff8d;
  transform: translate(-.08rem, -.08rem);
  box-shadow: .42rem .42rem 0 var(--ink);
}

.button--primary:active {
  transform: translate(.12rem, .12rem);
  box-shadow: .1rem .1rem 0 var(--ink);
}

:focus-visible {
  outline: .2rem solid #0969da;
  outline-offset: .25rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  border: .125rem solid var(--ink);
  border-radius: var(--radius);
  background: var(--acid);
  box-shadow: var(--shadow);
}

.hero-visual__art {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual--video {
  aspect-ratio: 16 / 9;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}

.hero-visual--video .hero-visual__art {
  object-fit: cover;
}

.proof-strip {
  border-block: .125rem solid var(--ink);
  padding: 1rem 0;
  background: var(--ink);
  color: var(--paper-bright);
}

.proof-strip p {
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .035em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.story {
  display: grid;
  gap: 1rem;
  padding-block: 1.25rem;
}

.story-card {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border: .125rem solid var(--ink);
  border-radius: var(--radius);
  padding: 4.75rem 1.25rem 1.5rem;
  background: var(--paper-bright);
}

.story-card--lead {
  background: var(--acid);
}

.story-card h2 {
  font-size: clamp(1.5rem, 6vw, 2.6rem);
}

.story-card p {
  max-width: 40rem;
  margin-top: .85rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.story-card h2 + p {
  margin-top: 1.1rem;
}

.story-card--lead p {
  color: var(--ink);
}

.story-card__number {
  position: absolute;
  top: -.8rem;
  right: .7rem;
  color: rgba(16, 23, 34, .11);
  font-size: 6.8rem;
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: 1;
}

.villains {
  padding-block: 1.25rem;
  background: var(--ink);
}

.villains__grid {
  display: grid;
  gap: 1rem;
}

.villain-card {
  display: grid;
  min-height: 17rem;
  align-content: space-between;
  gap: 3rem;
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--paper-bright);
}

.villain-card--warm {
  background: var(--warm);
}

.villain-card__icon {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border: .15rem solid var(--ink);
  border-radius: 50%;
}

.villain-card__icon::before,
.villain-card__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: .18rem;
  border-radius: 1rem;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.villain-card__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mechanism {
  padding-block: 1.25rem;
  background: var(--acid);
}

.mechanism .shell {
  display: grid;
  gap: 1.25rem;
}

.mechanism h2 {
  max-width: 18ch;
}

.mechanism p {
  max-width: 44rem;
  font-size: clamp(1.02rem, 4vw, 1.18rem);
}

.mechanism__visual {
  position: relative;
  height: 7rem;
}

.mechanism__visual span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(82vw, 39rem);
  height: 1rem;
  border: .12rem solid var(--paper-bright);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 .28rem .8rem rgba(16, 23, 34, .2);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.mechanism__visual span:nth-child(2) {
  width: min(65vw, 31rem);
  transform: translate(-50%, -50%) rotate(10deg);
}

.mechanism__visual span:nth-child(3) {
  width: min(45vw, 22rem);
  background: var(--warm);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.benefits {
  padding-block: 1.25rem;
}

.section-label {
  margin-bottom: 1rem;
}

.benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: benefits;
}

.benefits__list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: start;
  gap: .8rem;
  border-top: .125rem solid var(--ink);
  padding: 1rem 0;
  font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  font-weight: 690;
  line-height: 1.3;
  counter-increment: benefits;
}

.benefits__list li::before {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  content: "0" counter(benefits);
}

.benefits__list li:last-child {
  border-bottom: .125rem solid var(--ink);
}

.proof {
  padding-block: 1.25rem;
  background: var(--paper-bright);
}

.proof__facts {
  display: grid;
  max-width: 44rem;
  gap: .85rem;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.proof__label {
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof__next {
  max-width: 44rem;
  margin-top: 1.25rem;
  font-weight: 720;
}

.proof__grid {
  display: grid;
  gap: 1rem;
}

.proof-card {
  display: grid;
  min-height: 12rem;
  align-content: end;
  border: .125rem solid var(--ink);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--paper);
}

.proof-card blockquote {
  font-size: 1.1rem;
  font-weight: 720;
  line-height: 1.35;
}

.proof-card figcaption {
  margin-top: .7rem;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .72;
}

.proof-card--feature {
  min-height: 22rem;
  align-content: space-between;
  background: var(--ink);
  color: var(--paper-bright);
}

.proof-card--acid {
  background: var(--acid);
}

.proof-card__portrait {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 34%, var(--warm) 0 13%, transparent 13.5%),
    radial-gradient(ellipse at 50% 100%, var(--acid) 0 34%, transparent 34.5%),
    linear-gradient(145deg, #435364, #1a2633);
}

.proof-card__portrait span {
  position: absolute;
  inset: auto 8% 10%;
  height: .55rem;
  border-radius: 1rem;
  background: var(--paper-bright);
  opacity: .35;
}

.offer {
  padding-block: 1.25rem;
  background: var(--paper-bright);
  scroll-margin-top: 1rem;
}

.offer-card {
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: calc(var(--radius) + .25rem);
  padding: 1.25rem;
  background: var(--ink);
  color: var(--paper-bright);
  box-shadow: var(--shadow);
}

.offer-card__product {
  position: relative;
  height: 12rem;
  border-radius: var(--radius);
  background: var(--acid);
}

.offer-card__product span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 1.2rem;
  border: .15rem solid var(--paper-bright);
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(8deg);
}

.offer-card__product span:nth-child(2) {
  width: 54%;
  background: var(--ink-soft);
  transform: translate(-50%, -50%) rotate(-17deg);
}

.offer-card__product span:nth-child(3) {
  width: 36%;
  background: var(--warm);
  transform: translate(-50%, -50%) rotate(28deg);
}

.offer-card__detail,
.offer-card__proof {
  color: #d9e0e5;
}

.offer-card__list {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding-left: 1.15rem;
  color: #d9e0e5;
}

.offer-card__list s {
  margin-right: .1rem;
  opacity: .55;
}

.offer-card__proof {
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.button--light {
  border-color: var(--paper-bright);
  box-shadow: .3rem .3rem 0 var(--paper-bright);
}

.faq {
  padding-block: 1.25rem;
}

.faq__list {
  border-top: .125rem solid var(--ink);
}

.faq details {
  border-bottom: .125rem solid var(--ink);
}

.faq summary {
  position: relative;
  display: block;
  min-height: 3.5rem;
  padding: 1rem 3rem 1rem 0;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: .25rem;
  width: 1.6rem;
  height: 1.6rem;
  border: .125rem solid var(--ink);
  border-radius: 50%;
  content: "+";
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 42rem;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--ink-soft);
}

.faq__cta {
  padding-top: 1.25rem;
}

footer {
  border-top: .125rem solid var(--ink);
  padding: 1.25rem 0;
  background: var(--paper-bright);
  color: var(--ink-soft);
  font-size: .8rem;
}

footer a {
  text-decoration: underline;
  text-underline-offset: .18em;
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  border-top: .125rem solid var(--ink);
  padding: .75rem max(1rem, env(safe-area-inset-right)) calc(.75rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 -.5rem 1.5rem rgba(16, 23, 34, .12);
  backdrop-filter: blur(.75rem);
}

.sticky-cta .button {
  width: min(100%, 31rem);
}

@media (min-width: 46rem) {
  body,
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero__inner {
    gap: 1.5rem;
  }

  .hero__copy {
    gap: 1.25rem;
  }

  .hero__copy .button {
    margin-top: .25rem;
  }

  .story,
  .villains,
  .mechanism,
  .benefits,
  .proof,
  .offer,
  .faq {
    padding-block: 1.5rem;
  }

  .story-card {
    min-height: 16rem;
    padding: 6rem 2rem 2rem;
  }

  .villain-card {
    min-height: 20rem;
    padding: 2rem;
  }

  .proof__grid {
    grid-template-columns: 1.35fr 1fr;
  }

  .proof-card--feature {
    grid-row: span 2;
  }

  .offer-card {
    padding: 2rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
