:root {
  --ink: #17111d;
  --ink-soft: #2c2035;
  --plum: #4b214d;
  --plum-deep: #27132f;
  --berry: #bd416d;
  --coral: #ef6c67;
  --gold: #e8bd77;
  --cream: #fff8ef;
  --paper: #fffdf9;
  --mist: #f4ebef;
  --line: rgba(40, 19, 48, 0.13);
  --muted: #736875;
  --success: #39785d;
  --danger: #9c3f4e;
  --shadow-sm: 0 10px 35px rgba(39, 19, 47, 0.1);
  --shadow-lg: 0 28px 90px rgba(31, 12, 38, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shell: min(1160px, calc(100% - 40px));
  --reading: min(760px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Hebrew", "Noto Sans Hebrew", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.75rem, 7.1vw, 5.8rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.7vw, 4rem);
  font-weight: 830;
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

::selection {
  background: rgba(189, 65, 109, 0.22);
}

:focus-visible {
  outline: 3px solid rgba(239, 108, 103, 0.48);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.reading-column {
  width: var(--reading);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.section-pad {
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  right: 12px;
  padding: 10px 15px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  transform: translateY(-140%);
}

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

.preview-ribbon {
  position: relative;
  z-index: 20;
  padding: 8px 20px;
  background: var(--gold);
  color: #2f1d18;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-ribbon span {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  border: 1px solid rgba(47, 29, 24, 0.25);
  border-radius: 99px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(24, 12, 29, 0.89);
  color: #fff;
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(232, 189, 119, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 189, 119, 0.18), rgba(189, 65, 109, 0.18));
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(120deg, var(--coral), var(--berry));
  color: #fff;
  box-shadow: 0 12px 34px rgba(189, 65, 109, 0.32);
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(189, 65, 109, 0.43);
}

.button-secondary {
  border: 1px solid rgba(232, 189, 119, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 10px 19px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.86rem;
}

.button-wide {
  width: min(430px, 100%);
}

.button-large {
  min-height: 64px;
  padding-inline: 34px;
  font-size: 1.08rem;
}

.eyebrow,
.section-kicker {
  margin-bottom: 19px;
  color: var(--berry);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3cfcf;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.section-intro {
  color: var(--muted);
  font-size: 1.16rem;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 92px 0 110px;
  background:
    linear-gradient(125deg, rgba(39, 19, 47, 0.98), rgba(23, 17, 29, 0.99)),
    radial-gradient(circle at 70% 20%, #70315a, transparent 45%);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 70px;
  background: var(--paper);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-glow-a {
  top: 7%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: var(--berry);
}

.hero-glow-b {
  bottom: 5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: #563675;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 em {
  color: #f4c6bd;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  text-underline-offset: 5px;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  list-style: none;
}

.micro-trust li:not(:last-child)::after {
  margin-right: 28px;
  color: var(--gold);
  content: "•";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.system-orbit {
  position: relative;
  display: grid;
  width: 390px;
  height: 390px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  inset: 0;
}

.orbit-one {
  animation: rotate-orbit 28s linear infinite;
  border-color: rgba(232, 189, 119, 0.3);
  clip-path: polygon(0 0, 63% 0, 63% 52%, 100% 52%, 100% 100%, 0 100%);
}

.orbit-two {
  inset: 52px;
  border-style: dashed;
}

.system-core {
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 70px rgba(239, 108, 103, 0.25), inset 0 0 30px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.system-core small,
.system-core span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.system-core strong {
  color: var(--gold);
  font-size: 4rem;
  line-height: 1;
}

.orbit-dot {
  position: absolute;
  display: grid;
  min-width: 78px;
  min-height: 42px;
  place-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  background: #302039;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
}

.dot-one { top: 12px; right: 155px; }
.dot-two { top: 110px; left: -6px; }
.dot-three { right: -7px; bottom: 114px; }
.dot-four { bottom: 8px; left: 118px; }
.dot-five { top: 104px; right: -14px; }

.signal-card {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 190px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(28, 17, 34, 0.76);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.signal-card small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.signal-card strong {
  margin: 3px 0 1px;
  font-size: 1.05rem;
}

.signal-card span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
}

.signal-card-top {
  top: 25px;
  left: 0;
}

.signal-card-bottom {
  right: -8px;
  bottom: 14px;
}

@keyframes rotate-orbit {
  to { transform: rotate(360deg); }
}

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

.video-section {
  padding: 86px 0 96px;
  background: var(--paper);
}

.video-shell {
  margin-top: 42px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border: 8px solid #fff;
  border-radius: 26px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.video-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 0.84rem;
}

.video-caption p {
  margin: 0;
}

.play-pulse {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--berry);
}

.play-pulse::after {
  position: absolute;
  border: 1px solid var(--berry);
  border-radius: 50%;
  content: "";
  inset: -5px;
}

.proof-strip {
  padding: 27px 0;
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip p {
  display: grid;
  margin: 0;
  padding: 0 36px;
  text-align: center;
}

.proof-strip p:not(:last-child) {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-size: 0.92rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.75rem;
}

.recognition {
  background: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

.recognition-media {
  position: relative;
}

.recognition-media::before {
  position: absolute;
  z-index: 0;
  top: -22px;
  right: -22px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(189, 65, 109, 0.2);
  border-radius: 28px;
  content: "";
}

.recognition-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.image-note {
  position: relative;
  z-index: 2;
  width: 88%;
  margin: -30px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.78rem;
  box-shadow: var(--shadow-sm);
}

.recognition-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
}

.recognition-scene {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.02rem;
}

.recognition-list {
  display: grid;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.recognition-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.recognition-list li > span {
  color: var(--berry);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recognition-list strong {
  color: var(--ink);
}

.validation-line {
  margin: 24px 0 0;
  padding: 18px 21px;
  border-right: 3px solid var(--berry);
  background: rgba(189, 65, 109, 0.055);
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 750;
}

.belief-shift {
  background: var(--paper);
}

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

.leak-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.leak-card.featured {
  background: var(--plum-deep);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-14px);
}

.leak-card > span {
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.leak-card.featured > span {
  color: var(--gold);
}

.leak-card h3 {
  margin: 18px 0 14px;
  font-size: 1.45rem;
}

.leak-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.leak-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.leak-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 13px;
  background: var(--mist);
  color: var(--berry);
  font-size: 1.4rem;
}

.leak-card.featured .leak-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.belief-conclusion {
  margin-top: 55px;
  font-size: 1.22rem;
}

.belief-conclusion p {
  margin-bottom: 4px;
  color: var(--muted);
}

.belief-conclusion strong {
  color: var(--berry);
  font-size: 1.45rem;
}

.mechanism {
  position: relative;
  overflow: hidden;
  background: var(--plum-deep);
  color: #fff;
}

.mechanism::before {
  position: absolute;
  top: -300px;
  left: -180px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.018), 0 0 0 150px rgba(255, 255, 255, 0.014);
  content: "";
}

.mechanism-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: center;
}

.mechanism-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.mechanism-copy .section-kicker {
  color: var(--gold);
}

.mechanism-copy p:not(.section-kicker) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.method-list {
  position: relative;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list::before {
  position: absolute;
  top: 38px;
  right: 38px;
  bottom: 38px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.08));
  content: "";
}

.method-list li {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  min-height: 130px;
  align-items: center;
  padding: 18px 26px 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.method-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(232, 189, 119, 0.32);
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--gold);
  font-weight: 900;
}

.method-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.3rem;
}

.method-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.journey-visual {
  position: relative;
  margin-top: 90px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-visual img {
  width: min(850px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.worldview {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.worldview::before {
  position: absolute;
  top: 74px;
  right: max(20px, calc((100vw - 1000px) / 2));
  color: rgba(189, 65, 109, 0.07);
  content: "״";
  font-family: Georgia, serif;
  font-size: 22rem;
  line-height: 1;
  pointer-events: none;
}

.worldview-letter {
  position: relative;
  z-index: 1;
}

.worldview-letter h2 {
  max-width: 690px;
}

.worldview-letter > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.06rem;
}

.worldview-letter blockquote {
  margin: 42px 0;
  padding: 31px 34px;
  border: 0;
  border-right: 4px solid var(--coral);
  border-radius: 16px 0 0 16px;
  background: var(--cream);
  color: var(--plum-deep);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 820;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.signature {
  display: grid;
  width: fit-content;
  margin-top: 37px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.signature strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-style: italic;
}

.signature span {
  color: var(--muted);
  font-size: 0.72rem;
}

.offer {
  background: var(--cream);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.offer-grid article {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 32px 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.offer-grid article > span {
  position: absolute;
  top: 15px;
  left: 23px;
  color: rgba(75, 33, 77, 0.09);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.offer-grid h3 {
  position: relative;
  margin-bottom: 13px;
}

.offer-grid p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.offer-grid .offer-cta-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-color: transparent;
  background: linear-gradient(125deg, var(--plum-deep), #4d244c);
  color: #fff;
}

.offer-cta-card p {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.offer-cta-card h3 {
  max-width: 450px;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.responsibility {
  background: var(--paper);
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 56px;
}

.responsibility-card {
  min-height: 440px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.responsibility-card.us {
  border-color: rgba(189, 65, 109, 0.24);
  box-shadow: var(--shadow-sm);
}

.card-label {
  margin-bottom: 5px;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.responsibility-card h3 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.responsibility-card ul,
.fit-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-card li,
.fit-card li {
  position: relative;
  padding-right: 29px;
  color: var(--muted);
  font-size: 0.94rem;
}

.responsibility-card li::before,
.fit-yes li::before {
  position: absolute;
  top: 1px;
  right: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.partnership-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 2.1rem;
}

.testimonial {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  align-items: center;
}

.testimonial .section-kicker {
  color: var(--gold);
}

.testimonial-copy h2 {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
}

.testimonial-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.62);
}

.quote-mark {
  height: 50px;
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.8;
}

.proof-video {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.process {
  background: var(--cream);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.process-track article {
  position: relative;
  padding: 34px 22px 0;
  border-left: 1px solid var(--line);
}

.process-track article:last-child {
  border-left: 0;
}

.process-track article::before {
  position: absolute;
  top: -6px;
  right: 22px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 0 0 0 1px var(--berry);
  content: "";
}

.process-track span {
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-track h3 {
  margin: 11px 0 10px;
}

.process-track p {
  color: var(--muted);
  font-size: 0.84rem;
}

.fit {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.fit-card {
  min-height: 490px;
  padding: 44px;
  border-radius: 28px;
}

.fit-yes {
  border: 1px solid rgba(57, 120, 93, 0.18);
  background: #f4faf6;
}

.fit-no {
  border: 1px solid var(--line);
  background: #f8f3f5;
}

.fit-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.fit-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 120, 93, 0.1);
  color: var(--success);
  font-size: 1.2rem;
  font-weight: 900;
}

.fit-no .fit-heading > span {
  background: rgba(156, 63, 78, 0.08);
  color: var(--danger);
}

.fit-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.45vw, 1.95rem);
  line-height: 1.25;
}

.fit-no li::before {
  position: absolute;
  top: 1px;
  right: 0;
  color: var(--danger);
  content: "×";
  font-weight: 900;
}

.call-section {
  padding-top: 0;
  background: var(--paper);
}

.call-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px 80px;
  align-items: center;
  padding: 68px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(189, 65, 109, 0.25), transparent 35%),
    var(--plum-deep);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.call-copy .section-kicker {
  color: var(--gold);
}

.call-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
}

.call-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.63);
}

.call-steps {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.call-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(232, 189, 119, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.call-steps h3 {
  margin: 1px 0 4px;
  font-size: 1.08rem;
}

.call-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.call-panel > .button,
.call-note {
  grid-column: 1 / -1;
  justify-self: center;
}

.call-note {
  margin: -36px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.faq-intro > p:not(.section-kicker) {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.faq-list summary {
  position: relative;
  padding: 22px 24px 22px 54px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  left: 22px;
  color: var(--berry);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: -3px 24px 22px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -260px;
  right: -160px;
  width: 540px;
  height: 540px;
}

.final-cta::after {
  bottom: -280px;
  left: -130px;
  width: 500px;
  height: 500px;
}

.final-cta-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  max-width: 900px;
}

.final-cta-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
}

.final-cta small {
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 34px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #100b14;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.mobile-cta {
  position: fixed;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(23, 17, 29, 0.91);
  backdrop-filter: blur(16px);
}

.mobile-cta .button {
  width: 100%;
  min-height: 48px;
}

.application-dialog {
  width: min(760px, calc(100% - 30px));
  max-height: min(880px, calc(100dvh - 30px));
  margin: auto;
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.application-dialog::backdrop {
  background: rgba(15, 7, 18, 0.84);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  min-height: 600px;
  padding: 48px 54px;
}

.dialog-close {
  position: sticky;
  z-index: 4;
  top: 15px;
  right: calc(100% - 55px);
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: -38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.25rem;
  backdrop-filter: blur(10px);
}

.application-progress {
  margin-bottom: 42px;
}

.application-progress > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--mist);
}

.progress-track span {
  display: block;
  width: 16.667%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--berry), var(--coral));
  transition: width 250ms ease;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
  animation: step-in 240ms ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-kicker {
  margin-bottom: 10px;
  color: var(--berry);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.form-step h2,
.application-result h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.form-help,
.application-result > p:not(.form-kicker) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

.choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  padding: 15px 52px 15px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-card > span::before {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(39, 19, 47, 0.26);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.choice-card input:checked + span {
  border-color: rgba(189, 65, 109, 0.6);
  background: rgba(189, 65, 109, 0.045);
  box-shadow: 0 7px 24px rgba(75, 33, 77, 0.07);
}

.choice-card input:checked + span::before {
  border: 5px solid var(--berry);
}

.choice-card input:focus-visible + span {
  outline: 3px solid rgba(239, 108, 103, 0.35);
  outline-offset: 2px;
}

.choice-card strong {
  font-size: 0.96rem;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.73rem;
}

.optional-field {
  margin-top: 20px;
}

.text-field {
  display: grid;
  gap: 7px;
}

.text-field > span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-field > span small {
  color: var(--muted);
  font-weight: 400;
}

.text-field input,
.text-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.text-field input {
  height: 50px;
  padding: 0 14px;
}

.text-field textarea {
  padding: 12px 14px;
  resize: vertical;
}

.text-field input:focus,
.text-field textarea:focus {
  border-color: var(--berry);
  outline: none;
  box-shadow: 0 0 0 3px rgba(189, 65, 109, 0.1);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--berry);
}

.consent-field a {
  color: var(--berry);
}

.form-error {
  min-height: 24px;
  margin-top: 15px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.form-navigation .button-primary {
  min-width: 165px;
}

.application-result {
  padding: 80px 0 30px;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 120, 93, 0.1);
  color: var(--success);
  font-size: 1.8rem;
  font-weight: 900;
}

.result-icon.neutral {
  background: var(--mist);
  color: var(--berry);
}

.preview-notice {
  margin-top: 24px;
  padding: 13px 16px;
  border: 1px dashed rgba(156, 63, 78, 0.3);
  border-radius: 12px;
  background: rgba(232, 189, 119, 0.12);
  color: var(--muted);
  font-size: 0.75rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .section-pad { padding: 92px 0; }
  .hero { padding-top: 75px; }
  .hero-layout { grid-template-columns: 1fr; gap: 35px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 430px; }
  .signal-card-top { left: 12%; }
  .signal-card-bottom { right: 12%; }
  .split-layout { gap: 50px; }
  .mechanism-layout { gap: 50px; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-copy { max-width: 780px; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .process-track article:nth-child(3) { border-left: 0; }
  .call-panel { padding: 54px; gap: 45px; }
  .faq-layout { gap: 52px; }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 650px);
    --reading: min(100% - 30px, 650px);
  }

  body { font-size: 16px; }
  .preview-ribbon { padding-inline: 12px; font-size: 0.7rem; }
  .preview-ribbon span { display: none; }
  .site-header { min-height: 66px; padding: 9px 15px; }
  .site-header .button-small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .section-pad { padding: 76px 0; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.5rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 3.1rem); }
  .section-intro { font-size: 1rem; }

  .hero {
    min-height: auto;
    padding: 64px 0 88px;
  }

  .hero::after { height: 35px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .micro-trust { justify-content: center; gap: 8px 16px; }
  .micro-trust li:not(:last-child)::after { margin-right: 16px; }
  .hero-visual { min-height: 360px; margin-top: 10px; }
  .system-orbit { width: 310px; height: 310px; }
  .system-core { width: 145px; height: 145px; }
  .system-core strong { font-size: 3.2rem; }
  .orbit-dot { min-width: 63px; min-height: 36px; font-size: 0.64rem; }
  .dot-one { top: 1px; right: 125px; }
  .dot-two { top: 80px; left: -4px; }
  .dot-three { right: -3px; bottom: 87px; }
  .dot-four { bottom: 1px; left: 95px; }
  .dot-five { top: 80px; right: -9px; }
  .signal-card { width: 156px; padding: 13px 15px; }
  .signal-card strong { font-size: 0.87rem; }
  .signal-card span { font-size: 0.64rem; }
  .signal-card-top { top: 10px; left: -4px; }
  .signal-card-bottom { right: -4px; bottom: 1px; }

  .video-section { padding: 66px 0 73px; }
  .video-shell { width: 100%; margin-top: 30px; }
  .video-frame { border-width: 4px; border-radius: 14px; }
  .video-caption { padding-inline: 15px; }

  .proof-strip-grid { grid-template-columns: 1fr; }
  .proof-strip p { padding: 14px 0; }
  .proof-strip p:not(:last-child) { border-bottom: 1px solid var(--line); border-left: 0; }

  .split-layout { grid-template-columns: 1fr; gap: 55px; }
  .recognition-media { max-width: 520px; margin-inline: auto; }
  .recognition-copy { grid-row: 1; }
  .recognition-list li { grid-template-columns: 40px 1fr; gap: 10px; }

  .leak-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .leak-card { min-height: auto; padding: 27px; }
  .leak-card.featured { transform: none; }

  .mechanism-layout { grid-template-columns: 1fr; }
  .mechanism-copy { position: static; }
  .mechanism-copy .button { width: 100%; }
  .method-list li { grid-template-columns: 66px 1fr; min-height: 112px; padding-right: 3px; }
  .method-list::before { right: 29px; }
  .method-number { width: 54px; height: 54px; }
  .journey-visual { margin-top: 60px; padding-top: 38px; }

  .worldview::before { top: 30px; right: -25px; font-size: 15rem; }
  .worldview-letter blockquote { margin: 32px 0; padding: 24px 22px; }

  .offer-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .offer-grid article { min-height: auto; padding: 28px; }
  .offer-cta-card .button { width: 100%; }

  .responsibility-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .responsibility-card { min-height: auto; padding: 31px 27px; }
  .partnership-mark { width: 52px; height: 52px; margin: -12px auto; }

  .testimonial-layout { gap: 40px; }
  .process-track { grid-template-columns: 1fr; gap: 0; border-top: 0; }
  .process-track article { padding: 21px 52px 21px 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .process-track article::before { top: 29px; right: 10px; }

  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: auto; padding: 31px 27px; }

  .call-panel { grid-template-columns: 1fr; gap: 36px; width: calc(100% - 20px); padding: 42px 25px; border-radius: 26px; }
  .call-note { margin-top: -22px; text-align: center; }

  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .faq-list summary { padding: 19px 19px 19px 46px; }
  .faq-list summary::after { left: 17px; }

  .footer-layout { flex-direction: column; align-items: flex-start; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 95px; }

  .application-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 20px; }
  .dialog-shell { min-height: calc(100dvh - 16px); padding: 36px 20px 28px; }
  .dialog-close { top: 10px; right: calc(100% - 42px); }
  .application-progress { margin-top: 5px; margin-bottom: 31px; padding-left: 40px; }
  .choice-grid-compact { grid-template-columns: 1fr; }
  .choice-card > span { min-height: 68px; }
  .field-grid { grid-template-columns: 1fr; gap: 13px; }
  .field-full { grid-column: auto; }
  .form-navigation { position: sticky; bottom: -28px; margin-inline: -20px; padding: 12px 20px calc(12px + env(safe-area-inset-bottom)); background: rgba(255, 253, 249, 0.94); backdrop-filter: blur(10px); }
  .form-navigation .button-primary { flex: 1; }
}

@media (max-width: 380px) {
  .system-orbit { width: 284px; height: 284px; }
  .dot-one { right: 110px; }
  .dot-four { left: 82px; }
  .signal-card { width: 145px; }
  .micro-trust { display: grid; grid-template-columns: 1fr; text-align: center; }
  .micro-trust li::after { display: none; }
}

/* VSL-first composition: the video carries the persuasion, the page closes it. */
.header-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
}

.hero {
  min-height: auto;
  padding: 76px 0 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(189, 65, 109, 0.32), transparent 38%),
    linear-gradient(135deg, #2a1531, #17111d 70%);
}

.hero::after {
  display: none;
}

.hero-layout.vsl-hero-layout {
  display: block;
}

.vsl-hero-layout .hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.vsl-hero-layout .eyebrow {
  justify-content: center;
}

.vsl-hero-layout h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6.1vw, 5rem);
}

.vsl-hero-layout .hero-lead {
  max-width: 780px;
  margin: 0 auto 20px;
}

.vsl-preframe {
  display: inline-flex;
  margin: 0;
  padding: 8px 15px;
  border: 1px solid rgba(232, 189, 119, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.video-section {
  padding: 0 0 96px;
  background: var(--ink);
  color: #fff;
}

.video-shell {
  width: min(1040px, calc(100% - 40px));
  margin-top: 0;
}

.video-frame > .wistia_embed {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.video-caption {
  color: rgba(255, 255, 255, 0.52);
}

.reveal-gate {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: center;
  margin: 42px auto 0;
  padding: 28px 31px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.gate-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(232, 189, 119, 0.25);
  border-radius: 50%;
  background: rgba(232, 189, 119, 0.08);
  color: var(--gold);
  font-size: 1rem;
}

.gate-copy h2 {
  margin: 2px 0 9px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

.gate-copy > p:not(.gate-kicker) {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.gate-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.watch-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.watch-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transition: width 400ms ease;
}

.gate-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.preview-unlock {
  grid-column: 2;
  width: fit-content;
  padding: 7px 12px;
  border: 1px dashed rgba(232, 189, 119, 0.3);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  font-size: 0.67rem;
}

.post-vsl-offer {
  display: flex;
  flex-direction: column;
  animation: offer-reveal 520ms ease both;
}

.post-vsl-offer[hidden] {
  display: none;
}

@keyframes offer-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-vsl-offer > .post-video-intro { order: 1; }
.post-vsl-offer > .proof-strip { order: 2; }
.post-vsl-offer > .testimonial { order: 3; }
.post-vsl-offer > .social-proof-wall { order: 4; }
.post-vsl-offer > .outcomes { order: 5; }
.post-vsl-offer > .offer { order: 6; }
.post-vsl-offer > .mechanism { order: 7; }
.post-vsl-offer > .process { order: 8; }
.post-vsl-offer > .responsibility { order: 9; }
.post-vsl-offer > .fit { order: 10; }
.post-vsl-offer > .call-section { order: 11; }
.post-vsl-offer > .faq { order: 12; }
.post-vsl-offer > .final-cta { order: 13; }

.post-vsl-offer > .recognition,
.post-vsl-offer > .belief-shift,
.post-vsl-offer > .worldview {
  display: none;
}

.post-video-intro {
  background: var(--paper);
}

.post-video-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 64px;
  border: 1px solid rgba(75, 33, 77, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 15%, rgba(239, 108, 103, 0.09), transparent 28%),
    #fff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.post-video-panel h2 {
  max-width: 900px;
}

.post-video-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.application-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 40px 0;
  border-block: 1px solid var(--line);
}

.application-path article {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 24px;
}

.application-path article:not(:last-child) {
  border-left: 1px solid var(--line);
}

.application-path article > span {
  position: absolute;
  top: 13px;
  right: 16px;
  color: rgba(189, 65, 109, 0.15);
  font-family: Georgia, serif;
  font-size: 2.6rem;
}

.application-path strong {
  font-size: 1.05rem;
}

.application-path small {
  color: var(--muted);
  font-size: 0.73rem;
}

.post-video-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.7rem;
}

.social-proof-wall {
  background: var(--cream);
}

.proof-mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
  margin-top: 54px;
}

.proof-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.proof-shot img {
  width: 100%;
  max-height: 770px;
  object-fit: contain;
  object-position: top;
  background: #f1ece6;
}

.proof-shot figcaption {
  display: grid;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.proof-shot figcaption strong {
  font-size: 0.9rem;
}

.proof-shot figcaption span {
  color: var(--muted);
  font-size: 0.72rem;
}

.proof-stories {
  margin-top: 82px;
}

.proof-stories-title {
  margin-bottom: 28px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 850;
}

.proof-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 5px solid #fff;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}

.story-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.proof-disclaimer {
  max-width: 760px;
  margin: 27px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.7rem;
}

.outcomes {
  background: var(--paper);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.outcomes-grid article {
  min-height: 240px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.outcomes-grid span {
  color: var(--berry);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.outcomes-grid p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.outcomes-grid strong {
  display: block;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--plum);
  font-size: 1.13rem;
}

.outcomes-close {
  margin-top: 44px;
  color: var(--plum);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .header-note { font-size: 0.66rem; }
  .hero { padding: 48px 0 30px; }
  .vsl-hero-layout h1 { font-size: clamp(2.25rem, 11.2vw, 3.4rem); }
  .vsl-hero-layout .hero-lead { font-size: 1rem; }
  .vsl-preframe { display: block; font-size: 0.68rem; }
  .video-section { padding-bottom: 64px; }
  .video-shell { width: 100%; }
  .video-caption { margin-inline: 14px; }
  .reveal-gate { grid-template-columns: 46px 1fr; gap: 14px; margin-inline: 14px; padding: 22px 18px; }
  .gate-icon { width: 44px; height: 44px; }
  .preview-unlock { grid-column: 1 / -1; justify-self: center; }
  .post-video-panel { width: calc(100% - 20px); padding: 45px 22px; border-radius: 25px; }
  .application-path { grid-template-columns: 1fr; }
  .application-path article { min-height: 112px; }
  .application-path article:not(:last-child) { border-bottom: 1px solid var(--line); border-left: 0; }
  .post-video-panel > .button { width: 100%; }
  .proof-mosaic { grid-template-columns: 1fr; }
  .proof-shot img { max-height: none; }
  .proof-stories { margin-top: 58px; }
  .proof-stories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .story-video { border-width: 3px; border-radius: 13px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcomes-grid article { min-height: auto; padding: 27px; }
}

/* Premium lead V3 — four-part VSL architecture */
:root {
  --instagram: linear-gradient(105deg, #ff6a5f 0%, #ff3f88 38%, #c13584 68%, #833ab4 100%);
  --instagram-soft: linear-gradient(115deg, rgba(255, 106, 95, 0.15), rgba(193, 53, 132, 0.13), rgba(131, 58, 180, 0.12));
  --night: #0c0910;
  --night-card: #17131b;
  --luxury-paper: #fbfafc;
}

body {
  font-family: "Assistant", "Arial Hebrew", Arial, sans-serif;
  font-size: 18px;
}

h1,
h2,
h3,
.button,
.eyebrow,
.section-kicker,
.brand-copy strong {
  font-family: "Heebo", "Assistant", sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.accent-highlight {
  display: inline;
  padding: 0 0.035em;
  border-radius: 0;
  background: var(--instagram);
  background-clip: text;
  -webkit-background-clip: text;
  color: #d83a83;
  font: inherit;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.preview-ribbon {
  background: var(--instagram);
  color: #fff;
}

.preview-ribbon span {
  border-color: rgba(255, 255, 255, 0.45);
}

.brand-mark {
  border-color: rgba(255, 83, 142, 0.45);
  background: var(--instagram-soft);
  color: #ff72a6;
}

.button-primary {
  border-color: transparent;
  background: var(--instagram);
  color: #fff;
  box-shadow: 0 17px 45px rgba(193, 53, 132, 0.28);
}

.button-primary:hover {
  box-shadow: 0 21px 58px rgba(193, 53, 132, 0.4);
}

.hero {
  min-height: auto;
  padding: 82px 0 48px;
  background:
    radial-gradient(circle at 14% 28%, rgba(131, 58, 180, 0.2), transparent 32%),
    radial-gradient(circle at 84% 20%, rgba(255, 63, 136, 0.15), transparent 30%),
    var(--night);
}

.vsl-hero-layout {
  justify-items: center;
  text-align: center;
}

.vsl-hero-layout .hero-copy {
  max-width: 1110px;
}

.vsl-hero-layout h1 {
  max-width: 1080px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(3rem, 6.2vw, 5.65rem);
  font-weight: 900;
  line-height: 1.08;
}

.vsl-hero-layout h1 .accent-highlight {
  white-space: nowrap;
}

.vsl-hero-layout .hero-lead {
  max-width: 790px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.vsl-preframe {
  color: rgba(255, 255, 255, 0.48);
}

.eyebrow {
  border-color: rgba(255, 81, 142, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #ff81ae;
}

.eyebrow span,
.play-pulse {
  background: #ff4f91;
  box-shadow: 0 0 0 7px rgba(255, 79, 145, 0.1);
}

.video-section {
  padding: 0 0 98px;
  background:
    linear-gradient(180deg, var(--night), #120d15 75%, #0d0910);
}

.video-frame {
  border-color: rgba(255, 73, 140, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 35px 100px rgba(0, 0, 0, 0.52), 0 0 70px rgba(193, 53, 132, 0.12);
}

.gate-icon {
  border-color: rgba(255, 79, 145, 0.32);
  background: rgba(255, 79, 145, 0.09);
  color: #ff72a6;
}

.gate-kicker {
  color: #ff72a6;
}

.watch-progress span {
  background: var(--instagram);
}

.preview-unlock {
  border-color: rgba(255, 112, 165, 0.35);
}

/* Keep the current prototype focused on the four requested conversion blocks. */
.post-vsl-offer > .proof-strip,
.post-vsl-offer > .recognition,
.post-vsl-offer > .belief-shift,
.post-vsl-offer > .mechanism,
.post-vsl-offer > .worldview,
.post-vsl-offer > .offer,
.post-vsl-offer > .responsibility,
.post-vsl-offer > .outcomes,
.post-vsl-offer > .process,
.post-vsl-offer > .fit,
.post-vsl-offer > .call-section,
.post-vsl-offer > .faq,
.post-vsl-offer > .final-cta {
  display: none;
}

.post-vsl-offer > .post-video-intro { order: 1; }
.post-vsl-offer > .video-proof-section { order: 2; }
.post-vsl-offer > .evidence-section { order: 3; }

.post-video-intro {
  padding: 126px 0;
  background:
    radial-gradient(circle at 48% 0%, rgba(255, 63, 136, 0.12), transparent 36%),
    linear-gradient(180deg, #0c0910, #100c13);
  color: #fff;
}

.post-video-panel {
  width: min(1100px, calc(100% - 40px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.post-video-panel .section-kicker {
  color: #ff72a6;
}

.post-video-panel h2 {
  max-width: 1030px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.post-video-lead {
  max-width: 800px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.15rem;
}

.fit-cta-card {
  width: min(820px, 100%);
  padding: 34px 42px 40px;
  border: 1px solid rgba(255, 79, 145, 0.38);
  border-radius: 30px;
  background:
    linear-gradient(var(--night-card), var(--night-card)) padding-box,
    var(--instagram) border-box;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 80px rgba(193, 53, 132, 0.09);
}

.cta-status {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 8px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: var(--instagram);
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(193, 53, 132, 0.26);
}

.cta-status span {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.fit-cta-card .application-path {
  margin: 21px 0 31px;
  border-block-color: rgba(255, 255, 255, 0.09);
  text-align: right;
}

.fit-cta-card .application-path article {
  min-height: 138px;
  padding: 36px 25px 25px;
}

.fit-cta-card .application-path article:not(:last-child) {
  border-left-color: rgba(255, 255, 255, 0.09);
}

.fit-cta-card .application-path article > span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--instagram);
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-size: 0.77rem;
  font-weight: 900;
}

.fit-cta-card .application-path strong {
  color: #fff;
  font-size: 0.94rem;
}

.fit-cta-card .application-path small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  line-height: 1.45;
}

.fit-cta-card > .button {
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  font-size: 1.03rem;
}

.fit-cta-card .post-video-note {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.42);
}

.video-proof-section {
  padding: 126px 0;
  background: #fff;
  color: var(--ink);
}

.video-proof-heading {
  width: min(930px, calc(100% - 40px));
  margin-bottom: 55px;
}

.video-proof-heading h2,
.evidence-section h2 {
  color: #111016;
  font-size: clamp(2.65rem, 5.35vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
}

.video-proof-heading .section-intro,
.evidence-section .section-intro {
  color: #746d77;
  font-size: 1.08rem;
}

.proof-video-featured {
  width: min(980px, 100%);
  margin: 0 auto 72px;
  border: 7px solid #fff;
  border-radius: 25px;
  background: var(--night);
  box-shadow: 0 22px 70px rgba(28, 15, 35, 0.18), 0 0 0 1px rgba(39, 19, 47, 0.11);
}

.video-proof-section .proof-stories-title {
  margin-bottom: 30px;
  color: #151219;
  font-family: "Heebo", sans-serif;
  font-size: 1.35rem;
  font-weight: 850;
}

.video-proof-section .proof-stories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-proof-section .story-video {
  aspect-ratio: 16 / 9;
  border: 7px solid #fff;
  border-radius: 22px;
  background: var(--night);
  box-shadow: 0 15px 48px rgba(28, 15, 35, 0.15), 0 0 0 1px rgba(39, 19, 47, 0.1);
}

.video-proof-section .proof-disclaimer {
  margin-top: 34px;
  font-size: 0.76rem;
}

.evidence-section {
  padding: 126px 0 138px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 63, 136, 0.06), transparent 25%),
    var(--luxury-paper);
}

.metric-proof-scaffold {
  margin-top: 58px;
}

.proof-placeholder {
  display: none;
}

.is-preview .proof-placeholder {
  display: block;
}

.preview-proof-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 22px;
  padding: 13px 18px;
  border: 1px dashed rgba(131, 58, 180, 0.34);
  border-radius: 14px;
  background: rgba(131, 58, 180, 0.05);
  color: #6f5977;
  text-align: center;
  font-size: 0.78rem;
}

.preview-proof-note strong {
  color: #5f286b;
  font-family: "Heebo", sans-serif;
}

.metric-proof-grid,
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.metric-proof-card {
  overflow: hidden;
  padding: 14px 14px 28px;
  border: 1px solid rgba(45, 25, 51, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(39, 19, 47, 0.08);
}

.metric-screen-placeholder {
  display: grid;
  min-height: 205px;
  place-content: center;
  border: 2px dashed rgba(193, 53, 132, 0.24);
  border-radius: 17px;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(80, 42, 88, 0.05) 50%, transparent 50.3%),
    linear-gradient(rgba(80, 42, 88, 0.045) 1px, transparent 1px),
    #faf6fb;
  background-size: auto, 100% 32px, auto;
  color: #7b667f;
  text-align: center;
}

.metric-screen-placeholder span {
  font-family: "Heebo", sans-serif;
  font-weight: 800;
}

.metric-screen-placeholder small {
  color: #a493a8;
}

.metric-card-context {
  margin: 25px 8px 18px;
  color: #4a3f4d;
  font-weight: 700;
}

.metric-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 8px;
}

.metric-slots div {
  display: grid;
  min-height: 105px;
  place-content: center;
  border: 1px solid rgba(193, 53, 132, 0.14);
  border-radius: 16px;
  background: rgba(255, 63, 136, 0.045);
  text-align: center;
}

.metric-slots span {
  color: #746878;
  font-size: 0.76rem;
}

.metric-slots strong {
  color: #bd416d;
  font-family: "Heebo", sans-serif;
  font-size: 2rem;
}

.metric-before-after {
  margin: 22px 8px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 25, 51, 0.09);
  color: #766c79;
  font-size: 0.76rem;
}

.metric-before-after span,
.metric-before-after strong {
  color: #3c303f;
}

.metric-before-after b {
  margin-inline: 8px;
  color: #d83a83;
}

.evidence-grid {
  margin-top: 62px;
  align-items: start;
}

.evidence-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(45, 25, 51, 0.1);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(39, 19, 47, 0.1);
}

.evidence-card::before {
  display: block;
  height: 5px;
  background: var(--instagram);
  content: "";
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  background: #f4eff4;
}

.evidence-card figcaption {
  display: grid;
  gap: 5px;
  min-height: 118px;
  align-content: center;
  padding: 22px 25px;
  border-top: 1px solid rgba(45, 25, 51, 0.08);
}

.evidence-card figcaption strong {
  color: #221a24;
  font-family: "Heebo", sans-serif;
  font-size: 1.04rem;
}

.evidence-card figcaption span {
  color: #817584;
  font-size: 0.78rem;
}

.evidence-cta {
  display: grid;
  justify-items: center;
  margin-top: 82px;
  padding: 54px 32px;
  border-radius: 28px;
  background: var(--night);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(25, 10, 30, 0.18);
}

.evidence-cta h3 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 3.3vw, 2.75rem);
}

.evidence-cta .button {
  min-width: min(520px, 100%);
  border-radius: 999px;
}

.evidence-cta small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 920px) {
  .vsl-hero-layout h1 .accent-highlight {
    white-space: normal;
  }

  .fit-cta-card .application-path {
    grid-template-columns: 1fr;
  }

  .fit-cta-card .application-path article {
    min-height: 112px;
    padding-inline: 54px 22px;
  }

  .fit-cta-card .application-path article:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }
}

/* Premium lead V8 — a quiet decision-closing FAQ */
.post-vsl-offer > .faq {
  display: block !important;
  order: 5;
}

.faq {
  position: relative;
  overflow: hidden;
  padding: clamp(6.8rem, 10vw, 9.2rem) 0;
  border-top: 1px solid rgba(25, 22, 25, 0.1);
  background:
    linear-gradient(180deg, rgba(188, 120, 133, 0.055), transparent 17rem),
    #f7f5f2;
  color: var(--vsl-ink);
}

.faq::before {
  position: absolute;
  top: 0;
  right: 50%;
  width: min(34rem, 72vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 120, 133, 0.78), transparent);
  content: "";
  transform: translateX(50%);
}

.faq-shell {
  position: relative;
  width: min(940px, calc(100% - 96px));
}

.faq-intro {
  position: static;
  max-width: 850px;
  margin: 0 auto clamp(3.2rem, 6vw, 4.8rem);
  text-align: center;
}

.faq-intro .section-kicker {
  margin-bottom: 1.05rem;
  color: var(--vsl-rose-deep);
  font-size: var(--vsl-support-size);
}

.faq-intro h2 {
  max-width: 850px;
  margin: 0 auto 1.35rem;
  color: #141114;
  font-size: var(--vsl-display-size);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.faq-intro > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: #4f494e;
  font-size: var(--vsl-copy-size);
  line-height: 1.72;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq .faq-list details {
  overflow: hidden;
  border: 1px solid rgba(25, 22, 25, 0.13);
  border-inline-start: 2px solid rgba(188, 120, 133, 0.52);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 rgba(36, 27, 34, 0);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.faq .faq-list summary {
  position: relative;
  display: block;
  min-height: 76px;
  padding: 1.45rem 1.65rem 1.45rem 4.75rem;
  color: #1a171a;
  cursor: pointer;
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  font-weight: 760;
  line-height: 1.55;
  list-style: none;
}

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

.faq .faq-list summary::after {
  position: absolute;
  top: 50%;
  left: 1.55rem;
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(152, 98, 113, 0.3);
  border-radius: 50%;
  background: rgba(188, 120, 133, 0.07);
  color: var(--vsl-rose-deep);
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.faq .faq-list details[open] {
  border-color: rgba(152, 98, 113, 0.34);
  border-inline-start-color: var(--vsl-rose-deep);
  background: #fff;
  box-shadow: 0 18px 48px rgba(37, 29, 35, 0.075), 0 0 28px rgba(188, 120, 133, 0.075);
}

.faq .faq-list details[open] summary::after {
  border-color: #1b171b;
  background: #1b171b;
  color: #fff;
  content: "−";
  box-shadow: 0 0 20px rgba(188, 120, 133, 0.2);
  transform: translateY(-50%);
}

.faq .faq-list summary:focus-visible {
  outline: 2px solid var(--vsl-rose-deep);
  outline-offset: -5px;
}

.faq-answer {
  margin: 0 1.65rem;
  border-top: 1px solid rgba(25, 22, 25, 0.09);
}

.faq .faq-answer p,
.faq .faq-list details p {
  margin: 0;
  padding: 1.2rem 0 1.55rem;
  border: 0;
  color: #514a50;
  font-size: 1.03rem;
  line-height: 1.82;
}

.faq .faq-list details[open] .faq-answer {
  animation: faq-answer-in 220ms ease both;
}

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .faq .faq-list details:hover {
    border-color: rgba(152, 98, 113, 0.33);
    background: #fff;
    box-shadow: 0 14px 38px rgba(37, 29, 35, 0.055), 0 0 24px rgba(188, 120, 133, 0.06);
  }

  .faq .faq-list details:hover summary::after {
    border-color: rgba(152, 98, 113, 0.54);
    box-shadow: 0 0 18px rgba(188, 120, 133, 0.16);
  }
}

.faq-decision {
  position: relative;
  overflow: hidden;
  width: min(830px, 100%);
  margin: clamp(3.7rem, 7vw, 5.4rem) auto 0;
  padding: clamp(2.8rem, 6vw, 4.1rem) clamp(1.5rem, 5vw, 3.8rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(188, 120, 133, 0.12), transparent 43%),
    #121013;
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 68px rgba(25, 18, 23, 0.18), 0 0 34px rgba(188, 120, 133, 0.08);
}

.faq-decision::before {
  position: absolute;
  top: 0;
  right: 20%;
  left: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 138, 150, 0.9), transparent);
  content: "";
}

.faq-decision-kicker {
  margin: 0 0 0.85rem;
  color: #ce929d;
  font-size: var(--vsl-support-size);
  font-weight: 750;
}

.faq-decision h3 {
  max-width: 700px;
  margin: 0 auto 1.15rem;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 830;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.faq-decision > p:not(.faq-decision-kicker) {
  max-width: 650px;
  margin: 0 auto 1.8rem;
  color: #e7e2df;
  font-size: 1.08rem;
  line-height: 1.75;
}

.faq-decision .button {
  width: min(520px, 100%);
  min-height: 62px;
  margin-inline: auto;
}

.faq-decision small {
  display: block;
  margin-top: 1rem;
  color: #cfc8ca;
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .faq {
    padding: 5.2rem 0;
  }

  .faq-shell {
    width: calc(100% - 36px);
  }

  .faq-intro {
    margin-bottom: 2.6rem;
  }

  .faq-intro h2 {
    margin-bottom: 1.05rem;
    font-size: var(--vsl-display-size);
    line-height: 1.2;
  }

  .faq-intro > p:not(.section-kicker) {
    font-size: var(--vsl-copy-size);
    line-height: 1.68;
  }

  .faq-list {
    gap: 0.7rem;
  }

  .faq .faq-list summary {
    min-height: 68px;
    padding: 1.18rem 1.1rem 1.18rem 3.8rem;
    font-size: 1.03rem;
    line-height: 1.52;
  }

  .faq .faq-list summary::after {
    left: 1rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.2rem;
  }

  .faq-answer {
    margin: 0 1.1rem;
  }

  .faq .faq-answer p,
  .faq .faq-list details p {
    padding: 1rem 0 1.25rem;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .faq-decision {
    margin-top: 3.1rem;
    padding: 2.65rem 1.25rem;
    border-radius: 12px;
  }

  .faq-decision h3 {
    font-size: 1.78rem;
    line-height: 1.24;
  }

  .faq-decision > p:not(.faq-decision-kicker) {
    font-size: 1rem;
  }

  .faq-decision .button {
    min-height: 60px;
    padding-inline: 1rem;
    font-size: 0.9rem;
  }

  .faq-decision small {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq .faq-list details,
  .faq .faq-list summary::after,
  .faq .faq-list details[open] .faq-answer {
    animation: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 58px 0 30px;
  }

  .vsl-hero-layout h1 {
    font-size: clamp(2.35rem, 10.2vw, 3.15rem);
    line-height: 1.18;
  }

  .post-video-intro,
  .video-proof-section,
  .evidence-section {
    padding-block: 80px;
  }

  .post-video-panel {
    width: min(100% - 28px, 1100px);
  }

  .post-video-panel h2,
  .video-proof-heading h2,
  .evidence-section h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.25rem);
  }

  .post-video-lead {
    font-size: 1rem;
  }

  .fit-cta-card {
    padding: 17px 17px 26px;
    border-radius: 23px;
  }

  .cta-status {
    min-height: 56px;
    padding: 11px 13px;
    font-size: 0.83rem;
  }

  .fit-cta-card .application-path article {
    padding-right: 52px;
  }

  .fit-cta-card > .button {
    min-height: 64px;
    font-size: 0.88rem;
  }

  .proof-video-featured {
    margin-bottom: 54px;
    border-width: 4px;
    border-radius: 17px;
  }

  .video-proof-section .proof-stories-grid,
  .metric-proof-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .video-proof-section .story-video {
    border-width: 4px;
    border-radius: 16px;
  }

  .preview-proof-note {
    display: grid;
  }

  .metric-proof-scaffold,
  .evidence-grid {
    margin-top: 42px;
  }

  .evidence-card figcaption {
    min-height: 104px;
    padding: 19px 20px;
  }

  .evidence-cta {
    margin-top: 56px;
    padding: 40px 20px;
    border-radius: 22px;
  }
}

/* Long-form continuation — modeled from the reference's pacing, with Nails Digital content. */
.post-vsl-offer > .recognition,
.post-vsl-offer > .mechanism,
.post-vsl-offer > .offer,
.post-vsl-offer > .process,
.post-vsl-offer > .outcomes,
.post-vsl-offer > .responsibility,
.post-vsl-offer > .fit,
.post-vsl-offer > .faq,
.post-vsl-offer > .final-cta {
  display: block;
}

.post-vsl-offer > .recognition { order: 4; }
.post-vsl-offer > .mechanism { order: 5; }
.post-vsl-offer > .offer { order: 6; }
.post-vsl-offer > .process { order: 7; }
.post-vsl-offer > .outcomes { order: 8; }
.post-vsl-offer > .responsibility { order: 9; }
.post-vsl-offer > .fit { order: 10; }
.post-vsl-offer > .faq { order: 11; }
.post-vsl-offer > .final-cta { order: 12; }

.post-vsl-offer > .belief-shift,
.post-vsl-offer > .worldview,
.post-vsl-offer > .proof-strip,
.post-vsl-offer > .call-section {
  display: none;
}

.post-vsl-offer .recognition h2,
.post-vsl-offer .mechanism h2,
.post-vsl-offer .offer h2,
.post-vsl-offer .outcomes h2,
.post-vsl-offer .responsibility h2,
.post-vsl-offer .faq h2,
.post-vsl-offer .final-cta h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  font-weight: 900;
  line-height: 1.14;
}

.recognition {
  padding-block: 126px;
  background: #fff;
}

.recognition-media::before {
  border-color: rgba(255, 63, 136, 0.28);
  background: var(--instagram-soft);
}

.recognition-media img {
  box-shadow: 0 24px 75px rgba(32, 14, 38, 0.16);
}

.recognition .image-note {
  background: linear-gradient(120deg, #171119, #28142b);
}

.recognition-list li > span,
.recognition .section-kicker {
  color: #cf347d;
}

.recognition .validation-line {
  border-right-color: #d93682;
  background: linear-gradient(90deg, rgba(131, 58, 180, 0.055), rgba(255, 63, 136, 0.075));
}

.mechanism {
  padding-block: 132px;
  background:
    radial-gradient(circle at 8% 15%, rgba(131, 58, 180, 0.2), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(255, 63, 136, 0.12), transparent 28%),
    var(--night);
}

.mechanism-copy .section-kicker,
.offer-cta-card p {
  color: #ff74a7;
}

.method-list::before {
  background: linear-gradient(#ff4f91, rgba(131, 58, 180, 0.28), rgba(255, 255, 255, 0.07));
}

.method-number {
  border-color: rgba(255, 79, 145, 0.42);
  background: #17101a;
  color: #ff75a8;
  box-shadow: 0 0 0 6px rgba(255, 79, 145, 0.04);
}

.journey-visual {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.offer {
  padding-block: 126px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 63, 136, 0.07), transparent 25%),
    var(--luxury-paper);
}

.offer-grid article {
  border-color: rgba(52, 27, 59, 0.1);
  background: #fff;
  box-shadow: 0 12px 38px rgba(39, 19, 47, 0.055);
}

.offer-grid article > span {
  color: rgba(193, 53, 132, 0.11);
  font-family: "Heebo", sans-serif;
  font-weight: 900;
}

.offer-grid .offer-cta-card {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 63, 136, 0.19), transparent 34%),
    linear-gradient(125deg, #110c14, #251229);
}

.process {
  padding-block: 116px;
  background: #fff;
}

.process-track article::before {
  border-color: #fff;
  background: #db3984;
  box-shadow: 0 0 0 1px #db3984, 0 0 0 7px rgba(219, 57, 132, 0.07);
}

.process-track span {
  color: #cb327a;
}

.outcomes {
  padding-block: 122px;
  background:
    linear-gradient(135deg, rgba(255, 63, 136, 0.035), rgba(131, 58, 180, 0.04)),
    #faf8fb;
}

.outcomes-grid article {
  border-color: rgba(55, 29, 63, 0.09);
  box-shadow: 0 12px 38px rgba(39, 19, 47, 0.05);
}

.outcomes-grid span,
.outcomes-grid strong {
  color: #c93479;
}

.responsibility {
  padding-block: 122px;
  background: #fff;
}

.responsibility-card.us {
  border-color: rgba(216, 58, 131, 0.24);
}

.card-label,
.partnership-mark {
  color: #cf347d;
}

.fit {
  padding-block: 116px;
  background: #faf8fb;
}

.fit-yes {
  border-color: rgba(193, 53, 132, 0.16);
  background: linear-gradient(145deg, #fff, rgba(255, 63, 136, 0.045));
}

.fit-no {
  background: #fff;
}

.faq {
  padding-block: 122px;
  background: #fff;
}

.faq-list details {
  border-color: rgba(52, 27, 59, 0.1);
  background: #fbf9fc;
}

.faq-list summary::after {
  color: #d43881;
}

.final-cta {
  padding-block: 126px;
  background:
    radial-gradient(circle at 18% 30%, rgba(131, 58, 180, 0.2), transparent 31%),
    radial-gradient(circle at 82% 80%, rgba(255, 63, 136, 0.15), transparent 29%),
    var(--night);
}

.final-cta .eyebrow {
  color: #ff79aa;
}

@media (max-width: 920px) {
  .mechanism-layout,
  .responsibility-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .mechanism-copy,
  .faq-intro {
    position: static;
  }

  .responsibility-grid .partnership-mark {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .vsl-hero-layout h1 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 10.2vw, 3.05rem);
    line-height: 1.2;
  }

  .accent-highlight {
    padding-inline: 0.02em;
  }

  .post-video-panel h2,
  .video-proof-heading h2,
  .evidence-section h2,
  .post-vsl-offer .recognition h2,
  .post-vsl-offer .mechanism h2,
  .post-vsl-offer .offer h2,
  .post-vsl-offer .outcomes h2,
  .post-vsl-offer .responsibility h2,
  .post-vsl-offer .faq h2,
  .post-vsl-offer .final-cta h2 {
    font-size: clamp(2.05rem, 9.4vw, 2.85rem);
    line-height: 1.2;
  }

  .recognition,
  .mechanism,
  .offer,
  .process,
  .outcomes,
  .responsibility,
  .fit,
  .faq,
  .final-cta {
    padding-block: 82px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .recognition-copy {
    order: 1;
  }

  .recognition-media {
    order: 2;
  }

  .mechanism-layout {
    gap: 54px;
  }

  .method-list li {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    min-height: 118px;
  }

  .method-list::before {
    right: 29px;
  }

  .method-number {
    width: 50px;
    height: 50px;
  }

  .journey-visual {
    margin-top: 58px;
    padding-top: 38px;
  }

  .offer-grid,
  .outcomes-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid article,
  .responsibility-card,
  .fit-card {
    min-height: auto;
    padding: 30px 25px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 22px;
    border-top: 0;
    border-right: 1px solid rgba(193, 53, 132, 0.17);
  }

  .process-track article {
    padding: 10px 26px 29px 12px;
    border-left: 0;
  }

  .process-track article::before {
    top: 17px;
    right: -29px;
  }

  .responsibility-card {
    min-height: auto;
  }

  .faq-layout {
    gap: 34px;
  }
}

/* Premium lead V5 — restrained, editorial VSL */
:root {
  --vsl-black: #0d0c0f;
  --vsl-black-soft: #151316;
  --vsl-paper: #faf9f7;
  --vsl-paper-alt: #f6f4f2;
  --vsl-ink: #191619;
  --vsl-muted: #827a80;
  --vsl-rose: #bc7885;
  --vsl-rose-deep: #986271;
  --vsl-line-dark: rgba(255, 255, 255, 0.12);
  --vsl-line-light: rgba(25, 22, 25, 0.12);
  --instagram: linear-gradient(110deg, #c98a82 0%, #b66c7c 58%, #826878 100%);
  --instagram-soft: rgba(188, 120, 133, 0.09);
  --night: var(--vsl-black);
  --night-card: var(--vsl-black-soft);
  --luxury-paper: var(--vsl-paper);
  --ink: var(--vsl-ink);
  --paper: var(--vsl-paper);
  --cream: var(--vsl-paper-alt);
  --muted: var(--vsl-muted);
  --line: var(--vsl-line-light);
  --shell: min(1080px, calc(100% - 96px));
  --reading: min(680px, calc(100% - 48px));
}

body {
  overflow-x: hidden;
  background: var(--vsl-black);
  color: var(--vsl-ink);
  font-size: 17px;
}

.site-header,
.hero-glow,
.mobile-cta {
  display: none !important;
}

.preview-ribbon {
  padding: 7px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #141215;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 600;
}

.preview-ribbon span {
  margin-left: 7px;
  padding: 0 7px;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
}

.hero {
  min-height: auto;
  padding: 68px 0 34px;
  background: var(--vsl-black);
}

.vsl-hero-layout {
  justify-items: center;
  text-align: center;
}

.vsl-hero-layout .hero-copy {
  max-width: 950px;
}

.hero-brandline {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Heebo", "Assistant", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-brandline span {
  margin-inline: 0.45em;
  color: var(--vsl-rose);
}

.eyebrow {
  min-height: 34px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(188, 120, 133, 0.26);
  border-radius: 999px;
  background: transparent;
  color: #c98a96;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.eyebrow span,
.play-pulse {
  background: var(--vsl-rose);
  box-shadow: none;
}

.vsl-hero-layout h1 {
  max-width: 940px;
  margin: 0 auto 25px;
  color: #f8f6f2;
  font-size: clamp(3rem, 4.55vw, 4.25rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.vsl-hero-layout h1 .accent-highlight {
  white-space: normal;
}

.accent-highlight {
  padding-inline: 0.02em;
  background: var(--instagram);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--vsl-rose);
  -webkit-text-fill-color: transparent;
}

.vsl-hero-layout .hero-lead {
  max-width: 700px;
  margin: 0 auto 17px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.03rem;
  line-height: 1.75;
}

.vsl-preframe {
  max-width: 670px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
}

.video-section {
  padding: 0 0 92px;
  background: var(--vsl-black);
}

.video-shell {
  width: min(1080px, calc(100% - 96px));
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(188, 120, 133, 0.52);
  border-radius: 16px;
  background: #080708;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.34);
}

.video-caption {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.8rem;
}

.reveal-gate {
  display: block;
  max-width: 720px;
  margin: 42px auto 0;
  padding: 31px 0 0;
  border: 0;
  border-top: 1px solid var(--vsl-line-dark);
  border-radius: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.gate-icon {
  display: none;
}

.gate-kicker {
  margin-bottom: 6px;
  color: #bd7d89;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.gate-copy h2 {
  max-width: 600px;
  margin: 0 auto 10px;
  color: #f2eeeb;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.gate-copy > p:not(.gate-kicker) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
}

.watch-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.watch-progress span {
  background: var(--instagram);
}

.gate-copy small {
  color: rgba(255, 255, 255, 0.36);
}

.preview-unlock {
  display: inline-flex;
  width: auto;
  margin: 15px auto 0;
  padding: 7px 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.48);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: var(--instagram);
  color: #fff;
  box-shadow: 0 14px 35px rgba(65, 35, 43, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(65, 35, 43, 0.34);
}

.post-vsl-offer > .post-video-intro { order: 1; }
.post-vsl-offer > .video-proof-section { order: 2; }
.post-vsl-offer > .evidence-section { order: 3; }

.post-vsl-offer > .proof-strip,
.post-vsl-offer > .recognition,
.post-vsl-offer > .belief-shift,
.post-vsl-offer > .mechanism,
.post-vsl-offer > .worldview,
.post-vsl-offer > .offer,
.post-vsl-offer > .responsibility,
.post-vsl-offer > .outcomes,
.post-vsl-offer > .process,
.post-vsl-offer > .fit,
.post-vsl-offer > .call-section,
.post-vsl-offer > .faq,
.post-vsl-offer > .final-cta {
  display: none !important;
}

.post-video-intro {
  padding: 112px 0 116px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #100f11;
  color: #fff;
}

.post-video-panel {
  width: min(900px, calc(100% - 96px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.post-video-panel .section-kicker,
.video-proof-section .section-kicker,
.evidence-section .section-kicker {
  color: var(--vsl-rose-deep);
}

.post-video-panel .section-kicker {
  color: #c98a96;
}

.post-video-panel h2 {
  max-width: 850px;
  margin-bottom: 25px;
  color: #f7f4f1;
  font-size: clamp(2.45rem, 4.1vw, 3.55rem);
  font-weight: 850;
  line-height: 1.18;
}

.post-video-lead {
  max-width: 680px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.03rem;
  line-height: 1.75;
}

.fit-cta-card {
  width: min(820px, 100%);
  padding: 37px 0 2px;
  border: 0;
  border-top: 1px solid var(--vsl-line-dark);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cta-status {
  min-height: 0;
  margin-bottom: 21px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #c98a96;
  font-size: 0.82rem;
  box-shadow: none;
}

.cta-status span {
  width: 7px;
  height: 7px;
  border: 0;
  background: var(--vsl-rose);
  box-shadow: none;
}

.fit-cta-card .application-path {
  margin: 0 0 33px;
  border-block: 1px solid var(--vsl-line-dark);
}

.fit-cta-card .application-path article {
  min-height: 128px;
  padding: 27px 22px;
  text-align: center;
}

.fit-cta-card .application-path article:not(:last-child) {
  border-left-color: var(--vsl-line-dark);
}

.fit-cta-card .application-path article > span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 9px;
  border-radius: 0;
  background: transparent;
  color: #bd7d89;
  font-size: 0.72rem;
  line-height: 1;
}

.fit-cta-card .application-path strong {
  color: #f1eeeb;
  font-size: 0.92rem;
}

.fit-cta-card .application-path small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.72rem;
}

.fit-cta-card > .button {
  width: min(520px, 100%);
  min-height: 62px;
  border-radius: 12px;
  font-size: 0.96rem;
}

.fit-cta-card .post-video-note {
  color: rgba(255, 255, 255, 0.38);
}

.video-proof-section {
  padding: 118px 0 102px;
  background: var(--vsl-paper);
  color: var(--vsl-ink);
}

.video-proof-heading {
  width: min(740px, calc(100% - 48px));
  margin-bottom: 52px;
}

.video-proof-heading h2,
.evidence-section h2 {
  color: var(--vsl-ink);
  font-size: clamp(2.4rem, 4vw, 3.55rem);
  font-weight: 850;
  line-height: 1.17;
}

.video-proof-heading .section-intro,
.evidence-section .section-intro {
  max-width: 650px;
  margin-inline: auto;
  color: #777077;
  font-size: 1rem;
  line-height: 1.75;
}

.proof-video-featured {
  width: min(960px, 100%);
  margin-bottom: 68px;
  border: 1px solid var(--vsl-line-light);
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(31, 24, 29, 0.12);
}

.video-proof-section .proof-stories-title {
  margin-bottom: 25px;
  color: #383238;
  font-size: 1.05rem;
  font-weight: 750;
}

.video-proof-section .proof-stories-grid {
  gap: 22px;
}

.video-proof-section .story-video {
  border: 1px solid var(--vsl-line-light);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31, 24, 29, 0.08);
}

.video-proof-section .proof-disclaimer {
  color: #918991;
}

.evidence-section {
  padding: 94px 0 126px;
  border-top: 1px solid var(--vsl-line-light);
  background: var(--vsl-paper-alt);
}

.is-preview .proof-placeholder,
.proof-placeholder {
  display: none !important;
}

.evidence-grid {
  gap: 24px;
  margin-top: 55px;
}

.evidence-card {
  border: 1px solid var(--vsl-line-light);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.evidence-card::before {
  display: none;
}

.evidence-card img {
  background: #efedeb;
}

.evidence-card figcaption {
  min-height: 105px;
  padding: 20px 22px;
  border-top-color: var(--vsl-line-light);
}

.evidence-card figcaption strong {
  color: var(--vsl-ink);
  font-size: 1rem;
}

.evidence-card figcaption span {
  color: #817a80;
  font-size: 0.78rem;
}

.evidence-cta {
  width: min(860px, calc(100% - 96px));
  margin-top: 76px;
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: var(--vsl-black-soft);
  box-shadow: none;
}

.evidence-cta h3 {
  max-width: 670px;
  margin-bottom: 23px;
  color: #f6f2ef;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.25;
}

.evidence-cta .button {
  min-width: min(500px, 100%);
  border-radius: 12px;
}

.site-footer {
  padding: 31px 0 38px;
  border-top-color: rgba(255, 255, 255, 0.07);
  background: var(--vsl-black);
}

.site-footer .brand-mark {
  display: none;
}

.site-footer .brand-copy strong {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

@media (max-width: 920px) {
  :root {
    --shell: min(1080px, calc(100% - 52px));
  }

  .video-shell,
  .post-video-panel,
  .evidence-cta {
    width: min(1080px, calc(100% - 52px));
  }

  .fit-cta-card .application-path {
    grid-template-columns: 1fr;
  }

  .fit-cta-card .application-path article {
    min-height: 112px;
    padding: 25px 22px;
  }

  .fit-cta-card .application-path article:not(:last-child) {
    border-bottom: 1px solid var(--vsl-line-dark);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
    --reading: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

  .preview-ribbon {
    padding-inline: 14px;
    font-size: 0.66rem;
  }

  .hero {
    padding: 45px 0 27px;
  }

  .hero-brandline {
    margin-bottom: 27px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.7rem;
  }

  .vsl-hero-layout h1 {
    margin-bottom: 21px;
    font-size: clamp(2.2rem, 10.1vw, 2.75rem);
    line-height: 1.2;
  }

  .vsl-hero-layout .hero-lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .vsl-preframe {
    font-size: 0.82rem;
  }

  .video-section {
    padding-bottom: 72px;
  }

  .video-shell,
  .post-video-panel,
  .evidence-cta {
    width: calc(100% - 36px);
  }

  .video-frame {
    border-radius: 11px;
  }

  .video-caption {
    font-size: 0.72rem;
  }

  .reveal-gate {
    margin: 34px auto 0;
    padding: 27px 0 0;
  }

  .gate-copy h2 {
    font-size: 1.28rem;
  }

  .post-video-intro,
  .video-proof-section,
  .evidence-section {
    padding-block: 78px;
  }

  .post-video-panel h2,
  .video-proof-heading h2,
  .evidence-section h2 {
    font-size: clamp(2rem, 9.2vw, 2.55rem);
    line-height: 1.22;
  }

  .post-video-lead {
    margin-bottom: 35px;
    font-size: 0.97rem;
  }

  .fit-cta-card {
    padding: 30px 0 0;
  }

  .cta-status {
    min-height: 0;
    padding: 0;
    font-size: 0.76rem;
  }

  .fit-cta-card .application-path article {
    min-height: 0;
    padding: 23px 16px;
  }

  .fit-cta-card > .button {
    min-height: 60px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .video-proof-heading {
    width: calc(100% - 36px);
    margin-bottom: 42px;
  }

  .proof-video-featured {
    margin-bottom: 52px;
    border-width: 1px;
    border-radius: 11px;
  }

  .video-proof-section .proof-stories-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .video-proof-section .story-video {
    border-width: 1px;
    border-radius: 10px;
  }

  .evidence-grid {
    margin-top: 42px;
  }

  .evidence-card {
    border-radius: 10px;
  }

  .evidence-card figcaption {
    min-height: 96px;
    padding: 17px 18px;
  }

  .evidence-cta {
    margin-top: 52px;
    padding: 37px 20px;
    border-radius: 11px;
  }

  .evidence-cta h3 {
    font-size: 1.65rem;
  }

  .footer-layout {
    align-items: flex-start;
  }
}

/* Premium lead V6 — type scale modeled from the supplied VSL reference */
:root {
  --vsl-display-size: clamp(3.25rem, 3.75vw, 4.15rem);
  --vsl-copy-size: clamp(1.2rem, 1.45vw, 1.65rem);
  --vsl-support-size: clamp(1rem, 1vw, 1.16rem);
}

body {
  font-family: "Heebo", "Assistant", "Arial Hebrew", Arial, sans-serif;
}

.vsl-hero-layout .hero-copy,
.vsl-hero-layout h1 {
  max-width: 1080px;
}

.vsl-hero-layout h1,
.post-video-panel h2,
.video-proof-heading h2,
.evidence-section h2 {
  font-size: var(--vsl-display-size);
  font-weight: 850;
  line-height: 1.16;
}

.vsl-hero-layout h1,
.post-video-panel h2,
.gate-copy h2,
.fit-cta-card .application-path strong,
.evidence-cta h3 {
  color: #fff;
}

.vsl-hero-layout .hero-lead,
.vsl-preframe,
.post-video-lead {
  color: #f4f1ed;
  font-size: var(--vsl-copy-size);
  font-weight: 400;
  line-height: 1.78;
}

.vsl-hero-layout .hero-lead {
  max-width: 880px;
}

.vsl-preframe {
  max-width: 840px;
}

.video-caption,
.gate-copy > p:not(.gate-kicker),
.gate-copy small,
.preview-unlock,
.fit-cta-card .application-path small,
.fit-cta-card .post-video-note,
.evidence-cta small {
  color: #e5e0dc;
}

.video-caption,
.gate-copy > p:not(.gate-kicker) {
  font-size: var(--vsl-support-size);
}

.gate-copy h2 {
  max-width: 680px;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 750;
}

.section-kicker,
.post-video-panel .section-kicker,
.video-proof-section .section-kicker,
.evidence-section .section-kicker,
.cta-status {
  font-size: var(--vsl-support-size);
  font-weight: 750;
}

.fit-cta-card .application-path strong {
  font-size: 1.08rem;
}

.fit-cta-card .application-path small {
  font-size: 0.88rem;
  line-height: 1.55;
}

.fit-cta-card .post-video-note,
.evidence-cta small {
  font-size: 0.9rem;
}

.video-proof-heading .section-intro,
.evidence-section .section-intro {
  max-width: 820px;
  color: #353035;
  font-size: var(--vsl-copy-size);
  font-weight: 400;
  line-height: 1.72;
}

.video-proof-heading {
  width: min(900px, calc(100% - 48px));
}

.video-proof-heading h2,
.evidence-section h2 {
  color: #141114;
}

.video-proof-section .proof-stories-title {
  color: #211d21;
  font-size: var(--vsl-support-size);
}

.evidence-card figcaption strong {
  color: #161316;
  font-size: 1.08rem;
}

.evidence-card figcaption span,
.video-proof-section .proof-disclaimer {
  color: #514a50;
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  :root {
    --vsl-display-size: clamp(2.15rem, 10vw, 2.7rem);
    --vsl-copy-size: 1.08rem;
    --vsl-support-size: 0.92rem;
  }

  .vsl-hero-layout h1,
  .post-video-panel h2,
  .video-proof-heading h2,
  .evidence-section h2 {
    font-size: var(--vsl-display-size);
    line-height: 1.2;
  }

  .vsl-hero-layout .hero-lead,
  .vsl-preframe,
  .post-video-lead,
  .video-proof-heading .section-intro,
  .evidence-section .section-intro {
    font-size: var(--vsl-copy-size);
    line-height: 1.68;
  }

  .gate-copy h2 {
    font-size: 1.4rem;
  }

  .fit-cta-card .application-path strong {
    font-size: 1rem;
  }

  .fit-cta-card .application-path small,
  .fit-cta-card .post-video-note,
  .evidence-cta small,
  .evidence-card figcaption span,
  .video-proof-section .proof-disclaimer {
    font-size: 0.84rem;
  }
}

/* V15: FAQ follows the supporting sales letter. */
.post-vsl-offer > .faq {
  display: block !important;
  order: 5;
}

.post-vsl-offer > .faq {
  padding: clamp(6.8rem, 10vw, 9.2rem) 0;
  border-top: 1px solid rgba(25, 22, 25, 0.1);
  background:
    linear-gradient(180deg, rgba(188, 120, 133, 0.055), transparent 17rem),
    #f7f5f2;
  color: var(--vsl-ink);
}

.post-vsl-offer .faq .faq-intro h2 {
  font-size: var(--vsl-display-size);
  font-weight: 850;
  line-height: 1.16;
}

@media (max-width: 760px) {
  .post-vsl-offer > .faq {
    padding: 5.2rem 0;
  }

  .post-vsl-offer .faq .faq-intro h2 {
    font-size: var(--vsl-display-size);
    line-height: 1.2;
  }
}

/* Premium lead V9 — the VSL opens directly on a live-ready signal. */
.preview-ribbon,
.hero-brandline {
  display: none !important;
}

.hero-ready-badge {
  display: inline-flex;
  justify-content: center;
  min-height: 43px;
  margin: 0 auto 28px;
  padding: 9px 18px;
  border: 1px solid rgba(201, 138, 150, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #f5eeee;
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.025em;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 0 24px rgba(188, 120, 133, 0.13);
}

.hero-ready-badge .recording-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #ff3c50;
  box-shadow: 0 0 0 4px rgba(255, 60, 80, 0.12), 0 0 14px rgba(255, 60, 80, 0.72);
  animation: recording-light 1.35s ease-in-out infinite;
}

@keyframes recording-light {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(255, 60, 80, 0.12), 0 0 14px rgba(255, 60, 80, 0.72);
  }
  50% {
    opacity: 0.36;
    box-shadow: 0 0 0 2px rgba(255, 60, 80, 0.06), 0 0 5px rgba(255, 60, 80, 0.28);
  }
}

@media (max-width: 760px) {
  .hero-ready-badge {
    min-height: 40px;
    margin-bottom: 23px;
    padding: 8px 15px;
    font-size: 0.77rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ready-badge .recording-dot {
    animation: none;
  }
}

/* Premium lead V11: a compact signature footer. */
.site-footer {
  padding: 1.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: #0d0c0e;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer .footer-minimal {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.footer-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.footer-identity strong {
  color: #f8f5f2;
  font-family: "Heebo", "Assistant", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-signature {
  padding-inline-start: 0.8rem;
  border-inline-start: 1px solid rgba(201, 138, 150, 0.32);
  color: #cf919c;
  font-size: 0.82rem;
  font-weight: 650;
}

.site-footer .footer-copyright {
  justify-self: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  justify-self: end;
  gap: 1rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  text-underline-offset: 0.22em;
  transition: color 160ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #f5edef;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 1.4rem 0;
  }

  .site-footer .footer-minimal {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem 1rem;
  }

  .footer-identity {
    gap: 0.6rem;
  }

  .footer-identity strong {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .footer-signature {
    padding-inline-start: 0.6rem;
    font-size: 0.75rem;
  }

  .site-footer nav {
    gap: 0.75rem;
  }

  .site-footer nav a {
    font-size: 0.7rem;
  }

  .site-footer .footer-copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    font-size: 0.7rem;
  }
}

/* V21: compact emotional calendar story, isolated from other chapters. */
.calendar-story { padding-block: 64px; }
.calendar-story .letter-reading { max-width: 680px; }
.calendar-story .letter-reading > h2 { margin-bottom: 24px; }
.calendar-story .letter-reading p { font-size: 1.125rem; line-height: 1.65; margin-bottom: 14px; }
.calendar-story .letter-reading .section-kicker { font-size: clamp(20px, 2vw, 26px); line-height: 1.45; letter-spacing: 0.02em; margin-bottom: 22px; }
.calendar-story .letter-reading .income-example-note { font-size: 14px; line-height: 1.6; color: #71656b; max-width: 440px; margin: 0 auto 24px; }
.client-belief-story .belief-clients { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; max-width: 480px; margin: 32px auto 38px; }
.belief-clients figure { margin: 0; min-width: 0; }
.belief-clients img { width: 96px; height: 96px; max-width: 100%; object-fit: cover; border-radius: 50%; border: 2px solid #d394ac; padding: 3px; box-shadow: 0 0 12px #ce929d44; }
.belief-clients figcaption { display: grid; gap: 3px; margin-top: 10px; font-size: 15px; line-height: 1.4; }
.belief-clients figcaption span { color: #c6bdc1; font-size: 13px; }
.client-belief-story .belief-everyday p { margin-bottom: 14px; }
.client-belief-story .belief-results { margin-block: 48px; }
.client-belief-story .belief-results h3 { font-size: clamp(24px, 3vw, 36px); line-height: 1.5; }
.client-belief-story .belief-close { margin-top: 44px; }
.client-belief-story .belief-close h3 { font-size: clamp(24px, 2.8vw, 34px); line-height: 1.4; }
.client-belief-story .letter-reading .belief-final { font-size: 16px; color: #c6bdc1; margin-bottom: 0; }
@media(max-width: 600px) { .client-belief-story .belief-clients { gap: 12px; } .belief-clients img { width: 76px; height: 76px; } .client-belief-story .belief-results { margin-block: 36px; } }
.calendar-story .calendar-denials,
.calendar-story .calendar-professional { max-width: 530px; margin: 0 auto 24px; }
.calendar-story .calendar-denials p,
.calendar-story .calendar-professional p { margin-bottom: 8px; }
.calendar-story .letter-reading .calendar-open { font-size: 1.5rem; margin: 26px auto 16px; }
.calendar-story .calendar-example { max-width: 380px; margin: 0 auto 24px; padding: 14px 24px; }
.calendar-story .calendar-example p { font-size: 1.25rem; margin-bottom: 8px; }
.calendar-story .calendar-example p:last-child { margin-bottom: 0; }
.calendar-story .calendar-example span { color: #985c6c; }
.calendar-story .calendar-thoughts { list-style: none; padding: 0; margin: 0 auto 28px; max-width: 530px; }
.calendar-story .calendar-thoughts li { font-size: 1.125rem; line-height: 1.6; padding: 4px 0; }
.calendar-story .calendar-punchline { border-top: 1px solid #ddcdd3; padding-top: 28px; margin: 0 auto 24px; }
.calendar-story .calendar-punchline h3 { margin: 12px auto 0; max-width: 600px; font-size: clamp(1.55rem, 2.5vw, 2.1rem); line-height: 1.5; }
.calendar-story .letter-reading .calendar-month { margin: 22px auto; }
.calendar-story .calendar-two-jobs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 18px auto 28px; }
.calendar-story .calendar-two-jobs p { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 18px 14px; border: 1px solid #ddcdd3; border-radius: 12px; background: #f0e8eb; font-weight: 700; }
.calendar-story .calendar-two-jobs strong { color: #894d5e; font-size: 1.375rem; }
.calendar-story .letter-reading .letter-takeaway { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.5; margin: 0 auto; }
@media (max-width: 760px) {
  .calendar-story { padding-block: 48px; }
  .calendar-story .calendar-two-jobs { grid-template-columns: 1fr; gap: 8px; }
  .calendar-story .calendar-two-jobs p { display: block; padding: 14px; }
  .calendar-story .calendar-two-jobs strong { font-size: 1.125rem; }
  .calendar-story .calendar-example { max-width: 300px; }
}

/* V20: scoped scan-friendly summary; other chapters retain their styles. */
.marketing-system-summary .letter-reading > h2 { margin-bottom: 22px; }
.marketing-system-summary .system-subtitle { max-width: 550px; }
.marketing-system-summary .system-subtitle strong,
.marketing-system-summary .system-closing strong { color: #e0b4c3; }
.marketing-system-summary .system-without-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
  margin: 28px auto; padding: 0; max-width: 680px; list-style: none;
}
.marketing-system-summary .system-without-list li {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 16px; border: 1px solid rgba(201, 138, 150, 0.2);
  border-radius: 12px; background: #1b191d; color: #f2edf0;
  font-size: 1rem; line-height: 1.6;
}
.marketing-system-summary .system-without-list span { color: #c78d99; font-size: 1.25rem; flex-shrink: 0; }
.marketing-system-summary .system-callout {
  margin: 30px auto; padding: 28px 24px; max-width: 620px;
  border: 1px solid rgba(201, 138, 150, 0.55); border-radius: 20px;
  background: rgba(188, 120, 133, 0.08);
}
.marketing-system-summary .system-callout h3 { margin: 0 0 16px; font-size: clamp(1.45rem, 2.3vw, 1.9rem); }
.marketing-system-summary .system-callout strong { color: #e0b4c3; }
.marketing-system-summary .system-callout p { margin: 0 auto; max-width: 500px; font-size: 1.125rem; line-height: 1.75; }
.marketing-system-summary .system-flow-title { margin: 32px auto 24px; font-size: 1.4rem; }
.marketing-system-summary .client-system-flow { margin: 0 auto 24px; }
.marketing-system-summary .client-system-flow li:last-child { padding-bottom: 0; }
.marketing-system-summary .client-system-flow p { font-size: 1rem; line-height: 1.6; color: #e1d8dc; margin-top: 4px; }
.marketing-system-summary .system-closing { font-size: 1.25rem; line-height: 1.75; margin: 18px auto 0; }
@media (max-width: 760px) {
  .marketing-system-summary .system-without-list { grid-template-columns: 1fr; gap: 8px; }
  .marketing-system-summary .system-without-list li { padding: 12px; }
  .marketing-system-summary .system-callout { padding: 24px 16px; }
  .marketing-system-summary .system-closing { font-size: 1.125rem; }
}

/* V19: a clear invitation and three concrete conversation topics. */
.post-video-panel .strategy-call-title {
  max-width: 560px; margin: 28px auto;
  color: #fff; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.65;
}
.strategy-call-topics { max-width: 550px; margin: 32px auto; text-align: center; }
.strategy-call-topics > div { padding: 18px 0; }
.strategy-call-topics dt { color: #e0b4c3; font-size: 1.2rem; font-weight: 800; line-height: 1.6; }
.strategy-call-topics dd { margin: 8px auto 0; max-width: 470px; color: #f2edf0; font-size: 1.125rem; line-height: 1.75; text-wrap: balance; }

/* V18: an ordered mechanism and two practical mentorship stages. */
.client-system-flow {
  max-width: 500px;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}
.client-system-flow li { position: relative; padding-bottom: 36px; }
.client-system-flow li:not(:last-child)::after {
  content: '↓'; position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%); color: #c78d99;
}
.client-system-flow strong { color: #e0b4c3; font-size: 1.375rem; }
.client-system-flow li p { margin: 8px auto 0; max-width: 420px; }
.letter-reading .mentorship-stage {
  margin: 44px auto; padding: 36px 24px;
  border-block: 1px solid #ddcdd3;
}
.mentorship-stage > p { max-width: 540px; margin-inline: auto; }
.mentorship-stage .stage-outcome {
  padding: 20px 16px; margin-bottom: 0;
  background: #f0e8eb; border-radius: 12px;
}
.letter-reading > .button {
  display: flex; width: min(520px, 100%); margin: 28px auto 0;
  white-space: normal; text-wrap: balance; line-height: 1.6;
}
.letter-reading .letter-action-note { font-size: 0.9375rem; margin: 16px auto 0; }
@media (max-width: 760px) {
  .letter-reading .mentorship-stage { padding: 28px 0; }
  .letter-reading > .button { font-size: 1rem; padding: 16px 12px; }
  .mentorship-stage > p { max-width: 32ch; }
}

/* V17: quiet violet light, fading into the video background. */
main > .hero {
  background:
    linear-gradient(to bottom, transparent 55%, var(--vsl-black) 100%),
    radial-gradient(ellipse 48% 80% at 50% 12%, rgba(150, 108, 159, 0.17), transparent 100%),
    radial-gradient(ellipse 32% 65% at 80% 0%, rgba(188, 120, 133, 0.055), transparent 100%),
    var(--vsl-black);
}

/* V15: headline, video, offer, proof, supporting copy, FAQ. */
.video-section .video-shell { max-width: 960px; }
.hero { padding-bottom: 24px; }
.hero .hero-copy h1 { margin-bottom: 0; }

/* V13: the user's sales letter in a restrained reading column. */
.post-vsl-offer > .sales-letter-copy { order: 4; }
.copy-qualifier { margin: 24px auto 16px; color: #f6edef; font-size: 1.125rem; font-weight: 700; }
.hero .hero-copy h1 { font-size: clamp(2.125rem, 3.65vw, 3.5rem); line-height: 1.35; }
.hero-promise { max-width: 780px; margin: 24px auto; font-size: clamp(1.25rem, 2vw, 1.75rem); color: #fff; font-weight: 700; line-height: 1.6; }
.hero .hero-lead { font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.75; }
.hero .hero-copy > .button { margin-top: 24px; white-space: normal; max-width: 100%; }
.hero-cta-note { margin: 14px auto 0; font-size: 0.9375rem; color: #dfd5d8; }
.letter-chapter { padding: 96px 24px; }
.letter-reading { width: min(100%, 720px); margin: auto; }
.letter-light { background: #faf8f5; color: #211d20; }
.letter-dark { background: #101012; color: #fff; }
.letter-reading h2 { font-size: clamp(2rem, 3.3vw, 3rem); line-height: 1.4; margin: 0 0 32px; color: inherit; }
.letter-reading h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.5; margin: 32px 0 20px; color: inherit; }
.letter-reading p, .letter-system dd { font-size: 1.25rem; line-height: 1.85; margin: 0 0 24px; color: inherit; }
.letter-reading .section-kicker { font-size: 1rem; color: #985c6c; }
.letter-reading .letter-takeaway { font-size: 1.5rem; font-weight: 800; margin-top: 32px; }
.calendar-example { border-block: 1px solid #d9c9cd; padding: 20px 0; margin: 28px 0; }
.calendar-example p { display: flex; justify-content: space-between; max-width: 280px; margin: 0 auto 10px; }
.calendar-example time { direction: ltr; font-variant-numeric: tabular-nums; }
.calendar-example small { display: block; text-align: center; color: #6c5c62; }
.letter-system { margin: 32px 0; }
.letter-system > div { padding: 20px 0; border-bottom: 1px solid #e4dadd; }
.letter-system dt { font-size: 1.375rem; font-weight: 800; color: #894d5e; margin-bottom: 8px; }
.letter-system dd { margin: 0; }
.letter-reading .letter-responsibility { font-size: 1.125rem; border-inline-start: 2px solid #bc7885; padding-inline-start: 20px; }
.strategy-agenda { max-width: 700px; margin: 32px auto; padding: 0; list-style: none; text-align: start; }
.strategy-agenda li { padding: 10px 28px 10px 0; position: relative; font-size: 1.25rem; line-height: 1.7; color: #fff; }
.strategy-agenda li::before { content: '✓'; position: absolute; right: 0; color: #cf919c; }
@media (max-width: 760px) {
  .letter-chapter { padding: 64px 22px; }
  .letter-reading p, .letter-system dd, .strategy-agenda li { font-size: 1.125rem; }
  .hero .hero-copy h1 { font-size: 2.125rem; }
  .hero .hero-copy > .button { font-size: 1rem; padding: 18px; }
}

/* V12: focused mentorship copy and readable evidence. */
.post-video-panel .mentorship-context {
  max-width: 780px;
  margin: 1.2rem auto 2.4rem;
  color: #f5f1f2;
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  line-height: 1.85;
}
.evidence-grid .evidence-card img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  background: #f0ede8;
}
.evidence-grid .evidence-card figcaption span {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #51494d;
}
.proof-zoom {
  display: block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.65rem 0;
  border: 0;
  background: transparent;
  color: #804654;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.proof-lightbox {
  width: min(780px, calc(100% - 32px));
  max-height: 90dvh;
  margin: auto;
  padding: 24px;
  border: 1px solid #bc7885;
  border-radius: 16px;
  background: #faf8f5;
  color: #211c1e;
  overflow: auto;
}
.proof-lightbox::backdrop { background: rgb(0 0 0 / 85%); }
.proof-lightbox h2 { font-size: 1.4rem; line-height: 1.5; margin: 16px 0; }
.proof-lightbox img { display: block; width: 100%; height: auto; }
.proof-lightbox p { font-size: 1.125rem; line-height: 1.7; margin-top: 16px; }
.proof-lightbox-close {
  position: sticky;
  top: 0;
  padding: 10px 18px;
  border: 1px solid #bc7885;
  border-radius: 8px;
  background: #211c1e;
  color: white;
  font: inherit;
  cursor: pointer;
}
.proof-zoom:focus-visible, .proof-lightbox-close:focus-visible { outline: 3px solid #bc7885; outline-offset: 4px; }
@media (max-width: 760px) {
  .site-footer .footer-minimal { grid-template-columns: 1fr; gap: 1rem; }
  .site-footer nav { justify-self: start; flex-wrap: wrap; }
  .site-footer nav a { font-size: 0.875rem; }
  .site-footer .footer-copyright { grid-row: auto; font-size: 0.75rem; }
  .proof-lightbox { padding: 16px; }
}

/* V14: centered, tiered typography with balanced short lines. */
main :is(h1, h2, h3, p, dt, dd, li, figcaption, summary),
.application-dialog :is(h2, p, label, .form-help),
.proof-lightbox,
.site-footer {
  text-align: center;
}
main :is(h1, h2, h3, p, dd, li, figcaption),
.application-dialog :is(h2, p) {
  text-wrap: balance;
}
.hero .hero-copy h1 {
  max-width: 920px;
  margin-inline: auto;
}
.hero .hero-promise {
  max-width: 640px;
  margin-inline: auto;
}
.hero .hero-lead {
  max-width: 580px;
  margin-inline: auto;
}
.letter-reading { max-width: 720px; text-align: center; }
.letter-reading > p,
.letter-system {
  max-width: 570px;
  margin-inline: auto;
}
.letter-reading .letter-takeaway { max-width: 500px; }
.letter-system dd { max-width: 500px; margin-inline: auto; }
.letter-reading .letter-responsibility {
  border-inline-start: 0;
  border-top: 1px solid #d9c9cd;
  padding: 24px 0 0;
}
.post-video-panel h2,
.video-proof-heading h2,
.faq-intro h2 { max-width: 780px; margin-inline: auto; }
.post-video-panel .post-video-lead,
.post-video-panel .mentorship-context,
.video-proof-heading .section-intro,
.evidence-section > .reading-column .section-intro,
.faq-intro > p,
.faq-decision > p { max-width: 590px; margin-inline: auto; }
.strategy-agenda { max-width: 540px; text-align: center; }
.strategy-agenda li { padding: 12px 0; }
.strategy-agenda li::before { position: static; display: inline; margin-inline-end: 8px; }
.application-path article { text-align: center; }
.faq .faq-list summary { justify-content: center; }
.faq .faq-answer p {
  max-width: none;
  margin-inline: 0;
  direction: rtl;
  text-align: right;
  text-wrap: wrap;
}
.evidence-card figcaption strong,
.evidence-card figcaption span { max-width: 380px; margin-inline: auto; text-wrap: balance; }
.evidence-card .proof-zoom { margin-inline: auto; }
.site-footer .footer-minimal { justify-items: center; }
.site-footer .footer-identity,
.site-footer nav { justify-self: center; justify-content: center; }
.site-footer .footer-copyright { justify-self: center; }
@media (max-width: 760px) {
  .letter-reading > p, .letter-system { max-width: 32ch; }
  .hero .hero-lead, .post-video-panel .post-video-lead,
  .post-video-panel .mentorship-context { max-width: 32ch; }
  .hero .hero-promise { max-width: 28ch; }
  .letter-reading .letter-takeaway { max-width: 24ch; }
}

/* V16: one framed application card, with steps and action together. */
.post-video-panel .fit-cta-card {
  width: min(620px, 100%);
  margin: 36px auto 0;
  padding: 32px;
  border: 1px solid rgba(201, 138, 150, 0.65);
  border-radius: 24px;
  background: #1b191d;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), 0 0 26px rgba(188, 120, 133, 0.06);
}
.fit-cta-card .cta-status {
  padding: 12px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 138, 150, 0.25);
  border-radius: 10px;
  background: rgba(188, 120, 133, 0.09);
  color: #f1c4cd;
  font-size: 1rem;
  line-height: 1.6;
}
.fit-cta-card .application-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 0 28px;
  border: 0;
}
.fit-cta-card .application-path article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 4px 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  text-align: center;
}
.fit-cta-card .application-path article:not(:last-child) { border: 0; }
.fit-cta-card .application-path article > span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  background: #c78d99;
  color: #21191c;
  font-size: 0.95rem;
  font-weight: 800;
}
.fit-cta-card .application-path strong,
.fit-cta-card .application-path small { grid-column: 2; margin: 0; line-height: 1.6; }
.fit-cta-card .application-path strong { font-size: 1.1rem; color: #fff; }
.fit-cta-card .application-path small { font-size: 0.95rem; color: #ded2d6; }
.fit-cta-card > .button { width: 100%; max-width: none; white-space: normal; line-height: 1.5; }
.fit-cta-card .post-video-note { display: block; margin: 16px auto 0; color: #d5c5cb; font-size: 0.875rem; line-height: 1.6; }
@media (max-width: 760px) {
  .post-video-panel .fit-cta-card { padding: 22px 18px; border-radius: 20px; }
  .fit-cta-card .application-path article { grid-template-columns: 28px minmax(0, 1fr) 28px; gap: 4px; }
  .fit-cta-card .application-path article > span { width: 26px; height: 26px; }
  .fit-cta-card > .button { padding: 16px 12px; font-size: 1rem; }
}
.mentorship-process { --process-rose: #a55c70; padding: 72px 24px; }
.mentorship-process .letter-reading { width: min(100%, 780px); }
.mentorship-process .process-accent { color: var(--process-rose); }
.mentorship-process .process-intro h2 { margin: 12px 0 22px; line-height: 1.35; }
.mentorship-process p { max-width: 580px; margin: 0 auto 12px; font-size: 19px; line-height: 1.65; text-wrap: pretty; }
.mentorship-process .section-kicker { color: var(--process-rose); font-size: 15px; }
.mentorship-process .process-step { margin-top: 56px; }
.mentorship-process .process-label { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--process-rose); font-weight: 700; font-size: 16px; }
.mentorship-process .process-label span { font-family: 'Heebo', sans-serif; font-size: 56px; line-height: 1; font-weight: 800; letter-spacing: -3px; }
.mentorship-process h3 { margin: 16px auto 14px; max-width: 680px; font-size: clamp(25px, 2.8vw, 34px); line-height: 1.4; }
.mentorship-process dl { margin: 24px auto; }
.mentorship-process dt { font-weight: 800; font-size: 19px; line-height: 1.5; }
.mentorship-process dd { margin: 6px 0 0; font-size: 17px; line-height: 1.6; }
.mentorship-process .process-xray { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mentorship-process .process-xray > div { padding: 19px; border: 1px solid #e8d9dd; border-radius: 18px; background: #fff; }
.mentorship-process .process-callout { padding: 22px; border-radius: 20px; background: #f0e4e7; text-align: center; font-size: 20px; line-height: 1.6; }
.mentorship-process .process-callout p { margin: 6px auto 0; font-size: 18px; }
.mentorship-process .process-components { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.mentorship-process .process-components dt { color: var(--process-rose); }
.mentorship-process .process-key { margin: 28px auto 18px; }
.mentorship-process .process-key small { display: block; font-size: 18px; margin-bottom: 5px; }
.mentorship-process .process-key strong { display: block; font-family: 'Heebo', sans-serif; font-size: clamp(24px, 2.5vw, 30px); line-height: 1.4; }
.mentorship-process .process-actions { display: grid; gap: 10px; }
.mentorship-process .process-actions > div { display: grid; grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr); align-items: center; gap: 12px; padding: 16px 20px; border: 1px solid #e8d9dd; border-radius: 16px; }
.mentorship-process .process-actions dt { font-size: 17px; }
.mentorship-process .process-actions dd { margin: 0; color: var(--process-rose); font-weight: 700; }
.mentorship-process .process-actions span { color: var(--process-rose); text-align: center; }
.mentorship-process .process-flow { display: flex; justify-content: center; align-items: center; list-style: none; padding: 0; margin: 24px auto; gap: 12px; }
.mentorship-process .process-flow li { display: flex; align-items: center; gap: 12px; font-size: 19px; font-weight: 800; white-space: nowrap; }
.mentorship-process .process-flow li:not(:last-child)::after { content: '←'; color: var(--process-rose); font-weight: 400; }
.mentorship-process .process-questions { font-size: 18px; }
.mentorship-process .process-control { margin-top: 24px; }
.mentorship-process .process-control strong { color: var(--process-rose); font-size: 28px; }
.mentorship-process .process-bridge { margin-top: 48px; }
.mentorship-process .process-bridge h3 { font-size: clamp(23px, 2.5vw, 29px); }
@media (max-width: 600px) {
  .mentorship-process.letter-chapter { padding: 48px 22px; }
  .mentorship-process .process-intro h2 { font-size: 29px; }
  .mentorship-process p { font-size: 18px; }
  .mentorship-process .process-step { margin-top: 40px; }
  .mentorship-process .process-label span { font-size: 48px; }
  .mentorship-process .process-xray { grid-template-columns: 1fr; gap: 8px; }
  .mentorship-process .process-xray > div { padding: 13px 16px; }
  .mentorship-process .process-components { grid-template-columns: 1fr; gap: 16px; }
  .mentorship-process .process-actions > div { grid-template-columns: 1fr; gap: 3px; padding: 14px; }
  .mentorship-process .process-actions span { transform: rotate(-90deg); line-height: 1; }
  .mentorship-process .process-flow { flex-direction: column; gap: 6px; }
  .mentorship-process .process-flow li { flex-direction: column; gap: 6px; }
  .mentorship-process .process-flow li:not(:last-child)::after { content: '↓'; line-height: 1; }
  .mentorship-process .process-callout { padding: 18px 15px; }
  .mentorship-process .process-bridge { margin-top: 36px; }
}
.faq-decision.fit-request { padding: 26px 28px; }
.faq-decision.fit-request .faq-decision-kicker { font-size: 14px; margin: 0 auto 10px; }
.faq-decision.fit-request h3 { max-width: 700px; margin-bottom: 12px; font-size: clamp(28px, 3.2vw, 42px); line-height: 1.2; }
.faq-decision.fit-request h3 span { color: #ce929d; }
.faq-decision.fit-request > .fit-request-invitation { max-width: 570px; font-size: 23px; font-weight: 700; line-height: 1.35; margin: 0 auto 16px; color: #fff; }
.faq-decision.fit-request .fit-request-invitation strong { color: #ce929d; }
.faq-decision.fit-request > .fit-request-body { max-width: 530px; font-size: 17px; line-height: 1.45; margin-bottom: 12px; }
.faq-decision.fit-request > .fit-request-first { font-size: 18px; line-height: 1.5; margin: 12px auto 8px; color: #fff; }
.faq-decision.fit-request .fit-request-first strong { font-weight: 800; }
.faq-decision.fit-request > .fit-request-next { max-width: 530px; margin: 14px auto; font-size: 18px; line-height: 1.45; color: #fff; }
.faq-decision.fit-request .fit-request-next strong { color: #edc4cd; }
.faq-decision.fit-request .button { min-height: 58px; font-size: 18px; }
.faq-decision.fit-request small { margin-top: 12px; font-size: 13px; }
@media (max-width: 600px) {
  .faq-decision.fit-request { padding: 22px 18px; }
  .faq-decision.fit-request .faq-decision-kicker { font-size: 13px; }
  .faq-decision.fit-request h3 { font-size: 28px; }
  .faq-decision.fit-request > .fit-request-invitation { font-size: 21px; }
  .faq-decision.fit-request > .fit-request-body { font-size: 16px; }
  .faq-decision.fit-request > .fit-request-next { font-size: 17px; }
  .faq-decision.fit-request .button { font-size: 16px; padding-inline: 12px; }
}
.mentorship-process.process-refined { padding: 28px 22px; background: #fff; }
.mentorship-process.process-refined .letter-reading { width: min(100%, 840px); }
.process-refined.mentorship-process .process-intro { margin-bottom: 12px; }
.process-refined.mentorship-process .process-intro h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.25; margin: 8px auto 12px; }
.process-refined.mentorship-process p { font-size: 17px; line-height: 1.45; margin-bottom: 8px; }
.process-refined.mentorship-process .section-kicker { font-size: 14px; }
.process-refined.mentorship-process .process-step { margin: 0; padding: 14px 28px; }
.process-refined.mentorship-process .process-step-tint { background: #f5ecef; border-radius: 20px; margin-block: 12px; }
.process-refined.mentorship-process .process-label { font-size: 14px; gap: 12px; margin-bottom: 10px; }
.process-refined.mentorship-process .process-label span { font-size: 38px; letter-spacing: -2px; }
.process-refined.mentorship-process h3 { font-size: clamp(24px, 2.3vw, 29px); line-height: 1.25; margin: 0 auto 10px; max-width: 740px; }
.process-refined.mentorship-process dl { margin: 10px auto; }
.process-refined.mentorship-process dt { font-size: 17px; line-height: 1.4; }
.process-refined.mentorship-process dd { font-size: 16px; line-height: 1.4; margin-top: 3px; }
.process-refined.mentorship-process .process-xray { gap: 8px; }
.process-refined.mentorship-process .process-xray > div { padding: 11px 16px; border-radius: 12px; }
.process-refined.mentorship-process :is(.process-xray,.process-components,.process-actions) :is(dt,dd) { text-align: right; text-wrap: pretty; }
.process-refined.mentorship-process .process-callout { padding: 12px 16px; border-radius: 12px; font-size: 17px; line-height: 1.4; }
.process-refined.mentorship-process .process-callout p { font-size: 16px; margin: 4px auto 0; max-width: none; }
.process-refined.mentorship-process .process-components { gap: 16px; }
.process-refined.mentorship-process .process-key { max-width: none; margin: 18px auto 10px; }
.process-refined.mentorship-process .process-key strong { font-size: 21px; line-height: 1.35; }
.process-refined.mentorship-process .process-actions { gap: 6px; margin-bottom: 0; }
.process-refined.mentorship-process .process-actions > div { padding: 9px 14px; border-radius: 10px; background: #ffffff80; }
.process-refined.mentorship-process .process-actions dt { font-size: 16px; }
.process-refined.mentorship-process .process-flow { margin: 14px auto; }
.process-refined.mentorship-process .process-flow li { font-size: 18px; }
.process-refined.mentorship-process .process-metrics { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 12px auto; color: var(--process-rose); }
.process-refined.mentorship-process .process-control { margin-top: 16px; }
.process-refined.mentorship-process .process-control strong { font-size: 22px; white-space: nowrap; }
.process-refined.mentorship-process .process-bridge { margin-top: 8px; }
@media (max-width: 600px) {
  .mentorship-process.process-refined { padding: 32px 18px; }
  .process-refined.mentorship-process .process-step { padding: 22px 0; }
  .process-refined.mentorship-process .process-step-tint { padding: 22px 14px; margin-inline: -8px; }
  .process-refined.mentorship-process .process-intro h2 { font-size: 28px; }
  .process-refined.mentorship-process h3 { font-size: 24px; }
  .process-refined.mentorship-process .process-xray > div { padding: 9px 12px; }
  .process-refined.mentorship-process .process-components { gap: 10px; }
  .process-refined.mentorship-process .process-actions > div { gap: 1px; padding: 9px 12px; }
  .process-refined.mentorship-process .process-actions span { display: none; }
  .process-refined.mentorship-process .process-flow { gap: 4px; }
  .process-refined.mentorship-process .process-flow li { gap: 4px; font-size: 17px; line-height: 1.3; }
  .process-refined.mentorship-process .process-control strong { display: block; }
  .process-refined.mentorship-process .process-metrics { font-size: 15px; gap: 7px; }
}
.after-process { order: 4; padding: 44px 24px; background: #121013; color: #fff; }
.after-process .after-process-inner { width: min(100%, 780px); margin-inline: auto; }
.after-process header { max-width: 650px; margin: 0 auto 24px; text-align: center; }
.after-process p { margin: 0; font-size: 17px; line-height: 1.55; text-wrap: pretty; }
.after-process .after-eyebrow { color: #ce929d; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.after-process h2 { margin: 0 auto 16px; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.3; }
.after-process :is(h2,h3) span, .after-process .after-system strong { color: #ce929d; }
.after-process .after-clarity { margin: 8px auto 14px; max-width: 570px; }
.after-process .after-system { font-size: 19px; }
.after-process .after-comparisons { display: grid; gap: 8px; }
.after-process .after-comparison { display: grid; grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr); align-items: stretch; gap: 12px; background: #ffffff04; border-radius: 14px; overflow: hidden; }
.after-process .after-comparison > div { padding: 13px 18px; }
.after-process .after-comparison p { text-align: right; font-size: 16px; line-height: 1.45; }
.after-process .after-comparison div > span { display: block; font-size: 12px; margin-bottom: 4px; font-weight: 700; }
.after-process .after-today { color: #c8c2c6; }
.after-process .after-goal { background: #ce929d12; color: #f9eef1; font-weight: 650; }
.after-process .after-goal > span { color: #ce929d; }
.after-process .after-arrow { align-self: center; color: #ce929d; }
.after-process .after-punchline { margin: 24px auto 18px; padding: 18px; background: #ce929d12; border-radius: 14px; text-align: center; }
.after-process .after-punchline p { font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.after-process .after-punchline p:first-child { color: #c8c2c6; }
.after-process .after-punchline strong { color: #ce929d; }
.after-process h3 { font-size: clamp(24px, 2.5vw, 30px); line-height: 1.35; margin: 0; text-align: center; }
@media (max-width: 600px) {
  .after-process { padding: 32px 20px; }
  .after-process p { font-size: 16px; }
  .after-process .after-system { font-size: 18px; }
  .after-process .after-comparison { grid-template-columns: 1fr; gap: 0; }
  .after-process .after-comparison > div { padding: 10px 14px; }
  .after-process .after-arrow { justify-self: center; transform: rotate(-90deg); line-height: 1; }
  .after-process .after-punchline { padding: 14px; margin-top: 18px; }
}
.faq-decision.fit-request.fit-simple { width: min(800px, 100%); padding: 30px 28px; }
.faq-decision.fit-request.fit-simple::before { display: none; }
.faq-decision.fit-simple > .fit-badge { display: table; width: auto; max-width: 100%; margin: 0 auto 18px; padding: 5px 13px; border: 1px solid #ce929d40; border-radius: 999px; background: #ce929d0d; color: #ce929d; font-size: 13px; line-height: 1.4; font-weight: 650; }
.faq-decision.fit-request.fit-simple h3 { margin: 0 auto 20px; max-width: 710px; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.25; letter-spacing: -0.025em; }
.faq-decision.fit-request.fit-simple > .fit-request-body { max-width: 470px; margin: 0 auto 22px; font-size: 17px; line-height: 1.5; }
.faq-decision.fit-simple .fit-body-break { display: block; margin-top: 8px; }
.faq-decision.fit-simple .button { width: min(500px, 100%); min-height: 56px; font-size: 18px; }
.faq-decision.fit-simple small { max-width: 490px; margin: 12px auto 0; color: #bdb2b7; font-size: 13px; line-height: 1.45; }
@media (max-width: 600px) {
  .faq-decision.fit-request.fit-simple { padding: 24px 18px; }
  .faq-decision.fit-simple > .fit-badge { margin-bottom: 14px; font-size: 12px; }
  .faq-decision.fit-request.fit-simple h3 { font-size: clamp(25px, 6.5vw, 28px); margin-bottom: 16px; }
  .faq-decision.fit-request.fit-simple > .fit-request-body { font-size: 16px; margin-bottom: 18px; }
  .faq-decision.fit-simple .button { width: 100%; font-size: 16px; }
  .faq-decision.fit-simple small { font-size: 12px; }
}
.money-proof[hidden] { display: none !important; }
.money-proof { padding: 48px 22px; background: #121013; color: #fff; }
.money-proof-inner { max-width: 880px; margin: auto; }
.money-proof header, .money-proof footer { max-width: 680px; margin: auto; text-align: center; }
.money-proof h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.3; margin: 12px auto; }
.money-proof h3 { font-size: 24px; line-height: 1.35; }
.money-proof h2 span, .money-proof footer h3 span, .money-proof-eyebrow { color: #ce929d; }
.money-proof p { font-size: 17px; line-height: 1.5; }
.money-proof .money-proof-eyebrow { font-size: 14px; }
.money-proof-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin: 28px auto; }
.money-case { background: #faf8f5; color: #21191c; border-radius: 18px; overflow: hidden; padding: 0 20px 20px; }
.money-screenshot { display: block; width: calc(100% + 40px); margin: 0 -20px 18px; padding: 0; border: 0; background: #e9e1e4; cursor: zoom-in; }
.money-screenshot img { display: block; width: 100%; max-height: 290px; object-fit: contain; }
.money-screenshot:focus-visible { outline: 3px solid #bc7885; outline-offset: -3px; }
.money-case h3 { font-size: 19px; margin: 10px 0 6px; }
.money-case .money-context { font-size: 14px; margin: 4px 0; }
.money-metrics { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 10px; margin: 22px 0; }
.money-metrics > div { display: flex; flex-direction: column-reverse; text-align: center; }
.money-metrics dt { font-size: 13px; color: #65535a; }
.money-metrics dd { font-family: 'Heebo',sans-serif; font-size: clamp(26px,3vw,36px); line-height: 1.2; font-weight: 800; margin: 0 0 6px; direction: ltr; overflow-wrap: anywhere; }
.money-revenue dd { color: #a55c70; }
.money-flow { list-style: none; padding: 12px 0 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; color: #935568; }
.money-flow li { font-size: 14px; font-weight: 700; }
.money-flow li:not(:last-child)::after { content: ' ←'; }
.money-proof footer small { display: block; max-width: 620px; margin: 20px auto 0; color: #bdb2b7; font-size: 12px; line-height: 1.6; }
@media (max-width:600px) {
  .money-proof { padding: 32px 20px; }
  .money-proof-grid { grid-template-columns: 1fr; gap: 18px; }
  .money-flow { flex-direction: column; align-items: center; }
  .money-flow li:not(:last-child)::after { content: '↓'; display: block; text-align: center; }
}
.marketing-system-summary .client-system-flow li > strong {
  display: inline-block;
  max-width: 100%;
  padding: 8px 24px;
  border: 1px solid rgba(201, 138, 150, 0.48);
  border-radius: 999px;
  background: rgba(201, 138, 150, 0.09);
  color: #e0b4c3;
  line-height: 1.4;
  box-sizing: border-box;
}
.marketing-system-summary .system-closing .system-daily-question {
  display: inline-block;
  max-width: 100%;
  margin: 12px auto 16px;
  font-size: clamp(1.75rem, 3.3vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  transform: none;
  color: #fff;
}
@media (max-width: 600px) {
  .marketing-system-summary .client-system-flow li > strong { padding: 7px 20px; }
  .marketing-system-summary .system-closing .system-daily-question { max-width: 94%; font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
}
.mentorship-process.process-practical { padding: 48px 22px; background: #fff; }
.process-practical.mentorship-process .letter-reading { width: min(100%, 740px); }
.process-practical .practical-intro { text-align: center; margin-bottom: 28px; }
.process-practical.mentorship-process .practical-intro h2 { margin: 10px auto 0; font-size: clamp(28px, 3vw, 38px); line-height: 1.3; }
.process-practical .practical-step { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 20px; align-items: start; padding: 24px; }
.process-practical .practical-step:nth-of-type(2) { background: #f6edef; border-radius: 18px; }
.process-practical .practical-step[aria-labelledby="process-two"] { position: relative; box-shadow: 0 0 12px rgba(188, 120, 133, 0.13), 0 8px 26px rgba(150, 108, 159, 0.07); }
.process-practical .practical-step[aria-labelledby="process-two"]::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(188, 120, 133, 0.72); border-radius: inherit; box-shadow: inset 0 0 7px rgba(224, 180, 195, 0.14), 0 0 4px rgba(201, 138, 150, 0.2); pointer-events: none; }
.process-practical .practical-number { font-family: 'Heebo', sans-serif; font-size: 38px; line-height: 1.2; font-weight: 800; color: #a55c70; direction: ltr; }
.process-practical.mentorship-process .practical-step h3 { text-align: right; margin: 0 0 10px; font-size: 26px; line-height: 1.3; }
.process-practical.mentorship-process .practical-step p { text-align: right; max-width: 560px; margin: 0; font-size: 18px; line-height: 1.55; }
.process-practical.mentorship-process .practical-step .practical-output { margin-top: 12px; font-size: 16px; color: #8d4e60; }
@media (max-width: 600px) {
  .mentorship-process.process-practical { padding: 32px 20px; }
  .process-practical .practical-step { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; padding: 20px 12px; }
  .process-practical .practical-number { font-size: 30px; }
  .process-practical.mentorship-process .practical-step h3 { font-size: 23px; }
  .process-practical.mentorship-process .practical-step p { font-size: 17px; }
  .process-practical.mentorship-process .practical-step .practical-output { font-size: 15px; }
}
.after-process.future-moments header p { margin: 10px auto; max-width: 590px; }
.after-process.future-moments header strong { color: #e0b4c3; }
.future-moments .future-moment-list { display: grid; gap: 36px; margin-top: 34px; }
.future-moments .future-moment > h3 { font-size: clamp(23px, 2.5vw, 29px); margin: 0 0 16px; }
.future-moments .moment-scenes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 18px; overflow: hidden; background: #ffffff03; }
.after-process.future-moments .moment-scenes { position: relative; box-shadow: 0 0 14px rgba(201, 138, 150, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12); }
.after-process.future-moments .moment-scenes::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201, 138, 150, 0.6); border-radius: inherit; box-shadow: inset 0 0 8px rgba(224, 180, 195, 0.05); pointer-events: none; }
.future-moments .moment-scenes > div { min-width: 0; padding: 22px 24px; }
.future-moments .moment-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.future-moments .moment-today { color: #c6bbc0; }
.future-moments .moment-future { background: #ce929d12; color: #f7edf1; }
.future-moments .moment-future .moment-label, .future-moments .moment-future strong { color: #e0b4c3; }
.after-process.future-moments .moment-scenes p { text-align: right; font-size: 17px; line-height: 1.6; margin: 0 0 8px; }
.after-process.future-moments .moment-scenes p:last-child { margin-bottom: 0; }
.future-moments .moment-thought { font-style: italic; color: #e0d7dc; }
.future-moments .moment-month .moment-future { background: #ce929d1c; }
.future-moments .moment-money-flow { list-style: none; padding: 0; margin: 14px 0 0; }
.future-moments .moment-money-flow li { font-size: 17px; line-height: 1.4; text-align: right; }
.future-moments .moment-money-flow li:not(:last-child)::after { content: '↓'; display: block; color: #ce929d; padding-block: 3px; }
.future-moments .moment-money-flow li:last-child { color: #e0b4c3; font-weight: 700; }
.future-moments .future-perspective { text-align: center; max-width: 680px; margin: 38px auto; }
.future-moments .future-perspective .perspective-before { color: #c6bbc0; font-size: 17px; margin: 12px 0; }
.future-moments .future-perspective .perspective-after { color: #e0b4c3; font-size: clamp(23px, 2.7vw, 30px); font-weight: 700; line-height: 1.4; }
.future-moments .future-close { text-align: center; max-width: 700px; margin: auto; }
.future-moments .future-close h3:first-child { font-size: 20px; font-weight: 500; color: #ded4da; margin-bottom: 14px; }
.future-moments .future-close p { margin: 16px auto 0; color: #bdb2b7; font-size: 14px; line-height: 1.6; }
@media (max-width: 600px) {
  .future-moments .future-moment-list { gap: 28px; }
  .future-moments .moment-scenes { grid-template-columns: 1fr; }
  .future-moments .moment-scenes > div { padding: 18px; }
  .future-moments .moment-future { position: relative; }
  .future-moments .moment-future::before { content: '↓'; position: absolute; top: -12px; left: 22px; color: #ce929d; font-size: 20px; }
  .after-process.future-moments .moment-scenes p { font-size: 16px; }
  .future-moments .future-close h3:first-child { font-size: 18px; }
}
.post-vsl-offer > .decision-checkpoint { order: 4; background: #faf8f5; color: #241b20; padding: 32px 22px 18px; text-align: center; }
.decision-checkpoint .checkpoint-inner { max-width: 700px; margin: auto; }
.decision-checkpoint h2 { font-size: clamp(21px, 2.2vw, 27px); line-height: 1.35; margin: 0 auto 18px; }
.decision-checkpoint .button { width: min(440px, 100%); min-height: 54px; margin-inline: auto; font-size: 17px; padding: 14px 20px; }
.decision-checkpoint .checkpoint-note { font-size: 13px; line-height: 1.5; color: #71636a; margin: 10px auto 0; max-width: 490px; }
.decision-checkpoint .checkpoint-continue { display: inline-block; font-size: 14px; line-height: 1.5; margin-top: 20px; color: #71636a; text-decoration: none; }
.decision-checkpoint .checkpoint-continue span { color: #8d4e60; text-decoration: underline; text-underline-offset: 4px; }
.decision-checkpoint .checkpoint-continue:focus-visible { outline: 2px solid #a55c70; outline-offset: 5px; border-radius: 3px; }
@media (max-width: 600px) {
  .post-vsl-offer > .decision-checkpoint { padding: 28px 20px 16px; }
  .decision-checkpoint .button { width: 100%; font-size: 16px; }
  .decision-checkpoint .checkpoint-note { font-size: 12px; }
}
.video-proof-section .video-case-meta[hidden] { display: none !important; }
.video-proof-section .video-case { min-width: 0; text-align: center; }
.video-proof-section .video-case-hero { width: min(960px, 100%); margin: 0 auto 40px; }
.video-proof-section .video-case-hero .proof-video-featured { width: 100%; margin: 0; }
.video-proof-section .video-case-meta { margin: 0 auto 16px; max-width: 640px; }
.video-proof-section .video-case-hook { font-size: clamp(22px, 2.5vw, 29px); line-height: 1.35; margin: 0 auto 8px; color: #985c6c; }
.video-proof-section .video-case-identity { font-size: 15px; color: #63565d; margin: 0 0 10px; }
.video-proof-section .video-case-result { font-size: 18px; margin: 8px 0; font-weight: 700; }
.video-proof-section .video-case-change { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; font-size: 18px; }
.video-proof-section .video-case-change strong { color: #985c6c; }
.video-proof-section .video-case-change small { flex-basis: 100%; font-size: 13px; }
.video-proof-section .video-case-quote { font-size: 16px; line-height: 1.5; margin: 10px auto; }
.video-proof-section .video-case .proof-video-featured,
.video-proof-section .video-case .story-video {
  border: 6px solid #fff;
  border-radius: 24px;
  outline: 1px solid rgba(188, 120, 143, 0.65);
  box-shadow: 0 0 0 3px rgba(224, 180, 195, 0.09), 0 0 24px rgba(188, 120, 143, 0.13), 0 14px 36px rgba(42, 25, 33, 0.08);
  overflow: hidden;
}
.video-proof-section .video-case iframe { border-radius: 17px; }
.video-proof-section .video-case-close { margin: 36px auto 18px; max-width: 620px; text-align: center; }
.video-proof-section .video-case-close p { font-size: 17px; margin-bottom: 12px; }
.video-proof-section .video-case-close h3 { font-size: clamp(24px, 2.8vw, 32px); line-height: 1.35; margin: 0; }
@media (max-width: 600px) {
  .video-proof-section .video-case-hero { margin-bottom: 28px; }
  .video-proof-section .video-case .proof-video-featured,
  .video-proof-section .video-case .story-video { border-width: 4px; border-radius: 18px; }
  .video-proof-section .video-case iframe { border-radius: 13px; }
}

/* A compact invitation, scoped to the post-video CTA only. */
/* A short editorial introduction, isolated from the rest of the page. */
.founders-authority { padding: 64px 24px; background: #faf8f7; color: #211e20; text-align: right; direction: rtl; }
.founders-authority .founders-inner { max-width: 920px; margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); grid-template-areas: 'heading photo' 'copy photo'; gap: 20px 56px; align-items: center; }
.founders-authority .founders-heading { grid-area: heading; align-self: end; }
.founders-authority .section-kicker { color: #51464b; font-size: 14px; font-weight: 400; letter-spacing: 0; margin: 0 0 12px; }
.founders-authority h2 { font-size: clamp(32px, 3.5vw, 44px); line-height: 1.25; margin: 0; text-align: right; }
.founders-authority .founders-photo { grid-area: photo; margin: 0; }
.founders-authority .founders-photo img { display: block; width: 100%; height: auto; border-radius: 14px; }
.founders-authority .founders-copy { grid-area: copy; align-self: start; max-width: 450px; }
.founders-authority .founders-copy p { font-size: 18px; line-height: 1.7; margin: 0 0 18px; text-align: right; text-wrap: pretty; }
.founders-authority .founders-copy p:last-child { margin-bottom: 0; }
.founders-authority .founders-copy strong { color: #a55c73; font-weight: 700; }
@media (max-width: 760px) {
  .founders-authority { padding: 44px 22px; }
  .founders-authority .founders-inner { max-width: 450px; grid-template-columns: 1fr; grid-template-areas: 'heading' 'photo' 'copy'; gap: 24px; }
  .founders-authority .founders-photo { width: min(340px, 100%); margin-inline: auto; }
}
/* A diary page: empty space carries the visual story. */
.calendar-story .calendar-example.diary-sheet { width: 100%; max-width: 440px; margin: 28px auto 24px; padding: 28px 28px 16px; border: 1px solid #eee5e8; border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(65, 34, 45, 0.045); }
.calendar-story .letter-reading .diary-sheet .calendar-open { display: block; max-width: none; margin: 0 0 18px; font-size: 1.5rem; text-align: center; }
.calendar-story .diary-sheet p:not(.calendar-open) { display: flex; align-items: center; max-width: none; min-height: 68px; margin: 0; border-top: 1px solid #eee7ea; font-size: 1.125rem; }
.calendar-story .diary-sheet time { color: #51464b; }
.calendar-story .diary-sheet p:not(.calendar-open) span { color: #985c6c; font-size: 0.95rem; }
@media (max-width: 600px) {
  .calendar-story .calendar-example.diary-sheet { padding: 24px 22px 12px; }
}
.compact-invitation .post-video-panel .fit-postscript { max-width: 490px; margin: 20px auto 0; font-size: 14px; line-height: 1.75; opacity: 0.8; text-wrap: balance; }
/* Editorial fit comparison, scoped to the late-page fit checkpoint. */
.post-vsl-offer > .mentorship-fit { order: 4; }
.mentorship-fit { background: #faf8f5; color: #211d20; padding: 76px 24px 48px; }
.mentorship-fit .fit-signal { position: relative; display: inline-block; flex: 0 0 18px; width: 18px; height: 18px; color: #357452; }
.mentorship-fit .fit-signal::before { content: ''; position: absolute; width: 11px; height: 6px; top: 4px; left: 3px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }
.mentorship-fit-no .fit-signal { color: #ed989c; }
.mentorship-fit-no .fit-signal::before, .mentorship-fit-no .fit-signal::after { content: ''; position: absolute; width: 13px; height: 2px; top: 8px; left: 2px; border: 0; background: currentColor; transform: rotate(45deg); }
.mentorship-fit-no .fit-signal::after { transform: rotate(-45deg); }
.mentorship-fit-side h3 { display: flex; align-items: flex-start; gap: 10px; }
.mentorship-fit-side h3 .fit-signal { flex-basis: 28px; width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%; margin-top: 2px; }
.mentorship-fit-side h3 .fit-signal::before { top: 8px; left: 7px; }
.mentorship-fit-no h3 .fit-signal::before, .mentorship-fit-no h3 .fit-signal::after { top: 12px; left: 6px; }
.mentorship-fit-side li { position: relative; }
.mentorship-fit-side li h4, .mentorship-fit-side li p { padding-inline-start: 28px; }
.mentorship-fit-side h4 .fit-signal { position: absolute; inset-inline-start: 0; top: 4px; }
.mentorship-fit .fit-signal-inline { vertical-align: middle; }
.mentorship-fit-close > p:first-child { margin-bottom: 10px; }
.mentorship-fit-inner { max-width: 1060px; margin-inline: auto; }
.mentorship-fit-opening { max-width: 1060px; margin: 0 auto 56px; }
.mentorship-fit .section-kicker { margin: 0 0 16px; color: #985c6c; font-size: 0.9375rem; }
.mentorship-fit-opening h2 { margin: 0 0 28px; font-size: clamp(42px, 4vw, 60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.mentorship-fit-opening h2 > span { display: block; }
.mentorship-fit-opening h2 .fit-title-first { color: #211d20; }
.mentorship-fit-opening > p.fit-opening-copy { max-width: 850px; margin: 0 auto; font-size: 18px; line-height: 1.7; font-weight: 400; }
.mentorship-fit-opening .fit-opening-copy > span { display: block; }
@media (min-width: 1000px) {
  .mentorship-fit-opening h2 > span, .mentorship-fit-opening .fit-opening-copy > span { white-space: nowrap; }
}
.mentorship-fit-opening h2 span, .mentorship-fit-close h3 span { color: #985c6c; }
.mentorship-fit-opening > p:not(.section-kicker), .mentorship-fit-close p { max-width: 560px; margin: 12px auto 0; font-size: 1.125rem; line-height: 1.7; color: #51464b; }
.mentorship-fit-comparison { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 24px; overflow: hidden; }
.mentorship-fit-side { padding: 32px; }
.mentorship-fit-yes { background: #f1e6e9; }
.mentorship-fit-no { background: #211e22; color: #fff; }
.mentorship-fit-side h3 { text-align: start; margin: 0 0 26px; padding-bottom: 18px; border-bottom: 1px solid #d8c3ca; font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.4; }
.mentorship-fit-no h3 { border-color: #51424a; color: #e0b4c3; }
.mentorship-fit-side ul { display: grid; gap: 24px; padding: 0; margin: 0; list-style: none; }
.mentorship-fit-side li { margin: 0; padding: 0; }
.mentorship-fit-side h4 { margin: 0 0 6px; font-size: 1.1875rem; line-height: 1.4; font-weight: 800; }
.mentorship-fit-yes h4 { color: #854c5c; }
.mentorship-fit-side li, .mentorship-fit-side h4, .mentorship-fit-side li p { text-align: start; text-wrap: pretty; }
.mentorship-fit-side li p { margin: 0; color: #51464b; font-size: 1rem; line-height: 1.65; }
.mentorship-fit-no li p { color: #ddd2d7; }
.mentorship-fit-close { margin: 36px auto 0; max-width: 680px; }
.mentorship-fit-close h3 { margin: 0 0 16px; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.4; }
@media (max-width: 760px) {
  .mentorship-fit { padding: 48px 20px 32px; }
  .mentorship-fit-opening { margin-bottom: 36px; }
  .mentorship-fit-opening h2 { font-size: clamp(32px, 7.8vw, 42px); line-height: 1.13; margin-bottom: 24px; }
  .mentorship-fit-opening > p.fit-opening-copy { font-size: 17px; line-height: 1.65; }
  .mentorship-fit-comparison { grid-template-columns: 1fr; border-radius: 20px; }
  .mentorship-fit-side { padding: 28px 24px; }
  .mentorship-fit-side ul { gap: 22px; }
  .mentorship-fit-side h4 { font-size: 1.125rem; }
  .mentorship-fit-close { margin-top: 28px; }
}

/* A narrower, shared hero/video axis with less space above the opening. */
main > .hero { padding-top: 32px; }
@media (min-width: 1000px) {
  .hero .shell.vsl-hero-layout, .video-section .shell.video-shell { width: min(820px, calc(100% - 48px)); max-width: 820px; margin-inline: auto; }
  .hero .vsl-hero-layout .hero-copy { width: 100%; max-width: 820px; }
  main > .hero .hero-copy h1.hero-results-title { font-size: clamp(32px, 3vw, 42px); }
  main > .hero .hero-copy .hero-results-subtitle { font-size: 20px; }
}

/* Hero: final supplied copy, with one primary monetary accent. */
.hero .hero-copy h1.hero-results-title { max-width: 940px; font-size: clamp(1.875rem, 3.5vw, 3.25rem); line-height: 1.22; letter-spacing: -0.025em; color: #fff; }
.hero-results-title > span { display: block; }
.hero-results-title .hero-income-line { margin-top: 8px; }
.hero-results-title .hero-revenue { color: #e0b4c3; font-size: 1em; font-weight: 900; }
.hero .hero-copy .hero-results-subtitle { max-width: 840px; margin: 26px auto 0; font-size: clamp(1.0625rem, 1.65vw, 1.5rem); line-height: 1.65; color: #eee7e9; }
.hero-results-subtitle > span { display: block; }
.hero-results-subtitle strong { color: #fff; font-weight: 800; }
.hero-unbroken { white-space: nowrap; }
@media (max-width: 600px) {
  .hero .hero-copy h1.hero-results-title { font-size: clamp(1.625rem, 7.2vw, 2.5rem); }
  .hero .hero-copy .hero-results-subtitle { max-width: 34ch; margin-top: 20px; line-height: 1.6; }
}
.compact-invitation .fit-postscript strong { color: #e0b4c3; }
.post-video-intro.compact-invitation { padding-block: 64px; }
.compact-invitation .post-video-panel { max-width: 940px; text-align: center; }
.compact-invitation .post-video-panel .section-kicker { margin: 0 auto 20px; }
.compact-invitation .post-video-panel h2 { margin: 0 auto 24px; }
.compact-invitation .post-video-panel .post-video-lead { margin: 0 auto; max-width: 530px; }
.compact-invitation .post-video-panel .strategy-call-title { margin: 28px auto 20px; }
.compact-invitation .strategy-call-topics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 850px; margin: 0 auto 28px; }
.compact-invitation .strategy-call-topics > div { padding: 0; }
.compact-invitation .strategy-call-topics dt { display: flex; align-items: center; justify-content: center; min-height: 76px; padding: 12px 18px; border: 1px solid rgba(224, 180, 195, 0.3); border-radius: 22px; background: rgba(224, 180, 195, 0.065); line-height: 1.4; text-wrap: balance; }
.compact-invitation .strategy-call-topics dd { margin-top: 12px; padding-inline: 8px; }
.compact-invitation .post-video-panel .mentorship-context { margin: 0 auto 24px; max-width: 570px; }
.compact-invitation .mentorship-context strong { color: #e0b4c3; }
.compact-invitation .post-video-panel > .button { display: flex; width: min(520px, 100%); margin: 0 auto; white-space: normal; }
.compact-invitation .post-video-note { display: block; margin: 12px auto 0; font-size: 14px; line-height: 1.6; }
@media (max-width: 760px) {
  .post-video-intro.compact-invitation { padding-block: 44px; }
  .compact-invitation .strategy-call-topics { grid-template-columns: 1fr; gap: 18px; max-width: 32ch; }
  .compact-invitation .post-video-panel .strategy-call-title { margin-top: 24px; }
  .compact-invitation .post-video-panel > .button { width: 100%; }
}

/* Contact step: one clean column, consistent labels and LTR contact values. */
.application-dialog .contact-step :is(h2, p, label) {
  text-align: right;
  text-wrap: pretty;
}
.contact-step .field-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
.contact-step .text-field input { height: 56px; font-size: 16px; }
.contact-step input[type="text"] { text-align: right; }
.contact-step input:is([type="tel"], [type="email"]) { text-align: right; }
.contact-step .consent-field { font-size: 13px; line-height: 1.7; }
.is-contact-step .form-navigation { flex-direction: column; border-top: 0; padding-top: 0; }
.is-contact-step #form-submit { order: -1; width: 100%; min-height: 56px; }
.is-contact-step #form-back { align-self: center; }

/* Four landscape stories first; a compact portrait Short follows. */
.video-proof-section .video-case-short {
  width: min(300px, 100%);
  margin: 32px auto 0;
}
.video-proof-section .video-case-short .proof-video-featured {
  width: 100%;
  margin: 0;
  aspect-ratio: 9 / 16;
}

.result-proof-cta .cta-context { font-size: 17px; line-height: 1.6; margin: 0 auto 22px; max-width: 560px; }
.result-proof-cta .section-kicker { margin: 0 0 14px; }
.checkpoint-inner > p:not([class]) { font-size: 17px; line-height: 1.6; margin: 18px auto 24px; }

/* Scoped testimonial introduction; players and grid remain unchanged. */
.video-proof-section .business-proof-intro { max-width: 960px; margin-bottom: 30px; direction: rtl; }
.video-proof-section .business-proof-intro h2 { max-width: 960px; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.2; margin-bottom: 22px; }
.business-proof-copy { max-width: 760px; margin-inline: auto; }
.business-proof-copy p { margin: 0 0 12px; font-size: 17px; line-height: 1.6; text-wrap: pretty; }
.business-proof-copy p:last-child { margin-bottom: 0; }
.business-proof-copy strong { color: #a85f75; }

/* Image-only slides: retain accessible lightbox buttons without visible cards. */
.result-proof-section .proof-slider .proof-strip-slide {
  position: relative; display: block; padding: 0; margin: 0; min-height: 0;
  height: auto; border: 0; border-radius: 0; background: transparent; box-shadow: none;
}
.result-proof-section .proof-slider .proof-strip-slide img {
  display: block; width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: contain;
  margin: 0; border: 0; border-radius: 6px; background: transparent;
}
.result-proof-section .proof-slider .proof-strip-slide figcaption { display: none; }
.result-proof-section .proof-slider .proof-strip-slide .proof-zoom {
  position: absolute; inset: 0; display: block; width: 100%; height: 100%;
  margin: 0; padding: 0; border: 0; border-radius: 6px; background: transparent;
  color: transparent; font-size: 0; box-shadow: none; cursor: zoom-in;
}
.result-proof-section .proof-slider .proof-strip-slide .proof-zoom::before,
.result-proof-section .proof-slider .proof-strip-slide .proof-zoom::after { display: none; }
.result-proof-section .proof-slider .proof-strip-slide .proof-zoom:focus-visible { outline: 3px solid #a85f75; outline-offset: -3px; }

/* Swipeable proof strips and real client portraits. */
.client-faces { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; max-width: 1060px; margin-block: 32px 48px; text-align: center; }
.client-faces figure { margin: 0; min-width: 0; }
.client-faces img { width: 88px; height: 88px; max-width: 100%; object-fit: cover; border-radius: 50%; border: 2px solid #d394ac; padding: 3px; box-shadow: 0 0 12px #ce929d66, inset 0 0 6px #ce929d33; }
.client-faces figcaption { font-size: 14px; margin-top: 10px; }
.proof-slider { max-width: 1000px; margin-block: 36px; }
.proof-slider h3 { text-align: center; font-size: 24px; margin-bottom: 22px; }
.proof-strip { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 0; direction: rtl; }
.proof-strip::-webkit-scrollbar { display: none; }
.result-proof-section .proof-strip-slide { flex: 0 0 calc((100% - 36px)/3); scroll-snap-align: start; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.result-proof-section .proof-strip-slide img { width: 100%; height: 420px; object-fit: contain; border: 1px solid #d394ac; border-radius: 14px; background: #f0ece9; margin: 0; }
.result-proof-section .proof-strip-slide figcaption { padding: 12px 0 0; border: 0; text-align: center; }
.proof-strip-slide figcaption strong { font-size: 17px; }
.proof-strip-slide figcaption span { display: block; font-size: 13px; }
.proof-strip-slide .proof-zoom { margin-top: 8px; }
.proof-strip-controls { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 18px; }
.proof-strip-controls > button { width: 42px; height: 42px; border: 1px solid #b15e7c; border-radius: 50%; background: transparent; color: #a85f75; font-size: 22px; cursor: pointer; }
.proof-strip-controls button:disabled { opacity: .3; cursor: default; }
.proof-strip-dots { display: flex; gap: 3px; }
.proof-strip-dots button { border: 0; background: transparent; padding: 8px 4px; cursor: pointer; }
.proof-strip-dots button::after { content: ''; display: block; width: 7px; height: 7px; border-radius: 8px; background: #dcc1cc; }
.proof-strip-dots button[aria-current="true"]::after { width: 18px; background: #ac5475; }
@media(max-width:700px) { .client-faces { grid-template-columns: repeat(4,1fr); gap: 22px 12px; } .client-faces img { width: 68px; height: 68px; } .result-proof-section .proof-strip-slide { flex-basis: 83%; } .result-proof-section .proof-strip-slide img { height: 390px; } }

/* Group messages reused unchanged from the existing workshop proof. */
.result-proof-section .client-group-proof { margin-top: 28px; }
.result-proof-section .client-group-proof .case-person { display: block; max-width: none; color: #a85f75; font-size: 30px; line-height: 1.25; margin-bottom: 10px; }
.result-proof-section .client-group-proof img { height: 420px; }

/* The result leads; the unchanged screenshot supports it. */
.result-proof-section .result-proof-heading { max-width: 920px; }
.result-proof-section .section-intro { max-width: 800px; }
.result-proof-section .evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
}
.result-proof-section .evidence-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  margin: 0;
  border: 1px solid rgba(168, 95, 117, .16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 24, 29, .04);
}
.result-proof-section .evidence-card figcaption { padding: 0 0 22px; }
.result-proof-section .evidence-card .case-result {
  display: block;
  max-width: none;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.12;
  color: #a85f75;
  margin: 0 0 12px;
  font-weight: 900;
}
.result-proof-section .case-label { display: block; font-size: 20px; margin-bottom: 10px; }
.result-proof-section .evidence-card .case-context {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  max-width: 38ch;
}
.result-proof-section .evidence-card img {
  height: 280px;
  object-fit: contain;
  border-radius: 12px;
  margin-top: auto;
}
.result-proof-section .proof-zoom { margin: 18px auto 0; font-size: 15px; }
.result-proof-cta { max-width: 800px; margin-top: 36px; padding: 30px 24px; text-align: center; border: 1px solid rgba(168, 95, 117, .25); border-radius: 24px; background: rgba(168, 95, 117, .035); }
.result-proof-cta h3 { margin: 0 0 20px; font-size: clamp(24px, 3vw, 32px); line-height: 1.3; }
.result-proof-cta .button { width: min(480px, 100%); min-height: 56px; white-space: normal; }
.result-proof-cta p { margin: 12px 0 0; font-size: 13px; line-height: 1.6; color: #756970; }
@media (max-width: 700px) {
  .result-proof-section .evidence-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .result-proof-section .evidence-card { padding: 22px; }
  .result-proof-cta { padding: 24px 18px; }
  .result-proof-cta .button { width: 100%; }
}

/* A gently staggered portrait group: four, six, then eight faces. */
.client-faces { grid-template-columns: repeat(16, minmax(0, 1fr)); gap: 22px 0; max-width: 960px; padding-block: 12px; }
.client-faces figure { grid-column: span 2; transform: translateY(var(--face-offset, 0px)); }
.client-faces figure:nth-child(3n + 1) { --face-offset: 8px; }
.client-faces figure:nth-child(3n + 2) { --face-offset: -5px; }
.client-faces figure:nth-child(4n) img { width: 78px; height: 78px; }
.client-faces figure:nth-child(1) { grid-area: 1 / 5 / auto / span 2; }
.client-faces figure:nth-child(2) { grid-area: 1 / 7 / auto / span 2; }
.client-faces figure:nth-child(3) { grid-area: 1 / 9 / auto / span 2; }
.client-faces figure:nth-child(4) { grid-area: 1 / 11 / auto / span 2; }
.client-faces figure:nth-child(5) { grid-area: 2 / 3 / auto / span 2; }
.client-faces figure:nth-child(6) { grid-area: 2 / 5 / auto / span 2; }
.client-faces figure:nth-child(7) { grid-area: 2 / 7 / auto / span 2; }
.client-faces figure:nth-child(8) { grid-area: 2 / 9 / auto / span 2; }
.client-faces figure:nth-child(9) { grid-area: 2 / 11 / auto / span 2; }
.client-faces figure:nth-child(10) { grid-area: 2 / 13 / auto / span 2; }
.client-faces figure:nth-child(11) { grid-area: 3 / 1 / auto / span 2; }
.client-faces figure:nth-child(12) { grid-area: 3 / 3 / auto / span 2; }
.client-faces figure:nth-child(13) { grid-area: 3 / 5 / auto / span 2; }
.client-faces figure:nth-child(14) { grid-area: 3 / 7 / auto / span 2; }
.client-faces figure:nth-child(15) { grid-area: 3 / 9 / auto / span 2; }
.client-faces figure:nth-child(16) { grid-area: 3 / 11 / auto / span 2; }
.client-faces figure:nth-child(17) { grid-area: 3 / 13 / auto / span 2; }
.client-faces figure:nth-child(18) { grid-area: 3 / 15 / auto / span 2; }
@media (max-width: 700px) {
.client-faces { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 24px 0; max-width: 420px; }
.client-faces img { width: 64px; height: 64px; }
.client-faces figure:nth-child(4n) img { width: 58px; height: 58px; }
.client-faces figcaption { font-size: 12px; line-height: 1.35; margin-top: 8px; }
.client-faces figure:nth-child(1) { grid-area: 1 / 2 / auto / span 2; }
.client-faces figure:nth-child(2) { grid-area: 1 / 4 / auto / span 2; }
.client-faces figure:nth-child(3) { grid-area: 1 / 6 / auto / span 2; }
.client-faces figure:nth-child(4) { grid-area: 2 / 1 / auto / span 2; }
.client-faces figure:nth-child(5) { grid-area: 2 / 3 / auto / span 2; }
.client-faces figure:nth-child(6) { grid-area: 2 / 5 / auto / span 2; }
.client-faces figure:nth-child(7) { grid-area: 2 / 7 / auto / span 2; }
.client-faces figure:nth-child(8) { grid-area: 3 / 1 / auto / span 2; }
.client-faces figure:nth-child(9) { grid-area: 3 / 3 / auto / span 2; }
.client-faces figure:nth-child(10) { grid-area: 3 / 5 / auto / span 2; }
.client-faces figure:nth-child(11) { grid-area: 3 / 7 / auto / span 2; }
.client-faces figure:nth-child(12) { grid-area: 4 / 1 / auto / span 2; }
.client-faces figure:nth-child(13) { grid-area: 4 / 3 / auto / span 2; }
.client-faces figure:nth-child(14) { grid-area: 4 / 5 / auto / span 2; }
.client-faces figure:nth-child(15) { grid-area: 4 / 7 / auto / span 2; }
.client-faces figure:nth-child(16) { grid-area: 5 / 2 / auto / span 2; }
.client-faces figure:nth-child(17) { grid-area: 5 / 4 / auto / span 2; }
.client-faces figure:nth-child(18) { grid-area: 5 / 6 / auto / span 2; }
}
