@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fraunces-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #13221c;
  --ink-soft: #21362e;
  --paper: #f6f1e8;
  --paper-deep: #ece3d4;
  --white: #ffffff;
  --coral: #ff6b4a;
  --coral-dark: #b93624;
  --teal: #1c8b88;
  --teal-dark: #0d615f;
  --yellow: #f2c94c;
  --muted: #66736d;
  --hairline: #d7d6cd;
  --shadow-small: 0 14px 40px rgb(19 34 28 / 0.1);
  --shadow-book: 0 35px 90px rgb(19 34 28 / 0.26);
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --shell: 1200px;
  --section-space: clamp(5rem, 9vw, 8rem);
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--teal-dark);
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 760;
  font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 90;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.6rem;
  font-size: clamp(3.3rem, 5.6vw, 5.25rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.6rem, 5.2vw, 5rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

p {
  max-width: 68ch;
}

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

.section {
  padding-block: var(--section-space);
}

.section-dark {
  padding-block: var(--section-space);
  color: var(--white);
  background: var(--ink);
}

.section-paper {
  padding-block: var(--section-space);
  background:
    linear-gradient(90deg, rgb(19 34 28 / 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(rgb(19 34 28 / 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--paper-deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--yellow);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 10px 28px rgb(255 107 74 / 0.25);
}

.button-primary:hover {
  background: #ff8064;
}

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

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

.button-small {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.button-large {
  min-height: 58px;
  padding-inline: 1.55rem;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(19 34 28 / 0.09);
  background: rgb(246 241 232 / 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
}

.brand-name {
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  color: var(--ink-soft);
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--teal-dark);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 7rem) clamp(4rem, 8vw, 7.5rem);
  background:
    radial-gradient(circle at 76% 16%, rgb(242 201 76 / 0.16), transparent 25%),
    radial-gradient(circle at 8% 90%, rgb(28 139 136 / 0.12), transparent 28%),
    var(--paper);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle, var(--ink) 1.1px, transparent 1.1px);
  background-position: calc(100% - 14px) 14px;
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 55%, black);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  position: absolute;
  top: -2rem;
  left: -3rem;
  width: 90px;
  height: 6px;
  background: var(--coral);
  content: "";
}

.hero-deck {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 750;
}

.hero-points li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.hero-action {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.price-lockup {
  display: grid;
  gap: 0.08rem;
}

.price-lockup strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 730;
  line-height: 1;
}

.price-lockup span {
  color: var(--muted);
  font-size: 0.76rem;
}

.trust-line {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-product {
  position: relative;
  min-height: 630px;
}

.book-stack {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(420px, 84%);
  margin: 0;
  transform: translate(-44%, -52%) rotate(2deg);
  perspective: 1100px;
}

.book-page {
  width: 100%;
  border: 1px solid rgb(19 34 28 / 0.14);
  border-radius: 4px 14px 14px 4px;
  box-shadow: var(--shadow-book);
}

.book-page-back {
  position: absolute;
  z-index: -1;
  top: 4%;
  left: -13%;
  transform: rotate(-8deg) translateZ(-70px);
  filter: saturate(0.9);
}

.book-cover {
  position: relative;
  transform: rotateY(-5deg);
}

.book-stack figcaption {
  position: absolute;
  right: -1.5rem;
  bottom: 2.5rem;
  display: flex;
  max-width: 220px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
  transform: rotate(-2deg);
}

.proof-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(28 139 136 / 0.16);
}

.path-line {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: -18%;
  width: 88%;
  height: 73%;
  border: 2px solid var(--ink);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.path-line::before,
.path-line::after,
.path-line i {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  content: "";
}

.path-line::before {
  top: 4%;
  left: 14%;
  background: var(--coral);
}

.path-line::after {
  right: 4%;
  bottom: 11%;
  background: var(--teal);
}

.path-line i:nth-child(1) {
  top: 27%;
  right: -10px;
  background: var(--yellow);
}

.path-line i:nth-child(2) {
  right: 14%;
  bottom: -9px;
  background: var(--ink);
}

.path-line i:nth-child(3) {
  bottom: 21%;
  left: 2%;
  background: var(--coral);
}

.path-line i:nth-child(4) {
  top: 14%;
  right: 25%;
  width: 13px;
  height: 13px;
  border-width: 3px;
  background: var(--teal);
}

.proof-strip {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--ink);
}

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

.proof-grid > div {
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 0.85rem;
  padding: 1.4rem 1.8rem;
  border-right: 1px solid rgb(255 255 255 / 0.16);
}

.proof-grid > div:first-child {
  border-left: 1px solid rgb(255 255 255 / 0.16);
}

.proof-grid strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.proof-grid span {
  max-width: 110px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading {
  max-width: 670px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading-wide {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.68);
}

.conversation-board {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.conversation-board::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 74%;
  height: 70%;
  background: var(--yellow);
  border-radius: var(--radius-large);
  content: "";
}

.board-label {
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message {
  width: min(78%, 380px);
  margin-bottom: 0.9rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--hairline);
  border-radius: 6px 18px 18px 18px;
}

.message span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message p {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
  font-weight: 650;
}

.message-out {
  margin-left: auto;
  background: var(--paper);
  border-radius: 18px 6px 18px 18px;
}

.message-muted {
  color: var(--muted);
}

.silence {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.4rem 0;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.silence span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.field-note {
  padding: 1rem 1.1rem;
  background: rgb(28 139 136 / 0.1);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  font-size: 0.88rem;
}

.field-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--teal-dark);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waiting-cost {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--yellow);
}

.waiting-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.82fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.waiting-grid .section-heading > p:not(.eyebrow) {
  color: rgb(19 34 28 / 0.72);
}

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

.cost-list::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 21px;
  width: 1px;
  background: rgb(19 34 28 / 0.35);
  content: "";
}

.cost-list li {
  position: relative;
  display: grid;
  min-height: 112px;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 1.2rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgb(19 34 28 / 0.24);
}

.cost-list li:first-child {
  border-top: 1px solid rgb(19 34 28 / 0.24);
}

.cost-list > li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 5px solid var(--yellow);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.cost-list h3 {
  margin: 0.15rem 0 0.25rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.cost-list p {
  margin: 0;
  color: rgb(19 34 28 / 0.7);
  font-size: 0.84rem;
}

.waiting-close {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.signal-section {
  position: relative;
  overflow: hidden;
}

.signal-section::after {
  position: absolute;
  top: -260px;
  right: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgb(255 255 255 / 0.025), 0 0 0 160px rgb(255 255 255 / 0.02);
  content: "";
}

.signal-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.signal-track article {
  min-height: 210px;
  padding: 1.5rem 1.2rem;
  border-right: 1px solid rgb(255 255 255 / 0.18);
}

.signal-track article:first-child {
  border-left: 1px solid rgb(255 255 255 / 0.18);
}

.signal-track span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 2.5rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.signal-track article:nth-child(even) span {
  background: var(--coral);
}

.signal-track h3 {
  font-family: var(--display);
  font-size: 1.45rem;
}

.signal-track p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.8rem;
  line-height: 1.45;
}

.method {
  background:
    radial-gradient(circle at 82% 28%, rgb(28 139 136 / 0.12), transparent 26%),
    var(--paper);
}

.method-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.method-list::before {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 84%;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: rotate(-11deg);
  transform-origin: center;
}

.method-list li {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgb(255 255 255 / 0.7);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 36px rgb(19 34 28 / 0.06);
}

.method-list li:nth-child(2),
.method-list li:nth-child(4) {
  transform: translateY(2.2rem);
}

.method-letter {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 0 0 10px var(--paper);
}

.method-list li:nth-child(2) .method-letter {
  color: var(--ink);
  background: var(--yellow);
}

.method-list li:nth-child(3) .method-letter {
  background: var(--teal);
}

.method-list li:nth-child(4) .method-letter {
  color: var(--ink);
  background: var(--coral);
}

.method-list span {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-list h3 {
  margin-top: 0.3rem;
  font-family: var(--display);
  font-size: 2rem;
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.page-preview {
  margin: 0;
}

.page-preview img {
  width: 100%;
  background: var(--white);
  border: 1px solid rgb(19 34 28 / 0.13);
  box-shadow: var(--shadow-small);
}

.page-preview figcaption {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 0.2rem 0;
}

.page-preview figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.page-preview figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-lift {
  margin-top: -2rem;
}

.week {
  position: relative;
}

.week .section-heading {
  margin-bottom: 3.2rem;
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.week-grid article {
  min-height: 220px;
  padding: 1.35rem 1rem;
  border-right: 1px solid var(--hairline);
}

.week-grid article:first-child {
  border-left: 1px solid var(--hairline);
}

.week-grid article::before {
  display: block;
  width: 14px;
  height: 14px;
  margin: -1.8rem 0 1.8rem;
  background: var(--coral);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
  content: "";
}

.week-grid article:nth-child(2n)::before {
  background: var(--teal);
}

.week-grid span {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.week-grid h3 {
  margin-top: 0.65rem;
  font-family: var(--display);
  font-size: 1.35rem;
}

.week-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.fit {
  position: relative;
  overflow: hidden;
}

.fit::before {
  position: absolute;
  bottom: -190px;
  left: -190px;
  width: 430px;
  height: 430px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
  opacity: 0.85;
}

.fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

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

.fit-columns > div {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: var(--radius-medium);
}

.fit-columns h3 {
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: 1.5rem;
}

.fit-columns ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-columns li {
  position: relative;
  padding-left: 1.5rem;
  color: rgb(255 255 255 / 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}

.fit-columns li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  color: var(--ink);
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.cross-list li::before {
  background: var(--coral);
}

.buy {
  background:
    linear-gradient(135deg, transparent 66%, rgb(242 201 76 / 0.22) 66%),
    var(--paper);
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 0.58fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.buy-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.mini-proof {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.mini-proof img {
  width: 58px;
  border: 1px solid var(--hairline);
  box-shadow: 0 8px 20px rgb(19 34 28 / 0.12);
}

.mini-proof div {
  display: grid;
}

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

.order-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(19 34 28 / 0.15);
  border-radius: var(--radius-large);
  box-shadow: 0 30px 80px rgb(19 34 28 / 0.16);
}

.order-top {
  padding: 2rem 2rem 1.5rem;
  color: var(--white);
  background: var(--ink);
}

.order-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-price {
  display: block;
  font-family: var(--display);
  font-size: 4.4rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.order-top p {
  margin: 0.7rem 0 0;
  color: rgb(255 255 255 / 0.66);
  font-size: 0.78rem;
}

.order-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.7rem 2rem;
  list-style: none;
}

.order-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.88rem;
}

.order-list li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--white);
  outline: 1px solid var(--teal);
  content: "";
}

.order-card > .button {
  width: calc(100% - 4rem);
  margin-inline: 2rem;
}

.checkout-note {
  margin: 0;
  padding: 1rem 2rem 1.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.momentum-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  margin: 1rem 2rem 0;
  padding: 0.9rem 1rem;
  background: rgb(242 201 76 / 0.2);
  border: 1px solid rgb(185 54 36 / 0.16);
  border-radius: 12px;
}

.momentum-note strong {
  color: var(--coral-dark);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.momentum-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.terms-note {
  padding: 1.2rem 2rem 1.5rem;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}

.terms-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--teal-dark);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(500px, 0.75fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid rgb(19 34 28 / 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgb(19 34 28 / 0.22);
}

.faq-list summary {
  position: relative;
  min-height: 70px;
  padding: 1.4rem 3rem 1.2rem 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.35rem;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  content: "+";
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -0.3rem 3.5rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list details p a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-block: -0.75rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--coral-dark);
}

.final-cta::after {
  position: absolute;
  top: 50%;
  right: -110px;
  width: 330px;
  height: 330px;
  border: 60px solid rgb(255 255 255 / 0.1);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.final-grid h2 {
  max-width: 810px;
  margin-bottom: 0;
}

.final-copy {
  max-width: 670px;
  margin: 1.2rem 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 1rem;
}

.final-grid > div:last-child {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
}

.final-grid > div:last-child p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.78rem;
}

.site-footer {
  padding-block: 3rem;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
}

.brand-footer .brand-mark {
  color: var(--ink);
  background: var(--yellow);
}

.footer-grid > div:first-child p {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem;
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgb(255 255 255 / 0.78);
  font-size: 0.76rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  color: rgb(255 255 255 / 0.45);
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.68rem;
}

.mobile-buy {
  position: fixed;
  z-index: 80;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem;
  background: rgb(255 255 255 / 0.96);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgb(19 34 28 / 0.25);
  transform: translateY(calc(100% + 2rem));
  transition: transform 220ms ease;
}

.mobile-buy.is-visible {
  transform: translateY(0);
}

.mobile-buy > div {
  display: grid;
  padding-left: 0.5rem;
}

.mobile-buy strong {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-buy span {
  color: var(--muted);
  font-size: 0.65rem;
}

.checkout-dialog {
  width: min(92vw, 520px);
  padding: 2rem;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: var(--radius-large);
  box-shadow: 0 30px 100px rgb(0 0 0 / 0.35);
}

.checkout-dialog::backdrop {
  background: rgb(19 34 28 / 0.74);
  backdrop-filter: blur(6px);
}

.checkout-dialog h2 {
  font-size: 2.2rem;
  line-height: 1.02;
}

.checkout-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.checkout-dialog code {
  color: var(--ink);
  background: var(--paper-deep);
  border-radius: 5px;
  padding: 0.1rem 0.35rem;
}

.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid {
    min-height: 610px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 2.5rem;
  }

  .hero-product {
    min-height: 560px;
  }

  .book-stack {
    width: min(360px, 82%);
  }

  .signal-track {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
  }

  .signal-track article:nth-child(4) {
    border-left: 1px solid rgb(255 255 255 / 0.18);
  }

  .week-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem 0;
  }

  .week-grid article:nth-child(5) {
    border-left: 1px solid var(--hairline);
  }

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

@media (max-width: 820px) {
  :root {
    --section-space: 5rem;
  }

  h1 {
    font-size: clamp(3.2rem, 11vw, 5.6rem);
  }

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

  .desktop-nav {
    display: none;
  }

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

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

  .hero-product {
    min-height: 680px;
  }

  .book-stack {
    width: min(410px, 72%);
    transform: translate(-44%, -50%) rotate(2deg);
  }

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

  .proof-grid > div {
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
  }

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid rgb(255 255 255 / 0.16);
  }

  .split-layout,
  .waiting-grid,
  .buy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .method-list::before {
    top: 5%;
    bottom: 5%;
    left: 65px;
    width: 2px;
    height: 90%;
    transform: none;
  }

  .method-list li:nth-child(2),
  .method-list li:nth-child(4) {
    transform: none;
  }

  .page-gallery {
    gap: 1rem;
  }

  .preview-lift {
    margin-top: 0;
  }

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

  .final-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 84px;
  }

  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .site-header {
    backdrop-filter: blur(12px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-inner > .button {
    min-height: 44px;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-copy::before {
    top: -1.4rem;
    left: 0;
    width: 58px;
    height: 4px;
  }

  .hero-deck {
    font-size: 1.02rem;
  }

  .hero-action {
    display: grid;
    justify-items: start;
  }

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

  .hero-points {
    display: grid;
    gap: 0.6rem;
  }

  .trust-line {
    font-size: 0.7rem;
  }

  .hero-product {
    min-height: 520px;
  }

  .book-stack {
    width: min(310px, 78%);
  }

  .book-stack figcaption {
    right: -1rem;
    bottom: 1.4rem;
    max-width: 180px;
  }

  .path-line {
    right: -8%;
  }

  .proof-grid > div {
    min-height: 104px;
    gap: 0.65rem;
    padding: 1rem;
  }

  .proof-grid strong {
    font-size: 2.1rem;
  }

  .proof-grid span {
    font-size: 0.68rem;
  }

  .conversation-board {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .message {
    width: 88%;
  }

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

  .signal-track article {
    min-height: 185px;
  }

  .signal-track article:nth-child(3),
  .signal-track article:nth-child(5) {
    border-left: 1px solid rgb(255 255 255 / 0.18);
  }

  .signal-track article:nth-child(4) {
    border-left: 0;
  }

  .signal-track span {
    margin-bottom: 1.8rem;
  }

  .method-list li {
    min-height: 220px;
    grid-template-columns: 78px 1fr;
    padding: 1.2rem;
  }

  .method-list::before {
    left: 50px;
  }

  .method-letter {
    width: 68px;
    height: 68px;
    font-size: 2.55rem;
    box-shadow: 0 0 0 7px var(--paper);
  }

  .method-list h3 {
    font-size: 1.65rem;
  }

  .page-gallery {
    grid-template-columns: 1fr;
  }

  .page-preview {
    width: min(100%, 390px);
    margin-inline: auto;
  }

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

  .week-grid article:nth-child(odd) {
    border-left: 1px solid var(--hairline);
  }

  .week-grid article:nth-child(5) {
    border-left: 1px solid var(--hairline);
  }

  .fit::before {
    width: 260px;
    height: 260px;
  }

  .order-top {
    padding: 1.6rem 1.4rem 1.3rem;
  }

  .order-price {
    font-size: 3.7rem;
  }

  .order-list {
    padding: 1.5rem 1.4rem;
  }

  .order-card > .button {
    width: calc(100% - 2.8rem);
    margin-inline: 1.4rem;
  }

  .checkout-note,
  .terms-note {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .momentum-note {
    margin-inline: 1.4rem;
  }

  .faq-list summary {
    font-size: 1.15rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-buy {
    display: flex;
  }

  .mobile-buy .button {
    min-height: 46px;
  }

  .checkout-dialog {
    padding: 1.6rem;
  }
}

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

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
