:root {
  --ink: #222938;
  --paper: #f4eee4;
  --rust: #984a3c;
  --amber: #d4a84f;
  --green: #71886b;
  --red: #a8524a;
  --charcoal: #282a2e;
  --muted: #66665f;
  --line: #d9cec0;
  --white: #fffdf8;
  --shadow: 0 30px 80px rgba(34, 41, 56, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 20%, rgba(212, 168, 79, 0.15), transparent 28rem),
    var(--paper);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

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

.page-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(34, 41, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 41, 56, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(34, 41, 56, 0.14);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(34, 41, 56, 0.1);
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100svh - 98px);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 88px) 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  animation: enter-copy 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: var(--rust);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rust);
}

.eyebrow-mark::after {
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--paper);
  border-left: 2px solid var(--paper);
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

h1 {
  max-width: 750px;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 5.8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  display: block;
  position: relative;
  width: fit-content;
  margin-top: 8px;
  color: var(--rust);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
  opacity: 0.75;
  transform: rotate(-1deg);
}

.hero-subheadline {
  max-width: 640px;
  margin: 32px 0 0;
  color: #4d4e4b;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}

.buy-button {
  display: inline-flex;
  min-width: 178px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 20px 18px 25px;
  border: 2px solid var(--rust);
  border-radius: 8px;
  color: var(--white);
  background: var(--rust);
  box-shadow: 0 10px 0 rgba(34, 41, 56, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.buy-button:hover {
  background: #853d32;
  box-shadow: 0 6px 0 rgba(34, 41, 56, 0.16);
  transform: translateY(4px);
}

.button-arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rust);
  background: var(--paper);
}

.purchase-note {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.purchase-note span {
  color: var(--muted);
  font-weight: 500;
}

.proof-strip {
  display: flex;
  width: fit-content;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.proof-strip li {
  display: grid;
  min-width: 124px;
  gap: 2px;
  padding: 0 25px;
  border-left: 1px solid var(--line);
}

.proof-strip li:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  animation: enter-visual 850ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
  opacity: 0.97;
  z-index: -2;
}

.hero-visual::after {
  position: absolute;
  right: -1%;
  bottom: 1%;
  width: 310px;
  height: 310px;
  border: 2px solid rgba(152, 74, 60, 0.24);
  border-radius: 50%;
  content: "";
  z-index: -3;
}

.grid-sheet {
  position: absolute;
  top: 2%;
  right: 8%;
  width: 360px;
  height: 490px;
  border: 1px solid rgba(34, 41, 56, 0.14);
  border-radius: 4px;
  background:
    linear-gradient(rgba(34, 41, 56, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 41, 56, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 27px 27px;
  box-shadow: var(--shadow);
  transform: rotate(7deg);
}

.status-card {
  position: absolute;
  top: 10%;
  left: -3%;
  z-index: 1;
  display: grid;
  width: 175px;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(34, 41, 56, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(34, 41, 56, 0.16);
  transform: rotate(-6deg);
}

.status-label {
  margin-bottom: 2px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.status-line {
  display: block;
  height: 10px;
  border-radius: 999px;
}

.status-line-red {
  width: 86%;
  background: var(--red);
}

.status-line-amber {
  width: 65%;
  background: var(--amber);
}

.status-line-green {
  width: 43%;
  background: var(--green);
}

.book-wrap {
  position: absolute;
  top: 7%;
  left: 16%;
  z-index: 2;
  width: min(350px, 70%);
  filter: drop-shadow(0 28px 30px rgba(34, 41, 56, 0.28));
  transform: rotate(-3deg);
}

.book-cover {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border: 1px solid rgba(34, 41, 56, 0.1);
  border-radius: 5px 10px 10px 5px;
}

.book-spine {
  position: absolute;
  top: 5px;
  right: -20px;
  bottom: -10px;
  left: 12px;
  border-radius: 5px 12px 12px 5px;
  background: #dad3c7;
  box-shadow: 8px 8px 0 #bfb7ab;
}

.method-badge {
  display: flex;
  position: absolute;
  right: -68px;
  bottom: 45px;
  z-index: 3;
  align-items: center;
  gap: 11px;
  width: 245px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(34, 41, 56, 0.25);
  transform: rotate(3deg);
}

.method-badge img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 6px;
}

.method-badge span {
  display: grid;
  gap: 2px;
  font-size: 9px;
  line-height: 1.35;
}

.method-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.session-note {
  display: grid;
  position: absolute;
  right: -2%;
  bottom: 8%;
  z-index: 3;
  width: 220px;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 6px;
  background: var(--amber);
  box-shadow: 0 20px 45px rgba(34, 41, 56, 0.2);
  transform: rotate(4deg);
}

.session-note span {
  color: rgba(34, 41, 56, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-note strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.session-note i {
  width: 100%;
  height: 1px;
  margin-top: 9px;
  background: rgba(34, 41, 56, 0.35);
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--rust);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #e7b2a5;
}

.problem-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 120px;
  color: var(--paper);
  background: var(--ink);
}

.problem-section::before {
  position: absolute;
  top: -280px;
  left: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(244, 238, 228, 0.1);
  border-radius: 50%;
  content: "";
}

.problem-section::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(152, 74, 60, 0.18);
  content: "";
}

.problem-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 68px 90px;
}

.problem-intro h2,
.method-heading-row h2,
.inside-heading h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.problem-intro h2 {
  max-width: 690px;
  font-size: clamp(44px, 5.4vw, 70px);
}

.problem-intro h2 em {
  display: block;
  margin-top: 12px;
  color: #e7b2a5;
  font-style: normal;
}

.problem-story {
  align-self: end;
  max-width: 500px;
  padding: 0 0 4px 30px;
  border-left: 1px solid rgba(244, 238, 228, 0.24);
  color: rgba(244, 238, 228, 0.68);
  font-size: 16px;
  line-height: 1.72;
}

.problem-story p {
  margin: 0 0 18px;
}

.problem-story p:last-child {
  margin-bottom: 0;
}

.problem-story .story-lead {
  color: var(--paper);
  font-size: 19px;
  line-height: 1.58;
}

.problem-story strong {
  color: var(--paper);
}

.problem-cards {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 238, 228, 0.16);
  border-bottom: 1px solid rgba(244, 238, 228, 0.16);
}

.problem-card {
  min-height: 270px;
  padding: 32px 34px 38px 0;
}

.problem-card + .problem-card {
  padding-left: 34px;
  border-left: 1px solid rgba(244, 238, 228, 0.16);
}

.problem-number {
  display: block;
  margin-bottom: 45px;
  color: var(--amber);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.problem-card h3 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.problem-card p {
  margin: 0;
  color: rgba(244, 238, 228, 0.64);
  font-size: 14px;
  line-height: 1.65;
}

.reframe {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 34px;
  max-width: 850px;
}

.reframe span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reframe p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.method-section {
  padding: 125px 0 130px;
  background: #eee5d9;
}

.method-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 72px;
}

.method-heading-row h2,
.inside-heading h2,
.faq-intro h2 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 66px);
}

.method-heading-row > p,
.inside-heading > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.method-steps li {
  display: grid;
  min-height: 330px;
  grid-template-rows: auto 1fr;
  padding: 26px 28px 32px;
  border: 1px solid rgba(34, 41, 56, 0.14);
  background: rgba(255, 253, 248, 0.36);
}

.method-steps li + li {
  border-left: 0;
}

.method-steps li:nth-child(2) {
  transform: translateY(18px);
}

.method-steps li:nth-child(3) {
  transform: translateY(36px);
}

.method-steps li:nth-child(4) {
  transform: translateY(54px);
}

.step-count {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--rust);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.method-steps h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.inside-section {
  padding: 150px 0 125px;
  background: var(--paper);
}

.inside-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.inside-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -50px;
}

.inside-heading h2 em {
  display: block;
  color: var(--rust);
  font-style: normal;
}

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

.deliverable {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.deliverable-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 0.78fr;
  min-height: 500px;
  color: var(--paper);
  background: var(--ink);
}

.deliverable-copy {
  padding: 48px;
}

.deliverable-featured .deliverable-copy {
  align-self: center;
  padding: 70px;
}

.deliverable-tag {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--rust);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.deliverable-featured .deliverable-tag,
.worksheet-card-dark .deliverable-tag {
  color: #e7b2a5;
}

.deliverable h3 {
  margin: 0 0 17px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.deliverable-featured p,
.worksheet-card-dark p {
  color: rgba(244, 238, 228, 0.68);
}

.deliverable ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable li {
  display: flex;
  gap: 11px;
  color: rgba(244, 238, 228, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.deliverable li::before {
  color: var(--amber);
  content: "✓";
  font-weight: 800;
}

.guide-miniature {
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 60px 50px 0;
  background:
    linear-gradient(rgba(244, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 228, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.03);
  background-size: 34px 34px;
}

.guide-miniature::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--rust);
  content: "";
  opacity: 0.78;
}

.guide-miniature img {
  position: relative;
  z-index: 1;
  width: min(300px, 84%);
  height: auto;
  border-radius: 4px 8px 0 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg) translateY(18px);
}

.worksheet-card {
  display: grid;
  grid-template-rows: 420px auto;
}

.worksheet-card-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.worksheet-preview {
  position: relative;
  overflow: hidden;
  background: #ded5c8;
}

.worksheet-preview img {
  position: absolute;
  width: 68%;
  height: auto;
  border: 1px solid rgba(34, 41, 56, 0.1);
  box-shadow: 0 22px 40px rgba(34, 41, 56, 0.2);
}

.worksheet-preview-a img {
  top: 42px;
  left: 16%;
  transform: rotate(-2deg);
}

.worksheet-preview-b {
  background: #30394c;
}

.worksheet-preview-b img:first-child {
  top: 40px;
  left: 5%;
  transform: rotate(-4deg);
}

.worksheet-preview-b img:last-child {
  top: 80px;
  right: 3%;
  transform: rotate(5deg);
}

.inside-summary {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
  padding: 25px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inside-summary > span {
  flex: 0 0 auto;
  color: var(--rust);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inside-summary ul {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inside-summary li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.inside-summary li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.faq-section {
  padding: 125px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 110px;
}

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

.faq-intro h2 {
  margin-bottom: 28px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px 4px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rust);
  content: "+";
  font-size: 19px;
  font-weight: 500;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -5px 46px 28px 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 140px 0 130px;
  color: var(--paper);
  background: var(--rust);
  text-align: center;
}

.final-cta-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 238, 228, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 228, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

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

.final-cta-icon {
  display: flex;
  width: 92px;
  height: 92px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 238, 228, 0.3);
  border-radius: 22px;
  background: var(--ink);
  box-shadow: 0 20px 45px rgba(34, 41, 56, 0.2);
  transform: rotate(-3deg);
}

.final-cta-icon img {
  width: 80px;
  height: 80px;
  border-radius: 17px;
}

.final-cta h2 {
  max-width: 940px;
  font-size: clamp(48px, 6vw, 76px);
}

.final-cta > .section-shell > p:not(.section-kicker) {
  max-width: 650px;
  margin: 30px auto 34px;
  color: rgba(244, 238, 228, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.buy-button-light {
  min-width: 205px;
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(34, 41, 56, 0.2);
}

.buy-button-light:hover {
  background: var(--white);
}

.buy-button-light .button-arrow {
  color: var(--paper);
  background: var(--ink);
}

.final-cta small {
  margin-top: 22px;
  color: rgba(244, 238, 228, 0.64);
  font-size: 11px;
}

.site-footer {
  padding: 32px 0;
  color: rgba(244, 238, 228, 0.65);
  background: #171c27;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand span {
  color: rgba(244, 238, 228, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-buy-bar {
  display: none;
}

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

@keyframes enter-copy {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-visual {
  from {
    opacity: 0;
    transform: translateY(24px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 70px;
  }

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

  .hero-visual {
    width: min(620px, 100%);
    min-height: 670px;
    margin: 0 auto;
  }

  .hero-visual::before {
    right: 0;
  }

  .problem-grid,
  .method-heading-row,
  .inside-heading,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .problem-story {
    max-width: 700px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 0;
    padding: 32px 0;
  }

  .problem-card + .problem-card {
    padding-left: 0;
    border-top: 1px solid rgba(244, 238, 228, 0.16);
    border-left: 0;
  }

  .problem-number {
    margin-bottom: 24px;
  }

  .method-heading-row,
  .inside-heading,
  .faq-grid {
    gap: 35px;
  }

  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-steps li + li {
    border-left: 1px solid rgba(34, 41, 56, 0.14);
  }

  .method-steps li:nth-child(n) {
    transform: none;
  }

  .inside-heading .section-kicker {
    grid-column: auto;
    margin-bottom: -15px;
  }

  .deliverable-featured {
    grid-template-columns: 1fr 0.8fr;
  }

  .deliverable-featured .deliverable-copy {
    padding: 48px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section-shell {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    padding: 16px 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding: 55px 0 60px;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 68px);
  }

  .hero-subheadline {
    margin-top: 34px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-button {
    width: 100%;
  }

  .proof-strip {
    width: 100%;
    margin-top: 46px;
  }

  .proof-strip li {
    min-width: 0;
    flex: 1;
    padding: 0 12px;
  }

  .proof-strip strong {
    font-size: 23px;
  }

  .proof-strip span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-visual::before {
    top: 5%;
    right: -27%;
    width: 430px;
    height: 430px;
  }

  .grid-sheet {
    right: -5%;
    width: 290px;
    height: 390px;
  }

  .book-wrap {
    left: 10%;
    width: min(285px, 76%);
  }

  .status-card {
    top: 3%;
    left: -4%;
    width: 135px;
    padding: 15px;
  }

  .method-badge {
    right: -25px;
    bottom: 30px;
    width: 210px;
  }

  .session-note {
    right: 0;
    bottom: 1%;
    width: 190px;
  }

  .problem-section,
  .method-section,
  .inside-section,
  .faq-section,
  .final-cta {
    padding: 85px 0;
  }

  .problem-grid {
    gap: 45px;
  }

  .problem-intro h2,
  .method-heading-row h2,
  .inside-heading h2,
  .faq-intro h2 {
    font-size: 42px;
  }

  .problem-story {
    padding-left: 20px;
  }

  .reframe {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .method-heading-row {
    margin-bottom: 42px;
  }

  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-steps li {
    min-height: 235px;
  }

  .method-steps li + li {
    border-top: 0;
  }

  .inside-heading {
    margin-bottom: 42px;
  }

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

  .deliverable-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .deliverable-copy,
  .deliverable-featured .deliverable-copy {
    padding: 34px 28px;
  }

  .guide-miniature {
    min-height: 380px;
    padding-top: 45px;
  }

  .worksheet-card {
    grid-template-rows: 330px auto;
  }

  .inside-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .inside-summary ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list summary {
    padding: 24px 2px;
    font-size: 16px;
  }

  .final-cta h2 {
    font-size: 46px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .mobile-buy-bar {
    display: flex;
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 13px 12px 17px;
    border: 1px solid rgba(244, 238, 228, 0.2);
    border-radius: 10px;
    color: var(--paper);
    background: rgba(34, 41, 56, 0.96);
    box-shadow: 0 16px 35px rgba(34, 41, 56, 0.3);
    text-decoration: none;
    backdrop-filter: blur(12px);
  }

  .mobile-buy-bar > span {
    display: grid;
    gap: 2px;
  }

  .mobile-buy-bar strong {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
  }

  .mobile-buy-bar small {
    color: rgba(244, 238, 228, 0.62);
    font-size: 9px;
  }

  .mobile-buy-bar b {
    flex: 0 0 auto;
    padding: 10px 13px;
    border-radius: 6px;
    color: var(--white);
    background: var(--rust);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
  }
}

@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;
  }
}
