:root {
  --ink: #173c29;
  --ink-deep: #0d2d1e;
  --forest: #0d5737;
  --forest-light: #1b6a47;
  --cream: #f9f5ed;
  --cream-deep: #eee7d9;
  --paper: #fffdf8;
  --terracotta: #b66735;
  --terracotta-light: #da9b70;
  --sage: #dce7db;
  --mint: #eef4e9;
  --text: #2e3c33;
  --muted: #667268;
  --line: rgba(23, 60, 41, 0.16);
  --shadow-sm: 0 8px 24px rgba(19, 55, 37, 0.08);
  --shadow-lg: 0 30px 80px rgba(13, 45, 30, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1160px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #e5a77d;
  outline-offset: 4px;
}

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

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

.scroll-progress {
  position: fixed;
  z-index: 150;
  inset: 0 0 auto;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: var(--container);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  color: var(--cream);
  background: var(--terracotta);
  border-radius: 50% 50% 50% 15%;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small,
.footer-brand small {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  opacity: 0.68;
  text-transform: uppercase;
}

.header-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 810px;
  padding: 132px 0 80px;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 16%, rgba(226, 164, 117, 0.18), transparent 26%),
    linear-gradient(135deg, #0d2d1e 0%, #114f33 64%, #0c3925 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: -80px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.018), 0 0 0 92px rgba(255, 255, 255, 0.012);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.3;
}

.hero-glow-one {
  top: 20%;
  right: 6%;
  width: 220px;
  height: 220px;
  background: var(--terracotta);
}

.hero-glow-two {
  bottom: -120px;
  left: 10%;
  width: 300px;
  height: 180px;
  background: #47795d;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow-warm {
  color: var(--terracotta);
}

.eyebrow-light {
  color: #d9c9ae;
}

.hero h1,
.section-heading h2,
.preview-heading h2,
.author-copy h2,
.offer-copy h2,
.faq-heading h2,
.purchase-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--terracotta-light);
  font-weight: inherit;
}

.hero-lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-points li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-points span {
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.hero-offer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.price-block small,
.offer-price > small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 253, 248, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-block strong,
.offer-price strong {
  color: white;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.price-block strong sup,
.offer-price strong sup {
  margin-right: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  vertical-align: 1.2em;
}

.price-block strong small,
.offer-price strong small {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: 20px;
  letter-spacing: 0;
}

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

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

.button svg,
.text-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  color: white;
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(105, 44, 14, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: #a8572a;
  box-shadow: 0 16px 34px rgba(105, 44, 14, 0.34);
}

.button-light {
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.button-wide {
  width: 100%;
}

.offer-note {
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
}

.offer-note svg,
.offer-security svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-stage {
  position: relative;
  width: 100%;
  min-height: 590px;
  perspective: 1400px;
}

.stage-orbit {
  position: absolute;
  top: 56px;
  right: -10px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  content: "";
}

.stage-orbit::after {
  inset: 74px;
}

.page-card {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 292px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform-origin: bottom center;
}

.page-card img {
  width: 100%;
  height: auto;
}

.page-card-back {
  z-index: 1;
  transform: translateX(-17%) translateY(60px) rotate(11deg) scale(0.86);
  opacity: 0.65;
}

.page-card-middle {
  z-index: 2;
  transform: translateX(-94%) translateY(44px) rotate(-9deg) scale(0.91);
  opacity: 0.86;
}

.page-card-front {
  z-index: 3;
  transform: translateX(-54%) rotate(1.5deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  padding: 13px 16px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.22;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(5, 28, 18, 0.24);
  backdrop-filter: blur(12px) saturate(130%);
}

.floating-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note-top {
  top: 92px;
  right: -18px;
}

.floating-note-bottom {
  bottom: 72px;
  left: -10px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(1040px, calc(100% - 40px));
  min-height: 105px;
  margin: -42px auto 0;
  padding: 22px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  border: 1px solid rgba(23, 60, 41, 0.09);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-item strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.trust-item span {
  max-width: 130px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2,
.preview-heading h2,
.faq-heading h2 {
  color: var(--ink-deep);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.03;
}

.section-heading > p:not(.eyebrow),
.split-heading > p,
.faq-heading > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.situation-section {
  padding-top: 130px;
}

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

.situation-card {
  position: relative;
  min-height: 335px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.situation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.situation-card.featured {
  color: white;
  background: var(--forest);
  border-color: transparent;
}

.card-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--terracotta-light);
  font-family: var(--serif);
  font-size: 44px;
  font-style: italic;
  opacity: 0.54;
}

.line-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
}

.featured .line-icon {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.line-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.situation-card h3 {
  margin: 62px 0 12px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.situation-card.featured h3 {
  color: white;
}

.situation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.situation-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.preview-section {
  padding: 116px max(20px, calc((100vw - 1160px) / 2));
  color: white;
  background: var(--ink-deep);
}

.preview-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.preview-heading h2 {
  color: white;
}

.preview-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.64);
}

.recipe-tabs {
  margin-top: 52px;
}

.tab-list {
  width: fit-content;
  padding: 5px;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.tab-button {
  min-height: 46px;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.tab-button.is-active {
  color: var(--ink-deep);
  background: var(--paper);
}

.recipe-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  background: #16452f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24);
}

.recipe-panel[hidden] {
  display: none;
}

.recipe-image-wrap {
  position: relative;
  height: 610px;
  background: #d9d4c7;
  overflow: hidden;
}

.recipe-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.zoom-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-deep);
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(150%);
}

.zoom-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.recipe-copy {
  padding: 68px clamp(34px, 6vw, 78px);
  align-self: center;
}

.recipe-index {
  margin: 0 0 16px;
  color: #e4ad84;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-copy h3 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.03;
}

.recipe-copy > p:not(.recipe-index) {
  max-width: 530px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.recipe-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.13);
}

.recipe-meta div {
  padding: 18px 14px 18px 0;
}

.recipe-meta div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.recipe-meta small,
.recipe-meta strong {
  display: block;
}

.recipe-meta small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recipe-meta strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.text-button {
  min-height: 48px;
  margin-top: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.preview-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.preview-footer p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.62fr;
  align-items: end;
  gap: 100px;
}

.split-heading > p {
  margin-bottom: 8px;
}

.content-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-width: 0;
  padding: 36px;
  display: flex;
  background: #dfe9dd;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.showcase-large {
  grid-row: span 2;
  background: #f0e6d7;
}

.showcase-accent {
  background: #d8e4d5;
}

.showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 54%;
}

.showcase-large .showcase-copy {
  max-width: 390px;
}

.showcase-tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 20px 0 12px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.06;
}

.showcase-large h3 {
  font-size: 39px;
}

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

.showcase-card img {
  position: absolute;
  right: -6%;
  bottom: -34%;
  width: 53%;
  max-width: 315px;
  border: 1px solid rgba(23, 60, 41, 0.1);
  border-radius: 5px;
  box-shadow: 0 24px 50px rgba(27, 65, 43, 0.2);
  transform: rotate(7deg);
}

.showcase-large img {
  right: -3%;
  bottom: -14%;
  width: 62%;
  max-width: 390px;
  transform: rotate(5deg);
}

.showcase-accent img {
  transform: rotate(-6deg);
}

.categories {
  margin-top: 22px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.categories > p {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.categories ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.categories li {
  padding: 7px 10px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.method-section {
  padding: 0 20px 118px;
}

.method-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 96px max(32px, calc((100% - 1100px) / 2));
  color: white;
  background:
    radial-gradient(circle at 88% 14%, rgba(185, 103, 53, 0.33), transparent 25%),
    var(--forest);
  border-radius: var(--radius-lg);
}

.method-shell .section-heading h2 {
  color: white;
}

.method-list {
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: none;
}

.method-list li {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
}

.method-list > li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  background: #e4ad84;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.method-list h3 {
  margin: 34px 0 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.method-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.evidence-section {
  padding-top: 0;
}

.evidence-card {
  padding: 54px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 44px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.evidence-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
}

.evidence-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.evidence-card h2 {
  max-width: 700px;
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
}

.evidence-card > div:last-child > p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
}

.source-links {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-links a {
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  background: var(--mint);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.evidence-card small {
  display: block;
  margin-top: 18px;
  color: #778078;
  font-size: 10px;
}

.author-section {
  padding: 110px 20px;
  color: white;
  background: #0a2b1c;
}

.author-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.author-photo {
  position: relative;
}

.author-photo::before {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(218, 155, 112, 0.45);
  border-radius: 24px;
  content: "";
}

.author-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.82) contrast(1.04);
}

.author-photo > span {
  position: absolute;
  right: -18px;
  bottom: 24px;
  padding: 10px 14px;
  color: var(--ink-deep);
  background: #e4ad84;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.author-copy h2 {
  color: white;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 0.95;
}

.author-role {
  margin: 13px 0 26px;
  color: #e4ad84;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.author-copy > p:not(.eyebrow):not(.author-role) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
}

.author-signature {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
}

.author-signature span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-section {
  padding: 120px 20px;
  background: var(--cream-deep);
}

.offer-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.offer-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.offer-visual::before {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 390px;
  height: 390px;
  background: rgba(181, 202, 179, 0.7);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.offer-page {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 310px;
  overflow: hidden;
  background: var(--paper);
  border-radius: 7px;
  box-shadow: 0 28px 60px rgba(13, 45, 30, 0.22);
}

.offer-page img {
  width: 100%;
}

.offer-page-back {
  transform: translateX(-32%) translateY(65px) rotate(10deg) scale(0.9);
}

.offer-page-front {
  transform: translateX(-70%) rotate(-5deg);
}

.offer-copy {
  padding: 48px;
  background: var(--paper);
  border: 1px solid rgba(23, 60, 41, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.offer-copy h2 {
  color: var(--ink-deep);
  font-size: 52px;
  line-height: 0.98;
}

.offer-subtitle {
  margin: 14px 0 0;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 29px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  width: 16px;
  height: 9px;
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  content: "";
  transform: rotate(-45deg);
}

.offer-price {
  margin: 30px 0 20px;
}

.offer-price > small {
  color: var(--muted);
}

.offer-price strong {
  color: var(--ink-deep);
  font-size: 54px;
}

.offer-security {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 40px;
}

.faq-heading > p {
  font-size: 16px;
}

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

.faq-list summary {
  min-height: 72px;
  padding: 22px 52px 22px 0;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 17px;
  height: 1.5px;
  background: var(--forest);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

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

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 44px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  grid-column: 2;
  margin-top: 6px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: white;
  background: var(--forest);
  border-radius: 18px;
}

.final-cta p {
  max-width: 410px;
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  min-height: 280px;
  padding: 68px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.62);
  background: #071e14;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  color: white;
}

.site-footer > p {
  margin: 28px 0 0;
  font-size: 12px;
}

.site-footer .footer-disclaimer {
  margin-top: 8px;
}

.site-footer .footer-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.whatsapp-button {
  position: fixed;
  z-index: 80;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-width: 58px;
  min-height: 58px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  background: #1d8f55;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(14, 61, 38, 0.3);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, bottom 220ms ease;
}

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

.whatsapp-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

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

dialog {
  color: var(--text);
}

dialog::backdrop {
  background: rgba(4, 18, 12, 0.78);
  backdrop-filter: blur(6px);
}

.preview-dialog {
  width: min(730px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  background: var(--paper);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
  background: var(--ink-deep);
}

.dialog-header small,
.dialog-header strong {
  display: block;
}

.dialog-header small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-header strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.dialog-header button,
.dialog-close {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
}

.dialog-header svg,
.dialog-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.dialog-body {
  max-height: calc(100vh - 100px);
  padding: 16px;
  overflow: auto;
}

.dialog-body img {
  width: 100%;
  border: 1px solid var(--line);
}

.purchase-dialog {
  width: min(480px, calc(100vw - 30px));
  padding: 42px;
  background: var(--paper);
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: visible;
}

.purchase-dialog .dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--ink-deep);
  background: var(--mint);
  border-color: var(--line);
}

.purchase-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
}

.purchase-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.purchase-dialog h2 {
  color: var(--ink-deep);
  font-size: 37px;
  line-height: 1.02;
}

.purchase-dialog > p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .product-stage {
    width: min(600px, 100%);
    margin: 0 auto;
  }

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

  .situation-card:last-child {
    grid-column: span 2;
  }

  .preview-heading,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recipe-panel {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .recipe-image-wrap {
    height: 550px;
  }

  .content-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 440px);
  }

  .showcase-large {
    grid-row: auto;
  }

  .showcase-card .showcase-copy,
  .showcase-large .showcase-copy {
    max-width: 55%;
  }

  .showcase-card img,
  .showcase-large img {
    right: 3%;
    bottom: -45%;
    width: 46%;
  }

  .author-shell,
  .offer-shell {
    gap: 48px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta {
    grid-column: 1;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100% - 32px);
    --radius-lg: 27px;
  }

  html {
    scroll-padding-top: 20px;
  }

  .site-header {
    min-height: 70px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small,
  .header-note {
    display: none;
  }

  .hero {
    padding: 108px 0 68px;
  }

  .hero-content {
    gap: 16px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.4vw, 58px);
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-points {
    margin-top: 22px;
  }

  .hero-points li {
    padding: 6px 11px;
    font-size: 10px;
  }

  .hero-offer {
    margin-top: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .price-block {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .price-block > small {
    margin-bottom: 7px;
  }

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

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

  .product-stage {
    min-height: 420px;
    margin-top: 24px;
  }

  .stage-orbit {
    top: 42px;
    right: 50%;
    width: 320px;
    height: 320px;
    transform: translateX(50%);
  }

  .page-card {
    width: 205px;
  }

  .page-card-back {
    transform: translateX(-6%) translateY(52px) rotate(10deg) scale(0.83);
  }

  .page-card-middle {
    transform: translateX(-96%) translateY(45px) rotate(-8deg) scale(0.86);
  }

  .page-card-front {
    transform: translateX(-53%) rotate(1.5deg);
  }

  .floating-note {
    min-width: 120px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .floating-note-top {
    top: 82px;
    right: -5px;
  }

  .floating-note-bottom {
    bottom: 35px;
    left: -2px;
  }

  .trust-strip {
    width: calc(100% - 32px);
    margin-top: -28px;
    padding: 18px;
    gap: 12px;
    border-radius: 18px;
  }

  .trust-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .trust-item strong {
    font-size: 29px;
  }

  .trust-item span {
    max-width: 94px;
    font-size: 8px;
  }

  .trust-divider {
    height: 55px;
  }

  .section {
    padding: 82px 0;
  }

  .situation-section {
    padding-top: 94px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .preview-heading h2,
  .faq-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .section-heading > p:not(.eyebrow),
  .split-heading > p,
  .faq-heading > p {
    margin-top: 18px;
    font-size: 16px;
  }

  .situation-grid {
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .situation-grid::-webkit-scrollbar {
    display: none;
  }

  .situation-card,
  .situation-card:last-child {
    min-width: min(80vw, 310px);
    min-height: 315px;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .preview-section {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .preview-heading {
    display: block;
  }

  .preview-heading > p {
    margin-top: 18px;
    font-size: 14px;
  }

  .recipe-tabs {
    margin-top: 32px;
  }

  .tab-list {
    width: 100%;
  }

  .tab-button {
    min-width: 0;
    padding-inline: 8px;
    flex: 1;
    font-size: 10px;
  }

  .recipe-panel {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
  }

  .recipe-image-wrap {
    height: 380px;
  }

  .recipe-image-wrap img {
    object-position: top;
  }

  .recipe-copy {
    padding: 32px 24px 36px;
  }

  .recipe-copy h3 {
    font-size: 37px;
  }

  .recipe-copy > p:not(.recipe-index) {
    margin-top: 16px;
    font-size: 14px;
  }

  .recipe-meta {
    margin-top: 24px;
  }

  .recipe-meta div {
    padding: 15px 6px 15px 0;
  }

  .recipe-meta div + div {
    padding-left: 10px;
  }

  .recipe-meta strong {
    font-size: 14px;
  }

  .recipe-meta small {
    font-size: 7px;
  }

  .text-button {
    margin-top: 22px;
  }

  .preview-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .preview-footer .button {
    width: 100%;
  }

  .content-showcase {
    grid-template-rows: repeat(3, 530px);
  }

  .showcase-card,
  .showcase-large {
    padding: 26px;
  }

  .showcase-card .showcase-copy,
  .showcase-large .showcase-copy {
    max-width: 100%;
  }

  .showcase-card h3,
  .showcase-large h3 {
    max-width: 310px;
    font-size: 32px;
  }

  .showcase-card p {
    max-width: 300px;
  }

  .showcase-card img,
  .showcase-large img {
    top: 290px;
    right: 50%;
    bottom: auto;
    width: 62%;
    transform: translateX(50%) rotate(4deg);
  }

  .showcase-accent img {
    transform: translateX(50%) rotate(-5deg);
  }

  .categories {
    padding: 23px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .method-section {
    padding: 0 10px 82px;
  }

  .method-shell {
    padding: 70px 22px;
    border-radius: 26px;
  }

  .method-list {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .method-list li {
    min-height: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .method-list h3 {
    margin: 0 0 6px;
    font-size: 24px;
  }

  .evidence-card {
    padding: 28px 23px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .evidence-icon {
    width: 66px;
    height: 66px;
  }

  .evidence-icon svg {
    width: 34px;
    height: 34px;
  }

  .evidence-card h2 {
    font-size: 34px;
  }

  .evidence-card > div:last-child > p:not(.eyebrow) {
    font-size: 14px;
  }

  .source-links {
    flex-direction: column;
  }

  .source-links a {
    justify-content: center;
  }

  .author-section {
    padding: 82px 20px;
  }

  .author-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .author-photo {
    width: calc(100% - 12px);
    max-width: 440px;
    margin-left: 12px;
  }

  .author-photo > span {
    right: -7px;
  }

  .author-copy h2 {
    font-size: 55px;
  }

  .offer-section {
    padding: 80px 16px;
  }

  .offer-shell {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .offer-visual {
    min-height: 440px;
  }

  .offer-visual::before {
    top: 70px;
    width: 300px;
    height: 300px;
  }

  .offer-page {
    width: 225px;
  }

  .offer-copy {
    position: relative;
    z-index: 3;
    padding: 30px 23px;
  }

  .offer-copy h2 {
    font-size: 42px;
  }

  .check-list li {
    font-size: 13px;
  }

  .faq-section {
    gap: 18px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-right: 42px;
    font-size: 18px;
  }

  .faq-list details p {
    padding-right: 20px;
  }

  .final-cta {
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    min-height: 360px;
    padding-bottom: 130px;
  }

  .whatsapp-button {
    right: 16px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: 50px;
    min-width: 50px;
    min-height: 50px;
    padding: 10px;
  }

  .whatsapp-button span {
    display: none;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 66px;
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: white;
    background: rgba(9, 39, 26, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(3, 22, 14, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(16px) saturate(150%);
  }

  .mobile-buy-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-buy-bar small,
  .mobile-buy-bar strong {
    display: block;
  }

  .mobile-buy-bar small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-buy-bar strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
  }

  .mobile-buy-bar .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .purchase-dialog {
    padding: 34px 24px 26px;
  }

  .purchase-dialog h2 {
    font-size: 32px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .scroll-progress,
  .whatsapp-button,
  .mobile-buy-bar,
  .button,
  .zoom-button,
  .site-header {
    display: none !important;
  }

  body,
  .hero,
  .preview-section,
  .author-section,
  .method-shell {
    color: black;
    background: white;
  }
}
