/* Self OS member area. The same design system as mosaicselfos.com ("Gilded Minimal"):
   cream paper, ink text, one gold, Cormorant Garamond headings, Plus Jakarta Sans body,
   Montserrat eyebrows. Fonts are self-hosted so the app makes no third-party requests. */

@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('/static/fonts/cormorant-garamond-latin-600-italic.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('/static/fonts/plus-jakarta-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('/static/fonts/plus-jakarta-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/plus-jakarta-sans-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Plus Jakarta Sans'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/plus-jakarta-sans-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('/static/fonts/montserrat-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('/static/fonts/montserrat-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('/static/fonts/montserrat-latin-800-normal.woff2') format('woff2'); }

:root {
  --ink: #121214;
  --ink2: #1C1C20;
  --ink3: #26262B;
  --cream: #F8F5EE;
  --paper: #FBF8F2;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --goldtext: #7E6012;
  --goldlt: #F3E9CC;
  --goldhi: #FFF3B8;
  --line: #E4DDCB;
  --muted: #57575F;
  --darktext: #F3EEE3;
  --darkmuted: #BDB6A8;
  --darkline: #3A352A;
  --rose: #F7ECE8;
  --rosetext: #7A2E2A;
  --indigo: #23315E;
  --indigolt: #E6E9F3;
  --sage: #E7EDE6;
  --sagetext: #3F5A45;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(18, 18, 20, 0.05), 0 14px 34px rgba(18, 18, 20, 0.07);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-wide: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  /* Names the templates still use from the first build; they now point at the site palette. */
  --navy: var(--ink);
  --navy-deep: var(--ink);
  --purple: var(--goldtext);
  --lavender-tint: var(--indigolt);
  --mint: var(--sagetext);
  --mint-tint: var(--sage);
  --gold-tint: var(--goldlt);
  --rose-tint: var(--rose);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-body); font-size: 17px; line-height: 1.66; }
a { color: var(--goldtext); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); letter-spacing: -0.018em; margin: 0 0 0.45em; text-wrap: balance; }
h1 { font-size: 3rem; font-weight: 400; line-height: 1.03; }
h2 { font-size: 2.1rem; font-weight: 400; line-height: 1.08; margin-top: 1.3em; }
h3 { font-size: 1.5rem; font-weight: 500; line-height: 1.16; margin-top: 1.1em; }
h4 { font-size: 1.2rem; font-weight: 500; line-height: 1.2; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--goldtext); }
p { margin: 0 0 1em; text-wrap: pretty; }
.eyebrow { display: flex; align-items: center; gap: 14px; font-family: var(--font-wide); font-size: 0.69rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 0 0 0.9em; }
.eyebrow::before { content: ""; display: block; width: 26px; height: 1px; background: var(--goldtext); flex: none; }
.card .eyebrow { margin-bottom: 0.7em; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.lede { font-size: 1.15rem; line-height: 1.6; }
.tm { font-size: 0.6em; vertical-align: super; }
strong { font-weight: 600; }

/* Layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.scope-bar { background: var(--ink); color: var(--darktext); font-size: 0.8rem; line-height: 1.45; text-align: center; padding: 9px 20px; }
.scope-bar strong { color: #D9B64A; font-weight: 700; }
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand img.lockup { height: 52px; width: auto; display: block; }
.brand .tag { font-family: var(--font-wide); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; padding-left: 14px; border-left: 1px solid var(--line); line-height: 1.35; white-space: nowrap; }
@media (max-width: 560px) { .brand img.lockup { height: 40px; } .brand .tag { display: none; } }
nav.main { display: flex; flex-wrap: wrap; gap: 2px 4px; align-items: center; }
nav.main a { text-decoration: none; padding: 8px 4px; margin: 0 6px; color: var(--ink); font-weight: 400; font-size: 0.93rem; letter-spacing: 0.012em; white-space: nowrap; box-shadow: inset 0 -2px 0 transparent; }
nav.main a:hover { box-shadow: inset 0 -2px 0 var(--line); }
nav.main a.active { font-weight: 500; box-shadow: inset 0 -2px 0 var(--gold); }
nav.main form { display: inline; }
nav.main button.linklike { background: none; border: 0; color: var(--muted); font: inherit; font-weight: 400; font-size: 0.93rem; letter-spacing: 0.012em; padding: 8px 4px; margin: 0 6px; cursor: pointer; }
nav.main button.linklike:hover { color: var(--ink); }
main { padding: 44px 0 72px; }
.site-footer { background: var(--ink); color: var(--darkmuted); border-top: 3px solid; border-image: linear-gradient(90deg, #8A6A1F 0%, #E9CB6E 30%, #FFF3C4 50%, #D4AF37 70%, #8A6A1F 100%) 1; padding: 44px 0 40px; font-size: 0.9rem; line-height: 1.6; }
.site-footer .scope { font-weight: 500; color: var(--darktext); }
.site-footer .crisis { color: var(--darktext); }
.site-footer .crisis strong { color: #D9B64A; }
.site-footer a { color: var(--darktext); text-decoration: none; }
.site-footer a:hover { color: #D9B64A; }
.site-footer nav a { margin-right: 18px; }
.site-footer .small { font-size: 0.78rem; border-top: 1px solid var(--darkline); padding-top: 18px; margin-top: 22px; }

/* Cards and panels */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); margin-bottom: 20px; }
.card.tint-mint { background: var(--sage); border-color: #D2DCD1; box-shadow: none; }
.card.tint-lavender { background: var(--indigolt); border-color: #D1D7E7; box-shadow: none; }
.card.tint-gold { background: var(--goldlt); border-color: #E6D6A3; box-shadow: none; }
.card.tint-rose { background: var(--rose); border-color: #EAD4CB; box-shadow: none; }
.card.dark { background: var(--ink2); border-color: var(--darkline); color: var(--darktext); }
.card.dark h1, .card.dark h2, .card.dark h3 { color: var(--darktext); }
.card.dark .muted { color: var(--darkmuted); }
.card h2:first-child, .card h3:first-child { margin-top: 0; }
.card > :last-child { margin-bottom: 0; }
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.two > div > .grid.two { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.callout { border-left: 3px solid var(--sagetext); background: var(--sage); padding: 16px 20px; border-radius: 0 6px 6px 0; margin: 18px 0; }
.callout.purple { border-left-color: var(--indigo); background: var(--indigolt); }
.callout.gold { border-left-color: var(--gold); background: var(--goldlt); }
.callout.rose { border-left-color: var(--rosetext); background: var(--rose); }
.scope-line { font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 18px; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 3px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; background: var(--goldlt); color: var(--goldtext); line-height: 1.3; }
.badge.mint { background: var(--sage); color: var(--sagetext); }
.badge.gold { background: var(--goldlt); color: var(--goldtext); }
.badge.rose { background: var(--rose); color: var(--rosetext); }
.badge.purple { background: var(--ink); color: var(--cream); }
.flash { padding: 12px 16px; border-radius: 6px; background: var(--sage); border: 1px solid #D2DCD1; margin-bottom: 18px; font-weight: 500; }
.flash.error { background: var(--rose); border-color: #EAD4CB; color: var(--rosetext); }
.flash.warn { background: var(--goldlt); border-color: #E6D6A3; color: var(--goldtext); }

/* Buttons and forms */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--ink); color: var(--cream); text-decoration: none; padding: 0 26px; border-radius: 4px; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; border: 1px solid var(--ink); cursor: pointer; line-height: 1.2; min-height: 52px; white-space: nowrap; }
.btn:hover { background: var(--ink3); border-color: var(--ink3); color: var(--cream); }
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn.secondary:hover { background: var(--white); color: var(--ink); }
.btn.purple, .btn.gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.purple:hover, .btn.gold:hover { background: #C9A233; border-color: #C9A233; color: var(--ink); }
.btn.mint { background: var(--ink); border-color: var(--ink); }
.btn.small { padding: 0 20px; font-size: 0.84rem; min-height: 44px; }
.btn.block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 16px 0; }
label { display: block; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.01em; margin: 16px 0 6px; color: var(--ink); }
label .help { display: block; font-weight: 400; color: var(--muted); font-size: 0.86rem; margin-top: 2px; letter-spacing: 0; }
input[type=text], input[type=email], input[type=date], input[type=number], input[type=tel], input[type=url], input[type=password], select, textarea { width: 100%; padding: 13px 15px; border: 1px solid #CFC7B3; border-radius: 6px; font: inherit; font-size: 1rem; background: var(--white); color: var(--ink); }
input:hover, select:hover, textarea:hover { border-color: #B8AE96; }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 1rem; letter-spacing: 0; margin: 10px 0; }
.check input { width: 20px; height: 20px; margin-top: 4px; flex: none; accent-color: var(--ink); }
fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px 20px; margin: 18px 0; background: var(--white); }
legend { font-family: var(--font-head); font-size: 1.3rem; font-weight: 500; color: var(--ink); padding: 0 8px; }
.scale { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 8px; margin: 8px 0 4px; }
.scale label { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 6px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); font-size: 0.86rem; font-weight: 500; text-align: center; cursor: pointer; letter-spacing: 0; }
.scale label:has(input:checked) { border-color: var(--ink); background: var(--goldlt); font-weight: 600; }
.scale input { width: 18px; height: 18px; accent-color: var(--ink); }
.qitem { padding: 14px 0; border-bottom: 1px solid var(--line); }
.qitem:last-child { border-bottom: 0; }
.qitem .qtext { font-weight: 600; }

/* Check-in buttons */
.checkin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 14px 0; }
.checkin-btn { border: 1px solid var(--line); background: var(--white); border-radius: 8px; padding: 20px 12px; font: inherit; font-family: var(--font-head); font-weight: 500; font-size: 1.35rem; cursor: pointer; min-height: 92px; color: var(--ink); }
.checkin-btn small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 0.8rem; margin-top: 4px; }
.checkin-btn:hover { border-color: var(--ink); }
.checkin-btn.steady { background: var(--sage); }
.checkin-btn.lock { background: var(--goldlt); }
.checkin-btn.chase { background: var(--indigolt); }
.checkin-btn.blanket { background: var(--paper); }
.checkin-btn.shadow { background: var(--rose); }

/* Tables */
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.93rem; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--paper); font-family: var(--font-wide); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.table-wrap { overflow-x: auto; margin: 12px 0 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }

/* Journey timeline and module lists */
.journey { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.journey li { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; }
.journey .num { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.3rem; font-weight: 500; background: var(--goldlt); color: var(--goldtext); }
.journey li.held .num, .journey li.done .num { background: var(--gold); color: var(--ink); }
.journey li.next .num, .journey li.open .num { background: var(--ink); color: var(--cream); }
.journey li.locked { opacity: 0.72; }
.journey li.coach-led { border-style: dashed; }
.progress-bar { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; margin: 10px 0 4px; }
.progress-bar span { display: block; height: 100%; background: var(--gold); }

/* Session runner */
.runner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 20px; align-items: start; }
.block { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; background: var(--white); }
.block.current { border-color: var(--gold); box-shadow: 0 0 0 3px var(--goldlt); }
.block .time { font-family: var(--font-wide); font-weight: 600; color: var(--goldtext); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.timer { font-family: var(--font-head); font-size: 2.6rem; font-weight: 500; color: var(--ink); }
.sticky { position: sticky; top: 100px; }

/* Map */
.map-svg { width: 100%; height: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.part-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.part-list li { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; }

/* Decoupler */
.step { display: none; }
.step.active { display: block; }
.progress-dots { display: flex; gap: 8px; margin-bottom: 14px; }
.progress-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.progress-dots span.on { background: var(--gold); }

/* Hero and stats */
.hero { padding: 40px 0 24px; }
.hero h1 { font-size: 3.6rem; max-width: 760px; }
.hero .lede { font-size: 1.2rem; max-width: 640px; color: var(--muted); }
.stat { font-family: var(--font-head); font-size: 2.2rem; color: var(--goldtext); font-weight: 500; line-height: 1; }
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.setting { border-radius: 8px; padding: 18px; background: var(--white); border: 1px solid var(--line); }
.setting h3 { margin-top: 0; }

/* Photographs of the Katy suite. Shown as spaces only. */
.photo { display: block; width: 100%; height: auto; object-fit: cover; border-radius: 6px; }
.photo-band { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; margin: 8px 0 34px; }
.photo-band .photo { aspect-ratio: 16 / 10; height: 100%; }
.photo-band.slim { margin: 4px 0 30px; }
.photo-band.slim .photo { aspect-ratio: auto; height: 290px; }
.photo-band figcaption, .photo-side figcaption, .photo-strip figcaption { font-family: var(--font-wide); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.photo-band figure, .photo-side figure, .photo-strip figure { margin: 0; min-width: 0; }
.photo-side { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr); gap: 32px; align-items: stretch; }
.photo-side .photo { height: 100%; min-height: 360px; aspect-ratio: auto; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 8px; }
.photo-strip .photo { aspect-ratio: 1 / 1; }
.photo-strip.top { margin: 4px 0 26px; }
.photo-strip.top .photo { aspect-ratio: 16 / 10; }

@media (max-width: 860px) {
  .photo-side { grid-template-columns: 1fr; }
  .photo-side .photo { min-height: 0; aspect-ratio: 16 / 10; }
  .photo-band { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.6rem; }
  .site-header .wrap { flex-wrap: wrap; padding: 10px 16px; min-height: 0; }
  nav.main { flex-wrap: nowrap; overflow-x: auto; width: 100%; padding: 2px 0 8px; scrollbar-width: none; }
  nav.main::-webkit-scrollbar { display: none; }
  nav.main a, nav.main button.linklike { padding: 8px 2px; margin: 0 7px 0 0; font-size: 0.88rem; flex: none; }
  main { padding: 28px 0 56px; }
  .runner { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .journey li { grid-template-columns: 42px 1fr; }
  .journey li > .btn, .journey li > form { grid-column: 2; justify-self: start; }
  .card { padding: 20px; }
  .wrap { padding: 0 16px; }
  .btn { white-space: normal; text-align: center; }
}
@media print { body { display: none !important; } }

/* The book (The Unheld Self): a printed page on a desk, not a web card ------------------------------ */
:root {
  --bk-paper: #FBF5E8;
  --bk-paper-edge: #EFE6D2;
  --bk-ink: #1E1A16;
  --bk-ink-soft: #4A433B;
  --bk-rule: #D9CDB2;
  --bk-pen: #1F2A44;
  --bk-desk: #2A2521;
  --bk-serif: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
}
.wrap.book-wrap { max-width: 980px; }
.book-desk { background: radial-gradient(ellipse at 50% -10%, #3B342D 0%, var(--bk-desk) 55%, #1E1A17 100%); padding: 40px 40px 48px; border-radius: 6px; }
.book-page { position: relative; margin: 0 auto; max-width: 760px; padding: 52px 72px 44px; background: var(--bk-paper); color: var(--bk-ink);
  background-image: linear-gradient(90deg, rgba(60, 40, 10, 0.10) 0, rgba(60, 40, 10, 0.03) 14px, transparent 34px), radial-gradient(rgba(120, 90, 40, 0.045) 0.6px, transparent 1.1px);
  background-size: auto, 6px 6px;
  box-shadow: 0 1px 0 var(--bk-paper-edge), 0 3px 0 -1px #E7DDC8, 0 5px 0 -2px #DED3BC, 0 18px 40px rgba(0, 0, 0, 0.45);
  font-family: var(--bk-serif); font-size: 1.32rem; line-height: 1.52; font-weight: 500; }
.book-page a { color: var(--goldtext); }
.book-page em { font-style: italic; }
.book-page strong { font-weight: 600; }
.book-page ::selection { background: #F3E4B4; }
/* running head and folio */
.book-running { display: flex; justify-content: space-between; gap: 20px; font-family: var(--bk-serif); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bk-ink-soft); border-bottom: 1px solid var(--bk-rule); padding-bottom: 8px; margin-bottom: 48px; font-weight: 600; }
.book-running span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* the opener */
.book-opener { text-align: center; margin: 0 0 40px; }
.book-kicker { font-family: var(--bk-serif); font-size: 0.9rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; margin: 0 0 14px; }
.book-chapter-title { font-family: var(--bk-serif); font-weight: 500; font-size: 2.85rem; line-height: 1.06; letter-spacing: -0.01em; color: var(--bk-ink); margin: 0 0 10px; text-wrap: balance; }
.book-opener .book-sub { font-family: var(--bk-serif); font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bk-ink-soft); margin: 12px 0 0; font-weight: 600; }
.book-ornament { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.6em; margin: 26px 0 0; }
.book-ornament::before, .book-ornament::after { content: ""; display: inline-block; width: 64px; height: 1px; background: var(--bk-rule); vertical-align: middle; margin: 0 14px; }
/* title page (first section) */
.book-titlepage { text-align: center; margin: 8px 0 54px; padding-bottom: 40px; border-bottom: 1px solid var(--bk-rule); }
.book-brand { font-family: var(--bk-serif); font-size: 0.86rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bk-ink-soft); margin: 0 0 30px; font-weight: 600; }
.book-title { font-family: var(--bk-serif); font-weight: 500; font-size: 4.2rem; line-height: 1; letter-spacing: -0.015em; color: var(--bk-ink); margin: 0 0 18px; }
.book-subtitle { font-family: var(--bk-serif); font-style: italic; font-size: 1.5rem; line-height: 1.3; color: var(--bk-ink-soft); margin: 0 0 34px; }
.book-byline { font-family: var(--bk-serif); font-size: 1.05rem; letter-spacing: 0.06em; color: var(--bk-ink); margin: 0; }
.book-titlepage.left { text-align: left; border-bottom: 0; padding-bottom: 0; margin: 0; }
.book-titlepage.left .book-title { font-size: 3.4rem; }
/* body text: book conventions */
.book-body p { margin: 0; text-indent: 1.7em; text-align: justify; hyphens: auto; -webkit-hyphens: auto; text-wrap: pretty; }
.book-body p.first, .book-body p.lede, .book-body .book-h + p, .book-body .book-quote + p, .book-body .book-vision + p, .book-body .book-aside + p, .book-body .book-epigraph + p, .book-body .book-exercise + p, .book-body .book-xref + p, .book-body .book-note + p { text-indent: 0; }
.book-body p.lede { margin-bottom: 0.25em; }
.book-body p.first::first-letter { float: left; font-family: var(--bk-serif); font-weight: 500; font-size: 4.9em; line-height: 0.78; padding: 0.08em 0.1em 0 0; color: var(--goldtext); }
.book-body p.plain { text-indent: 0; }
.book-body .book-h { font-family: var(--bk-serif); font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bk-ink); font-weight: 600; margin: 2.2em 0 0.7em; }
.book-body .book-note { font-style: italic; color: var(--bk-ink-soft); font-size: 1.12rem; text-indent: 0; margin: 1em 0; }
.book-quote { margin: 1.7em 2.2em; font-style: italic; font-size: 1.36rem; line-height: 1.4; text-align: center; color: var(--bk-ink); }
.book-quote::before { content: "\2726"; display: block; color: var(--gold); font-style: normal; font-size: 0.72rem; letter-spacing: 0.5em; margin-bottom: 10px; }
.book-vision { margin: 1.7em 0; padding: 22px 26px 18px; border: 1px solid var(--bk-rule); border-radius: 2px; background: rgba(255, 252, 244, 0.5); }
.book-vision-k { font-family: var(--bk-serif); font-style: normal; font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; margin: 0 0 10px !important; text-indent: 0 !important; text-align: left !important; }
.book-vision p { font-style: italic; text-indent: 0; margin: 0; text-align: left; hyphens: manual; }
.book-aside { margin: 2em 0; text-align: center; }
.book-aside p { margin: 0 0 0.15em; text-indent: 0; text-align: center; font-style: italic; font-size: 1.28rem; color: var(--bk-ink-soft); }
.book-aside p:last-child { font-style: normal; font-weight: 600; font-size: 1.7rem; margin-top: 0.5em; color: var(--bk-ink); }
.book-epigraph { margin: 0.5em 0 2em; text-align: center; }
.book-epigraph p { margin: 0 0 0.12em; text-indent: 0; text-align: center; font-style: italic; font-size: 1.36rem; line-height: 1.38; color: var(--bk-ink); }
.book-signature { margin: 2em 0 0 !important; text-indent: 0 !important; text-align: right !important; font-style: italic; font-size: 1.12rem; line-height: 1.45; color: var(--bk-ink-soft); }
.book-xref { margin: 2.2em 0 0; padding: 12px 16px; border-top: 1px solid var(--bk-rule); border-bottom: 1px solid var(--bk-rule); font-size: 1.1rem; text-indent: 0 !important; text-align: left !important; color: var(--bk-ink-soft); }
.book-xref a { font-weight: 600; white-space: nowrap; }
/* the writing lines (reflection prompts, exercises, workbook steps) */
.book-exercise { margin: 2.4em 0 0; padding-top: 1.2em; border-top: 1px solid var(--bk-rule); }
.book-exercise + .book-exercise { margin-top: 1.8em; }
.book-exercise-label { font-family: var(--bk-serif); font-size: 0.86rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; margin: 0 0 0.6em !important; text-indent: 0 !important; text-align: left !important; }
.book-exercise.exercise .book-exercise-label { color: var(--bk-ink); }
.book-exercise-text { font-style: italic; text-indent: 0 !important; text-align: left !important; hyphens: manual; margin: 0 0 0.6em !important; }
.book-page .book-field { display: block; font-family: var(--bk-serif); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em; color: var(--bk-ink-soft); margin: 14px 0 0; }
.book-page .book-field .help { display: block; font-weight: 500; font-style: italic; letter-spacing: 0; font-size: 0.98rem; color: var(--bk-ink-soft); }
.book-page .book-field-h { font-family: var(--bk-serif); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; margin: 18px 0 0; text-indent: 0; text-align: left; }
.book-page textarea.book-lines { width: 100%; box-sizing: border-box; border: 0; border-radius: 0; padding: 0 2px; margin: 2px 0 0; resize: vertical; background: transparent; color: var(--bk-pen);
  font-family: var(--bk-serif); font-weight: 500; font-size: 1.28rem; line-height: 2.05rem; min-height: 6.15rem;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent calc(2.05rem - 1px), var(--bk-rule) calc(2.05rem - 1px), var(--bk-rule) 2.05rem); background-attachment: local; }
.book-page textarea.book-lines.tall { min-height: 10.25rem; }
.book-page textarea.book-lines:focus { outline: none; box-shadow: 0 2px 0 var(--goldtext); }
.book-keep { display: inline-block; margin-top: 12px; padding: 8px 18px; border: 1px solid var(--bk-ink); border-radius: 2px; background: transparent; color: var(--bk-ink); font-family: var(--bk-serif); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; }
.book-keep:hover { background: var(--bk-ink); color: var(--bk-paper); }
.book-written { margin: 0.8em 0 0.4em; padding: 0 0 0 16px; border-left: 2px solid var(--gold); }
.book-written-when { font-family: var(--bk-serif); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bk-ink-soft); font-weight: 600; margin: 0 0 4px !important; text-indent: 0 !important; text-align: left !important; }
.book-written-text { white-space: pre-line; color: var(--bk-pen); text-indent: 0 !important; text-align: left !important; hyphens: manual; font-size: 1.24rem; margin: 0 !important; }
.book-again summary { cursor: pointer; font-family: var(--bk-serif); font-style: italic; color: var(--goldtext); font-size: 1.05rem; margin: 6px 0 2px; }
.book-paused { font-style: italic; color: var(--bk-ink-soft); text-indent: 0 !important; }
/* turning the page */
.book-foot { margin-top: 56px; padding-top: 14px; border-top: 1px solid var(--bk-rule); }
.book-turn { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: start; font-family: var(--bk-serif); }
.book-turn a { text-decoration: none; color: var(--bk-ink); font-size: 1.05rem; line-height: 1.3; }
.book-turn a:hover { color: var(--goldtext); }
.book-turn-k { display: block; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bk-ink-soft); font-weight: 600; margin-bottom: 2px; }
.book-turn-next { text-align: right; }
.book-folio { font-size: 0.86rem !important; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bk-ink-soft) !important; font-weight: 600; padding-top: 3px; white-space: nowrap; }
/* the contents page */
.book-cover-row { display: grid; grid-template-columns: 190px 1fr; gap: 36px; align-items: start; margin-bottom: 44px; }
.book-cover { margin: 0; }
.book-cover img { width: 100%; height: auto; display: block; box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28); border-radius: 2px; }
.book-cover-row .book-note { font-size: 1.08rem; margin-top: 22px; font-style: italic; color: var(--bk-ink-soft); }
.book-contents-h { font-family: var(--bk-serif); font-weight: 500; font-size: 2.2rem; text-align: center; letter-spacing: 0.02em; margin: 0 0 30px; color: var(--bk-ink); }
.book-toc-part { margin: 0 0 30px; }
.book-toc-partname { font-family: var(--bk-serif); font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goldtext); font-weight: 600; margin: 0 0 4px; }
.book-toc-q { font-style: italic; color: var(--bk-ink-soft); font-size: 1.14rem; margin: 0 0 12px; }
.book-toc { list-style: none; margin: 0; padding: 0; }
.book-toc li a { display: grid; grid-template-columns: 8.5em 1fr auto; gap: 12px; align-items: baseline; padding: 7px 0; text-decoration: none; color: var(--bk-ink); border-bottom: 1px dotted var(--bk-rule); }
.book-toc li a:hover .book-toc-title { color: var(--goldtext); }
.book-toc-label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bk-ink-soft); font-weight: 600; }
.book-toc-title { font-size: 1.24rem; }
.book-toc-title small { display: block; font-size: 0.98rem; font-style: italic; color: var(--bk-ink-soft); }
.book-toc-mark { font-size: 0.86rem; color: var(--bk-ink-soft); letter-spacing: 0.1em; white-space: nowrap; }
.book-toc li.done .book-toc-mark { color: var(--goldtext); font-weight: 600; }
.book-page .flash { font-family: var(--font-body); font-size: 0.95rem; }
@media (max-width: 720px) {
  .book-desk { padding: 0; margin: 0 -16px; border-radius: 0; background: var(--bk-desk); }
  .book-page { padding: 26px 22px 30px; font-size: 1.2rem; line-height: 1.5; box-shadow: none; max-width: none; }
  .book-running { margin-bottom: 30px; font-size: 0.72rem; }
  .book-chapter-title { font-size: 2.2rem; }
  .book-title { font-size: 3rem; }
  .book-titlepage.left .book-title { font-size: 2.6rem; }
  .book-body p { text-align: left; hyphens: manual; }
  .book-body p.first::first-letter { font-size: 4em; }
  .book-quote { margin: 1.5em 0.6em; font-size: 1.24rem; }
  .book-ornament::before, .book-ornament::after { width: 34px; }
  .book-turn { grid-template-columns: 1fr 1fr; }
  .book-folio { grid-column: 1 / -1; order: 3; text-align: center; padding-top: 12px; }
  .book-cover-row { grid-template-columns: 1fr; }
  .book-cover { max-width: 180px; }
  .book-toc li a { grid-template-columns: 1fr auto; }
  .book-toc-label { grid-column: 1 / -1; }
.journey li.done .num { background: var(--gold); color: var(--ink); }

/* The store (/buy): the book first, then the self-guided products, the coaching programs and the add-on -------- */
.store-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 28px; align-items: end; margin-bottom: 14px; }
.store-head h1 { margin-bottom: 0.3em; font-size: 2.7rem; }
.store-head .lede { margin: 0; font-size: 1.05rem; }
.store-path { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.store-path a { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; padding: 8px 12px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.store-path a:hover { transform: translateX(3px); border-color: var(--gold); box-shadow: var(--shadow); }
.store-path .num { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--goldlt); color: var(--goldtext); font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; }
.store-path strong { display: block; font-size: 0.93rem; line-height: 1.2; }
.store-path small { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }
.store-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 18px; position: sticky; top: 84px; z-index: 5; background: var(--cream); padding: 8px 0; }
.chip { font: inherit; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.store-section { margin: 0 0 26px; scroll-margin-top: 150px; }
.store-section[hidden] { display: none; }
.section-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 0 0 12px; }
.section-head h2 { margin: 0; font-size: 1.75rem; }
.section-head p { margin: 0; font-size: 0.92rem; max-width: 720px; }
.feature { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 26px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px 20px 22px; box-shadow: var(--shadow); }
.feature-cover img { display: block; width: 100%; height: auto; border-radius: 5px; box-shadow: 0 12px 26px rgba(18, 18, 20, 0.2); transform: rotate(-1.5deg); transition: transform 0.25s ease; }
.feature:hover .feature-cover img { transform: rotate(0deg) scale(1.02); }
.feature h2 { margin: 0 0 4px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; font-size: 2rem; }
.feature-body > p { margin: 0 0 4px; }
.price { font-family: var(--font-head); color: var(--goldtext); font-weight: 500; }
.feature h2 .price { font-size: 1.5rem; }
.ticks { list-style: none; margin: 6px 0 10px; padding: 0; display: grid; gap: 4px; }
.ticks li { padding-left: 22px; position: relative; font-size: 0.9rem; line-height: 1.45; }
.ticks li::before { content: ""; position: absolute; left: 1px; top: 0.45em; width: 11px; height: 6px; border-left: 2px solid var(--goldtext); border-bottom: 2px solid var(--goldtext); transform: rotate(-45deg); }
.pgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.pgrid.four { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pcard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px 18px; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D9CFB4; }
.pcard.lift { background: var(--goldlt); border-color: #E6D6A3; }
.pcard header { display: flex; justify-content: space-between; align-items: center; gap: 8px; min-height: 26px; }
.pcard header .badge { white-space: nowrap; flex: none; }
.pcard header .eyebrow::before { width: 16px; }
.pcard header .eyebrow { gap: 10px; }
.pcard header .eyebrow { margin: 0; }
.pcard h3 { margin: 8px 0 2px; font-size: 1.32rem; }
.pcard .price { font-size: 1.45rem; margin: 0 0 6px; line-height: 1.15; }
.pcard .price small, .band .price small { font-family: var(--font-body); font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.pcard > .small { margin: 0 0 4px; }
.pcard .ticks { margin: 2px 0 12px; }
.pcard .btn { margin-top: auto; align-self: flex-start; }
.rowgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; margin-top: 12px; }
.rowcard { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 12px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; text-decoration: none; color: var(--ink); transition: border-color 0.15s, transform 0.15s; }
.rowcard:hover { border-color: var(--ink); transform: translateY(-2px); }
.rowcard strong { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; line-height: 1.2; }
.rowcard span.small { color: var(--muted); display: block; margin-top: 2px; }
.rowcard .price { font-size: 1.35rem; white-space: nowrap; text-align: right; line-height: 1.1; }
.rowcard .price small { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--muted); font-weight: 500; margin-top: 3px; }
.band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; background: var(--indigolt); border: 1px solid #D1D7E7; border-radius: 12px; padding: 18px 24px; }
.band h3 { margin: 0 0 2px; font-size: 1.4rem; }
.band .ticks { margin-bottom: 0; }
.band-side { text-align: right; }
.band .price { font-size: 1.6rem; margin: 0 0 8px; }
.store-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 10px; background: var(--goldlt); border: 1px solid #E6D6A3; margin: 0 0 18px; font-weight: 500; }
@media (max-width: 860px) {
  .store-head { grid-template-columns: 1fr; gap: 18px; }
  .store-filters { position: static; }
  .feature { grid-template-columns: 130px minmax(0, 1fr); gap: 16px; padding: 16px; }
  .band { grid-template-columns: 1fr; }
  .band-side { text-align: left; }
}
@media (max-width: 480px) {
  .feature { grid-template-columns: 1fr; }
  .feature-cover { max-width: 150px; }
  .rowcard { grid-template-columns: 1fr; }
  .rowcard .price { text-align: left; }
}

.band.gift-band { background: var(--goldlt); border-color: #E6D6A3; }
.gift-form .gift-opt { padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; margin: 8px 0; background: var(--paper); }
.gift-form .gift-opt:has(input:checked) { border-color: var(--ink); background: var(--white); }
.gift-form [hidden] { display: none !important; }

/* Public pages, redesigned September 27, 2026: the landing page ------------------------------------------------ */
.lp-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 40px; align-items: center; padding: 18px 0 30px; }
.lp-hero h1 { font-size: 3.4rem; margin-bottom: 0.35em; }
.lp-hero .lede { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.lp-hero .btn-row { margin: 22px 0 10px; }
.lp-scope { margin: 0; max-width: 560px; }
.lp-hero-art { position: relative; height: 470px; }
.lp-art-main { position: absolute; right: 0; top: 0; width: 78%; height: 380px; object-fit: cover; border-radius: 14px; box-shadow: 0 24px 50px rgba(18, 18, 20, 0.22); }
.lp-art-small { position: absolute; left: 0; bottom: 54px; width: 44%; height: 230px; object-fit: cover; border-radius: 12px; border: 6px solid var(--cream); box-shadow: 0 16px 34px rgba(18, 18, 20, 0.2); }
.lp-glance { position: absolute; right: 18px; bottom: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 18px; background: var(--ink); color: var(--cream); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); }
.lp-glance div { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: baseline; }
.lp-glance strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 500; color: var(--gold); line-height: 1; }
.lp-glance span { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--darkmuted); line-height: 1.2; }
.lp-section { margin: 34px 0 0; padding-top: 30px; border-top: 1px solid var(--line); }
.lp-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 24px; align-items: end; margin-bottom: 18px; }
.lp-head h2 { margin: 0; font-size: 2.1rem; }
.lp-head p { margin: 0; font-size: 1rem; }
.lp-note { margin-top: 14px; }
.lp-settings { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.lp-setting { position: relative; display: block; padding: 20px 18px 40px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); text-decoration: none; color: var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease; overflow: hidden; }
.lp-setting:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lp-setting.lock { background: var(--goldlt); border-color: #E6D6A3; }
.lp-setting.chase { background: var(--indigolt); border-color: #D1D7E7; }
.lp-setting.blanket { background: var(--sage); border-color: #D2DCD1; }
.lp-setting.shadow { background: var(--rose); border-color: #EAD4CB; }
.lp-setting h3 { margin: 6px 0 4px; font-size: 1.5rem; }
.lp-setting p { margin: 0; }
.lp-setting-n { font-family: var(--font-head); font-size: 3.2rem; line-height: 1; color: rgba(18, 18, 20, 0.16); position: absolute; right: 14px; top: 8px; }
.lp-setting-go { position: absolute; left: 18px; bottom: 14px; font-family: var(--font-wide); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--goldtext); }
.lp-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 32px; align-items: start; }
.lp-split h2 { font-size: 2.1rem; margin-top: 0; }
.lp-more { margin-top: 6px; }
.lp-more summary { cursor: pointer; font-weight: 600; color: var(--goldtext); list-style: none; }
.lp-more summary::before { content: "+ "; }
.lp-more[open] summary::before { content: "\2212 "; }
.lp-more p { margin-top: 10px; }
.lp-stance { margin: 0; padding: 26px 28px; background: var(--ink); color: var(--darktext); border-radius: 14px; }
.lp-stance .eyebrow { color: var(--gold); }
.lp-stance .eyebrow::before { background: var(--gold); }
.lp-stance p { font-family: var(--font-head); font-size: 1.35rem; line-height: 1.4; margin: 0 0 12px; }
.lp-stance cite { font-style: normal; font-size: 0.85rem; color: var(--darkmuted); }
.lp-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.lp-pillar { padding: 20px 22px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); }
.lp-pillar.guide { background: var(--paper); }
.lp-pillar-n { font-family: var(--font-wide); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--goldtext); font-weight: 600; }
.lp-pillar h3 { margin: 6px 0 6px; font-size: 1.35rem; }
.lp-pillar p { margin: 0; }
.lp-doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.lp-door { padding: 20px 22px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); }
.lp-door h3 { margin: 4px 0 6px; font-size: 1.35rem; }
.lp-door p { margin: 0 0 4px; }
.lp-arc { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; counter-reset: arc; }
.lp-arc li { display: grid; grid-template-columns: 36px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 14px 16px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.lp-arc .num { grid-row: 1 / 3; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--goldlt); color: var(--goldtext); font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.lp-arc strong { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; line-height: 1.2; }
.lp-arc .small { display: block; margin-top: 4px; line-height: 1.4; }
.lp-fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.lp-fit-col { padding: 22px 24px; border-radius: 12px; }
.lp-fit-col.yes { background: var(--sage); border: 1px solid #D2DCD1; }
.lp-fit-col.no { background: var(--rose); border: 1px solid #EAD4CB; }
.lp-fit-col h2 { margin: 0 0 8px; font-size: 1.6rem; }
.lp-fit .ticks li, .crosses li { font-size: 0.95rem; }
.crosses { list-style: none; margin: 6px 0 10px; padding: 0; display: grid; gap: 5px; }
.crosses li { padding-left: 22px; position: relative; line-height: 1.45; }
.crosses li::before, .crosses li::after { content: ""; position: absolute; left: 4px; top: 0.7em; width: 12px; height: 2px; background: var(--rosetext); transform: rotate(45deg); }
.crosses li::after { transform: rotate(-45deg); }
.lp-figure { margin: 0; }
.lp-figure .photo { aspect-ratio: 1 / 1; border-radius: 14px; }
.lp-figure figcaption { font-family: var(--font-wide); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.lp-faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 10px; }
.lp-faq details { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.lp-faq summary { cursor: pointer; font-weight: 600; font-size: 0.98rem; }
.lp-faq p { margin: 10px 0 0; font-size: 0.95rem; }
.lp-cta { margin: 34px 0 0; padding: 30px; border-radius: 16px; background: var(--ink); color: var(--darktext); display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr); gap: 30px; align-items: center; }
.lp-cta h2 { color: var(--darktext); margin: 0 0 10px; }
.lp-cta .eyebrow { color: var(--gold); }
.lp-cta .eyebrow::before { background: var(--gold); }
.lp-cta .muted { color: var(--darkmuted); }
.lp-ladder { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.lp-rung { display: flex; flex-direction: column; gap: 4px; padding: 14px 14px 16px; border-radius: 10px; background: var(--ink2); border: 1px solid var(--darkline); color: var(--darktext); text-decoration: none; transition: transform 0.15s ease, border-color 0.15s ease; }
.lp-rung:hover { transform: translateY(-3px); border-color: var(--gold); }
.lp-rung.gold { background: var(--goldlt); color: var(--ink); border-color: #E6D6A3; }
.lp-rung.gold .small { color: var(--muted); }
.lp-rung-price { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.lp-rung.gold .lp-rung-price { color: var(--goldtext); }
.lp-rung-price small { font-family: var(--font-body); font-size: 0.72rem; color: inherit; }
.lp-rung strong { font-size: 0.95rem; }
.lp-rung .small { color: var(--darkmuted); font-size: 0.8rem; line-height: 1.35; }
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; gap: 24px; }
  .lp-hero-art { height: 420px; }
  .lp-art-main { height: 330px; }
  .lp-art-small { height: 190px; }
  .lp-head, .lp-split, .lp-cta { grid-template-columns: 1fr; }
  .lp-cta { padding: 22px; }
}
@media (max-width: 560px) {
  .lp-hero h1 { font-size: 2.4rem; }
  .lp-hero-art { height: auto; }
  .lp-art-small { width: 46%; bottom: 40px; }
  .lp-glance { position: static; margin-top: 14px; grid-template-columns: repeat(2, 1fr); }
  .lp-hero-art { display: flex; flex-direction: column; }
  .lp-art-main, .lp-art-small { position: static; width: 100%; height: 240px; }
  .lp-art-small { display: none; }
}

/* Public pages: how it works, scope, the Snapshot, enrollment ------------------------------------------------- */
.pg-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 34px; align-items: center; padding: 10px 0 8px; }
.pg-hero.slim { align-items: start; }
.pg-hero h1 { font-size: 3rem; margin-bottom: 0.3em; }
.pg-hero .lede { margin: 0 0 6px; max-width: 600px; }
.pg-hero-photo { margin: 0; }
.pg-hero-photo .photo { aspect-ratio: 4 / 3.2; border-radius: 14px; box-shadow: var(--shadow); }
.pg-hero-photo figcaption { font-family: var(--font-wide); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.hw-movements { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; }
.hw-move { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; }
.hw-move .num { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--goldlt); color: var(--goldtext); font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; }
.hw-sessions { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 10px; }
.hw-sessions li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 18px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); }
.hw-sessions li.coach-led { border-style: dashed; background: var(--paper); }
.hw-sessions .hw-n { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--goldlt); color: var(--goldtext); font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.hw-sessions .eyebrow { margin: 0 0 4px; }
.hw-sessions h3 { margin: 0 0 4px; font-size: 1.3rem; }
.hw-sessions p { margin: 0 0 6px; }
.hw-between { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.hw-tile { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); }
.hw-tile strong { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; }
.hw-modules { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.hw-module { position: relative; padding: 18px 18px 16px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.hw-module:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hw-module-n { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.hw-module h3 { margin: 6px 0 4px; font-size: 1.2rem; }
.hw-module p { margin: 0; }
.hw-terms { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; margin: 0; }
.hw-terms > div { padding: 14px 18px; border-radius: 10px; background: var(--white); border: 1px solid var(--line); }
.hw-terms dt { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.hw-terms dd { margin: 4px 0 0; }
.sc-crisis { background: var(--rose); border: 1px solid #EAD4CB; border-radius: 14px; padding: 18px 22px; }
.sc-crisis .eyebrow { color: var(--rosetext); }
.sc-crisis .eyebrow::before { background: var(--rosetext); }
.sc-crisis ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sc-crisis li { display: grid; gap: 2px; font-size: 0.95rem; }
.sc-crisis li span { color: var(--muted); font-size: 0.9rem; }
.sc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; margin-top: 26px; }
.sc-card { padding: 22px 24px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); margin: 0; }
.sc-card.doors { background: var(--indigolt); border-color: #D1D7E7; }
.sc-card h2 { margin: 6px 0 8px; font-size: 1.5rem; }
.sc-card p { margin: 0; font-size: 0.97rem; }
.sn-legend { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.sn-legend .lp-setting { padding: 14px 14px 12px; pointer-events: none; }
.sn-legend h3 { font-size: 1.15rem; margin: 0 0 2px; }
.sn-legend p { margin: 0; font-size: 0.82rem; }
.sn-form { margin-top: 24px; }
.sn-progress { height: 4px; border-radius: 2px; background: var(--line); margin-bottom: 14px; overflow: hidden; }
.sn-progress span { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.25s ease; }
.sn-q { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin-bottom: 10px; transition: border-color 0.15s; }
.sn-q:has(input:checked) { border-color: #D9CFB4; }
.sn-q .qtext { display: flex; align-items: baseline; gap: 10px; margin: 0 0 8px; }
.sn-n { font-family: var(--font-head); color: var(--goldtext); font-size: 1.25rem; font-weight: 600; }
.sn-finish { background: var(--paper); }
.sn-section { margin: 18px 0 8px; }
.sn-needs { display: grid; gap: 6px; }
.sn-needs .check { margin: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.sn-needs .check:has(input:checked) { border-color: var(--ink); background: var(--goldlt); }
.sig-legend .lp-setting h3 { font-size: 1.05rem; }
.sig-map { display: grid; gap: 12px; margin: 6px 0 14px; }
.sig-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; }
.sig-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.sig-bar { height: 12px; border-radius: 6px; background: var(--line); overflow: hidden; }
.sig-bar span { display: block; height: 100%; background: var(--gold); border-radius: 6px; transition: width 0.4s ease; }
.sig-row.lead .sig-bar span { background: var(--purple); }
.sig-val { display: flex; align-items: center; gap: 8px; }
.en-steps { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.en-steps li { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.en-steps li.on { color: var(--ink); border-color: var(--ink); }
.en-steps .num { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--goldlt); color: var(--goldtext); font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; }
.en-steps li.on .num { background: var(--ink); color: var(--cream); }
@media (max-width: 860px) {
  .pg-hero { grid-template-columns: 1fr; gap: 20px; }
  .pg-hero h1 { font-size: 2.4rem; }
  .hw-between { grid-template-columns: 1fr; }
}
