/* ============================================================
   Water Fasting Protocol — lead-magnet landing page
   Recreates the approved "Water Fasting Protocol.html" design.
   Display type: Fraunces (site serif). Body: Inter. Black + gold.
   Shared nav/footer (home-styles.css) sit outside this scope.
   All page styles are scoped under .wf-page.
   ============================================================ */

.wf-page {
  /* palette (from the design's WF token set) */
  --wf-void: #000000;
  --wf-bg: #0A0907;
  --wf-panel: #0F0E0B;
  --wf-panel-hi: #15130E;
  --wf-panel-deep: #070605;
  --wf-ink: #FAF6E8;
  --wf-ink-soft: #E8DFC7;
  --wf-ash: #9A9286;
  --wf-ash-deep: #6B665C;
  --wf-smoke: #3A372F;
  --wf-gold-hi: #F0D78C;
  --wf-gold: #D4AF37;
  --wf-gold-lo: #9A7E22;
  --wf-ember: #C8932F;
  --wf-border: rgba(212, 175, 55, 0.18);
  --wf-border-soft: rgba(232, 223, 199, 0.07);
  --wf-border-hair: rgba(232, 223, 199, 0.04);

  --wf-serif: 'Fraunces', Georgia, serif;
  --wf-sans: 'Inter', system-ui, sans-serif;

  --wf-pad-x: 48px;

  /* Base body styles mirrored from the homepage (home-page.css `body`), which
     the shared home-styles.css chrome stylesheet does not include. Without these
     the nav renders 4px shorter and text isn't antialiased — i.e. the header
     looked "smaller" than the homepage. Scoped to .wf-page so other pages are
     untouched. */
  background: var(--wf-bg);
  color: var(--wf-ink);
  font-family: var(--wf-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wf-page main {
  overflow: hidden;
}

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

.wf-page section[id] {
  scroll-margin-top: 84px;
}

.wf-page ::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--wf-ink);
}

/* ---------- shared inner container ---------- */
.wf-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- primitives ---------- */
.wf-eyebrow {
  font-family: var(--wf-sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--wf-gold);
  font-weight: 500;
}

.wf-rule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wf-rule-line {
  width: var(--wf-rule-w, 40px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wf-gold));
}
.wf-rule-line:last-child {
  background: linear-gradient(90deg, var(--wf-gold), transparent);
}
.wf-rule-dot {
  width: 4px;
  height: 4px;
  background: var(--wf-gold);
  transform: rotate(45deg);
}

/* ---------- buttons ---------- */
.wf-btn {
  font-family: var(--wf-sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  border-radius: 2px;
  padding: 15px 28px;
  border: 1px solid var(--wf-gold-lo);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.wf-btn-lg {
  font-size: 14px;
  padding: 17px 34px;
}
.wf-btn-gold {
  background: linear-gradient(180deg, var(--wf-gold-hi) 0%, var(--wf-gold) 45%, var(--wf-ember) 100%);
  color: #1A1408;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.wf-btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.wf-btn-ghost {
  background: transparent;
  color: var(--wf-ink-soft);
  border: 1px solid var(--wf-border);
}
.wf-btn-ghost:hover {
  background: rgba(212, 175, 55, 0.06);
  color: var(--wf-ink);
}
.wf-btn svg,
.wf-download-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 16px;
  height: 16px;
}

/* ---------- signup form ---------- */
.wf-signup {
  max-width: 560px;
  text-align: left;
}
.wf-signup-form {
  background: var(--wf-panel);
  border: 1px solid var(--wf-border);
  padding: 8px 8px 8px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(232, 223, 199, 0.04);
}
.wf-signup-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--wf-ink);
  font-family: var(--wf-serif);
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0.01em;
}
.wf-signup-input::placeholder {
  color: rgba(154, 146, 134, 0.7);
}
.wf-signup-form .wf-btn {
  flex-shrink: 0;
}
.wf-signup-proof {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wf-avatars {
  display: flex;
}
.wf-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(232, 223, 199, 0.12), transparent 62%), var(--wf-avatar-tone, #2a2620);
  border: 1.5px solid var(--wf-bg);
  margin-left: -9px;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wf-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--wf-ink-soft);
  user-select: none;
}
.wf-signup-count {
  font-family: var(--wf-sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--wf-ash);
  text-transform: uppercase;
}
.wf-signup-count span {
  color: var(--wf-gold);
}
.wf-signup-note {
  margin-top: 12px;
  font-family: var(--wf-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-ash-deep);
}
.wf-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wf-form-status {
  margin-top: 12px;
  font-family: var(--wf-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--wf-ash);
  min-height: 1px;
}

/* success state (real PDF unlock) */
.wf-download-ready {
  max-width: 560px;
  border: 1px solid var(--wf-border);
  background: var(--wf-panel);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  text-align: left;
}
.wf-download-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--wf-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-gold);
}
.wf-download-icon svg {
  width: 20px;
  height: 20px;
}
.wf-download-copy h3 {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: 27px;
  color: var(--wf-ink);
  margin: 0;
  line-height: 1.1;
}
.wf-download-copy p {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 16px;
  margin: 6px 0 0;
  line-height: 1.45;
}
.wf-download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   HERO
   ============================================================ */
.wf-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wf-border-soft);
}
.wf-hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--wf-hero-img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) brightness(0.95) contrast(1.06);
}
.wf-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(8, 7, 5, 0.95) 0%, rgba(8, 7, 5, 0.8) 34%, rgba(8, 7, 5, 0.38) 62%, rgba(8, 7, 5, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.35) 0%, transparent 24%, transparent 68%, rgba(10, 9, 7, 0.9) 100%);
}
.wf-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px var(--wf-pad-x) 78px;
}
.wf-hero-inner > * {
  max-width: 720px;
}
.wf-hero-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  margin: 22px 0 0;
  font-size: clamp(48px, 9vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
  text-shadow: 0 2px 50px rgba(0, 0, 0, 0.7);
}
.wf-hero-title em {
  font-style: italic;
  color: var(--wf-gold-hi);
}
.wf-hero-deck {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 560px;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.65);
}
.wf-anchor {
  display: block;
  height: 34px;
  scroll-margin-top: 84px;
}

/* ============================================================
   THE EFFECTS
   ============================================================ */
.wf-effects {
  padding: 92px var(--wf-pad-x);
  border-bottom: 1px solid var(--wf-border-soft);
  background: var(--wf-bg);
}
.wf-effects-head {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}
.wf-effects-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  margin: 22px 0 0;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.wf-effects-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-effects-intro {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
  justify-self: end;
}
.wf-effects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wf-effect {
  padding: 40px 44px 40px 0;
  border-top: 1px solid var(--wf-border-soft);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.wf-effect:nth-child(odd) {
  border-right: 1px solid var(--wf-border-soft);
}
.wf-effect:nth-child(even) {
  padding-left: 44px;
}
.wf-effect-num {
  font-family: var(--wf-serif);
  font-style: italic;
  font-size: 34px;
  color: var(--wf-gold);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.wf-effect-body h3 {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: 30px;
  margin: 0;
  color: var(--wf-ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.wf-effect-body p {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0 0;
}

/* ============================================================
   INSIDE THE GUIDE — 3D book + contents
   ============================================================ */
.wf-inside {
  padding: 92px var(--wf-pad-x);
  border-bottom: 1px solid var(--wf-border-soft);
  background: var(--wf-panel-deep);
  position: relative;
  overflow: hidden;
}
.wf-inside-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 520px at 25% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}
.wf-inside-grid {
  max-width: 1240px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.wf-inside-copy .wf-eyebrow {
  margin-bottom: 22px;
}
.wf-inside-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 70px);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.wf-inside-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-inside-deck {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.6;
  margin: 26px 0 0;
  max-width: 520px;
}
.wf-contents {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  max-width: 560px;
}
.wf-contents li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--wf-border-soft);
  color: var(--wf-ink-soft);
  font-family: var(--wf-sans);
  font-size: 14.5px;
  line-height: 1.5;
}
.wf-contents-mark {
  color: var(--wf-gold);
  font-family: var(--wf-serif);
  font-size: 14px;
}
.wf-inside-copy .wf-btn {
  margin-top: 36px;
}

/* --- 3D book mockup --- */
.wf-book-stage {
  perspective: 1900px;
  perspective-origin: 58% 38%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.wf-book {
  position: relative;
  width: 300px;
  height: 412px;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-30deg);
  filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.7));
}
.wf-book > div {
  position: absolute;
  top: 50%;
  left: 50%;
}
.wf-book-back {
  width: 300px;
  height: 412px;
  transform: translate(-50%, -50%) translateZ(-22px);
  background: var(--wf-panel-deep);
  border: 1px solid var(--wf-border-soft);
  border-radius: 2px 5px 5px 2px;
}
.wf-book-pages-top {
  width: 300px;
  height: 44px;
  transform: translate(-50%, -50%) rotateX(90deg) translateZ(206px);
  background: linear-gradient(180deg, #EDE5CE, #c9c0a6);
}
.wf-book-pages-bottom {
  width: 300px;
  height: 44px;
  transform: translate(-50%, -50%) rotateX(-90deg) translateZ(206px);
  background: linear-gradient(180deg, #cfc6ac, #a59c83);
}
.wf-book-fore {
  width: 44px;
  height: 412px;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(150px);
  background: repeating-linear-gradient(90deg, #EDE5CE 0, #EDE5CE 1px, #c9c0a6 1px, #c9c0a6 3px);
}
.wf-book-spine {
  width: 44px;
  height: 412px;
  transform: translate(-50%, -50%) rotateY(-90deg) translateZ(150px);
  background: linear-gradient(90deg, #0c0b07 0%, #1e1a11 50%, #0c0b07 100%);
  border-top: 1px solid var(--wf-border);
  border-bottom: 1px solid var(--wf-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-book-spine span {
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--wf-serif);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wf-gold);
  font-size: 11px;
}
.wf-book-front {
  width: 300px;
  height: 412px;
  transform: translate(-50%, -50%) translateZ(22px);
  background:
    radial-gradient(ellipse 80% 55% at 50% 26%, rgba(212, 175, 55, 0.14) 0%, transparent 70%),
    linear-gradient(155deg, #17150F 0%, var(--wf-panel) 48%, var(--wf-panel-deep) 100%);
  border: 1px solid var(--wf-border);
  border-radius: 2px 5px 5px 2px;
  box-shadow: inset 0 1px 0 rgba(232, 223, 199, 0.07), inset 0 0 70px rgba(0, 0, 0, 0.55), inset -10px 0 24px rgba(0, 0, 0, 0.4);
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.wf-book-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  opacity: 0.55;
}
.wf-book-corner-tl { top: 12px; left: 12px; border-top: 1px solid var(--wf-gold); border-left: 1px solid var(--wf-gold); }
.wf-book-corner-tr { top: 12px; right: 12px; border-top: 1px solid var(--wf-gold); border-right: 1px solid var(--wf-gold); }
.wf-book-corner-bl { bottom: 12px; left: 12px; border-bottom: 1px solid var(--wf-gold); border-left: 1px solid var(--wf-gold); }
.wf-book-corner-br { bottom: 12px; right: 12px; border-bottom: 1px solid var(--wf-gold); border-right: 1px solid var(--wf-gold); }
.wf-book-kicker {
  font-size: 9px;
}
.wf-book-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wf-book-seal {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  background-image: var(--wf-seal);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.5));
}
.wf-book-cover-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: 46px;
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--wf-ink);
}
.wf-book-cover-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-book-center .wf-rule {
  margin: 16px 0 12px;
}
.wf-book-sub {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 14px;
}
.wf-book-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.wf-book-foot span {
  font-family: var(--wf-sans);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--wf-ash-deep);
  text-transform: uppercase;
}
.wf-book-year {
  font-family: var(--wf-serif) !important;
  font-style: italic;
  font-size: 12px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ============================================================
   THE ARC — day-by-day cards
   ============================================================ */
.wf-arc {
  padding: 92px var(--wf-pad-x);
  border-bottom: 1px solid var(--wf-border-soft);
  background: var(--wf-bg);
}
.wf-arc .wf-inner {
  max-width: 1240px;
}
.wf-arc-head {
  margin-bottom: 44px;
}
.wf-arc-head .wf-eyebrow {
  margin-bottom: 18px;
}
.wf-arc-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 60px);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.wf-arc-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-arc-intro {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 18px;
  line-height: 1.5;
  margin: 18px 0 0;
  max-width: 560px;
}
.wf-arc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.wf-day {
  position: relative;
  background: var(--wf-panel);
  border: 1px solid var(--wf-border-soft);
  padding: 0 22px 24px;
  display: flex;
  flex-direction: column;
  min-height: 322px;
  overflow: hidden;
}
.wf-day-peak {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--wf-border);
}
.wf-day-accent {
  height: 3px;
  margin: 0 -22px 24px;
  background: linear-gradient(90deg, var(--wf-gold-lo), var(--wf-gold));
  opacity: var(--wf-day-op, 1);
}
.wf-day-label {
  font-family: var(--wf-sans);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wf-ash-deep);
}
.wf-day-num {
  font-family: var(--wf-serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--wf-gold);
  opacity: var(--wf-day-op, 1);
  margin: 6px 0 14px;
}
.wf-day h3 {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: 23px;
  margin: 0;
  color: var(--wf-ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.wf-day > p {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 15px;
  line-height: 1.45;
  margin: 10px 0 0;
}
.wf-day-tip {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--wf-border-soft);
}
.wf-day-tip-label {
  display: block;
  font-family: var(--wf-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wf-gold);
  margin-bottom: 6px;
}
.wf-day-tip-text {
  font-family: var(--wf-sans);
  font-size: 12px;
  color: var(--wf-ink-soft);
  line-height: 1.45;
}
.wf-arc-extend {
  margin-top: 16px;
  padding: 22px 30px;
  border: 1px solid var(--wf-border);
  background: var(--wf-panel);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wf-arc-extend-label {
  font-family: var(--wf-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wf-gold);
  white-space: nowrap;
}
.wf-arc-extend-text {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: 18px;
  flex: 1;
  min-width: 280px;
}

/* ============================================================
   COMPARE — 5 vs 7
   ============================================================ */
.wf-compare {
  padding: 92px var(--wf-pad-x);
  border-bottom: 1px solid var(--wf-border-soft);
  background: var(--wf-panel-deep);
}
.wf-compare-inner {
  max-width: 980px;
}
.wf-compare-head {
  text-align: center;
  margin-bottom: 44px;
}
.wf-compare-head .wf-eyebrow {
  margin-bottom: 22px;
}
.wf-compare-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 66px);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.wf-compare-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-compare-table {
  border: 1px solid var(--wf-border-soft);
}
.wf-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.wf-compare-row + .wf-compare-row {
  border-top: 1px solid var(--wf-border-soft);
}
.wf-compare-row-head {
  background: var(--wf-panel);
}
.wf-compare-row > div {
  padding: 18px 28px;
}
.wf-compare-five,
.wf-compare-seven {
  border-left: 1px solid var(--wf-border-soft);
}
.wf-compare-seven {
  background: rgba(212, 175, 55, 0.04);
}
.wf-compare-row-head .wf-compare-factor {
  font-family: var(--wf-sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wf-ash-deep);
  padding: 20px 28px;
}
.wf-compare-row-head .wf-compare-five,
.wf-compare-row-head .wf-compare-seven {
  font-family: var(--wf-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 20px 28px;
}
.wf-compare-row-head .wf-compare-five {
  color: var(--wf-ink-soft);
}
.wf-compare-row-head .wf-compare-seven {
  color: var(--wf-gold);
}
.wf-compare-row:not(.wf-compare-row-head) .wf-compare-factor {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 18px;
}
.wf-compare-row:not(.wf-compare-row-head) .wf-compare-five {
  font-family: var(--wf-serif);
  color: var(--wf-ink-soft);
  font-size: 19px;
}
.wf-compare-row:not(.wf-compare-row-head) .wf-compare-seven {
  font-family: var(--wf-serif);
  color: var(--wf-ink);
  font-size: 19px;
}
.wf-compare-foot {
  text-align: center;
  margin-top: 28px;
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 18px;
  line-height: 1.55;
}

/* ============================================================
   THE LINEAGE
   ============================================================ */
.wf-lineage {
  position: relative;
  border-bottom: 1px solid var(--wf-border-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.wf-lineage-media {
  position: relative;
  min-height: 600px;
  background-image: var(--wf-candle);
  background-size: cover;
  background-position: center;
  filter: brightness(1.08) saturate(1) contrast(1.05);
}
.wf-lineage-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 5, 0.05) 0%, rgba(7, 6, 5, 0.22) 48%, rgba(7, 6, 5, 0.78) 84%, var(--wf-panel-deep) 100%);
}
.wf-lineage-heading {
  position: absolute;
  left: var(--wf-pad-x);
  right: var(--wf-pad-x);
  bottom: 48px;
}
.wf-lineage-heading .wf-eyebrow {
  margin-bottom: 18px;
}
.wf-lineage-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 60px);
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.wf-lineage-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-lineage-list {
  background: var(--wf-panel-deep);
  padding: 80px 60px;
}
.wf-lineage-intro {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.55;
  margin: 0 0 44px;
  max-width: 560px;
}
.wf-lineage-intro span {
  color: var(--wf-gold);
}
.wf-figure {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid var(--wf-border-soft);
}
.wf-figure:last-child {
  border-bottom: 1px solid var(--wf-border-soft);
}
.wf-figure-name {
  font-family: var(--wf-serif);
  font-size: 25px;
  color: var(--wf-ink);
  line-height: 1.1;
}
.wf-figure-note {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ash);
  font-size: 15.5px;
  line-height: 1.45;
  margin-top: 3px;
}
.wf-figure-dur {
  font-family: var(--wf-sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wf-gold);
  white-space: nowrap;
  padding-top: 6px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.wf-final {
  padding: 104px var(--wf-pad-x);
  border-bottom: 1px solid var(--wf-border-soft);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 700px at 50% 45%, rgba(212, 175, 55, 0.13) 0%, transparent 70%), var(--wf-bg);
}
.wf-final-rings {
  position: absolute;
  inset: 0;
}
.wf-final-ring {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: var(--wf-ring);
  height: var(--wf-ring);
  border-radius: 50%;
  border: 1px solid var(--wf-border-hair);
}
.wf-final-seal {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background-image: var(--wf-seal);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
}
.wf-final-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.wf-final-inner .wf-eyebrow {
  margin-bottom: 34px;
}
.wf-final-title {
  font-family: var(--wf-serif);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 88px);
  margin: 0;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}
.wf-final-title em {
  font-style: italic;
  color: var(--wf-gold);
}
.wf-final-deck {
  font-family: var(--wf-serif);
  font-style: italic;
  color: var(--wf-ink-soft);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5;
  margin: 26px auto 0;
  max-width: 560px;
}
.wf-final .wf-signup {
  margin: 44px auto 0;
}
.wf-final .wf-download-ready {
  margin: 44px auto 0;
}

/* ============================================================
   MEDICAL DISCLAIMER (footnote bridging to shared footer)
   ============================================================ */
.wf-disclaimer {
  background: var(--wf-void);
  padding: 40px var(--wf-pad-x);
}
.wf-disclaimer p {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--wf-sans);
  font-size: 11px;
  line-height: 1.6;
  color: var(--wf-ash-deep);
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wf-page { --wf-pad-x: 32px; }
  .wf-inside-grid { gap: 56px; }
  .wf-lineage-list { padding: 64px 40px; }
}

@media (max-width: 900px) {
  .wf-hero-inner { padding: 80px var(--wf-pad-x) 64px; }

  .wf-effects-head { grid-template-columns: 1fr; gap: 22px; }
  .wf-effects-intro { justify-self: start; max-width: 560px; }
  .wf-effects-grid { grid-template-columns: 1fr; }
  .wf-effect,
  .wf-effect:nth-child(odd),
  .wf-effect:nth-child(even) {
    padding: 32px 0;
    border-right: none;
  }

  .wf-inside-grid { grid-template-columns: 1fr; gap: 48px; }
  .wf-book-stage { order: -1; }

  .wf-arc-grid { grid-template-columns: repeat(2, 1fr); }
  .wf-day { min-height: 0; }

  .wf-lineage { grid-template-columns: 1fr; }
  .wf-lineage-media { min-height: 420px; }
  .wf-lineage-heading { bottom: 40px; }
}

@media (max-width: 620px) {
  .wf-page { --wf-pad-x: 20px; }

  .wf-hero-inner { padding: 64px var(--wf-pad-x) 52px; }
  .wf-effects, .wf-inside, .wf-arc, .wf-compare { padding: 64px var(--wf-pad-x); }
  .wf-final { padding: 80px var(--wf-pad-x); }

  .wf-signup-form {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 12px;
  }
  .wf-signup-input {
    font-size: 18px;
    padding: 4px 6px;
  }
  .wf-signup-form .wf-btn { width: 100%; }

  .wf-arc-grid { grid-template-columns: 1fr; }
  .wf-day { min-height: 0; }

  .wf-compare-row > div { padding: 14px 16px; }
  .wf-compare-row-head .wf-compare-factor,
  .wf-compare-row-head .wf-compare-five,
  .wf-compare-row-head .wf-compare-seven { padding: 14px 16px; letter-spacing: 0.16em; font-size: 9.5px; }
  .wf-compare-row:not(.wf-compare-row-head) .wf-compare-factor { font-size: 16px; }
  .wf-compare-row:not(.wf-compare-row-head) .wf-compare-five,
  .wf-compare-row:not(.wf-compare-row-head) .wf-compare-seven { font-size: 16px; }

  .wf-lineage-list { padding: 48px 24px; }
  .wf-figure { grid-template-columns: 1fr; gap: 6px; }
  .wf-figure-dur { padding-top: 0; }

  .wf-download-actions { flex-direction: column; }
  .wf-download-actions .wf-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .wf-btn { transition: none; }
}
