:root {
  --paper-0: #FBF9F4;
  --paper-1: #F4F1E9;
  --paper-2: #EDE8DC;
  --surface: #FFFFFF;

  --ink-900: #1C1916;
  --ink-800: #26221D;
  --ink-700: #3A332A;
  --ink-500: #635C52;
  --ink-400: #8C857A;

  --line: rgba(28, 25, 22, 0.10);
  --line-strong: rgba(28, 25, 22, 0.16);

  --gold: #C9A45C;
  --gold-ink: #7C601F;
  --gold-deep: #9A7B34;
  --gold-soft: rgba(201, 164, 92, 0.14);

  --teal: #3E6E70;

  --danger: #C15A46;
  --danger-ink: #9A3A2A;
  --danger-soft: rgba(193, 90, 70, 0.10);
  --success: #3C7A5A;

  --focus-ring: 0 0 0 3px rgba(201, 164, 92, 0.50);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --label: "Montserrat", var(--sans);

  --fs-hero: clamp(34px, 6vw, 60px);
  --fs-h1: clamp(27px, 4.6vw, 40px);
  --fs-h2: clamp(21px, 3.0vw, 28px);
  --fs-h3: clamp(18px, 2.4vw, 22px);
  --fs-lede: clamp(16px, 2.2vw, 20px);
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-caption: 13px;
  --fs-eyebrow: 12px;
  --fs-pip: 11px;

  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;  --sp-5: 24px;
  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;  --sp-9: 96px;  --sp-10: 128px;
  --section-y: 56px;
  --section-y-lg: 104px;

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(28, 25, 22, 0.05);
  --sh-2: 0 2px 8px rgba(28, 25, 22, 0.06), 0 1px 2px rgba(28, 25, 22, 0.05);
  --sh-3: 0 12px 30px -12px rgba(28, 25, 22, 0.18);
  --sh-4: 0 30px 70px -28px rgba(28, 25, 22, 0.30);
  --sh-btn: inset 0 1px 0 rgba(201, 164, 92, 0.22), 0 6px 16px -6px rgba(28, 25, 22, 0.35);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-mid: 420ms;
  --t-slow: 640ms;
  --t-stamp: 520ms;

  --maxw-text: 640px;
  --maxw-content: 960px;
  --maxw-wide: 1120px;
  --maxw-form: 460px;
  --maxw-book: 560px;
  --paper-ratio: 0.7727;

  --z-base: 0; --z-raised: 10; --z-dropdown: 100; --z-sticky: 200;
  --z-overlay: 900; --z-modal: 1000; --z-toast: 1100;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 600px at 50% -10%, #F1EDE3, transparent 62%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
:focus-visible { outline: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.wrap { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding: 0 20px; }
.wrap--content { max-width: var(--maxw-content); }
.wrap--text { max-width: var(--maxw-text); }

.section { padding: var(--section-y) 0; }
.section--tight { padding: calc(var(--section-y) * 0.7) 0; }

.band { background: var(--paper-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

@media (min-width: 768px) {
  .section { padding: var(--section-y-lg) 0; }
}

.eyebrow {
  font-family: var(--label);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  line-height: 1;
  margin: 0;
}
.eyebrow--ruled { display: inline-flex; align-items: center; }
.eyebrow--ruled::before {
  content: "";
  width: 28px; height: 1px;
  margin-right: 14px;
  background: var(--gold);
  opacity: 0.7;
}

.h-hero, .h1, .h2, .h3 { font-family: var(--serif); color: var(--ink-900); margin: 0; text-wrap: balance; }
.h-hero { font-weight: 500; font-size: var(--fs-hero); line-height: 1.05; letter-spacing: -0.015em; }
.h1 { font-weight: 500; font-size: var(--fs-h1); line-height: 1.10; letter-spacing: -0.010em; }
.h2 { font-weight: 600; font-size: var(--fs-h2); line-height: 1.15; letter-spacing: -0.005em; }
.h3 { font-weight: 600; font-size: var(--fs-h3); line-height: 1.20; color: var(--ink-800); }
.em-serif { font-style: italic; color: var(--gold-ink); }

.lede { font-family: var(--sans); font-weight: 400; font-size: var(--fs-lede); line-height: 1.5; color: var(--ink-500); max-width: 40ch; margin: 0; }
.lede--wide { max-width: 60ch; }

.body { font-size: var(--fs-body); color: var(--ink-700); }
.muted { color: var(--ink-500); }
.caption { font-size: var(--fs-caption); line-height: 1.45; color: var(--ink-500); }
.strong { font-weight: 600; color: var(--ink-800); }

.topbar {
  position: relative;
  z-index: var(--z-sticky);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.86);
  backdrop-filter: blur(8px);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-decoration: none;
}
.wordmark--foot { font-size: 18px; }

.site-foot { background: var(--paper-1); border-top: 1px solid var(--line); padding: 32px 24px; text-align: center; }
.site-foot__inner { max-width: var(--maxw-text); margin: 0 auto; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.site-foot__disclaimer { font-size: var(--fs-caption); color: var(--ink-500); line-height: 1.55; max-width: 52ch; }
.site-foot__links { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; justify-content: center; font-size: var(--fs-caption); color: var(--ink-500); }
.site-foot__links a { color: var(--ink-700); text-decoration: none; }
.site-foot__links a:hover { color: var(--gold-ink); box-shadow: inset 0 -1px 0 var(--gold); }
.site-foot__sep { color: var(--ink-400); }

.btn, .btn-primary, .btn-secondary, .btn-ghost {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: 52px;
  padding: 16px 24px;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out), background var(--t-fast), border-color var(--t-fast), filter var(--t-fast);
}
.btn--lg { min-height: 56px; padding: 18px 28px; }
.btn--sm { min-height: 40px; padding: 10px 16px; font-size: 14px; border-radius: var(--r-sm); }
.btn--block { width: 100%; }

.btn-primary { background: linear-gradient(180deg, var(--ink-800), var(--ink-900)); color: var(--paper-0); box-shadow: var(--sh-btn); }
.btn-primary .btn-arrow { color: var(--gold); }
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
}
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-primary:focus-visible { box-shadow: var(--sh-btn), var(--focus-ring); }

.btn-secondary { background: var(--paper-0); color: var(--ink-900); border-color: var(--line-strong); }
@media (hover: hover) {
  .btn-secondary:hover { background: var(--paper-1); border-color: var(--gold); }
}
.btn-secondary:focus-visible { box-shadow: var(--focus-ring); }

.btn-ghost { background: transparent; color: var(--ink-700); border-color: transparent; min-height: 44px; padding: 10px 12px; }
@media (hover: hover) {
  .btn-ghost:hover { box-shadow: inset 0 -1px 0 var(--gold); color: var(--ink-900); }
}
.btn-ghost:focus-visible { box-shadow: var(--focus-ring); border-radius: var(--r-sm); }

.btn-primary[disabled], .btn-secondary[disabled], .btn[disabled] {
  background: var(--paper-2);
  color: var(--ink-400);
  box-shadow: none;
  border-color: transparent;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.is-loading { pointer-events: none; }
.is-loading .btn-label { display: none; }
.is-loading .btn-loading { display: inline-flex; align-items: center; gap: 10px; }
.btn-loading { display: none; }

.dots { display: inline-flex; gap: 3px; }
.dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.3; animation: dots 1.2s var(--ease-inout) infinite; }
.dots span:nth-child(2) { animation-delay: 0.15s; }
.dots span:nth-child(3) { animation-delay: 0.30s; }

.icon { width: 1em; height: 1em; display: inline-block; fill: none; stroke: currentColor; }
.icon-arrow { width: 18px; height: 18px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-family: var(--sans); font-weight: 600; font-size: var(--fs-body-sm); color: var(--ink-700); }
.field input, .field textarea, .field select,
.form-card input, .form-card textarea, .form-card select {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  min-height: 52px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-900);
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-400); }
.field input:focus, .field textarea:focus, .field select:focus,
.form-card input:focus, .form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: var(--focus-ring);
  outline: none;
}
.field textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field-help { font-size: var(--fs-caption); color: var(--ink-500); }
.field-error { display: none; align-items: center; gap: 6px; font-size: var(--fs-caption); color: var(--danger-ink); }
.field.has-error .field-error { display: flex; }
.field-error .icon { width: 13px; height: 13px; stroke: var(--danger-ink); flex: none; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: 24px; }
.card--elevated { box-shadow: var(--sh-3); }
.well { background: var(--paper-1); border-radius: var(--r-md); padding: 20px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  color: var(--gold-ink); background: var(--gold-soft);
  border: 1px solid rgba(201, 164, 92, 0.32);
  border-radius: var(--r-pill); padding: 6px 12px;
}

.sec-head { display: flex; flex-direction: column; gap: 14px; }
.sec-head--center { align-items: center; text-align: center; }
.sec-head .eyebrow { margin-bottom: 2px; }

.hero { padding-top: 40px; padding-bottom: var(--section-y); }
.hero__inner { display: flex; flex-direction: column; gap: 28px; }
.hero__copy { display: flex; flex-direction: column; gap: 20px; }
.hero__lede { max-width: 46ch; }
.hero__cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero__cta .btn-primary { width: 100%; }
.hero__cta-note { font-size: var(--fs-caption); color: var(--ink-500); }

.binder-fan { position: relative; width: 100%; max-width: 360px; margin: 8px auto 0; aspect-ratio: 1.35; }
.fan-page {
  position: absolute;
  left: 50%; top: 4%;
  width: 42%;
  aspect-ratio: var(--paper-ratio);
  background: var(--surface);
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: var(--r-xs);
  box-shadow: var(--sh-3);
  transform-origin: bottom center;
  padding: 11% 9% 0;
  overflow: hidden;
  opacity: 0;
}
.fan-page::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-xs);
  box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.12);
  pointer-events: none;
}
.fan-page .fp-rule { height: 3px; width: 42%; background: var(--gold); border-radius: 2px; margin-bottom: 9%; }
.fan-page .fp-title { height: 7px; width: 78%; background: var(--ink-800); border-radius: 2px; margin-bottom: 7%; }
.fan-page .fp-line { height: 3px; width: 92%; background: var(--paper-2); border-radius: 2px; margin-bottom: 6%; }
.fan-page .fp-line.short { width: 58%; }
.fan-page .fp-accent { height: 22%; width: 92%; background: var(--teal); opacity: 0.18; border-radius: 3px; margin-top: 9%; }
.fan-page .fp-tag {
  position: absolute; left: 9%; bottom: 7%;
  font-family: var(--label); font-weight: 600; font-size: 7px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-ink);
}
.fan-labels { text-align: center; font-size: var(--fs-caption); color: var(--ink-500); margin-top: 18px; }

.is-fanned .fan-page { opacity: 1; }
.fan-page:nth-child(1) { transform: translateX(calc(-50% - 88px)) rotate(-15deg) translateY(10px); z-index: 1; }
.fan-page:nth-child(2) { transform: translateX(calc(-50% - 53px)) rotate(-9deg) translateY(3px); z-index: 2; }
.fan-page:nth-child(3) { transform: translateX(calc(-50% - 18px)) rotate(-3deg); z-index: 3; }
.fan-page:nth-child(4) { transform: translateX(calc(-50% + 18px)) rotate(3deg); z-index: 4; }
.fan-page:nth-child(5) { transform: translateX(calc(-50% + 53px)) rotate(9deg) translateY(3px); z-index: 5; }
.fan-page:nth-child(6) { transform: translateX(calc(-50% + 88px)) rotate(15deg) translateY(10px); z-index: 6; }
.is-fanned .fan-page { animation: fan-rise var(--t-slow) var(--ease-out) both; }
.is-fanned .fan-page:nth-child(1) { animation-delay: 0.02s; }
.is-fanned .fan-page:nth-child(2) { animation-delay: 0.08s; }
.is-fanned .fan-page:nth-child(3) { animation-delay: 0.14s; }
.is-fanned .fan-page:nth-child(4) { animation-delay: 0.20s; }
.is-fanned .fan-page:nth-child(5) { animation-delay: 0.26s; }
.is-fanned .fan-page:nth-child(6) { animation-delay: 0.32s; }

.proof__grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
.proof__tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1); padding: 20px; text-align: center; }
.proof__tile .h3 { margin-bottom: 4px; }
.proof__tile .caption { color: var(--ink-500); }

.qual { display: flex; flex-direction: column; gap: 16px; }
.qual__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.qual__item { display: flex; gap: 12px; align-items: flex-start; }
.qual__check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); border: 1px solid rgba(201, 164, 92, 0.34); display: grid; place-items: center; }
.qual__check .icon { width: 14px; height: 14px; stroke: var(--gold-deep); stroke-width: 2.4; }
.qual__item span { color: var(--ink-700); }

.page-preview {
  width: 100%; max-width: 300px; margin: 0 auto;
  aspect-ratio: var(--paper-ratio);
  background: var(--surface);
  border: 1px solid rgba(201, 164, 92, 0.30);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-3);
  padding: 10% 9% 0;
  overflow: hidden;
  position: relative;
}
.page-preview .fp-rule { height: 3px; width: 40%; background: var(--gold); border-radius: 2px; margin-bottom: 8%; }
.page-preview .fp-title { height: 10px; width: 78%; background: var(--ink-800); border-radius: 2px; margin-bottom: 3%; }
.page-preview .fp-sub { height: 6px; width: 52%; background: var(--ink-400); border-radius: 2px; margin-bottom: 8%; }
.page-preview .fp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7%; }
.page-preview .fp-cell { height: 40px; background: var(--paper-1); border: 1px solid var(--line); border-radius: 4px; }
.page-preview .fp-accent { position: absolute; left: 0; right: 0; bottom: 0; height: 14%; background: var(--teal); opacity: 0.14; }
.page-preview--real {
  display: block; padding: 0; max-width: 340px;
  height: auto; object-fit: cover; margin-top: 24px;
}

.offer-well { max-width: var(--maxw-content); margin: 0 auto; }
.offer-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); }
.offer-list li .icon { flex: none; width: 18px; height: 18px; stroke: var(--gold-deep); margin-top: 3px; }
.offer-list li b { color: var(--ink-900); }
.price-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; justify-content: center; }
.price-chip { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 18px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line-strong); min-width: 96px; }
.price-chip .price-amt { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink-900); }
.price-chip .price-cap { font-family: var(--label); font-weight: 600; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-500); }
.price-chip--all { background: var(--gold-soft); border-color: rgba(201, 164, 92, 0.36); }
.price-chip--all .price-amt { color: var(--gold-ink); }
.price-chip--free .price-amt { color: var(--success); }

.form-section { padding: var(--section-y) 0; }
.form-card {
  max-width: var(--maxw-form);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  padding: 28px 24px;
  position: relative;
}
@media (max-width: 460px) {
  .form-card { border-radius: var(--r-lg); padding: 24px 16px; }
}

.form-summary { display: none; flex-direction: column; gap: 6px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.form-summary.is-visible { display: flex; }
.summary-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: var(--fs-caption); }
.summary-row .summary-text { color: var(--ink-700); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.summary-row .summary-edit { flex: none; color: var(--gold-ink); background: none; border: none; cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: var(--fs-caption); padding: 2px 4px; }
.summary-row .summary-edit:hover { box-shadow: inset 0 -1px 0 var(--gold); }

.stepper { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.stepper__label { font-family: var(--label); font-weight: 600; font-size: var(--fs-pip); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-500); }
.stepper__label .cur { color: var(--ink-900); }
.stepper__label .stepper__name { color: var(--ink-900); }
body.dev-form-only .landing-block { display: none; }
body.dev-form-only .form-section { padding-top: 24px; }
.stepper__pips { display: flex; gap: 8px; }
.pip { position: relative; width: 30px; height: 4px; border-radius: var(--r-pill); background: var(--line-strong); transition: background var(--t-base); }
.pip.is-active, .pip.is-done { background: var(--gold); }

.steps-viewport { position: relative; transition: height var(--t-mid) var(--ease-out); }
.steps-viewport.is-animating { overflow: hidden; }
.step {
  display: none;
  flex-direction: column;
  gap: 18px;
}
.step.is-current { display: flex; }
.steps-viewport.is-animating .step { position: absolute; top: 0; left: 0; right: 0; }
.step.is-out { animation: step-out var(--t-mid) var(--ease-out) both; }
.step.is-in { animation: step-in var(--t-mid) var(--ease-out) both; }
.form-card.is-shaking { animation: shake var(--t-base) var(--ease-inout) 1; }

.step__head { display: flex; flex-direction: column; gap: 4px; }
.step__head .caption { max-width: 42ch; }

.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-row { display: flex; gap: 8px; align-items: center; }
.svc-row input { flex: 1; }
.svc-remove { flex: none; width: 40px; height: 40px; border-radius: var(--r-sm); border: 1px solid transparent; background: transparent; color: var(--ink-400); cursor: pointer; display: grid; place-items: center; transition: color var(--t-fast), background var(--t-fast); }
.svc-remove .icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; }
@media (hover: hover) { .svc-remove:hover { color: var(--gold-deep); background: var(--gold-soft); } }
.svc-remove:focus-visible { box-shadow: var(--focus-ring); }
.svc-add {
  width: 100%; min-height: 48px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--gold-ink);
  font-family: var(--sans); font-weight: 600; font-size: var(--fs-body-sm);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.svc-add .icon { width: 15px; height: 15px; stroke: var(--gold-deep); stroke-width: 2.2; }
@media (hover: hover) { .svc-add:hover { border-color: var(--gold); background: var(--gold-soft); } }
.svc-add:focus-visible { box-shadow: var(--focus-ring); }

.band-group { display: flex; flex-direction: column; gap: 8px; }
.band-pill {
  display: flex; align-items: center; gap: 12px;
  width: 100%; min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.band-dot { flex: none; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; transition: border-color var(--t-fast); }
.band-dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); transform: scale(0); transition: transform var(--t-fast) var(--ease-spring); }
.band-pill.is-selected { border-color: var(--gold); background: var(--gold-soft); }
.band-pill.is-selected .band-dot { border-color: var(--gold); }
.band-pill.is-selected .band-dot::after { transform: scale(1); }
.band-pill:focus-visible { box-shadow: var(--focus-ring); }
.band-label { color: var(--ink-800); font-size: var(--fs-body); }

.qbox-row { display: flex; gap: 12px; align-items: flex-start; min-height: 44px; cursor: pointer; }
.qbox { flex: none; width: 24px; height: 24px; border: 1.5px solid var(--line-strong); border-radius: var(--r-xs); background: var(--surface); display: grid; place-items: center; transition: background var(--t-fast), border-color var(--t-fast); margin-top: 1px; }
.qbox .icon { width: 15px; height: 15px; stroke: #fff; stroke-width: 2.6; opacity: 0; transition: opacity var(--t-fast); }
.qbox-row.is-checked .qbox { background: var(--gold); border-color: var(--gold); }
.qbox-row.is-checked .qbox .icon { opacity: 1; }
.qbox-row:focus-visible .qbox, .qbox-row .qbox:focus-visible { box-shadow: var(--focus-ring); }
.qbox-label { font-size: 15px; color: var(--ink-700); line-height: 1.5; }
.qbox-label a { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; }
.field.has-error .qbox { border-color: var(--danger); }

.turnstile-slot { min-height: 65px; display: flex; align-items: center; }

.step__actions { display: flex; gap: 12px; align-items: center; margin-top: 2px; }
.step__actions .btn-primary { flex: 1; }
.step__actions--split .btn-ghost { flex: none; }
.step__trust { font-size: var(--fs-caption); color: var(--ink-500); text-align: center; margin-top: -6px; }

.spa-search { position: relative; }
.spa-search__inputwrap { position: relative; }
.spa-search input { padding-right: 44px; }
.spa-spinner { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; display: none; }
.spa-search.is-searching .spa-spinner { display: block; }
.spa-spinner .ring { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--gold-soft); border-top-color: var(--gold); animation: spin 0.7s linear infinite; }

.spa-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--sh-3);
  overflow: hidden;
  z-index: var(--z-dropdown);
  max-height: 320px;
  overflow-y: auto;
  display: none;
}
.spa-menu.is-open { display: block; animation: menu-in var(--t-fast) var(--ease-out) both; }
.spa-opt { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; cursor: pointer; }
.spa-opt .icon { flex: none; width: 16px; height: 16px; stroke: var(--gold-deep); margin-top: 2px; }
.spa-opt.is-active, .spa-opt:hover { background: var(--gold-soft); }
.spa-opt__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.spa-opt__name { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink-900); }
.spa-opt__addr { font-size: 13px; color: var(--ink-500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spa-freetext { display: flex; gap: 10px; align-items: center; padding: 12px 16px; cursor: pointer; color: var(--gold-ink); font-weight: 600; font-size: 15px; border-top: 1px solid var(--line); }
.spa-freetext .icon { flex: none; width: 18px; height: 18px; stroke: var(--gold-deep); }
.spa-freetext.is-active, .spa-freetext:hover { background: var(--gold-soft); }
.spa-empty, .spa-error { padding: 12px 16px; font-size: 14px; color: var(--ink-500); line-height: 1.5; }
.spa-skel { padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.spa-skel .bar { height: 10px; border-radius: 4px; background: linear-gradient(90deg, var(--paper-2), var(--paper-1), var(--paper-2)); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
.spa-skel .bar.short { width: 55%; height: 8px; }
.spa-attr { padding: 8px 16px; text-align: right; font-size: 11px; color: var(--ink-400); border-top: 1px solid var(--line); }

.spa-chosen { display: none; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--gold); border-radius: var(--r-sm); padding: 12px 14px; }
.spa-search.is-selected .spa-search__inputwrap { display: none; }
.spa-search.is-selected .spa-menu { display: none; }
.spa-search.is-selected .spa-chosen { display: flex; }
.spa-chosen__mark { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; }
.spa-chosen__mark .icon { width: 15px; height: 15px; stroke: var(--gold-deep); stroke-width: 2.4; }
.spa-chosen__text { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.spa-chosen__name { font-weight: 600; color: var(--ink-900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.spa-chosen__addr { font-size: 13px; color: var(--ink-500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.view {
  display: none;
  min-height: 70vh;
}
.view.is-active { display: block; }
.view--center { display: none; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.view--center.is-active { display: flex; }

.loading { padding: 48px 0 64px; }
.loading__inner { max-width: var(--maxw-text); margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.loading__spa { margin-top: 2px; }
.progress { height: 4px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); box-shadow: 0 0 10px rgba(201, 164, 92, 0.4); border-radius: var(--r-pill); transition: width var(--t-slow) var(--ease-out); }
.progress-pct { font-family: var(--label); font-weight: 600; font-size: var(--fs-pip); letter-spacing: 0.10em; color: var(--ink-500); text-align: right; }

.beats { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 4px 0 0; padding: 0; }
.beat { display: flex; gap: 14px; align-items: flex-start; opacity: 0.5; transition: opacity var(--t-base); }
.beat.is-active, .beat.is-done { opacity: 1; }
.beat-mark { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.35); background: var(--gold-soft); }
.beat-mark .icon { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.6; opacity: 0; }
.beat.is-done .beat-mark { background: radial-gradient(circle at 40% 35%, var(--gold), var(--gold-deep)); box-shadow: var(--sh-1), inset 0 0 0 1px rgba(154, 123, 52, 0.5); animation: stamp-land var(--t-stamp) var(--ease-spring) both; }
.beat.is-done .beat-mark .icon { opacity: 1; }
.beat__label { color: var(--ink-500); padding-top: 5px; }
.beat.is-done .beat__label { color: var(--ink-900); }
.beat.is-active .beat__label::after { content: ""; }
.beat__label .ell { display: inline; }
.beat.is-done .beat__label .ell { display: none; }
.loading__reassure { color: var(--ink-500); font-size: var(--fs-caption); }

.assemble { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 20px; padding: 40px 0; }
.assemble.is-active { display: flex; }
.assemble__book { width: 60%; max-width: 260px; aspect-ratio: var(--paper-ratio); border-radius: var(--r-xs); box-shadow: var(--sh-4); border: 1px solid rgba(201, 164, 92, 0.30); background: var(--paper-2) center/cover no-repeat; animation: book-in var(--t-slow) var(--ease-spring) both; }
.assemble__rule { height: 2px; width: 0; background: var(--gold); border-radius: 2px; animation: rule-sweep var(--t-slow) var(--ease-out) both; }

.reveal { padding-top: 40px; }
.reveal__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.reveal__lede { max-width: 48ch; }

.flip-wrap { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.flipbook { position: relative; width: 100%; max-width: var(--maxw-book); }
.flip-stage { position: relative; width: 100%; aspect-ratio: var(--paper-ratio); border-radius: var(--r-xs); overflow: hidden; box-shadow: var(--sh-4); border: 1px solid rgba(201, 164, 92, 0.28); background: var(--paper-2); }
.flip-page { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--paper-2); will-change: transform, opacity; }
.flip-page.is-current { z-index: 2; }
.flip-page.turn-out-left { animation: turn-out-left var(--t-slow) var(--ease-out) both; }
.flip-page.turn-out-right { animation: turn-out-right var(--t-slow) var(--ease-out) both; }
.flip-page.turn-in-left { animation: turn-in-left var(--t-slow) var(--ease-out) both; }
.flip-page.turn-in-right { animation: turn-in-right var(--t-slow) var(--ease-out) both; }

.flip-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--surface); box-shadow: var(--sh-2); border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; z-index: 5; transition: transform var(--t-fast), box-shadow var(--t-fast); }
.flip-arrow .icon { width: 20px; height: 20px; stroke: var(--gold-deep); stroke-width: 2.2; }
.flip-arrow[disabled] { opacity: 0.4; cursor: not-allowed; box-shadow: var(--sh-1); }
@media (hover: hover) { .flip-arrow:not([disabled]):hover { transform: translateY(-50%) scale(1.06); box-shadow: var(--sh-3); } }
.flip-arrow:focus-visible { box-shadow: var(--focus-ring); }
.flip-prev { left: 8px; }
.flip-next { right: 8px; }
.flip-counter { font-family: var(--label); font-weight: 600; font-size: var(--fs-pip); letter-spacing: 0.10em; color: var(--ink-500); }
.flip-thumbs { display: none; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.flip-thumb { width: 46px; aspect-ratio: var(--paper-ratio); border-radius: 3px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-1); cursor: pointer; padding: 0; background: var(--paper-2); }
.flip-thumb img { width: 100%; height: 100%; object-fit: cover; }
.flip-thumb.is-current { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-soft); }

.reveal__download { display: flex; flex-direction: column; gap: 10px; align-items: center; margin: 26px 0; }
.reveal__download .btn-primary { width: 100%; max-width: 360px; }
.reveal__emailed { font-size: var(--fs-caption); color: var(--ink-500); display: none; }
.reveal__emailed.is-visible { display: block; }

.print-spec { max-width: var(--maxw-content); margin: 0 auto; }
.print-spec ul { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.print-spec li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); font-size: var(--fs-body-sm); }
.print-spec li .icon { flex: none; width: 15px; height: 15px; stroke: var(--gold-deep); margin-top: 3px; }

.video-slot { position: relative; aspect-ratio: 16 / 9; background: radial-gradient(120% 120% at 50% 0%, #2A2621, var(--ink-900)); border-radius: var(--r-lg); box-shadow: var(--sh-3); display: grid; place-items: center; max-width: var(--maxw-content); margin: 0 auto; }
.video-slot__play { width: 64px; height: 64px; border-radius: 50%; background: rgba(251, 249, 244, 0.10); border: 1px solid rgba(201, 164, 92, 0.5); display: grid; place-items: center; }
.video-slot__play .icon { width: 26px; height: 26px; fill: var(--gold); stroke: none; margin-left: 3px; }
.video-caption { text-align: center; margin-top: 12px; font-size: var(--fs-caption); color: var(--ink-500); }

.offer-qual { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.offer-qual li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-700); }
.offer-qual li .icon { flex: none; width: 16px; height: 16px; stroke: var(--gold-deep); margin-top: 4px; }
.call-lead { text-align: center; color: var(--ink-700); margin: 8px 0 14px; }
.reveal__callcta { display: flex; justify-content: center; }
.reveal__callcta .btn-primary { width: 100%; max-width: 360px; }

.rebuild { max-width: var(--maxw-content); margin: 0 auto; }
.rebuild__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.rebuild__count { font-size: var(--fs-caption); color: var(--ink-500); }
.rebuild textarea[disabled] { background: var(--paper-2); color: var(--ink-400); cursor: not-allowed; }

.note { display: flex; gap: 10px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line-strong); border-left: 3px solid var(--gold); border-radius: var(--r-sm); box-shadow: var(--sh-3); padding: 12px 16px; color: var(--ink-800); }
.note .icon { flex: none; width: 18px; height: 18px; stroke: var(--gold-deep); margin-top: 2px; }

.centered-state { max-width: var(--maxw-text); margin: 0 auto; padding: 80px 0; display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.centered-state .lede { max-width: 44ch; }
.centered-state .btn-primary { margin-top: 6px; min-width: 240px; }

.legal { max-width: var(--maxw-text); margin: 0 auto; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: var(--fs-h3); color: var(--ink-900); margin: 32px 0 10px; }
.legal p { color: var(--ink-700); margin: 0 0 14px; }
.legal .placeholder { color: var(--ink-400); font-style: italic; }
.legal__meta { margin: 6px 0 24px; }

@media (min-width: 768px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  .band-group.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .flip-thumbs { display: flex; }
}

@media (min-width: 960px) {
  .hero__inner { flex-direction: row; align-items: center; gap: 48px; }
  .hero__copy { flex: 1; }
  .hero__aside { flex: 0 0 40%; }
  .binder-fan { max-width: 400px; margin-top: 0; }
  .hero__cta { flex-direction: row; align-items: center; gap: 20px; }
  .hero__cta .btn-primary { width: auto; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .reveal__top { display: grid; grid-template-columns: minmax(0, var(--maxw-book)) 1fr; gap: 48px; align-items: start; }
  .reveal__top .reveal__download { align-items: flex-start; margin-top: 0; }
  .reveal__top .reveal__download .btn-primary { max-width: none; }
  .flip-arrow { width: 48px; height: 48px; }
  .flip-prev { left: -24px; }
  .flip-next { right: -24px; }
}

@keyframes dots { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes menu-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fan-rise { from { opacity: 0; transform: translateX(-50%) translateY(24px) rotate(0deg); } }
@keyframes step-out { to { opacity: 0; transform: translateX(-8%); } }
@keyframes step-in { from { opacity: 0; transform: translateX(8%); } to { opacity: 1; transform: translateX(0); } }
@keyframes shake { 0% { transform: translateX(0); } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } 100% { transform: translateX(0); } }
@keyframes stamp-land { 0% { transform: scale(1.5) rotate(-14deg); opacity: 0; } 60% { transform: scale(0.9) rotate(4deg); opacity: 1; } 100% { transform: scale(1) rotate(0deg); } }
@keyframes book-in { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes rule-sweep { from { width: 0; } to { width: 160px; } }
@keyframes turn-out-left { to { transform: translateX(-12%) scale(0.98); opacity: 0; } }
@keyframes turn-out-right { to { transform: translateX(12%) scale(0.98); opacity: 0; } }
@keyframes turn-in-left { from { transform: translateX(-12%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes turn-in-right { from { transform: translateX(12%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.reveal-on-scroll { opacity: 0; transform: translateY(14px); }
.reveal-on-scroll.is-in { animation: rise var(--t-mid) var(--ease-out) both; animation-delay: var(--ri, 0ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-on-scroll { opacity: 1; transform: none; }
  .fan-page { opacity: 1; }
  .dots span { opacity: 0.7; }
}
