:root {
  --red: #d71920;
  --red-bright: #ff2934;
  --red-dark: #920e14;
  --ink: #151313;
  --ink-soft: #3b3535;
  --paper: #fffaf2;
  --white: #ffffff;
  --cream: #f5eadc;
  --line: #ddcfc0;
  --green: #159b61;
  --shadow: 0 18px 50px rgba(40, 15, 15, 0.14);
  --display: Impact, Haettenschweiler, "Franklin Gothic Condensed", sans-serif;
  --body: "Franklin Gothic Medium", Aptos, "Trebuchet MS", sans-serif;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 12vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 9vw, 4.7rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 5vw, 1.85rem);
  line-height: 1.12;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #ffd84a;
  outline-offset: 4px;
}

.announcement {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 126px) max(20px, calc((100vw - 1120px) / 2));
}

.section-shell--dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 41, 52, 0.2), transparent 28%),
    linear-gradient(145deg, #1d1818, #0e0c0c 65%);
  color: var(--white);
}

.section-shell--red {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 20px 20px,
    var(--red);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ffb6b9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow),
.section-lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
}

.section-heading--light > p:not(.eyebrow) {
  color: #d9d0d0;
}

.hero {
  padding-top: clamp(30px, 6vw, 72px);
  background:
    radial-gradient(circle at 95% 18%, rgba(215, 25, 32, 0.18), transparent 25%),
    repeating-linear-gradient(118deg, transparent 0 48px, rgba(215, 25, 32, 0.035) 49px 50px),
    var(--paper);
}

.hero::after {
  content: "20K";
  position: absolute;
  right: -0.12em;
  bottom: -0.18em;
  color: rgba(215, 25, 32, 0.055);
  font-family: var(--display);
  font-size: min(48vw, 34rem);
  line-height: 0.8;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}

.hero__copy,
.hero__decision {
  min-width: 0;
}

.brand-logo {
  width: min(190px, 52vw);
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: var(--ink-soft);
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.55rem, 11vw, 5.8rem);
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 3.8vw, 1.35rem);
}

.hero__bullets,
.signal-list,
.offer-stack ul,
.bonus-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__bullets {
  display: none;
  gap: 10px;
}

.hero__bullets li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.hero__decision {
  align-self: center;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.video-kicker {
  margin-bottom: 9px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.vsl-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #111;
  box-shadow: 0 0 0 4px var(--ink), var(--shadow);
}

.vsl-frame iframe,
.vsl-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.vsl-frame iframe {
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

.vsl-frame[data-vsl-state="ready"] iframe {
  opacity: 1;
}

.vsl-facade {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #0d0b0b;
  color: var(--white);
  cursor: pointer;
}

.vsl-facade[hidden] {
  display: none;
}

.vsl-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vsl-facade__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 8, 0.18), rgba(9, 8, 8, 0.82));
}

.vsl-facade__action {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.vsl-facade__play {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  padding-left: 4px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.vsl-facade:hover .vsl-facade__play,
.vsl-facade:focus-visible .vsl-facade__play {
  transform: scale(1.07);
}

.vsl-facade__action strong,
.vsl-facade__action small {
  display: block;
}

.vsl-facade__action strong {
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vsl-facade__action small {
  margin-top: 3px;
  color: #e1d7d7;
  font-size: 0.72rem;
}

.vsl-facade[aria-busy="true"] .vsl-facade__play {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  background: rgba(215, 25, 32, 0.8);
  color: transparent;
  animation: vsl-spin 800ms linear infinite;
}

@keyframes vsl-spin {
  to { transform: rotate(360deg); }
}

.price-card {
  padding: 15px 18px 13px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  text-align: center;
}

.price-card p {
  margin-bottom: 0;
}

.price-card__anchor {
  color: var(--red);
  font-size: 0.94rem;
  font-style: italic;
  font-weight: 900;
}

.price-card__prefix {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__value {
  margin-top: -2px;
  color: var(--red);
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 0.95;
}

.price-card__value span {
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 900;
}

.price-card__urgency {
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--red-bright);
  border-radius: 4px;
  background: var(--red-bright);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 0 var(--red-dark), 0 15px 25px rgba(146, 14, 20, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.cta:hover {
  background: #ff4550;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 var(--red-dark), 0 18px 30px rgba(146, 14, 20, 0.2);
}

.cta:active {
  transform: translateY(5px);
  box-shadow: 0 3px 0 var(--red-dark);
}

.hero .cta {
  margin-top: 10px;
}

.trust-strip,
.payment-strip {
  width: min(100%, 400px);
  margin: 16px auto 0;
}

.contrast-grid {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}

.contrast-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contrast-card--problem {
  border-top: 6px solid var(--ink);
}

.contrast-card--solution {
  border-top: 6px solid var(--green);
  box-shadow: var(--shadow);
}

.contrast-card__label {
  margin-bottom: 9px;
  color: #736969;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list li {
  position: relative;
  padding-left: 30px;
}

.signal-list li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.signal-list--negative li::before {
  content: "×";
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

.signal-list--positive li::before {
  content: "✓";
  color: var(--green);
}

.section-bridge {
  max-width: 720px;
  margin: 36px auto 0;
  text-align: center;
}

.section-bridge p {
  font-size: 1.15rem;
}

.cta--dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 8px 0 #000;
}

.solution {
  display: grid;
  gap: 44px;
}

.solution__intro {
  max-width: 740px;
}

.solution__intro p:last-child {
  color: #cfc5c5;
  font-size: 1.15rem;
}

.mechanism {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mechanism li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.mechanism li > span {
  grid-row: span 2;
  color: var(--red-bright);
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.mechanism strong {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.mechanism small {
  color: #bdb4b4;
}

.deliverables {
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(215, 25, 32, 0.035) 29px 30px);
}

.deliverables__top {
  display: grid;
  gap: 26px;
  align-items: end;
  margin-bottom: 36px;
}

.deliverables h2 span {
  color: var(--red);
  font-size: 1.12em;
}

.volume-stamp {
  display: flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  transform: rotate(5deg);
}

.volume-stamp strong {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.9;
}

.volume-stamp span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.library-showcase {
  display: grid;
  gap: 28px;
  align-items: start;
}

.library-shot {
  padding: 10px;
  border: 1px solid #2f2929;
  background: #171414;
  box-shadow: var(--shadow);
}

.library-shot img {
  width: 100%;
}

.library-shot figcaption,
.bonus-preview figcaption {
  padding: 10px 5px 1px;
  color: #b9aeae;
  font-size: 0.75rem;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-grid > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  min-height: 78px;
  padding: 12px 10px;
  border-bottom: 2px solid var(--line);
}

.category-grid > div > span {
  grid-row: span 2;
  font-size: 1.2rem;
}

.category-grid strong {
  line-height: 1.1;
}

.category-grid small {
  color: #6e6464;
  line-height: 1.2;
}

.delivery-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-points li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.centered-cta {
  max-width: 600px;
  margin: 34px auto 0;
}

.organization {
  display: grid;
  gap: 38px;
}

.organization h2 {
  max-width: 780px;
}

.organization__copy > p:last-child {
  max-width: 680px;
  color: #ffe6e7;
  font-size: 1.1rem;
}

.organization__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.organization__proof > div {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

.organization__proof strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 400;
  text-transform: uppercase;
}

.organization__proof span {
  color: #ffd9db;
  font-size: 0.76rem;
}

.influencers {
  background: var(--cream);
}

.influencer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 42px;
}

.influencer-grid figure {
  margin: 0;
  background: var(--white);
}

.influencer-grid img {
  width: 100%;
}

.influencer-grid figcaption {
  padding: 10px 5px;
  border-top: 4px solid var(--red);
  color: var(--ink);
  font-size: clamp(0.7rem, 3vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.editorial-transition {
  max-width: 780px;
  margin: -12px auto 30px;
  padding: 16px 20px;
  border-left: 5px solid var(--red);
  background: #f0e8de;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.editorial-transition strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.evidence-grid {
  display: grid;
  gap: 26px;
  align-items: center;
  max-width: 1000px;
  margin-inline: auto;
  padding: clamp(20px, 5vw, 42px);
  border: 1px solid #cdbfb1;
  background: var(--white);
  box-shadow: var(--shadow);
}

.evidence-grid img {
  width: 100%;
}

.evidence-grid__lead {
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.evidence-grid blockquote {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-left: 6px solid var(--red);
  background: #f0ece7;
  font-size: 1.16rem;
  font-weight: 900;
}

.evidence-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #675f5f;
  font-size: 0.78rem;
}

.social-proof {
  background:
    linear-gradient(rgba(14, 12, 12, 0.96), rgba(14, 12, 12, 0.96)),
    repeating-linear-gradient(45deg, #fff 0 1px, transparent 1px 14px);
}

.social-proof h2 span {
  color: var(--red-bright);
}

.testimonial-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-grid img {
  width: 100%;
  border: 1px solid #4e4545;
  border-radius: 8px;
  background: #171212;
}

.bonuses {
  background: var(--paper);
}

.promo-banner {
  display: flex;
  max-width: 850px;
  flex-direction: column;
  margin: 0 auto 48px;
  padding: 18px 22px;
  border-left: 8px solid var(--red-bright);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #cbbcaf;
}

.promo-banner p,
.promo-banner strong,
.promo-banner span {
  margin: 0;
}

.promo-banner p {
  font-family: var(--display);
  color: #ff8f94;
  font-size: 1.65rem;
  line-height: 1;
}

.promo-banner strong {
  font-size: 1.15rem;
}

.promo-banner span {
  margin-top: 5px;
  font-size: 0.82rem;
  font-weight: 900;
}

.bonuses__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.bonus-list {
  display: grid;
  gap: 9px;
}

.bonus-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.bonus-list li span {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.bonus-preview {
  margin: 0;
  padding: 14px;
  border: 2px solid var(--ink);
  background: var(--white);
  transform: rotate(1deg);
  box-shadow: var(--shadow);
}

.bonus-preview figcaption {
  color: var(--ink-soft);
}

.countdown {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin: 48px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.countdown span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.section-shell--offer {
  display: grid;
  gap: 36px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 41, 52, 0.24), transparent 28%),
    #151212;
  color: var(--white);
}

.offer__visual {
  align-self: center;
  text-align: center;
}

.offer__logo {
  width: min(280px, 70vw);
  margin-inline: auto;
}

.offer__mockup {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
}

.offer__visual p {
  color: #c6bebe;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer__card {
  padding: clamp(22px, 5vw, 42px);
  border: 2px solid #4c4141;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 14px 0 var(--red-dark);
}

.offer-stack {
  margin-top: 24px;
}

.offer-stack h3 {
  margin: 22px 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-stack li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--line);
}

.offer-stack li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.offer-price {
  margin: 30px 0 20px;
  padding: 22px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.offer-price p,
.offer-price span,
.offer-price strong,
.offer-price em {
  display: block;
  margin: 0;
}

.offer-price p {
  color: var(--red);
  font-style: italic;
  font-weight: 900;
}

.offer-price span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-price strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 0.9;
}

.offer-price strong small {
  font-family: var(--body);
  font-size: 1.2rem;
}

.offer-price em {
  margin-top: 8px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-assurance {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.offer-assurance span {
  color: var(--green);
}

.cta--full {
  width: 100%;
}

.guarantee {
  background: var(--cream);
}

.guarantee__grid {
  display: grid;
  gap: 26px;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

.guarantee__grid img {
  width: min(260px, 72vw);
  margin-inline: auto;
}

.guarantee__grid p:not(.eyebrow) {
  font-size: 1.1rem;
}

.guarantee__note {
  padding: 14px 16px;
  border-left: 5px solid var(--red);
  background: var(--white);
  font-weight: 900;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  font-size: 1.04rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 42px 22px 0;
  color: var(--ink-soft);
}

.final-callout {
  max-width: 820px;
  margin: 54px auto 0;
  padding: clamp(26px, 6vw, 48px);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: 12px 12px 0 var(--red);
}

.final-callout p {
  color: #d4cccc;
}

.final-callout h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 46px 20px 118px;
  background: #0b0909;
  color: #8f8585;
  font-size: 0.74rem;
  text-align: center;
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px max(12px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  border-top: 1px solid #3a3131;
  background: rgba(15, 12, 12, 0.97);
  color: var(--white);
  transform: translateY(110%);
  transition: transform 220ms ease;
  backdrop-filter: blur(10px);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta > div {
  display: flex;
  min-width: 64px;
  flex-direction: column;
}

.sticky-cta small {
  color: #c6bbbb;
  font-size: 0.62rem;
  line-height: 1;
}

.sticky-cta strong {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.sticky-cta .cta {
  min-height: 48px;
  padding: 10px 12px;
  font-size: 0.76rem;
  box-shadow: none;
}

.notice {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: 92px;
  left: 16px;
  max-width: 620px;
  margin-inline: auto;
  padding: 14px 18px;
  border: 1px solid #f5a7aa;
  border-radius: 8px;
  background: #fff6f6;
  color: #68151a;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

[hidden] {
  display: none !important;
}

@media (min-width: 680px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .guarantee__grid {
    grid-template-columns: 0.7fr 1.3fr;
  }
}

@media (min-width: 800px) {
  body {
    padding-bottom: 0;
  }

  .brand-logo {
    width: min(220px, 58vw);
    margin-bottom: 26px;
  }

  .hero__bullets {
    display: grid;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(48px, 7vw, 90px);
    align-items: center;
  }

  .contrast-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
  }

  .deliverables__top {
    grid-template-columns: 1fr auto;
  }

  .library-showcase {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .organization {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
  }

  .evidence-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .bonuses__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .section-shell--offer {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    align-items: center;
  }

  .sticky-cta {
    display: none;
  }

  .footer {
    padding-bottom: 52px;
  }
}

@media (min-width: 1040px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    gap: 24px;
  }

  .cta {
    width: auto;
    min-width: 360px;
  }

  .hero .cta,
  .cta--full,
  .sticky-cta .cta {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
