/* ============================================
   LIVING PROOF PROTOCOLS — SHARED STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream:    #faf7f2;
  --cream-dk: #f0ece3;
  --ink:      #1c1b18;
  --ink-mid:  #4a4840;
  --ink-lt:   #8a8780;
  --green:    #2d6a4f;
  --green-md: #1b4332;
  --green-lt: #d8f3dc;
  --gold:     #c9a84c;
  --gold-lt:  #faf0d7;
  --rust:     #b5431a;
  --rust-lt:  #faeae4;
  --white:    #ffffff;
  --border:   rgba(28,27,24,0.1);
  --radius:   10px;
  --max-w:    760px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
  --shadow:   0 2px 20px rgba(28,27,24,0.07);
  --shadow-lg:0 8px 40px rgba(28,27,24,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 3.5rem 0; }

/* ---- NAV ---- */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1100px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--green);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-pill:hover { background: var(--green-md) !important; transform: translateY(-1px); }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: block;
}
h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
h1 em, .h1 em { font-style: italic; color: var(--green); }
h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
h2 em { font-style: italic; color: var(--green); }
h3, .h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
p {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 0.85rem;
  line-height: 1.8;
}
p:last-child { margin-bottom: 0; }
p.lead {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
}
.text-faint { color: var(--ink-lt); }
.text-green { color: var(--green); }

/* ---- DIVIDERS ---- */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.ornament {
  text-align: center;
  color: var(--ink-lt);
  font-size: 18px;
  letter-spacing: 0.5em;
  margin: 2.5rem 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-full { display: block; width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.btn-primary:hover { background: var(--green-md); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.35); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green-lt); }

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--cream-dk); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: #b8912d; transform: translateY(-2px); }

.cta-subtext {
  display: block;
  font-size: 11px;
  color: var(--ink-lt);
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.badge-green { background: var(--green-lt); color: var(--green-md); }
.badge-gold  { background: var(--gold-lt);  color: #7a5c1a; }
.badge-rust  { background: var(--rust-lt);  color: var(--rust); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.card:last-child { margin-bottom: 0; }

/* ---- TESTIMONIAL ---- */
.testimonial {
  border-left: 3px solid var(--gold);
  background: var(--gold-lt);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-lt);
  font-style: normal;
}

/* ---- FEATURE LIST ---- */
.feature-list {
  list-style: none;
  margin: 1rem 0;
}
.feature-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.feature-list li strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.15rem;
  letter-spacing: 0.01em;
}

/* ---- PRICE ---- */
.price-display {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-note {
  font-size: 12px;
  color: var(--ink-lt);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

/* ---- STATS ROW ---- */
.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-lt);
}

/* ---- STEP / PROCESS ---- */
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-body h3 { margin-bottom: 0.3rem; }

/* ---- COMPARISON TABLE ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 1rem 0;
}
.compare-table th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.compare-table th.col-what { color: var(--ink-lt); background: var(--cream-dk); width: 30%; }
.compare-table th.col-pro  { color: var(--green-md); background: var(--green-lt); }
.compare-table th.col-otc  { color: var(--rust); background: var(--rust-lt); }
.compare-table td {
  padding: 0.6rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-what { color: var(--ink-mid); font-weight: 600; background: var(--cream-dk); }
.compare-table td.col-pro  { color: var(--green-md); background: #f0faf4; }
.compare-table td.col-otc  { color: var(--rust); background: #fdf5f3; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; position: relative; top: -1px; }
.dot-green { background: var(--green); }
.dot-rust  { background: var(--rust); }

/* ---- FULLSCRIPT LINKS ---- */
.fs-box {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--cream-dk);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.6rem;
}
.fs-box:hover { background: #e4dfd5; transform: translateX(2px); }
.fs-box strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.fs-box span { font-size: 12px; color: var(--ink-lt); }

/* ---- HIGHLIGHT BLOCK ---- */
.highlight {
  background: var(--green-lt);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.highlight-gold {
  background: var(--gold-lt);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---- PATH CARDS (Prepare/Repair) ---- */
.path-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.path-card.active-path { border-color: var(--green); }
.path-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.path-tag-green { background: var(--green-lt); color: var(--green-md); }
.path-tag-gold  { background: var(--gold-lt);  color: #7a5c1a; }

/* ---- WBC DATA ROWS ---- */
.wbc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.wbc-row:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.wbc-row:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.wbc-num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--green); min-width: 65px; }
.wbc-date { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-lt); min-width: 110px; }
.wbc-note { font-size: 13px; color: var(--ink-mid); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  margin-top: 4rem;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
}
.site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.55s ease 0.05s both; }
.anim-2 { animation: fadeUp 0.55s ease 0.15s both; }
.anim-3 { animation: fadeUp 0.55s ease 0.25s both; }
.anim-4 { animation: fadeUp 0.55s ease 0.35s both; }

/* ---- PATH CHOOSER (decision-first) ---- */
.path-chooser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.path-choice {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.path-choice::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.path-choice:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.path-choice:hover::before { transform: scaleX(1); }
.path-choice .path-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.path-choice h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.path-choice h3 em { font-style: italic; color: var(--green); }
.path-choice p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.path-choice .path-arrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.path-choice .path-arrow::after {
  content: '→';
  transition: transform 0.2s;
}
.path-choice:hover .path-arrow::after { transform: translateX(4px); }

/* ---- LIBRARY GRID (compressed product list) ---- */
.lib-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.lib-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}
.lib-item:hover { border-color: var(--green); transform: translateY(-2px); }
.lib-item .lib-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-bottom: 0.4rem;
}
.lib-item h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.lib-item p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex: 1;
}
.lib-item .lib-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
}

@media (max-width: 768px) {
  .path-chooser { grid-template-columns: 1fr; }
  .lib-grid { grid-template-columns: 1fr; }
}


.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 110;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--ink);
  height: 2px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle-label span { top: 10px; }
.nav-toggle-label span::before { content: ''; top: -8px; }
.nav-toggle-label span::after  { content: ''; top: 8px; }
.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before { top: 0; transform: rotate(45deg); }
.nav-toggle:checked + .nav-toggle-label span::after  { top: 0; transform: rotate(-45deg); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trust-strip .trust-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block;
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1rem;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(28,27,24,0.08);
}
.sticky-cta a {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(45,106,79,0.35);
}

/* ---- SURGERY APP CTA BANNER (compact) ---- */
.app-cta-strip {
  background: linear-gradient(135deg, var(--green-md), var(--green));
  color: var(--white);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  box-shadow: 0 6px 24px rgba(27,67,50,0.25);
}
.app-cta-strip .app-cta-text { flex: 1; min-width: 220px; }
.app-cta-strip strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
}
.app-cta-strip span.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 0.35rem;
}
.app-cta-strip p { color: rgba(255,255,255,0.85); font-size: 13px; margin: 0; line-height: 1.5; }
.app-cta-strip a.btn {
  background: var(--gold);
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.app-cta-strip a.btn:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ---- PROFILE / AUTHOR BLOCK ---- */
.author-block {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.author-block img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-lt);
  flex-shrink: 0;
}
.author-block .author-text { flex: 1; min-width: 200px; }
.author-block h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.author-block p {
  font-size: 13px;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.6;
}
.author-block .author-cred {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-top: 0.4rem;
}

/* ---- NEWSLETTER FORM ---- */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.newsletter h2 { color: var(--white); }
.newsletter h2 em { color: var(--gold); }
.newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.newsletter form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.95rem 1.1rem;
  font-family: var(--sans);
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.newsletter input[type="email"]:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.newsletter button {
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.newsletter button:hover { background: var(--gold-lt); transform: translateY(-1px); }
.newsletter .form-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 0.85rem; }

/* ---- THANKS PAGE ---- */
.thanks-hero {
  text-align: center;
  padding: 5rem 0 3rem;
}
.thanks-hero .checkmark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-lt);
  color: var(--green-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(28,27,24,0.08);
    padding: 0.5rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-links { max-height: 480px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  section { padding: 2.5rem 0; }
  .stats-row { gap: 0.75rem; }
  .card, .path-card { padding: 1.25rem; }
  .testimonial { padding: 1.25rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; font-size: 12px; }
  .price-display { font-size: 34px; }
  .app-cta-strip { padding: 1.25rem; }
  .author-block { padding: 1.25rem; gap: 1rem; }
  .author-block img { width: 88px; height: 88px; }
}
