:root {
  --gold: #c9a84c;
  --gold-bright: #d4af37;
  --gold-deep: #8b6d22;
  --cream: #faf7f2;
  --cream-deep: #f5f0e8;
  --ink: #1e1e1e;
  --muted: #66625e;
  --dark: #0d0a0e;
  --green: #64785e;
  --white: #fffdf9;
  --line: rgba(30, 30, 30, 0.12);
  --shadow: 0 18px 50px rgba(50, 38, 20, 0.11);
  --serif: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-150%);
}

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

.shell {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}

.view[hidden] {
  display: none !important;
}

.view.is-entering {
  animation: view-in 280ms ease both;
}

@keyframes view-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.12;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 10vw, 4.8rem); }
h2 { font-size: clamp(2rem, 8vw, 3.6rem); }
h3 { font-size: 1.45rem; }

.button {
  display: inline-flex;
  min-height: 54px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 10px 24px rgba(13, 10, 14, 0.15);
}

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

.button--gold {
  color: #17120a;
  background: linear-gradient(135deg, #e2c667, var(--gold-bright));
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.22);
}

.button--gold:hover { background: #e1c35e; }

/* Landing */
.view--landing {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background:
    radial-gradient(circle at 90% 8%, rgba(201, 168, 76, 0.18), transparent 20rem),
    radial-gradient(circle at 5% 92%, rgba(100, 120, 94, 0.08), transparent 18rem),
    var(--cream);
}

.view--landing::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.45);
  border-right: 1px solid rgba(201, 168, 76, 0.45);
}

.conversion-hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  align-content: center;
  gap: 1rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  text-align: center;
}

.conversion-hero h1 {
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(1.68rem, 7.3vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.09;
}

.conversion-hero h1 span { display: block; }

.conversion-hero__hook {
  margin-bottom: 0.7rem;
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(0.66rem, 0.39em, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.conversion-hero__solution {
  display: block;
  margin-top: 0.55rem;
  color: var(--gold-deep);
  font-size: 0.84em;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.13;
}

.conversion-hero__portrait {
  position: relative;
  width: min(100%, 36rem);
  margin-inline: auto;
  margin-block: 0;
}

.conversion-hero__portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0.38rem -0.38rem -0.38rem 0.38rem;
  border: 1px solid var(--gold);
  border-radius: 14px;
}

.conversion-hero__portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 14px;
  filter: saturate(0.88) contrast(1.02);
  box-shadow: 0 16px 36px rgba(45, 32, 18, 0.15);
}

.conversion-hero > .button {
  min-height: 58px;
  max-width: 21rem;
  margin-inline: auto;
  border-color: rgba(201, 168, 76, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #161117, #2b222b);
  box-shadow: 0 12px 28px rgba(13, 10, 14, 0.2);
  font-size: 0.72rem;
  letter-spacing: 0.065em;
}

.conversion-hero > .button::after {
  content: "→";
  margin-left: 0.65rem;
  color: var(--gold-bright);
  font-size: 1rem;
}

/* Reading */
.view--reading {
  min-height: 100svh;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 50% -15%, rgba(212, 175, 55, 0.13), transparent 24rem),
    var(--cream);
}

.reading-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: max(0.7rem, env(safe-area-inset-top));
}

.back-button {
  display: inline-flex;
  min-height: 44px;
  width: max-content;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  padding: 0 0.3rem;
  color: #6c6660;
  background: transparent;
  cursor: pointer;
  font-size: 0.77rem;
  text-transform: lowercase;
}

.back-button span { font-size: 1.2rem; }
.back-button[hidden] { visibility: hidden; display: inline-flex; }
.back-spacer { width: 1px; }

.reading-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.reading-mark img {
  display: block;
  width: 40px;
  height: 40px;
  animation: mirror-glow 3.6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes mirror-glow {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 rgba(201, 168, 76, 0)); }
  50% { transform: translateY(-1px) scale(1.045); filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.42)); }
}

.portrait-progress { margin-top: 1.2rem; }

.portrait-progress__label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.portrait-progress__spark { color: var(--gold); }

.portrait-progress__track {
  height: 2px;
  margin-top: 0.65rem;
  overflow: hidden;
  background: rgba(201, 168, 76, 0.18);
}

#progress-fill {
  display: block;
  height: 100%;
  width: 4%;
  background: linear-gradient(90deg, var(--gold), #e3c96c);
  transform-origin: left;
  transition: width 350ms ease;
}

.reading-stage {
  min-height: calc(100svh - 8rem);
  padding-top: clamp(1.8rem, 5.5vh, 4rem);
}

.question-card,
.message-card {
  max-width: 43rem;
  margin-inline: auto;
  animation: card-in 220ms ease both;
}

.question-card.is-leaving,
.message-card.is-leaving { animation: card-out 170ms ease both; }

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

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

.question-whisper {
  margin: 0 0 0.6rem;
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.question-card h2 {
  max-width: 22ch;
  margin-bottom: 1.35rem;
  font-size: clamp(1.5rem, 6.2vw, 2.55rem);
  font-weight: 600;
  line-height: 1.18;
}

.question-card h2 strong {
  color: var(--gold-deep);
  font-weight: 700;
  background: linear-gradient(transparent 72%, rgba(201, 168, 76, 0.18) 0);
}

.answer-list {
  display: grid;
  gap: 0.62rem;
}

.answer-button {
  display: flex;
  min-height: 58px;
  width: 100%;
  align-items: center;
  gap: 0.78rem;
  border: 1px solid rgba(30, 30, 30, 0.15);
  border-radius: 8px;
  padding: 0.78rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.72);
  cursor: pointer;
  font-size: 0.93rem;
  line-height: 1.38;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.answer-button strong {
  color: #3c3323;
  font-weight: 700;
}

.answer-button:hover {
  border-color: rgba(139, 109, 34, 0.65);
  background: var(--white);
}

.answer-button:active { transform: scale(0.995); }

.answer-button__dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(139, 109, 34, 0.62);
  border-radius: 50%;
}

.answer-button.is-selected {
  border-color: var(--gold-deep);
  background: #fffaf0;
}

.answer-button.is-selected .answer-button__dot {
  border: 5px solid var(--gold);
}

.message-card {
  display: grid;
  min-height: 58svh;
  place-content: center;
  text-align: center;
}

.message-card__ornament {
  width: 58px;
  height: 100px;
  margin: 0 auto 1.25rem;
}

.message-card__ornament img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  animation: mirror-float 3.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 12px rgba(139, 109, 34, 0.2));
}

@keyframes mirror-float {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 7px 11px rgba(139, 109, 34, 0.18)); }
  50% { transform: translateY(-4px); filter: drop-shadow(0 11px 16px rgba(201, 168, 76, 0.34)); }
}

.message-card__copy {
  max-width: 34rem;
  margin: 0 auto 1.65rem;
}

.message-card__copy p {
  margin: 0 0 0.72rem;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 4.5vw, 1.55rem);
  line-height: 1.48;
}

.message-card__copy p:last-child { margin-bottom: 0; }

.message-card__copy strong {
  color: var(--gold-deep);
  font-weight: 700;
}

.message-card .button { max-width: 20rem; margin-inline: auto; }

/* Reveal + result */
.view--reveal {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-block: 2rem;
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 22rem),
    var(--dark);
  color: var(--white);
  text-align: center;
}

.analysis-card { max-width: 38rem; }
.analysis-card .eyebrow { margin-bottom: 0.75rem; color: #d9c178; }
.analysis-card h2 { margin-bottom: 0.65rem; font-size: clamp(1.65rem, 7vw, 2.7rem); }

.analysis-orbit {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  margin: 0 auto 1.65rem;
  place-items: center;
}

.analysis-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-top-color: var(--gold-bright);
  border-radius: 50%;
  animation: analysis-spin 2.2s linear infinite;
}

.analysis-orbit__ring--two {
  inset: 9px;
  border-top-color: transparent;
  border-right-color: rgba(212, 175, 55, 0.8);
  animation-direction: reverse;
  animation-duration: 1.55s;
}

.analysis-orbit__core {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #f0d984;
  background: rgba(212, 175, 55, 0.09);
  font-family: var(--serif);
  font-size: 1.45rem;
  box-shadow: 0 0 34px rgba(212, 175, 55, 0.15);
}

.analysis-orbit__core img { display: block; width: 52px; height: 52px; }

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

.analysis-detail {
  min-height: 3.3rem;
  max-width: 32rem;
  margin: 0 auto 1.4rem;
  color: #cfc9c5;
  font-size: 0.92rem;
  line-height: 1.6;
}

.analysis-steps {
  display: grid;
  gap: 0.5rem;
  max-width: 24rem;
  margin: 0 auto 1.25rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.analysis-steps li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.65rem;
  align-items: center;
  color: #716b70;
  font-size: 0.77rem;
  transition: color 220ms ease, transform 220ms ease;
}

.analysis-steps li > span {
  display: grid;
  width: 0.82rem;
  height: 0.82rem;
  place-items: center;
  border: 1px solid #595359;
  border-radius: 50%;
}

.analysis-steps li.is-active { color: #f3e5b6; transform: translateX(3px); }
.analysis-steps li.is-active > span { border: 3px solid var(--gold-bright); box-shadow: 0 0 12px rgba(212, 175, 55, 0.45); }
.analysis-steps li.is-complete { color: #aaa3a0; }
.analysis-steps li.is-complete > span { border-color: var(--green); background: var(--green); }
.analysis-steps li.is-complete > span::after { content: "✓"; color: var(--white); font-size: 0.55rem; }

.analysis-progress {
  height: 3px;
  max-width: 24rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

#analysis-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f0d984);
  transition: width 1.15s ease;
}

.analysis-wait { margin: 0.7rem 0 0; color: #756f73; font-size: 0.68rem; }

.view--result {
  min-height: 100svh;
  padding-block: max(2.5rem, env(safe-area-inset-top)) max(4rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 100% 0, rgba(201, 168, 76, 0.12), transparent 22rem),
    var(--cream);
}

.result-shell { max-width: 50rem; }

.diagnostic-identity {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  padding: 1.65rem 1.25rem;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.diagnostic-identity::after {
  content: "✦";
  position: absolute;
  right: -0.3rem;
  bottom: -2.2rem;
  color: rgba(201, 168, 76, 0.1);
  font-size: 7rem;
}

.diagnostic-identity__label {
  margin: 0 0 0.6rem;
  color: #d8c078;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.diagnostic-identity h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 8.5vw, 3.6rem);
  font-weight: 500;
}

.diagnostic-identity h2 small {
  display: block;
  margin-bottom: 0.18rem;
  color: #c8c0bb;
  font-family: var(--sans);
  font-size: 0.35em;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.diagnostic-identity h2 span { color: #f0d984; }

.diagnostic-identity__note {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0;
  color: #cfc9c5;
  font-size: 0.86rem;
  line-height: 1.65;
}

.diagnostic-block {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(30, 30, 30, 0.08);
  border-radius: 12px;
  padding: 1.35rem 1rem;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 8px 28px rgba(50, 38, 20, 0.05);
}

.diagnostic-block__marker {
  padding-top: 0.2rem;
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.diagnostic-block h3,
.diagnostic-conclusion h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.diagnostic-block p,
.diagnostic-conclusion p {
  margin: 0 0 0.85rem;
  color: #494541;
  font-size: 0.94rem;
  line-height: 1.7;
}

.diagnostic-block p:last-child,
.diagnostic-conclusion p:last-child { margin-bottom: 0; }

.diagnostic-block strong { color: #80631e; font-weight: 700; }
.diagnostic-block--opening { border-left: 3px solid var(--green); }
.diagnostic-block--ester { border-color: rgba(201, 168, 76, 0.35); background: #fffaf0; }

.diagnostic-conclusion {
  margin-top: 1.15rem;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  color: var(--white);
  background: linear-gradient(145deg, #1e191d, var(--dark));
}

.diagnostic-conclusion > span { display: block; margin-bottom: 0.8rem; color: var(--gold-bright); }
.diagnostic-conclusion h3 { color: #f0d984; }
.diagnostic-conclusion p { color: #e3deda; font-family: var(--serif); font-size: 1.04rem; }
.diagnostic-conclusion strong { color: #f0d984; }

.result-signature { margin-block: 1.6rem; color: var(--gold-deep); text-align: center; }
.result-shell > .button {
  max-width: 27rem;
  margin-inline: auto;
  border-radius: 999px;
}

/* Mechanism */
.view--mechanism { min-height: 100svh; background: var(--dark); }
.ester-mechanism { min-height: 100svh; padding-block: max(4.5rem, env(safe-area-inset-top)) max(4.5rem, env(safe-area-inset-bottom)); }
.ester-mechanism .shell { display: grid; gap: 2rem; max-width: 58rem; }

.three-thousand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  color: #f0d984;
}

.three-thousand strong { font-family: var(--serif); font-size: 5.5rem; font-weight: 500; line-height: 0.8; }
.three-thousand span { max-width: 3rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; line-height: 1.2; text-transform: uppercase; }
.ester-mechanism h1 { margin-bottom: 1.2rem; color: #f4eac8; font-size: clamp(2.2rem, 9vw, 4.2rem); font-weight: 500; }
.ester-mechanism p:not(.eyebrow) { color: #d2cbc6; line-height: 1.78; }

.ester-insight {
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  padding-top: 1.2rem;
  color: #f0d984 !important;
  font-family: var(--serif);
  font-size: 1.17rem;
}
.mechanism-bridge .button { max-width: 27rem; margin-top: 1.2rem; }

/* Offer */
.view--offer { background: var(--white); }
.dark-section { color: var(--white); background: var(--dark); }
.cream-section { background: var(--cream-deep); }
.eyebrow--light { color: #d8c078; }
.offer-section { padding-block: 4.5rem; }

.offer-hero {
  position: relative;
  overflow: hidden;
  padding-block: max(4.5rem, env(safe-area-inset-top)) 5rem;
  text-align: center;
}

.offer-hero::before,
.offer-hero::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 50%;
}

.offer-hero::before { top: -11rem; left: -7rem; }
.offer-hero::after { right: -8rem; bottom: -12rem; }

.offer-hero .shell { position: relative; z-index: 1; max-width: 54rem; }
.offer-brand-logo { display: block; width: 64px; height: 110px; margin: 0 auto 1rem; border-radius: 8px; object-fit: cover; }

.offer-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 10vw, 4.9rem);
  font-weight: 500;
}

.offer-hero__lead { margin: 0 auto; color: #ccc5c1; }

.offer-section > h2,
.offer-section > .section-label,
.offer-section > .prose { max-width: 45rem; }
.offer-section h2 { margin-bottom: 1.5rem; }

.prose p { margin: 0 0 1.1rem; font-size: 1.02rem; line-height: 1.82; }

.reading-limit { padding-block: 4.5rem; }
.reading-limit .shell { max-width: 50rem; }
.reading-limit h2 { margin-bottom: 1.5rem; }
.reading-limit .prose p:first-child { color: var(--gold-deep); font-family: var(--serif); font-size: 1.2rem; }
.reading-limit .prose p:last-child { margin-top: 1.5rem; color: var(--gold-deep); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }

.esther-story { padding-block: 4.5rem; background: var(--white); }
.story-grid { display: grid; max-width: 50rem; gap: 2.2rem; }
.esther-story h2 { margin-bottom: 1.5rem; }

.product-intro { padding-block: 5rem; }
.product-grid { display: grid; gap: 3.5rem; align-items: center; }

.luciana-intro-photo {
  position: relative;
  width: min(88%, 22rem);
  margin-inline: auto;
}

.luciana-intro-photo::before { content: ""; position: absolute; inset: 0.65rem -0.65rem -0.65rem 0.65rem; border: 1px solid rgba(212, 175, 55, 0.62); border-radius: 12px; }
.luciana-intro-photo img { position: relative; z-index: 1; display: block; width: 100%; height: min(82vw, 20rem); border-radius: 12px; object-fit: cover; object-position: 50% 24%; box-shadow: 16px 20px 38px rgba(0, 0, 0, 0.3); }

.product-intro h2 { margin-bottom: 0.75rem; color: #f2e4b1; }
.product-tagline { margin: 0 0 2rem; color: #d5cfc9; font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.prose--light { color: #d5d0cc; }

.practical-path { max-width: 58rem; }
.practical-path__intro { max-width: 47rem; margin: 0 0 2.5rem; color: #514d48; font-size: 1.02rem; line-height: 1.8; }
.practical-mockup { width: min(72%, 16rem); margin: 0 auto 2.5rem; }
.practical-mockup img { display: block; width: 100%; height: auto; aspect-ratio: auto; border-radius: 14px; object-fit: contain; box-shadow: 0 20px 50px rgba(34, 24, 14, 0.18); }
.practical-phases { display: grid; gap: 0.85rem; }

.practical-phase {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  border: 1px solid rgba(30, 30, 30, 0.09);
  border-radius: 12px;
  padding: 1.3rem 1rem;
  background: var(--cream);
}

.practical-phase__number { padding-top: 0.25rem; color: var(--gold-deep); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; }
.practical-phase h3 { margin-bottom: 0.35rem; font-size: 1.55rem; }
.practical-phase__promise { margin: 0 0 1rem !important; color: var(--gold-deep) !important; font-family: var(--serif); font-size: 1.08rem; }
.practical-phase__body > p { margin: 0 0 1rem; color: #4d4945; font-size: 0.93rem; line-height: 1.72; }
.practical-phase__list-title { margin-bottom: 0.45rem !important; color: var(--ink) !important; font-weight: 700; }
.practical-phase ul { display: grid; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.practical-phase li { position: relative; padding-left: 1.1rem; color: #4d4945; font-size: 0.88rem; line-height: 1.58; }
.practical-phase li::before { content: "–"; position: absolute; left: 0; color: var(--gold-deep); }

.bonuses-section {
  position: relative;
  overflow: hidden;
  padding-block: 4.8rem;
  background:
    radial-gradient(circle at 100% 0, rgba(212, 175, 55, 0.13), transparent 22rem),
    var(--dark);
}

.bonuses-section::after {
  content: "✦";
  position: absolute;
  right: -1.5rem;
  bottom: -5rem;
  color: rgba(212, 175, 55, 0.05);
  font-size: 15rem;
  line-height: 1;
}

.bonuses-section .shell { position: relative; z-index: 1; max-width: 62rem; }
.bonuses-section h2 { max-width: 17ch; margin-bottom: 2rem; color: #f5e9bd; }
.bonuses-grid { display: grid; gap: 0.8rem; }

.bonus-card {
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.045);
}

.bonus-card__icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-content: center;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 50%;
  color: #f0d984;
  line-height: 1;
  text-align: center;
}

.bonus-card__icon strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.bonus-card__icon span { margin-top: 0.15rem; font-size: 0.42rem; font-weight: 700; letter-spacing: 0.08em; }
.bonus-card__icon--message { font-size: 1.35rem; }
.bonus-card__label { margin: 0 0 0.3rem; color: #bca65f; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; }
.bonus-card h3 { margin-bottom: 0.65rem; color: #f2dfa0; font-size: 1.35rem; }
.bonus-card__body > p:last-child { margin: 0; color: #d3cdca; font-size: 0.88rem; line-height: 1.68; }

.thirty-days { padding-block: 4.5rem; }
.thirty-days .shell { max-width: 50rem; }
.thirty-days h2 { margin-bottom: 1.5rem; }
.thirty-days .prose p:last-child {
  margin-top: 1.7rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: #55451f;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.receive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; max-width: 52rem; }
.receive-grid article { min-height: 9rem; border: 1px solid rgba(201, 168, 76, 0.28); border-radius: 10px; padding: 1rem; background: var(--cream); }
.receive-grid span { color: var(--gold-deep); font-size: 0.66rem; font-weight: 700; }
.receive-grid h3 { margin: 0.45rem 0; font-size: 1.15rem; }
.receive-grid p { margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.5; }

.honest-promise { padding-block: 4.5rem; }
.promise-card { max-width: 48rem; }
.promise-card h2 { margin-bottom: 1.5rem; }
.promise-card > p:not(.section-label):not(.signature) { font-family: var(--serif); font-size: 1.18rem; line-height: 1.78; }
.signature { margin: 2rem 0 0; color: var(--gold-deep); font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

.social-proof h2 { margin-bottom: 1.6rem; }

.testimonial-carousel { width: min(100%, 28rem); }

.testimonial-carousel__track {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.35rem 7.5% 1.1rem;
  scroll-padding-inline: 7.5%;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-carousel__track::-webkit-scrollbar { display: none; }

.testimonial-slide {
  flex: 0 0 85%;
  margin: 0;
  scroll-snap-align: center;
}

.testimonial-slide img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 15px 34px rgba(48, 35, 18, 0.12);
}

.testimonial-carousel__controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.8rem;
  align-items: center;
  width: min(92%, 24rem);
  margin-inline: auto;
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(139, 109, 34, 0.35);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--cream);
  cursor: pointer;
  font-size: 1.05rem;
}

.carousel-arrow:disabled { cursor: default; opacity: 0.3; }
.carousel-dots { display: flex; justify-content: center; gap: 0.45rem; }

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(139, 109, 34, 0.25);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.carousel-dots button.is-active { width: 22px; border-radius: 99px; background: var(--gold-deep); }
.testimonial-carousel__hint { margin: 0.65rem 0 0; color: var(--muted); font-size: 0.7rem; text-align: center; }

.price-section { padding-block: 5rem; text-align: center; }
.price-card { max-width: 36rem; }
.price-mockup { display: block; width: min(58%, 14rem); height: auto; margin: 0 auto 1.5rem; border-radius: 12px; object-fit: contain; box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32); }
.price-card h2 { margin-bottom: 1.5rem; }
.price-card__anchor { max-width: 29rem; margin-inline: auto; color: #c5beb9; line-height: 1.65; }
.price-card__anchor s { color: #8f8782; text-decoration-color: #c99868; text-decoration-thickness: 2px; }
.price-card__today { margin-bottom: 0; color: #e3deda; font-size: 0.9rem; }
.price { margin: 0.2rem 0; color: #f0d984; font-family: var(--serif); font-size: 5rem; font-weight: 600; line-height: 1; }
.price span { font-size: 1.1rem; vertical-align: 1.8rem; }
.price sup { font-size: 1.5rem; vertical-align: 2rem; }
.price-card__note { margin: 0 0 1.8rem; color: #a9a29e; font-size: 0.79rem; }

.guarantee { display: grid; gap: 1.8rem; align-items: center; max-width: 50rem; }
.guarantee__seal {
  display: grid;
  width: 7rem;
  height: 7rem;
  margin-inline: auto;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  text-align: center;
}
.guarantee__seal strong { font-family: var(--serif); font-size: 2.7rem; line-height: 0.8; }
.guarantee__seal span { margin-top: 0.5rem; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.15em; }
.guarantee h2 { margin-bottom: 1rem; }
.guarantee p:last-child { margin: 0; line-height: 1.8; }

.faq { padding-block: 4.5rem; }
.faq .shell { max-width: 50rem; }
.faq h2 { margin-bottom: 2rem; }
.faq-list { border-top: 1px solid rgba(30, 30, 30, 0.16); }
.faq-list details { border-bottom: 1px solid rgba(30, 30, 30, 0.16); }
.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 1.2rem 2.2rem 1.2rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0.25rem; color: var(--gold-deep); font-family: var(--sans); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 1.7rem 1.4rem 0; line-height: 1.75; }

.final-cta { padding-block: 5rem max(6rem, env(safe-area-inset-bottom)); text-align: center; }
.final-cta .shell { max-width: 45rem; }
.final-cta__star { display: block; margin-bottom: 1.5rem; color: var(--gold-bright); }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta > .shell > p:not(.postscript):not(.footer-brand) { color: #cec8c3; }
.final-cta .button { max-width: 27rem; margin-top: 1rem; }
.postscript { margin: 2rem auto 0; color: #c8c1bc; font-family: var(--serif); font-style: italic; line-height: 1.7; }
.footer-brand { margin: 4rem 0 0; color: #847d78; font-size: 0.63rem; letter-spacing: 0.25em; }

.mobile-buy { display: none; }

.noscript {
  position: fixed;
  z-index: 100;
  inset: auto 1rem 1rem;
  padding: 1rem;
  color: var(--white);
  background: var(--dark);
  text-align: center;
}

@media (min-width: 700px) {
  .shell { width: min(100% - 4rem, 68rem); }
  .conversion-hero {
    grid-template-areas: "headline portrait" "cta portrait";
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr);
    grid-template-rows: auto auto;
    column-gap: clamp(3rem, 7vw, 7rem);
    row-gap: 2rem;
    align-content: center;
    align-items: center;
    text-align: left;
  }
  .conversion-hero h1 {
    grid-area: headline;
    max-width: 16ch;
    margin: 0;
    font-size: clamp(3rem, 5.2vw, 4.5rem);
  }
  .conversion-hero__portrait {
    grid-area: portrait;
    width: min(100%, 30rem);
  }
  .conversion-hero > .button {
    grid-area: cta;
    width: min(100%, 26rem);
    margin: 0;
    align-self: start;
  }
  .reading-stage { padding-top: 4.5rem; }
  .diagnostic-identity { padding: 2.4rem; }
  .diagnostic-block { grid-template-columns: 2.8rem 1fr; gap: 1.2rem; padding: 2rem; }
  .ester-mechanism .shell { grid-template-columns: 11rem 1fr; align-items: center; gap: 4rem; }
  .practical-phase { grid-template-columns: 3.2rem 1fr; gap: 1.4rem; padding: 2rem; }
  .bonuses-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-card { display: block; min-height: 24rem; padding: 1.5rem; }
  .bonus-card__icon { margin-bottom: 1.2rem; }
  .receive-grid { grid-template-columns: repeat(4, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: minmax(18rem, 0.8fr) 1.2fr; gap: 5rem; }
  .luciana-intro-photo img { height: 22rem; }
  .practical-mockup { width: min(100%, 32rem); }
  .price-mockup { width: min(100%, 18rem); }
  .guarantee { grid-template-columns: 8rem 1fr; gap: 3rem; }
  .offer-section, .reading-limit, .esther-story, .bonuses-section, .thirty-days, .honest-promise, .faq { padding-block: 6.5rem; }
}

@media (max-width: 699px) {
  .view--landing,
  .conversion-hero {
    height: 100svh;
    min-height: 0;
  }

  .conversion-hero {
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 0.65rem;
    padding-top: max(0.7rem, env(safe-area-inset-top));
    padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  }

  .conversion-hero h1 {
    max-width: 20ch;
    font-size: clamp(1.58rem, 7vw, 1.82rem);
    line-height: 1.06;
  }

  .conversion-hero__hook { margin-bottom: 0.38rem; }
  .conversion-hero__solution { margin-top: 0.32rem; line-height: 1.05; }

  .conversion-hero__portrait {
    width: 100%;
    height: 100%;
    max-height: min(45svh, 22rem);
    min-height: 0;
    align-self: center;
  }

  .conversion-hero__portrait img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% 48%;
  }

  .conversion-hero > .button { min-height: 56px; font-size: 0.76rem; }

  .view--reading {
    display: flex;
    height: 100svh;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: max(0.45rem, env(safe-area-inset-bottom));
  }

  .reading-header { flex: 0 0 auto; padding-top: max(0.2rem, env(safe-area-inset-top)); }
  .portrait-progress { flex: 0 0 auto; margin-top: 0.35rem; }
  .portrait-progress__label { font-size: 0.68rem; }
  .portrait-progress__track { margin-top: 0.38rem; }

  .reading-stage {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    align-items: flex-start;
    overflow: hidden;
    padding-top: clamp(0.85rem, 2.6vh, 1.35rem);
  }

  .question-card,
  .message-card {
    width: 100%;
    max-height: 100%;
  }

  .question-whisper { margin-bottom: 0.45rem; font-size: 0.87rem; }

  .question-card h2 {
    max-width: none;
    margin-bottom: 0.9rem;
    font-size: clamp(1.42rem, 6.1vw, 1.72rem);
    line-height: 1.16;
  }

  .answer-list { gap: 0.55rem; }

  .answer-button {
    min-height: 52px;
    gap: 0.72rem;
    padding: 0.66rem 0.78rem;
    font-size: 0.9rem;
    line-height: 1.32;
  }

  .answer-button__dot { width: 16px; height: 16px; }

  .message-card {
    height: 100%;
    min-height: 0;
    align-content: center;
  }

  .message-card__ornament { width: 46px; height: 80px; margin-bottom: 0.8rem; }
  .message-card__copy { margin-bottom: 1rem; }
  .message-card__copy p { margin-bottom: 0.5rem; font-size: clamp(0.98rem, 4.15vw, 1.18rem); line-height: 1.38; }
  .message-card .button { min-height: 50px; }

  .view--reveal { height: 100svh; min-height: 0; overflow: hidden; padding-block: 1rem; }

  body.offer-is-open { padding-bottom: calc(77px + env(safe-area-inset-bottom)); }
  .mobile-buy {
    position: fixed;
    z-index: 50;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0.7rem;
    align-items: center;
    padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(13, 10, 14, 0.97);
    backdrop-filter: blur(8px);
  }
  .mobile-buy[hidden] { display: none; }
  .mobile-buy > div { display: grid; color: #aaa29c; font-size: 0.63rem; line-height: 1.35; }
  .mobile-buy strong { color: #f0d984; font-family: var(--serif); font-size: 1rem; }
  .mobile-buy .button { min-height: 48px; padding-inline: 0.55rem; font-size: 0.67rem; }
}

@media (max-width: 699px) and (max-height: 560px) {
  .conversion-hero {
    gap: 0.45rem;
    padding-top: max(0.45rem, env(safe-area-inset-top));
    padding-bottom: max(0.45rem, env(safe-area-inset-bottom));
  }
  .conversion-hero h1 { font-size: 1.34rem; }
  .conversion-hero__hook { margin-bottom: 0.28rem; }
  .conversion-hero__solution { margin-top: 0.24rem; }
  .conversion-hero__portrait { width: 100%; max-height: 36svh; }
  .conversion-hero > .button { min-height: 48px; }

  .reading-stage { padding-top: 0.5rem; }
  .question-whisper { font-size: 0.72rem; }
  .question-card h2 { margin-bottom: 0.55rem; font-size: 1.15rem; }
  .answer-list { gap: 0.3rem; }
  .answer-button { min-height: 44px; padding-block: 0.45rem; font-size: 0.76rem; }
}

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