:root {
  color-scheme: light;
  --paper: #f7f1e7;
  --paper-2: #fcf8f1;
  --oat: #e7d9c6;
  --ink: #17382f;
  --ink-2: #315148;
  --muted: #5d736b;
  --coral: #e85d3f;
  --coral-dark: #bf4027;
  --sage: #c9d7cb;
  --sage-dark: #9eb5a2;
  --sun: #f2cb6c;
  --red-soft: #f5d5cd;
  --line: rgba(23, 56, 47, 0.18);
  --shadow: 0 24px 60px rgba(23, 56, 47, 0.12);
  --radius: 18px;
  --max: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

:where(section[id], main[id], h1, h2, h3) {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

p,
li {
  text-wrap: pretty;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--coral);
}

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

::selection {
  background: var(--sun);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 70px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  margin-left: auto;
}

.nav-links > a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a:not(.button):hover {
  color: var(--coral-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle {
  gap: 4px;
}

.nav-toggle span {
  display: block;
}

.nav-open .nav-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.button:hover {
  background: var(--coral-dark);
  box-shadow: 0 12px 30px rgba(191, 64, 39, 0.22);
  transform: translateY(-2px);
}

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

.button.secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: white;
  box-shadow: none;
}

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

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

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

.button[aria-disabled="true"],
.button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.arrow {
  font-size: 1.25em;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero {
  min-height: calc(100svh - 70px);
  padding: clamp(34px, 6vw, 74px) 0 48px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

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

.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 4.5vw, 68px);
}

.hero-sub {
  max-width: 540px;
  margin: 24px 0 28px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  inset: 3% -12% -3% 18%;
  border-radius: 48% 52% 40% 60% / 43% 42% 58% 57%;
  background: var(--sage);
  content: "";
  transform: rotate(-4deg);
}

.hero-media img {
  width: 100%;
  height: 640px;
  border-radius: 46% 54% 42% 58% / 38% 38% 62% 62%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  right: -16px;
  bottom: 34px;
  width: min(245px, 44%);
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
  box-shadow: 0 16px 40px rgba(23, 56, 47, 0.18);
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: 18px;
  line-height: 1.35;
  transform: rotate(2deg);
}

.hero-note strong {
  display: block;
  color: var(--coral-dark);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-ribbon {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}

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

.fact {
  min-height: 132px;
  padding: 24px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.fact span,
.fact a {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(84px, 10vw, 148px) 0;
}

.section-tight {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading h2,
.manifesto h2,
.price-copy h2,
.closing h2,
.tool-hero h1,
.vsl-hero h1,
.access-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.manifesto {
  position: static;
}

.manifesto-grid > div:first-child {
  position: sticky;
  top: 116px;
}

.manifesto h2 em {
  color: var(--coral);
  font-weight: inherit;
}

.manifesto p {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: 20px;
}

.failure-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.failure {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.failure-num {
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
}

.failure h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.25;
}

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

.photo-break {
  position: relative;
  overflow: hidden;
}

.photo-break-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 700px;
}

.photo-break img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}

.photo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(50px, 8vw, 120px);
  background: var(--ink);
  color: white;
}

.photo-copy blockquote {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.photo-copy cite {
  display: block;
  margin-top: 26px;
  color: var(--sage);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 14px;
  font-style: normal;
}

.method {
  overflow: clip;
  background: var(--paper-2);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.method-visual {
  position: sticky;
  top: 112px;
  display: grid;
  min-height: 530px;
  place-items: center;
}

.orbit {
  position: relative;
  width: min(440px, 90vw);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: var(--ring-inset);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 500ms ease, transform 700ms var(--ease);
}

.orbit-ring:nth-child(1) { --ring-inset: 0; }
.orbit-ring:nth-child(2) { --ring-inset: 12%; }
.orbit-ring:nth-child(3) { --ring-inset: 24%; }

.orbit[data-step="1"] .orbit-ring:nth-child(1),
.orbit[data-step="2"] .orbit-ring:nth-child(2),
.orbit[data-step="3"] .orbit-ring:nth-child(3),
.orbit[data-step="4"] .orbit-ring:nth-child(1),
.orbit[data-step="5"] .orbit-ring:nth-child(2),
.orbit[data-step="6"] .orbit-ring:nth-child(3) {
  border-color: var(--coral);
  transform: rotate(18deg) scale(1.035);
}

.orbit-core {
  position: absolute;
  inset: 34%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  box-shadow: 0 18px 40px rgba(232, 93, 63, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.orbit-core small {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-core strong {
  font-size: 46px;
  line-height: 1;
}

.orbit-state {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-state.low { left: 0; top: 16%; }
.orbit-state.steady { right: -1%; top: 44%; }
.orbit-state.bright { bottom: 9%; left: 17%; }

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

.method-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.method-step:hover .step-title,
.method-step[aria-current="step"] .step-title {
  color: var(--coral-dark);
}

.method-step[aria-current="step"] .step-letter {
  background: var(--coral);
  color: white;
  transform: rotate(-6deg);
}

.step-letter {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.step-title {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

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

.products-section {
  overflow: clip;
}

.product-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin: -80px 0 34px;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(310px, 390px);
  grid-auto-flow: column;
  gap: 18px;
  width: calc(100vw - max(20px, (100vw - var(--max)) / 2));
  overflow-x: auto;
  padding: 4px 28px 24px 0;
  scroll-padding-left: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--coral) transparent;
}

.product-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  scroll-snap-align: start;
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.product-preview {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 22px;
  place-items: center;
  overflow: hidden;
  background: var(--oat);
}

.product-preview.sage { background: var(--sage); }
.product-preview.coral { background: var(--red-soft); }
.product-preview.sun { background: #f5e6aa; }

.product-preview img {
  width: 78%;
  max-height: 292px;
  border-radius: 5px;
  box-shadow: 0 20px 36px rgba(23, 56, 47, 0.2);
  object-fit: contain;
  transition: transform 400ms var(--ease);
}

.product-card:hover .product-preview img {
  transform: rotate(-1.5deg) scale(1.025);
}

.tool-preview {
  position: relative;
  display: grid;
  width: 88%;
  min-height: 255px;
  padding: 22px;
  border: 1px solid rgba(23, 56, 47, 0.22);
  border-radius: 15px;
  background: var(--paper-2);
  box-shadow: 0 18px 36px rgba(23, 56, 47, 0.16);
}

.tool-preview .fake-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-preview .fake-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.tool-preview .fake-bars {
  display: grid;
  gap: 8px;
  align-content: end;
}

.tool-preview .fake-bars span {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
}

.tool-preview .fake-bars span:nth-child(1) { --w: 92%; }
.tool-preview .fake-bars span:nth-child(2) { --w: 68%; }
.tool-preview .fake-bars span:nth-child(3) { --w: 44%; }

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

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

.product-job {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: 14px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: auto;
  color: var(--coral-dark);
  font-weight: 780;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}

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

.try-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.try-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.try-copy p {
  max-width: 560px;
  color: var(--sage);
  font-size: 18px;
}

.routine-mini {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.routine-mini fieldset,
.tool-form fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.routine-mini legend,
.tool-form legend,
.field-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.segmented.five {
  grid-template-columns: repeat(5, 1fr);
}

.segmented label {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.segmented label:hover {
  border-color: var(--coral);
  transform: translateY(-1px);
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.segmented label:has(input:checked) {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.segmented label:has(input:focus-visible) {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.routine-result,
.calculator-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: var(--sage);
}

.routine-result.is-visible,
.calculator-result.is-visible {
  display: block;
  animation: revealResult 420ms var(--ease) both;
}

.routine-result strong,
.calculator-result h2 {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

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

.market-section {
  background: var(--paper-2);
}

.market-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.market-copy {
  position: sticky;
  top: 112px;
}

.market-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.market-copy p {
  color: var(--muted);
}

.market-table {
  border-top: 1px solid var(--ink);
}

.market-row {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1.2fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.market-row.header {
  padding: 12px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-row strong {
  line-height: 1.3;
}

.market-row span {
  color: var(--muted);
  font-size: 14px;
}

.trust-lab {
  position: relative;
  overflow: hidden;
}

.trust-lab::before {
  position: absolute;
  z-index: -1;
  width: 720px;
  height: 720px;
  right: -220px;
  top: -150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.review-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.review-status {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.review-status .zero {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 100px;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.review-status h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.review-status p {
  margin: 0 0 20px;
  color: var(--muted);
}

.review-measures {
  display: grid;
  gap: 16px;
}

.measure {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.measure-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.measure h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: -0.025em;
}

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

.pricing {
  background: var(--coral);
  color: white;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.price-copy p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.price-card {
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(83, 21, 11, 0.24);
}

.currency-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--oat);
}

.currency-toggle button {
  min-width: 58px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
}

.currency-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}

.price {
  display: flex;
  align-items: start;
  gap: 4px;
  margin: 24px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.price small {
  margin-top: 9px;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 17px;
  letter-spacing: 0;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 28px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.price-list li::before {
  margin-right: 10px;
  color: var(--coral);
  content: "✓";
  font-weight: 900;
}

.demo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.demo-label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.faq-intro p {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 76px;
  padding: 24px 52px 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 8px;
  top: 24px;
  font-family: "Avenir Next", Avenir, sans-serif;
  font-size: 30px;
  font-weight: 400;
  content: "+";
  transition: transform 220ms ease;
}

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

.faq-answer {
  max-width: 760px;
  padding: 0 54px 26px 0;
  color: var(--muted);
}

.closing {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.closing .container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 640px;
  align-items: center;
}

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

.closing p {
  max-width: 540px;
  margin: 22px 0 28px;
  color: var(--sage);
  font-size: 19px;
}

.closing-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -80px;
  bottom: -160px;
  border: 80px solid rgba(201, 215, 203, 0.09);
  border-radius: 50%;
}

.closing-shape::after {
  position: absolute;
  width: 180px;
  height: 180px;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  transform: translate(-50%, -50%);
}

.site-footer {
  padding: 44px 0;
  background: #102a24;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 15px;
}

.footer-grid p,
.footer-grid a {
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  min-height: 32px;
}

.legal-note {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
  overscroll-behavior: contain;
}

.dialog::backdrop {
  background: rgba(11, 29, 25, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-inner {
  padding: 34px;
}

.dialog h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
}

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

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

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

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* Tool pages */
.subpage {
  min-height: 100svh;
  background: var(--paper-2);
}

.subpage .site-header {
  position: relative;
}

.tool-hero,
.vsl-hero,
.access-hero {
  padding: clamp(64px, 9vw, 120px) 0 58px;
}

.tool-hero-grid,
.vsl-grid,
.access-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
}

.tool-hero p,
.vsl-hero p,
.access-hero p {
  color: var(--muted);
  font-size: 18px;
}

.privacy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
}

.tool-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

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

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: var(--coral);
}

.field-help {
  color: var(--muted);
  font-size: 12px;
}

.form-error {
  display: none;
  margin: 18px 0 0;
  padding: 12px;
  border-radius: 10px;
  background: var(--red-soft);
  color: #792616;
  font-weight: 700;
}

.form-error.is-visible {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.result-metric {
  padding: 15px;
  border: 1px solid rgba(23, 56, 47, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.5);
}

.result-metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.result-metric span {
  color: var(--muted);
  font-size: 12px;
}

.source-panel {
  padding: 42px 0 88px;
}

.source-panel-inner {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* VSL */
.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-shell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.72;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.play-button {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease;
}

.play-button:hover {
  background: var(--coral-dark);
  transform: scale(1.06);
}

.video-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.discover-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.discover-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.discover-item strong {
  display: block;
  margin-bottom: 5px;
}

.transcript {
  max-width: 820px;
  margin-inline: auto;
}

.transcript p {
  color: var(--ink-2);
  font-size: 18px;
}

/* Access */
.demo-banner {
  padding: 14px 0;
  background: var(--sun);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.quick-start {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-step {
  padding: 24px;
  border-top: 2px solid var(--coral);
  background: var(--paper-2);
}

.quick-step span {
  color: var(--coral-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: italic;
}

.access-list {
  display: grid;
  gap: 12px;
}

.access-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper-2);
}

.access-item-num {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
}

.access-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.access-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lock-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--oat);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.simple-page {
  max-width: 820px;
  padding: 80px 0 110px;
}

.simple-page h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.simple-page h2 {
  margin-top: 42px;
}

.simple-page p,
.simple-page li {
  color: var(--ink-2);
}

@media (max-width: 980px) {
  .hero-grid,
  .manifesto-grid,
  .method-grid,
  .try-grid,
  .market-grid,
  .review-layout,
  .price-grid,
  .faq-layout,
  .tool-hero-grid,
  .vsl-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero h1 {
    font-size: clamp(52px, 10vw, 78px);
  }

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

  .hero-media img {
    height: 520px;
  }

  .manifesto,
  .manifesto-grid > div:first-child,
  .method-visual,
  .market-copy,
  .faq-intro {
    position: static;
  }

  .method-visual {
    min-height: 450px;
  }

  .market-copy,
  .faq-intro {
    max-width: 720px;
  }

  .photo-break-grid {
    grid-template-columns: 1fr;
  }

  .photo-break img {
    min-height: 540px;
    max-height: 640px;
  }

  .product-controls {
    margin: 0 0 20px;
    justify-content: flex-start;
  }

  .tool-hero-grid,
  .vsl-grid,
  .access-grid {
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    height: 64px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    min-height: calc(100svh - 64px);
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 22px 20px 40px;
    background: var(--paper);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links > a:not(.button) {
    min-height: 54px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
  }

  .nav-links .button {
    margin-top: 16px;
  }

  .subpage .nav-links {
    position: static;
    display: flex;
    min-height: 0;
    flex-direction: row;
    padding: 0;
    background: transparent;
  }

  .subpage .nav-links > a:not(.button) {
    display: none;
  }

  .subpage .nav-links .button {
    margin-top: 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero-actions,
  .form-actions,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .form-actions .button,
  .dialog-actions .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
    height: 420px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 12px;
    font-size: 15px;
    transform: rotate(1deg);
  }

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

  .fact {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .manifesto h2,
  .price-copy h2,
  .closing h2,
  .tool-hero h1,
  .vsl-hero h1,
  .access-hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .photo-break img {
    min-height: 480px;
    max-height: 560px;
  }

  .photo-copy {
    padding: 50px 24px;
  }

  .photo-copy blockquote {
    font-size: 40px;
  }

  .method-visual {
    min-height: 360px;
  }

  .orbit {
    width: min(340px, 92vw);
  }

  .orbit-core {
    inset: 32%;
  }

  .orbit-core strong {
    font-size: 40px;
  }

  .method-step {
    grid-template-columns: 46px 1fr;
  }

  .product-rail {
    grid-auto-columns: minmax(285px, 84vw);
  }

  .product-card {
    min-height: 570px;
  }

  .product-preview {
    min-height: 285px;
  }

  .segmented,
  .segmented.five {
    grid-template-columns: 1fr;
  }

  .market-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .market-row.header {
    display: none;
  }

  .measure {
    grid-template-columns: 46px 1fr;
    padding-inline: 0;
  }

  .price {
    font-size: 70px;
  }

  .faq-answer {
    padding-right: 0;
  }

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

  .field-grid,
  .result-grid,
  .discover-list,
  .quick-start {
    grid-template-columns: 1fr;
  }

  .access-item {
    grid-template-columns: 46px 1fr;
  }

  .access-item .lock-chip,
  .access-item .button {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
  }
}

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

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

  .reveal,
  .stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: rgba(23, 56, 47, 0.52);
  }

  .button,
  .segmented label,
  .product-card,
  .tool-panel {
    border-width: 2px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .dialog::backdrop {
    backdrop-filter: none;
  }

  .site-header {
    background: var(--paper);
  }
}
