:root {
  --ink: #000000;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --line: #e4e4e7;
  --muted: #656565;
  --charcoal: #27272a;
  --blue: #183247;
  --blue-dark: #0d2131;
  --bronze: #a88958;
  --ivory: #f7f4ee;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1240px;
}

.proof-logo-strip {
  overflow: hidden;
  padding: 30px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.proof-logo-viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.proof-logo-track {
  display: flex;
  width: max-content;
  animation: proofLogoScroll 25s linear infinite;
}

.proof-logo-group {
  display: flex;
  align-items: center;
}

.proof-logo {
  display: grid;
  width: clamp(220px, 25vw, 360px);
  height: 78px;
  padding: 10px 42px;
  place-items: center;
}

.proof-logo img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.28;
  transition: opacity 220ms ease;
}

.proof-logo:hover img { opacity: 0.55; }

@keyframes proofLogoScroll {
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .proof-logo-strip { padding: 20px 0; }
  .proof-logo { width: 210px; height: 66px; padding-inline: 30px; }
  .proof-logo img { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .proof-logo-track { animation-play-state: paused; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.quiz-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 1040px;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

.section-title {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-title em,
h1 em,
h2 em {
  color: var(--blue);
  font-weight: 400;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 174px;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.header-inner > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 48px;
  padding: 8px 20px;
  font-size: 13px;
}

.button-primary {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.button-primary:hover {
  background: var(--blue);
}

.button span {
  display: grid;
  text-align: left;
}

.button strong {
  font-size: 15px;
  line-height: 1.25;
}

.button small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.82;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  background: white;
}

.hero-image {
  position: absolute;
  z-index: -3;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 43%, rgba(255, 255, 255, 0.92) 55%, rgba(255, 255, 255, 0.2) 78%, rgba(255, 255, 255, 0) 100%);
}

.hero-inner {
  display: flex;
  min-height: 780px;
  align-items: center;
  padding-block: 86px;
}

.hero-copy {
  width: 64%;
  max-width: 790px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 0.9;
}

.hero-subtitle {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--charcoal);
  font-size: 19px;
  font-weight: 500;
}

.fascinations {
  display: grid;
  max-width: 710px;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.fascinations li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  font-weight: 600;
}

.fascinations svg {
  width: 18px;
  color: var(--blue);
  stroke-width: 3;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.privacy svg {
  width: 16px;
  color: var(--blue);
}

.proofbar {
  border-block: 1px solid var(--ink);
  background: var(--blue-dark);
  color: white;
}

.proofbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proofbar-grid div {
  min-width: 0;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.proofbar-grid div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.proofbar strong,
.proofbar span {
  display: block;
}

.proofbar strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.proofbar span {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.letter {
  background: white;
}

.letter-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 88px;
  align-items: start;
}

.letter-aside {
  position: sticky;
  top: 36px;
}

.letter-aside h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 66px);
  font-weight: 400;
  line-height: 0.98;
}

.signature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.signature-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 700;
}

.signature-card div {
  display: grid;
}

.signature-card small {
  color: var(--muted);
}

.longform-copy {
  max-width: 760px;
}

.longform-copy p {
  margin: 0 0 24px;
  color: var(--charcoal);
  font-size: 19px;
  line-height: 1.82;
}

.longform-copy .opening {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.2;
}

.longform-copy h3 {
  margin: 58px 0 20px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.longform-copy.compact p {
  font-size: 18px;
}

.pullquote {
  margin: 54px 0;
  padding: 34px 0;
  border-block: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 0.98;
}

.pullquote em {
  color: var(--blue);
}

.visual-break {
  padding: 72px 0;
  background: var(--ivory);
}

.visual-break-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: center;
}

.visual-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.visual-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.dashboard-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.dashboard-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dashboard-figure figcaption {
  padding: 13px 16px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pain {
  border-bottom: 1px solid var(--line);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.pain-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pain-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.pain-grid h3 {
  max-width: 460px;
  margin: 58px 0 14px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.pain-grid p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.failed {
  background: var(--ink);
  color: white;
}

.failed .section-title em {
  color: var(--bronze);
}

.prose-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 54px;
}

.prose-columns p {
  margin: 0 0 24px;
  color: #d4d4d8;
  font-size: 18px;
}

.center-callout {
  margin-top: 56px;
  padding: 40px;
  border: 1px solid #444;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1;
  text-align: center;
}

.center-callout em {
  display: block;
  color: var(--bronze);
}

.mechanism {
  background: white;
}

.mechanism-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: start;
}

.mechanism-heading {
  position: sticky;
  top: 36px;
}

.mechanism-steps {
  border-top: 1px solid var(--ink);
}

.mechanism-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.mechanism-steps > article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.mechanism-steps h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.mechanism-steps p {
  margin: 0;
  color: var(--muted);
}

.insights {
  background: var(--ivory);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.insight-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: white;
}

.insight-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--ink);
}

.insight-grid figcaption {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: start;
  padding: 26px;
}

.insight-grid strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.insight-grid span {
  color: var(--muted);
}

.credibility-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
}

.reviews {
  border-block: 1px solid var(--ink);
}

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

.review-grid figure {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--ink);
  background: white;
}

.review-grid .review-blue {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: white;
}

.stars {
  color: #f5a400;
  font-size: 24px;
  letter-spacing: 2px;
}

.review-grid blockquote {
  margin: 70px 0 60px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.03;
}

.review-grid figcaption {
  display: grid;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid currentColor;
}

.review-grid figcaption span {
  color: var(--muted);
}

.review-blue figcaption span {
  color: rgba(255, 255, 255, 0.75);
}

.session {
  background: var(--ivory);
}

.session-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.session-image {
  position: sticky;
  top: 36px;
  margin: 0;
}

.session-image::after {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 72%;
  height: 72%;
  background: var(--bronze);
  content: "";
}

.session-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink);
  object-fit: cover;
}

.deliverables {
  margin-top: 46px;
  border-top: 1px solid var(--ink);
}

.deliverables article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
}

.deliverables > article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.deliverables h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.deliverables p {
  margin: 0;
  color: var(--muted);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.fit-grid article {
  padding: 40px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fit-grid .fit-good {
  background: var(--blue-dark);
  color: white;
}

.fit-grid h3 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.fit-grid ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

.fit-grid svg {
  width: 20px;
}

.fit-grid article:not(.fit-good) svg {
  color: var(--muted);
}

.offer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.offer::before {
  display: none;
  content: none;
}

.offer-layout-centered {
  max-width: 940px;
  grid-template-columns: 1fr;
  gap: 54px;
  text-align: center;
}

.offer-layout-centered .offer-copy h2,
.offer-layout-centered .offer-copy > p {
  margin-right: auto;
  margin-left: auto;
}

.offer-longform {
  width: min(100%, 760px);
  margin: 48px auto 0;
  padding: 42px 46px;
  border-block: 1px solid #454545;
  text-align: center;
}

.offer-longform p {
  margin: 0 0 24px;
  color: #d4d4d8;
  font-size: 18px;
  line-height: 1.85;
}

.offer-longform p:last-child {
  margin-bottom: 0;
}

.offer-layout-centered .value-stack div {
  grid-template-columns: 1fr;
  gap: 5px;
  text-align: center;
}

.offer-layout-centered .value-stack {
  width: min(100%, 820px);
  margin-right: auto;
  margin-left: auto;
}

.offer-layout-centered .value-stack strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.offer-layout-centered .price-box {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.offer-layout-centered .rationale {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid #454545;
  text-align: center;
}

.offer-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 76px;
  align-items: start;
}

.offer-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.96;
}

.offer-copy > p {
  max-width: 700px;
  color: #d4d4d8;
  font-size: 18px;
}

.value-stack {
  margin-top: 40px;
  border-top: 1px solid #454545;
}

.value-stack div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #454545;
}

.value-stack span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
  border: 1px solid #454545;
}

.price-box div {
  display: grid;
  gap: 5px;
  padding: 22px;
}

.price-box div + div {
  border-left: 1px solid #454545;
  background: var(--blue-dark);
}

.price-box span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-box s,
.price-box strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.rationale {
  padding-left: 18px;
  border-left: 3px solid var(--blue);
  font-size: 14px !important;
}

.request-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.18);
}

.request-card-button {
  width: min(100%, 680px);
  margin-inline: auto;
  padding: 48px;
  text-align: center;
}

.request-card-button h3 {
  max-width: 560px;
  margin-inline: auto;
}

.request-card-button > p {
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
}

.request-card-button .button {
  max-width: 460px;
  margin: 28px auto 0;
}

.request-card-button .button span {
  text-align: center;
}

.request-card-button .request-trust {
  justify-items: center;
}

.quiz-overlay[hidden] {
  display: none;
}

.quiz-overlay {
  position: fixed;
  z-index: 500;
  display: grid;
  min-height: 100dvh;
  grid-template-rows: auto 4px 1fr auto;
  inset: 0;
  overflow-y: auto;
  background: var(--ivory);
  color: var(--ink);
}

.questionnaire-page {
  min-height: 100dvh;
  background: var(--ivory);
}

.quiz-header {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 18px 70px;
  border-bottom: 1px solid rgba(24, 50, 71, 0.12);
  background: rgba(247, 244, 238, 0.96);
}

.quiz-header img {
  width: 174px;
  height: auto;
}

.quiz-close {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(24, 50, 71, 0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.quiz-close svg {
  width: 20px;
}

.quiz-progress {
  background: #ded9d0;
}

.quiz-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--bronze);
  transition: width 320ms ease;
}

.quiz-main {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 64px 24px;
}

.quiz-stage {
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
  animation: quizIn 260ms ease both;
}

@keyframes quizIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step-label {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-stage h2 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.quiz-description {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.quiz-field {
  display: grid;
  width: min(100%, 620px);
  gap: 14px;
  margin: 36px auto 0;
}

.quiz-field input,
.quiz-field textarea,
.quiz-field select {
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--blue);
  border-radius: 0;
  outline: none;
  background: white;
  color: var(--ink);
  font: 500 17px var(--sans);
  text-align: center;
}

.quiz-field textarea {
  min-height: 150px;
  resize: vertical;
}

.quiz-field input:focus,
.quiz-field textarea:focus,
.quiz-field select:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(168, 137, 88, 0.16);
}

.quiz-field .button {
  width: min(100%, 380px);
  margin-inline: auto;
}

.quiz-field .button span {
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 760px);
  margin: 38px auto 0;
}

.quiz-options.quiz-options-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiz-option {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(24, 50, 71, 0.35);
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quiz-option:hover,
.quiz-option.is-selected {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: white;
  transform: translateY(-2px);
}

.quiz-option small {
  display: block;
  margin-top: 5px;
  font-weight: 500;
  opacity: 0.72;
}

.quiz-option-card {
  min-height: 150px;
  flex-direction: column;
}

.quiz-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #8a2d2d;
  font-size: 12px;
  font-weight: 700;
}

.quiz-privacy {
  display: grid;
  max-width: 620px;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.quiz-privacy input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--blue);
}

.quiz-privacy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quiz-footer {
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 28px;
  border-top: 1px solid rgba(24, 50, 71, 0.12);
  color: var(--muted);
  font-size: 11px;
}

.quiz-footer > span {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  gap: 7px;
}

.quiz-footer svg {
  width: 15px;
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.quiz-back[hidden] {
  display: none;
}

.quiz-calendar-icon {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-dark);
  color: white;
}

.quiz-calendar-icon svg {
  width: 38px;
  height: 38px;
}

.request-kicker {
  margin: 0 0 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.request-card > p:not(.request-kicker, .scarcity, .form-status) {
  color: var(--muted);
}

.request-card form {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.request-card label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}

.request-card input,
.request-card textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: white;
  color: var(--ink);
}

.request-card input {
  min-height: 48px;
  padding: 0 13px;
}

.request-card textarea {
  min-height: 108px;
  padding: 12px 13px;
  resize: vertical;
}

.request-card button {
  margin-top: 18px;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.request-trust {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.request-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-trust svg {
  width: 15px;
  color: var(--blue);
}

.scarcity {
  margin: 22px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 12px;
}

.guarantee {
  border-bottom: 1px solid var(--ink);
  background: var(--blue-dark);
  color: white;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  align-items: start;
}

.guarantee-inner > svg {
  width: 80px;
  height: 80px;
  stroke-width: 1.2;
}

.guarantee h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.guarantee p:last-child {
  max-width: 840px;
  font-size: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 86px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 2px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-list details p {
  margin: 0;
  padding: 0 50px 26px 0;
  color: var(--muted);
}

.final-cta {
  border-top: 1px solid var(--ink);
  background: var(--ivory);
  text-align: center;
}

.final-inner h2 {
  max-width: 1050px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.92;
}

.final-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px auto;
  color: var(--muted);
  font-size: 18px;
}

.final-inner .button {
  margin-top: 10px;
}

.ps {
  max-width: 760px;
  margin: 64px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
  text-align: left;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  background: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1050px) {
  .hero-copy {
    width: 72%;
  }

  .hero-overlay {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(255, 255, 255, 0.72) 78%, rgba(255, 255, 255, 0.12) 100%);
  }

  .letter-layout,
  .mechanism-layout,
  .credibility-layout,
  .session-layout,
  .faq-layout {
    gap: 54px;
  }

  .review-grid blockquote {
    font-size: 31px;
  }

  .offer-layout {
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-note {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    width: 78%;
  }

  .proofbar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proofbar-grid div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }

  .proofbar-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .letter-layout,
  .visual-break-grid,
  .mechanism-layout,
  .credibility-layout,
  .session-layout,
  .faq-layout,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .letter-aside,
  .mechanism-heading,
  .session-image {
    position: static;
  }

  .letter-aside h2 {
    max-width: 650px;
  }

  .pain-grid,
  .fit-grid,
  .prose-columns {
    grid-template-columns: 1fr;
  }

  .insight-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid figure {
    min-height: 400px;
  }

  .session-image {
    width: min(92%, 560px);
  }

  .session-image img {
    aspect-ratio: 16 / 10;
  }

  .offer::before {
    width: 100%;
    height: 38%;
    top: auto;
    bottom: 0;
  }

  .request-card {
    max-width: 650px;
  }

  .quiz-options.quiz-options-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .brand {
    width: 140px;
  }

  .button-small {
    min-height: 42px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .button-small svg {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-image {
    position: relative;
    z-index: auto;
    order: 2;
    width: 100%;
    height: 330px;
    object-position: 66% center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 58px 50px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-subtitle {
    font-size: 17px;
  }

  .hero .button-primary {
    width: 100%;
  }

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

  .proofbar-grid div,
  .proofbar-grid div:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.45);
  }

  .letter-layout {
    gap: 46px;
  }

  .longform-copy p {
    font-size: 17px;
  }

  .pullquote {
    font-size: 40px;
  }

  .pain-grid article {
    min-height: 250px;
    padding: 26px;
  }

  .pain-grid h3 {
    margin-top: 42px;
  }

  .prose-columns {
    gap: 0;
  }

  .center-callout {
    padding: 28px 20px;
    font-size: 38px;
  }

  .mechanism-steps article,
  .deliverables article {
    grid-template-columns: 42px 1fr;
  }

  .insight-grid figcaption {
    min-height: 150px;
  }

  .review-grid figure {
    min-height: 360px;
    padding: 28px;
  }

  .review-grid blockquote {
    margin: 48px 0;
    font-size: 33px;
  }

  .fit-grid article {
    padding: 28px;
  }

  .offer::before {
    height: 35%;
  }

  .price-box {
    grid-template-columns: 1fr;
  }

  .price-box div + div {
    border-top: 1px solid #454545;
    border-left: 0;
  }

  .request-card {
    padding: 26px 20px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
  }

  .request-card-button {
    padding: 34px 20px;
  }

  .offer-longform {
    padding: 32px 18px;
  }

  .offer-longform p {
    font-size: 16px;
  }

  .offer-layout-centered .value-stack strong {
    font-size: 24px;
  }

  .quiz-header {
    min-height: 70px;
    padding: 14px 58px;
  }

  .quiz-header img {
    width: 142px;
  }

  .quiz-close {
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .quiz-main {
    min-height: 560px;
    padding: 44px 16px;
  }

  .quiz-stage h2 {
    font-size: 46px;
  }

  .quiz-options,
  .quiz-options.quiz-options-wide {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .quiz-option {
    min-height: 62px;
  }

  .quiz-option-card {
    min-height: 112px;
  }

  .quiz-footer {
    grid-template-columns: 1fr auto;
    padding: 12px 16px;
  }

  .quiz-footer > span {
    grid-column: 2;
  }

  .guarantee-inner {
    grid-template-columns: 1fr;
  }

  .guarantee-inner > svg {
    width: 60px;
    height: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Lineare Sales Message */
.linear-sales-page {
  --blue: #1796c9;
  --blue-dark: #000000;
  --bronze: #1796c9;
  --ivory: #f5f5f5;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 43px,
    rgba(0, 0, 0, 0.035) 43px,
    rgba(0, 0, 0, 0.035) 44px
  );
}

.sales-header {
  position: static;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 43px,
    rgba(0, 0, 0, 0.035) 43px,
    rgba(0, 0, 0, 0.035) 44px
  );
}

.sales-header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sales-logo {
  width: 174px;
  height: auto;
}

.sales-flow {
  overflow: hidden;
}

.sales-block {
  --stripe-color: rgba(0, 0, 0, 0.035);
  position: relative;
  padding: 110px 24px;
  border-bottom: 1px solid var(--ink);
  isolation: isolate;
}

.sales-block::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 43px,
    var(--stripe-color) 43px,
    var(--stripe-color) 44px
  );
  content: "";
  pointer-events: none;
}

.sales-block > * {
  position: relative;
  z-index: 1;
}

.sales-block:nth-of-type(3n + 2)::after {
  position: absolute;
  z-index: 0;
  top: 28px;
  left: -10vw;
  width: 120vw;
  height: 14px;
  background: var(--blue);
  box-shadow:
    0 27px 0 rgba(23, 150, 201, 0.34),
    0 54px 0 rgba(23, 150, 201, 0.13);
  content: "";
  pointer-events: none;
  transform: rotate(-5deg);
  transform-origin: center;
}

.sales-block:nth-of-type(6n + 5)::after {
  right: auto;
  left: -10vw;
  transform: rotate(5deg);
}

.sales-reading {
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.sales-reading-wide {
  width: min(100%, 1020px);
}

.sales-label {
  margin: 0 0 22px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-reading h1,
.sales-reading h2 {
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.94;
}

.sales-reading h1 {
  max-width: 1120px;
  font-size: clamp(68px, 8.6vw, 124px);
}

.sales-reading h2 {
  max-width: 980px;
  font-size: clamp(60px, 7.2vw, 100px);
}

.sales-reading h1 em,
.sales-reading h2 em,
.sales-prose blockquote em {
  color: var(--blue);
}

.sales-subheadline {
  max-width: 880px;
  margin: 36px auto 0;
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.sales-hero-video {
  width: min(100%, 900px);
  margin: 54px auto 0;
  border: 1px solid var(--ink);
  background: #000000;
  box-shadow: 16px 16px 0 var(--blue);
}

.sales-hero-video video {
  display: block;
  width: 100%;
  max-height: 720px;
  background: #000000;
  object-fit: contain;
}

.sales-fascinations,
.sales-offer-list {
  width: min(100%, 860px);
  margin: 50px auto 0;
  border-top: 1px solid var(--ink);
}

.sales-fascinations p,
.sales-offer-list p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 24px 18px;
  border-bottom: 1px solid var(--ink);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.sales-fascinations svg,
.sales-offer-list svg {
  width: 18px;
  flex: 0 0 auto;
  color: var(--bronze);
  stroke-width: 2.5;
}

.sales-image {
  width: min(calc(100% - 48px), 960px);
  margin: 72px auto 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.sales-image-wide {
  width: min(calc(100% - 48px), 1180px);
}

.sales-image img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

.sales-image figcaption {
  padding: 14px 20px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.sales-prose > p:not(.sales-label) {
  width: min(100%, 850px);
  margin: 30px auto 0;
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1.75;
  text-align: left;
}

.sales-prose .sales-opening {
  margin-top: 52px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.25;
  text-align: left;
}

.sales-prose blockquote {
  width: min(100%, 900px);
  margin: 68px auto;
  padding: 42px 18px;
  border-block: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 1.02;
  text-align: center;
}

.sales-problem {
  background: #ffffff;
}

.sales-solution {
  background: white;
}

.sales-credentials {
  --stripe-color: rgba(23, 150, 201, 0.09);
  background: #000000;
  color: white;
}

.sales-credentials .sales-prose > p:not(.sales-label) {
  color: #e2e5e7;
}

.sales-credentials .sales-reading h2 em {
  color: var(--blue);
}

.sales-proof-list {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.sales-proof-list p {
  display: block;
  margin: 0;
  padding: 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

.sales-proof-list strong,
.sales-proof-list span {
  display: block;
}

.sales-proof-list strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
  transition: color 240ms ease, transform 240ms ease;
}

.sales-proof-list strong.is-counting {
  color: var(--bronze);
  transform: scale(1.035);
}

.sales-proof-list strong.is-counted {
  animation: counterSettle 360ms ease both;
}

@keyframes counterSettle {
  0% {
    transform: scale(1.035);
  }
  100% {
    transform: scale(1);
  }
}

.sales-proof-list span {
  margin-top: 7px;
  color: #c8d0d6;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.sales-benefits {
  background: white;
}

.benefit-list {
  margin-top: 64px;
  border-top: 1px solid var(--ink);
}

.benefit-list article {
  padding: 32px 18px;
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.benefit-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--bronze);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-list h3 {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.12;
}

.sales-proof {
  background: var(--soft);
  padding-block: 82px;
}

.sales-proof .sales-reading h2 {
  max-width: 850px;
  font-size: clamp(54px, 6vw, 80px);
}

.sales-testimonial {
  width: min(100%, 820px);
  margin: 30px auto 0;
  padding: 32px 34px;
  border: 1px solid var(--ink);
  background: white;
  text-align: center;
}

.sales-testimonial blockquote {
  margin: 24px auto;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.1;
}

.sales-testimonial figcaption {
  display: block;
  padding-top: 16px;
  border-top: 1px solid currentColor;
}

.sales-testimonial figcaption strong,
.sales-testimonial figcaption span {
  display: block;
}

.sales-testimonial figcaption span {
  color: var(--muted);
}

.sales-testimonial-dark {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.sales-testimonial-dark figcaption span {
  color: #c8d0d6;
}

.sales-offer {
  --stripe-color: rgba(23, 150, 201, 0.09);
  background: var(--ink);
  color: white;
}

.sales-offer .sales-prose > p:not(.sales-label) {
  color: #d4d4d8;
}

.sales-offer .sales-reading h2 em {
  color: var(--blue);
}

.sales-offer-list {
  border-color: #4a4a4a;
}

.sales-offer-list p {
  border-color: #4a4a4a;
  color: white;
}

.sales-bonuses {
  background: var(--soft);
  padding-block: 82px;
}

.sales-bonuses .sales-reading h2 {
  max-width: 680px;
  font-size: clamp(44px, 5vw, 62px);
}

.bonus-item {
  width: min(100%, 700px);
  margin: 24px auto 0;
  padding: 30px 28px;
  border: 1px solid var(--ink);
  background: white;
  text-align: center;
}

.bonus-item > span {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-item h3 {
  margin: 9px auto 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.bonus-item p {
  max-width: 650px;
  margin: 14px auto;
  color: var(--muted);
  font-size: 15px;
}

.bonus-item > strong {
  display: inline-block;
  padding-top: 12px;
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.sales-value {
  background: white;
}

.sales-value-stack {
  margin-top: 58px;
  border-top: 1px solid var(--ink);
}

.sales-value-stack p {
  margin: 0;
  padding: 22px 14px;
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.sales-value-stack span,
.sales-value-stack strong {
  display: block;
}

.sales-value-stack span {
  color: var(--muted);
  font-size: 20px;
}

.sales-value-stack span small {
  display: block;
  width: min(100%, 600px);
  margin: 8px auto 0;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.55;
}

.sales-value-stack strong {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.sales-value-stack .sales-value-bonus {
  background: rgba(23, 150, 201, 0.065);
}

.sales-value-stack .sales-value-bonus > span {
  color: var(--blue);
  font-weight: 700;
}

.sales-value-stack .sales-value-total {
  padding: 30px 14px;
  background: var(--blue);
  color: white;
}

.sales-value-stack .sales-value-total span {
  color: #c8d0d6;
}

.sales-value-stack .sales-value-total strong {
  color: white;
  font-size: 48px;
}

.sales-price {
  margin-top: 34px;
  padding: 52px 30px;
  border: 1px solid var(--ink);
  background: var(--soft);
  text-align: center;
}

.sales-price > span {
  display: block;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sales-price > strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 84px;
  font-weight: 400;
  line-height: 1;
}

.sales-price p {
  margin: 18px 0 0;
  color: var(--muted);
}

.sales-scarcity {
  --stripe-color: rgba(23, 150, 201, 0.09);
  background: var(--ink);
  color: white;
}

.sales-scarcity .sales-prose > p:not(.sales-label) {
  color: #d4d4d8;
}

.sales-scarcity .sales-reading h2 em {
  color: var(--blue);
}

.sales-guarantee {
  --stripe-color: rgba(255, 255, 255, 0.09);
  background: var(--blue);
  color: white;
}

.sales-guarantee .sales-prose > p:not(.sales-label) {
  color: #e2e5e7;
}

.guarantee-symbol {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: white;
}

.guarantee-symbol svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.5;
}

.sales-action {
  background: var(--soft);
}

.sales-action .sales-reading > p:not(.sales-label) {
  max-width: 800px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 22px;
}

.sales-action-next {
  margin-top: 82px;
  padding-top: 0;
}

.sales-action-next h3 {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(50px, 5.4vw, 70px);
  font-weight: 400;
  line-height: 1.04;
}

.sales-action-next > p {
  max-width: 800px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 22px;
}

.sales-button {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
  padding: 13px 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: transform 180ms ease, background 180ms ease;
}

.sales-button:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-2px);
}

.sales-button > span {
  display: grid;
  text-align: center;
}

.sales-button strong {
  font-size: 18px;
  line-height: 1.25;
}

.sales-button small {
  margin-top: 3px;
  font-size: 13px;
  opacity: 0.78;
}

.sales-button svg {
  width: 21px;
  flex: 0 0 auto;
}

.sales-inline-cta {
  margin: 48px auto 0;
  text-align: center;
}

.sales-inline-cta .sales-button {
  margin-top: 0;
}

.sales-inline-cta > p {
  margin: 13px auto 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.sales-inline-cta-light .sales-button {
  border-color: var(--blue);
  background: var(--blue);
}

.sales-inline-cta-light .sales-button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.sales-inline-cta-light > p {
  color: #b7b7bc;
}

.sales-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.sales-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sales-trust svg {
  width: 15px;
  color: var(--bronze);
}

.sales-ps {
  background: white;
}

.sales-ps .sales-prose > p {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.35;
}

.sales-footer .footer-inner {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.sales-footer {
  background-color: #ffffff;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 43px,
    rgba(0, 0, 0, 0.035) 43px,
    rgba(0, 0, 0, 0.035) 44px
  );
}

.sales-footer .footer-inner nav {
  justify-content: center;
}

@media (max-width: 680px) {
  .sales-header-inner {
    min-height: 72px;
  }

  .sales-logo {
    width: 142px;
  }

  .sales-block {
    padding: 76px 18px;
  }

  .sales-block:nth-of-type(3n + 2)::after {
    top: 18px;
    left: -15vw;
    width: 130vw;
    height: 10px;
    box-shadow:
      0 20px 0 rgba(23, 150, 201, 0.34),
      0 40px 0 rgba(23, 150, 201, 0.13);
  }

  .sales-block:nth-of-type(6n + 5)::after {
    right: auto;
    left: -15vw;
  }

  .sales-reading h1 {
    font-size: 58px;
  }

  .sales-reading h2 {
    font-size: 52px;
  }

  .sales-hero-video {
    width: calc(100% - 14px);
    margin-top: 38px;
    box-shadow: 10px 10px 0 var(--blue);
  }

  .sales-subheadline,
  .sales-prose > p:not(.sales-label) {
    font-size: 20px;
  }

  .sales-fascinations p,
  .sales-offer-list p {
    display: block;
    padding: 18px 8px;
  }

  .sales-fascinations svg,
  .sales-offer-list svg {
    display: block;
    margin: 0 auto 9px;
  }

  .sales-image,
  .sales-image-wide {
    width: 100%;
    margin-top: 50px;
  }

  .sales-prose blockquote {
    margin: 48px auto;
    font-size: 40px;
  }

  .benefit-list h3 {
    font-size: 29px;
  }

  .sales-testimonial {
    padding: 26px 18px;
  }

  .sales-testimonial blockquote {
    font-size: 30px;
  }

  .bonus-item {
    padding: 26px 18px;
  }

  .bonus-item h3 {
    font-size: 30px;
  }

  .sales-price > strong {
    font-size: 68px;
  }

  .sales-button {
    width: 100%;
    gap: 12px;
    padding: 13px 18px;
  }

  .sales-trust {
    display: grid;
  }

  .sales-ps .sales-prose > p {
    font-size: 27px;
  }
}
