:root {
  color-scheme: light dark;
  --surface: #f2f4f7;
  --surface-raised: #e9edf1;
  --surface-strong: #dce2e8;
  --panel: #f9fafb;
  --text: #20242a;
  --text-soft: #5b6470;
  --line: #cbd2d9;
  --accent: #b84652;
  --accent-hover: #963946;
  --accent-soft: #f1dfe1;
  --accent-text: #fdf8f8;
  --focus: #7b2631;
  --success: #2f6c55;
  --warning: #8a5d18;
  --shadow: 0 28px 70px rgba(48, 58, 68, 0.14);
  --radius-card: 18px;
  --radius-control: 12px;
  --radius-button: 999px;
  --shell: 1180px;
  --header-height: 68px;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #171a1f;
    --surface-raised: #20242a;
    --surface-strong: #2b3139;
    --panel: #1d2127;
    --text: #eef0f3;
    --text-soft: #aab2bd;
    --line: #3b434d;
    --accent: #d76975;
    --accent-hover: #e9808b;
    --accent-soft: #4d2930;
    --accent-text: #21171a;
    --focus: #f08c96;
    --success: #76b897;
    --warning: #d4a758;
    --shadow: 0 28px 70px rgba(6, 8, 11, 0.32);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body[data-page-kind="home"] {
  color-scheme: dark;
  --surface: #07110f;
  --surface-raised: #0d1917;
  --surface-strong: #172825;
  --panel: #10201d;
  --text: #f1f4f2;
  --text-soft: #aebbb7;
  --line: #2b3c38;
  --accent: #e97772;
  --accent-hover: #f08b86;
  --accent-soft: #3b2525;
  --accent-text: #101513;
  --focus: #ffaaa6;
  --success: #79b99a;
  --shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  content: "";
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 620;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 650;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 126px);
}

.section-narrow {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(76px, 9vw, 126px);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 42px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: var(--radius-button);
  background: var(--accent);
  color: var(--accent-text);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.mode-banner {
  padding: 8px 20px;
  background: var(--warning);
  color: #f9f4ea;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 25%);
  background: color-mix(in srgb, var(--surface), transparent 7%);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  color: var(--text);
  font-weight: 720;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--text);
  border-radius: 50%;
}

.brand-mark span {
  position: absolute;
  left: 6px;
  width: 14px;
  height: 1px;
  border-radius: 2px;
  background: var(--accent);
  transform-origin: center;
}

.brand-mark span:nth-child(1) { top: 9px; transform: rotate(18deg); }
.brand-mark span:nth-child(2) { top: 14px; transform: rotate(-11deg); }
.brand-mark span:nth-child(3) { top: 18px; width: 9px; transform: rotate(29deg); }

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
}

.desktop-nav a,
.site-footer a {
  color: var(--text-soft);
  text-decoration: none;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.desktop-nav a[aria-current="page"] {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 7px;
}

.header-inner > .button,
.header-inner > .text-link {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-button);
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(.16, 1, .3, 1), background 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(.98);
}

.button:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: .92rem;
}

.button-wide {
  width: 100%;
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--text-soft);
  background: var(--surface-raised);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-weight: 740;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  padding-block: clamp(40px, 6vw, 78px);
}

.home-hero {
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 70px);
  min-height: max(650px, calc(100dvh - var(--header-height)));
  padding-block: clamp(34px, 5vw, 64px);
}

.hero-copy {
  align-self: start;
  padding-top: clamp(36px, 7vh, 82px);
}

.hero-copy > p {
  max-width: 450px;
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.home-hero .hero-copy {
  align-self: center;
  padding-top: 0;
}

.home-hero .hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 5.8vw, 5.35rem);
  font-weight: 590;
}

.home-hero .hero-copy > p:not(.hero-trust) {
  max-width: 390px;
  margin-bottom: 30px;
}

.hero-button {
  min-height: 52px;
  padding-inline: 24px;
}

.home-hero .hero-copy > .hero-trust {
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--text-soft), transparent 10%);
  font-size: .82rem;
}

.hero-experience {
  position: relative;
  min-height: 600px;
}

.hero-palm-visual {
  position: absolute;
  inset: 0 155px 0 0;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line), white 7%);
  border-radius: 26px;
  background: #0b1715;
  box-shadow: var(--shadow);
}

.hero-palm-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 35%, rgba(7, 17, 15, .72) 100%),
    linear-gradient(0deg, rgba(7, 17, 15, .38), transparent 38%);
}

.hero-palm-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.hero-experience > .tool-shell {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: min(440px, 72%);
  transform: translateY(-50%);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: .82rem;
}

.breadcrumbs a {
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

body[data-page-kind="marriage-line"] .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 4.6vw, 4.25rem);
}

.has-reading-result .hero {
  grid-template-columns: 1fr;
}

.has-reading-result .hero-copy {
  display: none;
}

.has-reading-result .hero > .tool-shell {
  width: min(920px, 100%);
  margin-inline: auto;
}

.has-reading-result .home-hero {
  display: block;
}

.has-reading-result .home-hero .hero-experience {
  min-height: 0;
}

.has-reading-result .home-hero .hero-palm-visual {
  display: none;
}

.has-reading-result .home-hero .hero-experience > .tool-shell {
  position: relative;
  top: auto;
  right: auto;
  width: min(920px, 100%);
  margin-inline: auto;
  transform: none;
}

.tool-shell {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.tool-heading-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-progress,
.form-step-status,
.flow-only {
  display: none;
}

.tool-shell.is-enhanced .form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 7px;
}

.form-progress span {
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-strong);
}

.form-progress span::after {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  content: "";
  transition: width 220ms ease;
}

.form-progress span.is-complete::after,
.form-progress span.is-current::after {
  width: 100%;
}

.tool-shell.is-enhanced .form-step-status {
  display: block;
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tool-shell.is-enhanced .flow-only {
  display: flex;
}

.tool-heading-row h2 {
  margin: 0;
  font-size: 1.7rem;
}

.tool-kicker,
.result-kicker,
.legal-updated,
.reading-page-heading > p {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy-note {
  padding: 6px 10px;
  border-radius: var(--radius-button);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .76rem;
  font-weight: 750;
  white-space: nowrap;
}

.reading-form {
  display: grid;
  gap: 18px;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step + .form-step {
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tool-shell.is-enhanced .form-step + .form-step {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-step[hidden] {
  display: none !important;
}

.form-step-title {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 720;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.form-step-title > span {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.form-step-copy {
  margin: 7px 0 16px;
  color: var(--text-soft);
  font-size: .84rem;
  line-height: 1.45;
}

.field-block {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-block > label,
.field-block > legend {
  color: var(--text);
  font-size: .9rem;
  font-weight: 750;
}

.upload-zone {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 12px;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  cursor: pointer;
}

.upload-zone:hover,
.upload-zone.dragging {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.upload-zone img {
  width: 112px;
  height: 112px;
  border-radius: 10px;
  object-fit: cover;
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-copy {
  display: grid;
  gap: 4px;
}

.upload-copy strong {
  font-size: 1rem;
}

.upload-copy span,
.field-help,
.form-status {
  color: var(--text-soft);
  font-size: .82rem;
}

.field-help,
.field-error,
.form-status {
  min-height: 1.2em;
  margin: 0;
}

.field-error,
.form-status.error {
  color: var(--accent);
  font-weight: 700;
}

.choice-row,
.hand-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-row label,
.hand-option,
.reading-option {
  position: relative;
  cursor: pointer;
}

.choice-row input,
.hand-option input,
.reading-option input {
  position: absolute;
  opacity: 0;
}

.choice-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 700;
}

.choice-row input:checked + span,
.choice-row input:focus-visible + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.hand-option > span {
  display: grid;
  align-content: start;
  min-height: 126px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface-raised), transparent 36%);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.hand-option b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: .74rem;
  letter-spacing: 0;
}

.hand-option strong {
  font-size: .88rem;
}

.hand-option small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: .69rem;
  line-height: 1.35;
}

.hand-option:hover > span,
.reading-option:hover > span {
  border-color: color-mix(in srgb, var(--accent), var(--line) 40%);
}

.hand-option input:checked + span,
.reading-option input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.hand-option input:checked + span {
  transform: translateY(-2px);
}

.hand-option input:focus-visible + span,
.reading-option input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.reading-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.reading-option > span {
  display: grid;
  gap: 5px;
  align-content: start;
  min-height: 132px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--surface-raised), transparent 36%);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.reading-option strong {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  font-size: .9rem;
}

.reading-option strong b {
  color: var(--accent);
  font-size: .86rem;
}

.reading-option em {
  color: var(--accent);
  font-size: .65rem;
  font-style: normal;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.reading-option small {
  color: var(--text-soft);
  font-size: .74rem;
  line-height: 1.35;
}

.form-step-actions {
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.form-step-actions .button {
  min-width: 132px;
}

.form-submit-actions {
  display: flex;
}

.form-submit-actions .button {
  margin-left: auto;
}

.step-back {
  min-height: 42px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.step-back:hover {
  color: var(--text);
}

.step-reassurance {
  color: var(--text-soft);
  font-size: .75rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--text-soft);
  font-size: .77rem;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.payment-consent {
  margin-top: 12px;
}

.payment-consent[hidden] {
  display: none;
}

.unlock-panel .payment-consent {
  max-width: 620px;
  font-size: .72rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.result-panel {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.result-panel[hidden],
.result-panel [hidden] {
  display: none !important;
}

.result-status p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: .9rem;
}

.skeleton {
  border-radius: 8px;
  background: var(--surface-strong);
}

.skeleton-title {
  width: 48%;
  height: 23px;
  margin-bottom: 16px;
}

.skeleton-line {
  width: 100%;
  height: 11px;
  margin-top: 8px;
}

.skeleton-line.short {
  width: 67%;
}

@media (prefers-reduced-motion: no-preference) {
  body[data-page-kind="home"] .hero-copy {
    animation: hero-copy-in 620ms cubic-bezier(.22, .8, .28, 1) both;
  }

  body[data-page-kind="home"] .hero-palm-visual {
    animation: hero-visual-in 760ms 80ms cubic-bezier(.22, .8, .28, 1) both;
  }

  body[data-page-kind="home"] .hero-experience > .tool-shell {
    animation: hero-tool-in 660ms 180ms cubic-bezier(.22, .8, .28, 1) both;
  }

  @keyframes hero-copy-in {
    from { opacity: 0; transform: translateY(18px); }
  }

  @keyframes hero-visual-in {
    from { opacity: 0; transform: translateX(18px) scale(.985); }
  }

  @keyframes hero-tool-in {
    from { opacity: 0; transform: translateY(calc(-50% + 18px)); }
  }

  .skeleton {
    background: linear-gradient(90deg, var(--surface-strong) 20%, var(--surface-raised) 50%, var(--surface-strong) 80%);
    background-size: 220% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
  }
  @keyframes skeleton-shimmer { to { background-position: -220% 0; } }
}

.result-overview {
  color: var(--text-soft);
}

.demo-result-note,
.checkout-success,
.checkout-cancelled,
.draft-notice {
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: var(--radius-control);
  background: var(--accent-soft);
  color: var(--text);
  font-size: .86rem;
}

.line-results {
  display: grid;
  gap: 13px;
}

.line-result {
  padding: 16px;
  border-radius: var(--radius-control);
  background: var(--surface);
}

.line-result h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.line-observation,
.line-interpretation {
  margin-bottom: 8px;
  font-size: .88rem;
}

.line-observation {
  color: var(--text-soft);
}

.unlock-panel,
.share-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius-control);
  background: var(--surface-raised);
}

.unlock-panel h3,
.share-panel h3,
.unlock-panel p,
.share-panel p {
  margin-bottom: 5px;
}

.unlock-panel p,
.share-panel p {
  color: var(--text-soft);
  font-size: .84rem;
}

.reading-disclaimer {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: .76rem;
}

.annotated-reading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.annotated-copy > p:not(.result-kicker) {
  color: var(--text-soft);
  font-size: .86rem;
}

.annotated-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-control);
  background: var(--surface-strong);
}

.annotated-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.annotated-photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.annotation-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 2px rgba(28, 31, 36, .24));
}

.annotation-heart { stroke: #d76975; }
.annotation-head { stroke: #587fa6; }
.annotation-life { stroke: #5d8a71; }

.line-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: .76rem;
  font-weight: 750;
}

.line-key span::before {
  display: inline-block;
  width: 18px;
  height: 3px;
  margin: 0 6px 2px 0;
  border-radius: 2px;
  content: "";
}

.key-heart::before { background: #d76975; }
.key-head::before { background: #587fa6; }
.key-life::before { background: #5d8a71; }

.chapter-results {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.report-chapter {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.report-chapter:last-child {
  border-bottom: 0;
}

.report-chapter p {
  color: var(--text-soft);
}

.chapter-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0;
  list-style: none;
}

.chapter-highlights li {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  font-size: .82rem;
}

.share-actions {
  display: flex;
  gap: 8px;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: var(--surface-raised);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--accent);
  font-size: .94rem;
  letter-spacing: .02em;
  line-height: 1.2;
}

.proof-grid span {
  color: var(--text-soft);
  font-size: .84rem;
}

.sample-section {
  display: grid;
  gap: 42px;
}

.sample-heading {
  max-width: 690px;
}

.sample-heading > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.sample-kicker,
.sample-reading-header span,
.sample-full-copy > span {
  display: block;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-kicker {
  margin-bottom: 12px;
}

.sample-reading {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.sample-reading-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  gap: 36px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
}

.sample-reading-header h3,
.sample-full-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.sample-reading-header p {
  max-width: 360px;
  margin: 0;
  color: var(--text-soft);
}

.sample-overview {
  margin: 0;
  padding: 0 clamp(28px, 5vw, 54px) clamp(28px, 4vw, 44px);
  color: var(--text-soft);
  font-size: 1.02rem;
}

.sample-line-list {
  border-top: 1px solid var(--line);
}

.sample-line {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  padding: clamp(26px, 4vw, 42px) clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}

.sample-line h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
}

.sample-line p {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--text-soft);
}

.sample-line p:last-child {
  margin-bottom: 0;
  color: var(--text);
}

.sample-line strong {
  color: var(--text);
}

.sample-full-excerpt {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(34px, 6vw, 64px);
  background: var(--surface-strong);
}

.sample-full-copy p {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--text-soft);
}

.sample-full-excerpt ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-full-excerpt li {
  display: grid;
  gap: 3px;
}

.sample-full-excerpt li strong {
  color: var(--text);
}

.sample-full-excerpt li span,
.sample-full-scope span,
.sample-action > span {
  color: var(--text-soft);
}

.sample-full-scope {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.sample-full-scope strong {
  color: var(--accent);
  font-size: 1.22rem;
}

.sample-action {
  display: flex;
  gap: 18px;
  align-items: center;
}

.sample-action > span {
  max-width: 290px;
  font-size: .86rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.editorial-photo {
  margin: 0;
}

.editorial-photo img,
.photo-quality-grid img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.step-list {
  display: grid;
  gap: 0;
}

.step-list article {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.step-list article:first-child {
  border-top: 1px solid var(--line);
}

.step-list p {
  margin: 0;
  color: var(--text-soft);
}

.line-explorer {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.line-feature {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.line-feature-large {
  grid-row: 1 / 3;
  min-height: 460px;
  padding: 44px;
  background: var(--surface-raised);
}

.line-feature-tinted {
  background: var(--accent-soft);
}

.line-feature p {
  max-width: 48ch;
  color: var(--text-soft);
}

.line-glyph {
  display: block;
  width: 96px;
  height: 58px;
  margin-bottom: 48px;
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  transform: rotate(8deg);
}

.line-feature-large .line-glyph {
  width: 180px;
  height: 110px;
  margin-bottom: 100px;
}

.related-inline {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--text-soft);
}

.related-inline a {
  color: var(--text);
  font-weight: 700;
  text-underline-offset: 4px;
}

.head-glyph { border-radius: 42%; transform: rotate(-6deg); }
.life-glyph { width: 72px; height: 80px; border-top: 0; border-left: 4px solid var(--accent); transform: rotate(24deg); }

.report-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(44px, 8vw, 110px);
}

.report-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.report-heading p,
.report-action span {
  color: var(--text-soft);
}

.chapter-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.chapter-map article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.chapter-map .chapter-lead {
  grid-column: 1 / 3;
  min-height: 240px;
  background: var(--surface-raised);
}

.chapter-lead strong {
  display: block;
  margin-bottom: 50px;
  color: var(--accent);
  font-size: 2rem;
}

.chapter-map p {
  color: var(--text-soft);
}

.report-action {
  grid-column: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.report-action span {
  max-width: 300px;
  font-size: .86rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 6px;
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 680px;
  padding-bottom: 24px;
  color: var(--text-soft);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-card);
  background: var(--surface-strong);
}

.final-cta h2,
.final-cta p {
  margin-bottom: 8px;
}

.final-cta p {
  color: var(--text-soft);
}

.free-flow,
.process-grid {
  display: grid;
  gap: 12px;
}

.free-flow {
  grid-template-columns: 1.2fr .9fr .9fr;
}

.free-flow article,
.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.free-flow article:first-child {
  min-height: 260px;
  background: var(--surface-raised);
}

.free-flow strong {
  color: var(--accent);
  font-size: 1.6rem;
}

.free-flow p,
.process-grid p,
.privacy-feature p,
.photo-quality-grid p {
  color: var(--text-soft);
}

.privacy-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-block: 1px solid var(--line);
}

.privacy-feature > div {
  max-width: 680px;
}

.photo-quality-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.quality-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.quality-notes span {
  padding: 10px 12px;
  border-radius: var(--radius-control);
  background: var(--surface-raised);
  font-size: .82rem;
  font-weight: 700;
}

.process-grid {
  grid-template-columns: 1.2fr .8fr;
}

.process-grid article:first-child {
  grid-row: 1 / 3;
  min-height: 330px;
  background: var(--accent-soft);
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-answer {
  padding-block: clamp(48px, 7vw, 82px);
  border-block: 1px solid var(--line);
  background: var(--surface-raised);
}

.guide-answer-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.guide-answer-grid h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.guide-answer-grid > p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.marriage-map {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.marriage-diagram {
  margin: 0;
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.marriage-diagram svg {
  width: 100%;
  color: var(--text-soft);
}

.diagram-hand {
  fill: var(--surface-raised);
  stroke: var(--text);
  stroke-width: 3;
  stroke-linejoin: round;
}

.diagram-heart,
.diagram-marriage,
.diagram-callout {
  fill: none;
  stroke-linecap: round;
}

.diagram-heart {
  stroke: var(--text-soft);
  stroke-width: 4;
}

.diagram-marriage {
  stroke: var(--accent);
  stroke-width: 7;
}

.diagram-callout {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 5 6;
}

.diagram-dot {
  fill: var(--accent);
}

.marriage-diagram text {
  fill: var(--text-soft);
  font-family: inherit;
  font-size: 14px;
}

.marriage-diagram .diagram-label {
  fill: var(--accent);
  font-size: 16px;
  font-weight: 800;
}

.marriage-diagram figcaption {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: .82rem;
}

.marriage-map-copy > p:not(.section-kicker) {
  color: var(--text-soft);
}

.locator-steps {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.locator-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.locator-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.locator-steps li > span {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
}

.locator-steps h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.locator-steps p {
  margin: 0;
  color: var(--text-soft);
  font-size: .9rem;
}

.variation-list {
  border-top: 1px solid var(--line);
}

.variation-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
  min-height: 142px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.variation-list article p {
  max-width: 580px;
  margin: 0;
  color: var(--text-soft);
}

.variation-mark {
  position: relative;
  display: block;
  width: 124px;
  height: 48px;
}

.variation-mark::before,
.variation-mark::after {
  position: absolute;
  left: 4px;
  top: 23px;
  width: 112px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  content: "";
}

.mark-faint::before { opacity: .34; }
.mark-faint::after { display: none; }
.mark-clear::before { height: 5px; }
.mark-clear::after { display: none; }
.mark-fork::before { width: 76px; }
.mark-fork::after { left: 76px; top: 16px; width: 42px; transform: rotate(-18deg); transform-origin: left center; }
.mark-multiple::before { top: 15px; width: 104px; }
.mark-multiple::after { top: 31px; width: 88px; opacity: .55; }

.reading-context {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(44px, 8vw, 110px);
  border-block: 1px solid var(--line);
}

.context-heading h2 {
  max-width: 10ch;
}

.context-columns {
  display: grid;
  gap: 0;
}

.context-columns article {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.context-columns article:first-child {
  padding-top: 0;
}

.context-columns article:last-child {
  border-bottom: 0;
}

.context-columns p {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
}

.guide-tool-bridge {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: end;
  background: var(--accent-soft);
}

.guide-tool-bridge > div:first-child {
  max-width: 720px;
}

.guide-tool-bridge > div:first-child p:last-child {
  color: var(--text-soft);
}

.guide-bridge-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.related-guide-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.related-guide-links a {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.related-guide-links a:last-child {
  border-right: 0;
}

.related-guide-links a:hover strong {
  color: var(--accent);
}

.related-guide-links span {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-guide-links strong {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.related-guide-links small {
  color: var(--text-soft);
  font-size: .86rem;
}

.site-footer {
  padding: 62px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .65fr .65fr;
  gap: 50px;
}

.footer-grid > div p {
  max-width: 360px;
  margin-top: 18px;
  color: var(--text-soft);
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid nav h2 {
  margin-bottom: 6px;
  font-size: .85rem;
  letter-spacing: .02em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: .78rem;
}

.reading-page {
  min-height: 70dvh;
  padding-block: 64px 100px;
}

.reading-page-heading {
  max-width: 780px;
  margin: 0 auto 36px;
}

.reading-page-heading h1 {
  max-width: none;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.reading-page > .result-panel {
  max-width: 920px;
  margin-inline: auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.retention-reminder {
  max-width: 920px;
  margin: 22px auto;
  color: var(--text-soft);
  font-size: .82rem;
  text-align: center;
}

.legal-page {
  min-height: 70dvh;
  padding-block: 72px 120px;
}

.legal-page > * {
  max-width: 760px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 36px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 46px;
  font-size: 1.7rem;
}

.legal-page p {
  color: var(--text-soft);
}

.draft-notice {
  max-width: 760px;
  color: var(--text);
}

.contact-block {
  margin: 42px 0;
  padding: 30px;
  border-radius: var(--radius-card);
  background: var(--surface-raised);
}

.contact-block h2 {
  margin-top: 0;
}

.contact-email {
  color: var(--accent);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

.error-page {
  min-height: 65dvh;
  padding-block: 100px;
}

.error-page > p:first-child {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.error-page h1 {
  max-width: 14ch;
}

.analytics-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: min(430px, calc(100vw - 40px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent p {
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: .9rem;
}

.analytics-consent div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.analytics-consent .button {
  min-height: 42px;
  padding: 9px 16px;
}

.text-button {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button:hover {
  color: var(--text);
}

.footer-choice {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-choice:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, .7fr) minmax(470px, 1.3fr);
    gap: 32px;
  }
  .home-hero {
    grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
    gap: 28px;
  }
  .hero-palm-visual { right: 110px; }
  .hero-experience > .tool-shell { width: min(420px, 78%); }
  h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
  .report-section { gap: 48px; }
}

@media (max-width: 820px) {
  .shell,
  .section-narrow {
    width: min(100% - 32px, var(--shell));
  }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero,
  .how-grid,
  .report-section,
  .photo-quality-grid,
  .guide-answer-grid,
  .marriage-map,
  .reading-context,
  .guide-tool-bridge,
  .annotated-reading {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-block: 44px 72px;
  }
  .home-hero {
    gap: 32px;
    min-height: auto;
    padding-block: 56px 72px;
  }
  .home-hero .hero-copy h1 { max-width: 11ch; }
  .home-hero .hero-copy > p:not(.hero-trust) { max-width: 520px; }
  .hero-experience { min-height: 620px; }
  .hero-palm-visual { inset: 0 180px 0 0; }
  .hero-experience > .tool-shell { width: min(450px, 66%); }
  .hero-copy {
    padding-top: 0;
  }
  .hero-copy h1 {
    max-width: 12ch;
  }
  .tool-shell {
    width: 100%;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .how-grid { gap: 44px; }
  .sample-reading-header,
  .sample-full-excerpt { grid-template-columns: 1fr; }
  .sample-full-scope { grid-column: 1; }
  .line-explorer { grid-template-columns: 1fr; grid-template-rows: auto; }
  .line-feature-large { grid-row: auto; min-height: 360px; }
  .report-heading { position: static; }
  .report-action { grid-column: 1; }
  .photo-quality-grid img { grid-row: 1; }
  .marriage-diagram { max-width: 680px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div { grid-column: 1 / 3; }
}

@media (max-width: 560px) {
  :root { --header-height: 62px; }
  .shell,
  .section-narrow { width: min(100% - 28px, var(--shell)); }
  .site-header .brand > span:last-child { display: none; }
  .header-inner > .button { min-height: 38px; padding: 8px 14px; }
  .hero { padding-block: 36px 58px; }
  .home-hero { gap: 34px; padding-block: 42px 62px; }
  .home-hero .hero-copy h1 { font-size: clamp(3.1rem, 15vw, 4.25rem); }
  .hero-experience {
    display: grid;
    min-height: 0;
  }
  .hero-palm-visual {
    position: relative;
    inset: auto;
    width: calc(100% - 20px);
    height: 390px;
  }
  .hero-palm-visual::after {
    background: linear-gradient(0deg, rgba(7, 17, 15, .82), transparent 55%);
  }
  .hero-experience > .tool-shell {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 14px);
    margin: -92px 0 0 auto;
    transform: none;
  }
  @media (prefers-reduced-motion: no-preference) {
    body[data-page-kind="home"] .hero-experience > .tool-shell {
      animation-name: hero-tool-mobile-in;
    }
    @keyframes hero-tool-mobile-in {
      from { opacity: 0; transform: translateY(18px); }
    }
  }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-copy > p { font-size: 1.02rem; }
  .tool-shell { padding: 18px; }
  .tool-heading-row { align-items: center; }
  .tool-heading-row h2 { font-size: 1.35rem; }
  .privacy-note { font-size: .68rem; }
  .upload-zone { grid-template-columns: 84px 1fr; min-height: 108px; }
  .upload-zone img { width: 84px; height: 84px; }
  .reading-options,
  .unlock-panel,
  .share-panel,
  .final-cta,
  .privacy-feature {
    grid-template-columns: 1fr;
  }
  .reading-option > span { min-height: 116px; }
  .form-step-actions { align-items: stretch; }
  .form-step-actions .button { min-width: 120px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 94px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .sample-line { grid-template-columns: 1fr; gap: 10px; }
  .sample-action { align-items: flex-start; flex-direction: column; }
  .sample-full-scope { grid-template-columns: 1fr; gap: 4px; }
  .line-feature,
  .line-feature-large { min-height: 250px; padding: 26px; }
  .line-feature-large .line-glyph { margin-bottom: 54px; }
  .chapter-map,
  .free-flow,
  .process-grid,
  .chapter-highlights,
  .quality-notes,
  .related-guide-links {
    grid-template-columns: 1fr;
  }
  .variation-list article { grid-template-columns: 100px 1fr; gap: 18px; }
  .variation-mark { width: 92px; }
  .variation-mark::before { width: 82px; }
  .mark-fork::before { width: 58px; }
  .mark-fork::after { left: 57px; width: 31px; }
  .mark-multiple::before { width: 78px; }
  .mark-multiple::after { width: 66px; }
  .related-guide-links a { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .related-guide-links a:last-child { border-bottom: 0; }
  .chapter-map .chapter-lead { grid-column: 1; }
  .process-grid article:first-child { grid-row: auto; min-height: 240px; }
  .report-action { align-items: flex-start; flex-direction: column; }
  .share-actions { width: 100%; flex-direction: column; }
  .share-actions .button { width: 100%; }
  .final-cta { margin-bottom: 48px; padding: 28px; }
  .final-cta .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div { grid-column: 1; }
  .footer-bottom { gap: 12px; align-items: flex-start; flex-direction: column; }
  .analytics-consent { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .analytics-consent div { align-items: stretch; flex-direction: column; }
  .analytics-consent .button, .analytics-consent .text-button { width: 100%; }
  .reading-page > .result-panel { padding: 20px; }
}

@media (max-width: 420px) {
  .home-hero .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 3.65rem); }
  .hero-palm-visual { height: 340px; }
  .hero-experience > .tool-shell { margin-top: -72px; }
  .tool-heading-row { gap: 10px; }
  .tool-kicker { display: none; }
  .privacy-note { padding-inline: 8px; }
  .hand-option > span { min-height: 94px; padding: 10px; }
  .hand-option b { margin-bottom: 10px; }
  .hand-option small { display: none; }
  .form-step-actions { gap: 10px; }
  .step-reassurance { max-width: 120px; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface);
    backdrop-filter: none;
  }
}
