/* =========================================================
   TOKENS
   ========================================================= */
:root {
  --primary:   #4c6c94;
  --primary-d: #3a557a;
  --slate:     #bfd2d8;
  --sage:      #7da2a2;
  --sage-d:    #5d8585;
  --gold:      #f1d025;
  --gold-d:    #d8b817;
  --mustard:   #e9d385;
  --cream:     #f5ecd0;
  --paper:     #FAF8F4;
  --paper-2:   #f2efe7;
  --ink:       #2E2E2E;
  --ink-soft:  #4a4a4a;
  --line:      rgba(46,46,46,0.10);
  --line-2:    rgba(46,46,46,0.06);

  --serif: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1240px;
  --gut:  clamp(20px, 4vw, 56px);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(46,46,46,0.06), 0 2px 4px rgba(46,46,46,0.04);
  --shadow-md: 0 8px 24px -8px rgba(46,46,46,0.18), 0 2px 6px rgba(46,46,46,0.06);
  --shadow-lg: 0 30px 60px -20px rgba(46,46,46,0.28), 0 10px 24px -8px rgba(46,46,46,0.14);
  --shadow-book: 0 50px 80px -30px rgba(76,108,148,0.45), 0 20px 40px -16px rgba(46,46,46,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: var(--r-sm); }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.18 0 0 0 0 0.18 0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
main, header, footer, .sticky-cta { position: relative; z-index: 2; }

/* =========================================================
   TYPE
   ========================================================= */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(40px, 6.4vw, 76px); line-height: 1.02; font-weight: 500; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; font-weight: 500; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.18; font-weight: 600; }
h4 { font-size: 17px; line-height: 1.3; font-weight: 600; }

.italic { font-style: italic; }
.serif  { font-family: var(--serif); }

p.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--ink-soft); }
p { color: var(--ink-soft); }

.section-marker {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.section-marker .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-d);
  font-weight: 500;
}
.section-marker .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}
.section-marker .rule { flex: 1; height: 1px; background: var(--line); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary .arrow { transition: transform 200ms ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 0 0 1px var(--gold-d) inset, var(--shadow-md); }
.btn-gold:hover { background: var(--gold-d); transform: translateY(-1px); }

.btn-ghost { color: var(--ink); border: 1px solid rgba(46,46,46,0.25); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-light { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-sm { padding: 11px 18px; font-size: 13px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 248, 244, 0.78);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gut);
  max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-rings { display: inline-flex; }
.brand-rings .ring { width: 18px; height: 18px; border: 2px solid var(--primary); border-radius: 50%; }
.brand-rings .ring + .ring { margin-left: -7px; }
.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.brand-name .full { display: none; }
.brand-name .short { display: inline; letter-spacing: 0.06em; }
@media (min-width: 700px) {
  .brand-name .full { display: inline; }
  .brand-name .short { display: none; }
}
.nav-links { display: none; gap: 30px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }
@media (min-width: 1000px) { .nav-links { display: flex; } }
.nav-links a { position: relative; padding: 4px 0; transition: color 180ms ease; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--primary); transition: right 250ms ease;
}
.nav-links a:hover::after { right: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -8%;
  width: 60vw; height: 60vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle at center, var(--mustard) 0%, transparent 65%);
  opacity: 0.5; pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 50vw; height: 50vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle at center, var(--slate) 0%, transparent 60%);
  opacity: 0.35; pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 72px);
  align-items: center; position: relative; z-index: 2;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.1fr 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  padding: 7px 16px 7px 12px;
  background: rgba(76, 108, 148, 0.08);
  border: 1px solid rgba(76, 108, 148, 0.18);
  border-radius: 999px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(241,208,37,0.18);
}
.hero-eyebrow span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
}
.hero h1 .accent {
  font-style: italic; color: var(--primary); position: relative;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 0.08em;
  height: 0.32em; background: var(--gold); z-index: -1;
  border-radius: 2px; opacity: 0.85;
}
.hero-sub {
  margin-top: 26px;
  max-width: 580px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-cta-row {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero-meta {
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
}
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .meta-item svg { color: var(--sage); flex-shrink: 0; }
.hero-meta .pipe { color: var(--line); }

/* Two-book stage */
.book-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  perspective: 1400px;
  padding: 30px 0;
  min-height: 460px;
}
.book {
  position: relative;
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 0.773 / 1;
  transform: rotateY(-15deg) rotateX(3deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.book-stage:hover .book { transform: rotateY(-9deg) rotateX(1deg) rotateZ(0deg) translateY(-4px); }

.book-img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 2px 6px 6px 2px;
  overflow: hidden;
  box-shadow: var(--shadow-book);
}
.book-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Spine darkening */
.book-img-wrap::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: linear-gradient(90deg, rgba(0,0,0,0.32), transparent);
  pointer-events: none;
  z-index: 2;
}
/* Spine highlight */
.book-img-wrap::after {
  content: '';
  position: absolute; left: 14px; top: 0; bottom: 0; width: 1px;
  background: rgba(255,255,255,0.15);
  pointer-events: none;
  z-index: 2;
}

/* Floating context badges */
.book-badges {
  position: absolute;
  top: -10px; right: -10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
  align-items: flex-end;
}
.badge {
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transform: rotate(3deg);
  white-space: nowrap;
}
.badge.gold {
  background: var(--gold);
  border-color: var(--gold-d);
  transform: rotate(-3deg);
}

/* =========================================================
   PAIN POINTS BAR
   ========================================================= */
.painbar {
  background: var(--ink); color: var(--paper);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.painbar-inner {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap; justify-content: center;
}
.painbar-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.55);
}
.painbar-list {
  display: flex; flex-wrap: wrap; gap: clamp(14px, 2.5vw, 32px);
  align-items: center;
  justify-content: center;
}
.painbar-item {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 17px);
  font-style: italic;
  color: rgba(245,245,245,0.92);
  font-weight: 500;
}
.painbar-item .dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  margin: 0 12px 3px 0; vertical-align: middle;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem {
  padding: clamp(80px, 10vw, 130px) 0;
}
.problem-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) { .problem-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }
.problem h2 .underline { position: relative; display: inline-block; }
.problem h2 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
}
.problem-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.65; }
.problem-body p:last-child { margin-bottom: 0; }
.problem-body strong { color: var(--ink); font-weight: 600; }

.problem-issues {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (min-width: 600px) { .problem-issues { grid-template-columns: 1fr 1fr; } }
.issue { background: var(--paper); padding: 24px 22px; }
.issue-num {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  font-style: italic;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 12px;
}
.issue h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.issue p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

/* =========================================================
   PAIRED MODEL EXPLAINER
   ========================================================= */
.paired {
  background: var(--cream);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.paired-header {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 980px;
}
@media (min-width: 800px) { .paired-header { grid-template-columns: 1fr 1fr; align-items: end; } }
.paired-header p { font-size: 17px; line-height: 1.6; max-width: 520px; }

.paired-cols {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  position: relative;
}
@media (min-width: 900px) { .paired-cols { grid-template-columns: 1fr 1fr; } }

.paired-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 30px;
  position: relative;
}
.paired-col-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic; font-size: 22px; font-weight: 500;
  margin-bottom: 18px;
}
.paired-col:nth-child(2) .paired-col-icon { background: var(--gold); color: var(--ink); }
.paired-col h3 { font-size: 22px; margin-bottom: 12px; }
.paired-col p { font-size: 15px; line-height: 1.6; }

.paired-result {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--primary);
  line-height: 1.3;
  font-weight: 500;
}
.paired-result span {
  background: var(--paper);
  padding: 4px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}

/* =========================================================
   PROGRAMS SHOWCASE
   ========================================================= */
.programs {
  padding: clamp(80px, 10vw, 130px) 0;
}
.programs-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.programs-header p { margin-top: 18px; font-size: 17px; line-height: 1.6; }

.program-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 900px) { .program-grid { grid-template-columns: 1fr 1fr; } }

.program {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 36px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.program:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  padding: 6px 12px;
  background: var(--paper-2);
  border-radius: 999px;
}
.program-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1;
}
.program h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--serif);
}
.program-edition {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.program-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.program-pieces {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 24px;
  display: grid;
  gap: 16px;
}
.piece {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.piece-icon {
  width: 36px; height: 36px;
  background: var(--mustard);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.piece-content .piece-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 3px;
}
.piece-content .piece-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.piece-content .piece-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.program-features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 8px;
}
.program-features li {
  display: flex; gap: 10px; align-items: start;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.program-features .check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  color: var(--primary);
}

.program-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.program-cta .amazon-link {
  font-size: 12.5px;
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: 0.02em;
}
.program-cta .amazon-link:hover { color: var(--primary); }

/* =========================================================
   PEACE MODEL
   ========================================================= */
.peace {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.peace::before {
  content: 'P E A C E';
  position: absolute;
  top: 24px; right: -60px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(110px, 13vw, 180px);
  font-weight: 400;
  color: rgba(76, 108, 148, 0.05);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
}
.peace-header {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
  position: relative;
}
.peace-header p { margin-top: 18px; font-size: 17px; line-height: 1.55; }

.peace-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 700px) { .peace-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .peace-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; } }

.peace-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px 28px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.peace-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.peace-card .letter {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.85;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  font-style: italic;
}
.peace-card:nth-child(1) .letter { color: var(--primary); }
.peace-card:nth-child(2) .letter { color: var(--sage); }
.peace-card:nth-child(3) .letter { color: var(--gold-d); }
.peace-card:nth-child(4) .letter { color: var(--primary); }
.peace-card:nth-child(5) .letter { color: var(--sage); }
.peace-card .num {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10.5px; font-weight: 600;
  color: var(--sage); letter-spacing: 0.1em;
}
.peace-card h3 {
  font-size: 17px; font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.01em;
}
.peace-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

/* =========================================================
   OUTCOMES
   ========================================================= */
.outcomes {
  padding: clamp(80px, 10vw, 130px) 0;
}
.outcomes-header { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.outcomes-header p { margin-top: 18px; font-size: 17px; line-height: 1.6; }

.outcome-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .outcome-grid { grid-template-columns: repeat(3, 1fr); } }

.outcome {
  background: var(--paper);
  border-left: 3px solid var(--primary);
  padding: 22px 24px 24px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  transition: transform 240ms ease, border-color 240ms ease;
}
.outcome:nth-child(odd) { border-left-color: var(--gold-d); }
.outcome:nth-child(3n) { border-left-color: var(--sage); }
.outcome:hover { transform: translateX(4px); }
.outcome-num {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.outcome h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); letter-spacing: -0.005em; }
.outcome p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

/* =========================================================
   PULL QUOTE
   ========================================================= */
.pullquote {
  background: var(--primary); color: var(--paper);
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative; overflow: hidden;
}
.pullquote::before {
  content: '"';
  position: absolute; top: -40px; left: 4%;
  font-family: var(--serif);
  font-size: clamp(220px, 26vw, 380px);
  line-height: 1;
  color: rgba(255,255,255,0.07);
  font-style: italic;
}
.pullquote-inner {
  position: relative; max-width: 960px; margin: 0 auto; text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25; font-weight: 400;
  color: var(--paper); letter-spacing: -0.01em;
}
.pullquote blockquote .gold-mark {
  background: var(--gold); color: var(--ink);
  padding: 0 10px; font-style: normal; font-weight: 600;
}
.pullquote cite {
  display: block; margin-top: 28px;
  font-style: normal; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 500;
  font-family: var(--sans);
}

/* =========================================================
   AUDIENCE / BUILT FOR
   ========================================================= */
.audience { padding: clamp(80px, 10vw, 130px) 0; }
.audience-header {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 800px) { .audience-header { grid-template-columns: 1fr 1fr; align-items: end; } }
.audience-header p { font-size: 17px; line-height: 1.6; max-width: 480px; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .audience-grid { grid-template-columns: repeat(4, 1fr); } }

.aud-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px 24px;
  text-align: left;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}
.aud-card:hover { background: var(--mustard); border-color: var(--gold-d); }
.aud-card-cta {
  background: var(--paper-2);
  border-style: dashed;
  display: block;
  cursor: pointer;
}
.aud-card-cta:hover { background: var(--gold); border-color: var(--gold-d); border-style: solid; }
.aud-card-cta:hover h4 { color: var(--ink); }
.aud-icon {
  width: 26px; height: 26px;
  margin-bottom: 12px;
  color: var(--primary);
}
.aud-card h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  line-height: 1.25;
}
.aud-card p {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* =========================================================
   IMPLEMENTATION
   ========================================================= */
.implementation {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impl-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 900px) { .impl-grid { grid-template-columns: 0.9fr 1.1fr; } }

.impl-intro h2 { margin-bottom: 22px; }
.impl-intro p { font-size: 16.5px; line-height: 1.6; }

.impl-steps { list-style: none; }
.impl-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.impl-step:first-child { padding-top: 0; }
.impl-step:last-child { border-bottom: none; padding-bottom: 0; }
.impl-step-num {
  width: 44px; height: 44px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.impl-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.005em;
}
.impl-step p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

.impl-credential {
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 14px;
}
.impl-credential-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}
.impl-credential-text { font-size: 12.5px; line-height: 1.45; color: var(--ink-soft); }
.impl-credential-text strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   AUTHORS
   ========================================================= */
.authors { padding: clamp(80px, 10vw, 130px) 0; }
.authors-header { max-width: 720px; margin-bottom: 48px; }
.authors-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 800px) { .authors-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.author {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: start;
}
.author-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 36px; font-weight: 500;
  color: var(--paper); font-style: italic;
  position: relative; flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.author-avatar::after {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}
.author h3 { font-size: 22px; font-weight: 600; font-family: var(--serif); margin-bottom: 4px; color: var(--ink); }
.author .creds {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 14px;
}
.author p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header h2 { max-width: 780px; margin: 0 auto; }

.review-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 26px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-quote {
  font-family: var(--serif);
  font-size: 19px; line-height: 1.32;
  font-weight: 500; color: var(--ink);
  margin-bottom: 14px;
}
.review-body {
  font-size: 13.5px; line-height: 1.6;
  color: var(--ink-soft); margin-bottom: 22px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mustard);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px; font-weight: 600;
  color: var(--ink); flex-shrink: 0;
}
.review-meta .name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.review-meta .role { font-size: 11px; color: var(--sage); letter-spacing: 0.04em; margin-top: 1px; }

/* =========================================================
   FINAL CTA + FORM
   ========================================================= */
.final-cta {
  background: var(--ink); color: var(--paper);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(241,208,37,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute; bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(125,162,162,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .final-cta-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.final-cta h2 {
  color: var(--paper);
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 22px;
}
.final-cta h2 .gold { color: var(--gold); font-style: italic; }
.final-cta p {
  font-size: 16.5px; line-height: 1.55;
  color: rgba(245,245,245,0.78);
  max-width: 540px; margin-bottom: 28px;
}
.final-cta-pillars {
  list-style: none;
  margin-top: 32px;
  display: grid; gap: 12px;
}
.final-cta-pillars li {
  display: flex; gap: 12px; align-items: start;
  font-size: 14px;
  color: rgba(245,245,245,0.85);
}
.final-cta-pillars .marker {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  color: var(--gold);
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
}
.contact-form .form-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-form .form-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 200ms ease, background 200ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--paper);
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.contact-form .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 14px;
  margin-top: 8px;
}
.contact-form .reassure {
  margin-top: 12px;
  font-size: 11.5px;
  text-align: center;
  color: var(--sage);
  letter-spacing: 0.04em;
}

.contact-direct {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.contact-direct a { color: var(--primary); font-weight: 500; }
.contact-direct a:hover { text-decoration: underline; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(80px, 10vw, 130px) 0; }
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 64px);
}
@media (min-width: 800px) { .faq-grid { grid-template-columns: 1fr 1.6fr; } }
.faq h2 { margin-bottom: 16px; }

.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--primary); }
.faq-q .icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}
.faq-a p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; align-items: center;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1fr auto 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px; text-align: center;
}
.footer-meta {
  text-align: right;
  font-size: 12px;
  color: var(--sage); letter-spacing: 0.04em;
}
@media (max-width: 700px) { .footer-meta { text-align: left; } }
.footer-bar {
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid var(--line-2);
  font-size: 11px; color: var(--sage);
  letter-spacing: 0.06em; text-align: center;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transform: translateY(120%);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--paper);
}
.sticky-cta .btn-gold { padding: 9px 16px; font-size: 12px; }
@media (max-width: 700px) { .sticky-cta { display: flex; } }

/* =========================================================
   ANIMATION
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.in { opacity: 1; transform: translateY(0); }

.hero .stagger > * {
  opacity: 0; transform: translateY(16px);
  animation: heroIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero .stagger > *:nth-child(1) { animation-delay: 80ms; }
.hero .stagger > *:nth-child(2) { animation-delay: 200ms; }
.hero .stagger > *:nth-child(3) { animation-delay: 340ms; }
.hero .stagger > *:nth-child(4) { animation-delay: 480ms; }
.hero .stagger > *:nth-child(5) { animation-delay: 620ms; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.book-stage { animation: bookIn 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 200ms both; }
@keyframes bookIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
