@charset "UTF-8";

/* WAY: a quiet page, a clear question, room for a considered answer. */
:root {
  --ink: #172134;
  --muted: #687184;
  --accent: #2457e6;
  --accent-hover: #1747cb;
  --accent-pale: #edf2ff;
  --paper: #f7f8fc;
  --white: #fff;
  --line: #dde2eb;
  --line-strong: #c6cfdf;
  --pale: #eef1f6;
  --danger: #a33342;
  --radius: 18px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  color: var(--ink);
  background: var(--paper);
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }
body { margin: 0; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { color: inherit; cursor: pointer; touch-action: manipulation; }
button:disabled { cursor: not-allowed; opacity: .48; }
button:disabled .spinner { opacity: 1; }
a { color: inherit; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid #bdceff; outline-offset: 2px; border-color: var(--accent); }
input, textarea, select { accent-color: var(--accent); }
[hidden] { display: none !important; }
::selection { color: var(--ink); background: #cddcff; }

.page-shell { display: flex; flex-direction: column; width: 100%; max-width: 1160px; min-height: 100svh; margin: 0 auto; padding: calc(24px + var(--safe-top)) 22px calc(24px + var(--safe-bottom)); }
.app-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 55px; padding-bottom: 24px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: baseline; gap: 6px; text-decoration: none; font-size: 34px; line-height: 1; font-weight: 800; letter-spacing: -2.4px; }
.brand-point { width: 6px; height: 6px; background: var(--accent); }
.header-caption { color: var(--muted); font-size: 12px; line-height: 1.5; letter-spacing: .05px; text-align: right; }
#app { flex: 1; width: 100%; min-width: 0; outline: none; }
.app-footer { color: var(--muted); font-size: 12px; line-height: 1.6; letter-spacing: .15px; padding-top: 22px; margin-top: 42px; border-top: 1px solid var(--line); }
.demo-banner { width: fit-content; border-left: 2px solid var(--accent); color: #395083; background: var(--accent-pale); padding: 10px 14px; margin: -14px 0 28px; font-size: 12px; line-height: 1.6; }
.initial-loading { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); }
.initial-loading p { font-size: 16px; }
.spinner { display: inline-block; width: 22px; height: 22px; flex: 0 0 auto; border: 2px solid #d8e0f2; border-top-color: var(--accent); border-radius: 50%; animation: spin .9s linear infinite; }
.button .spinner { width: 18px; height: 18px; border-color: #ffffff60; border-top-color: #fff; }
.button-secondary .spinner { border-color: #d8e0f2; border-top-color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }
h1 { font-size: 38px; font-weight: 620; line-height: 1.12; letter-spacing: -1.45px; margin-bottom: 20px; }
h2 { font-size: 26px; font-weight: 620; line-height: 1.25; letter-spacing: -.65px; margin-bottom: 18px; }
h3 { font-size: 20px; font-weight: 630; line-height: 1.4; letter-spacing: -.35px; margin-bottom: 12px; }
p { font-size: 16px; line-height: 1.75; margin-bottom: 20px; overflow-wrap: break-word; }
.eyebrow, .intro-kicker { display: flex; align-items: center; gap: 10px; color: var(--accent); font-size: 12px; font-weight: 650; line-height: 1.6; letter-spacing: 1.25px; text-transform: uppercase; margin: 0 0 18px; }
.eyebrow::before, .intro-kicker::before { content: ""; width: 20px; height: 2px; flex: 0 0 auto; background: currentColor; }
.lead { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.small-copy { color: var(--muted); font-size: 14px; line-height: 1.75; }
.text-link { color: var(--accent); font-size: 14px; line-height: 1.7; text-decoration: underline; text-underline-offset: 4px; }
.text-button { min-height: 44px; padding: 12px 2px; border: 0; color: var(--muted); background: none; font-size: 14px; line-height: 1.55; text-underline-offset: 4px; }
.text-button:hover:enabled { color: var(--accent); text-decoration: underline; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 14px 21px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-size: 16px; font-weight: 620; line-height: 1.5; transition: background .16s ease, border-color .16s ease, box-shadow .16s ease; }
.button-primary { color: #fff; background: var(--accent); }
.button-primary:hover:enabled { background: var(--accent-hover); box-shadow: 0 3px 12px #2457e618; }
.button-secondary { color: var(--ink); border-color: var(--line-strong); background: transparent; }
.button-secondary:hover:enabled { border-color: #a8b7d3; background: var(--white); }
.button-danger { color: var(--danger); border-color: #e9cbd1; background: #fff5f6; }
.button-icon { width: 20px; height: 20px; min-width: 20px; flex: 0 0 auto; }
.full-width { width: 100%; }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line-strong); border-radius: 10px; background: transparent; font-size: 26px; }
.inline-error, .inline-warning { padding: 16px 18px; margin: 0 0 22px; border-left: 3px solid; border-radius: 0 8px 8px 0; font-size: 14px; line-height: 1.75; }
.inline-error { color: var(--danger); border-color: #bb5564; background: #fff1f3; }
.inline-warning { color: #655226; border-color: #ba9b51; background: #faf5e9; }

/* Context: a compact introduction and a generous, practical form. */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 660px; margin: 0 auto; }
.intro-copy { min-width: 0; }
.intro-copy h1 { max-width: 620px; margin-bottom: 20px; }
.intro-copy .lead { margin-bottom: 0; }
.abstract-mark { display: none; }
.session-steps { display: flex; list-style: none; gap: 25px; padding: 20px 0 0; margin: 23px 0 0; border-top: 1px solid var(--line); }
.session-steps li { flex: 1; color: var(--muted); font-size: 12px; line-height: 1.7; }
.session-steps strong { display: block; color: var(--ink); font-size: 16px; font-weight: 570; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; padding: 0; margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; list-style: none; }
.hero-meta span, .hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span + span::before, .hero-meta li + li::before { content: "·"; margin-right: 4px; color: #9aa4b7; }
.tiny-note { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14px; line-height: 1.75; margin: 23px 0 0; }
.tiny-note svg { width: 18px; height: 18px; min-width: 18px; color: #8290a7; margin-top: 3px; }
.form-card { min-width: 0; padding: 25px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.card-caption { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 23px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.card-caption h2 { font-size: 23px; font-weight: 620; letter-spacing: -.6px; margin: 0; }
.step-label { color: var(--muted); font-size: 12px; line-height: 1.5; letter-spacing: .5px; white-space: nowrap; }
.profile-fields { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.field { display: block; min-width: 0; margin-bottom: 23px; }
.field-label { display: block; margin-bottom: 10px; color: var(--ink); font-size: 14px; font-weight: 620; line-height: 1.5; }
.field-hint, .age-note { display: block; color: var(--muted); font-size: 12px; line-height: 1.7; margin-top: 9px; }
.age-note { margin-top: -14px; margin-bottom: 25px; }
.field input, .field select, .field textarea { display: block; width: 100%; max-width: 100%; min-width: 0; height: 54px; padding: 14px 15px; color: var(--ink); background: #fcfcfe; border: 1px solid var(--line-strong); border-radius: 9px; font-size: 16px; line-height: 1.5; transition: border-color .16s ease, background .16s ease; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #9eafcc; }
.field input::placeholder, .field textarea::placeholder { color: #7c879a; opacity: 1; }
.field select { appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 7 4 4 4-4' fill='none' stroke='%23687184' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field input[type=date] { min-width: 0; appearance: none; -webkit-appearance: none; }
.field input[type=date]::-webkit-date-and-time-value { text-align: left; }
.field textarea { height: 144px; min-height: 112px; max-height: 350px; resize: vertical; line-height: 1.75; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 27px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.consent input { width: 19px; height: 19px; min-width: 19px; margin: 4px 0 0; }
.consent a { color: var(--accent); text-underline-offset: 3px; }
.below-button { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; text-align: center; }

/* Questions: one subject at a time, with large, distinct answer targets. */
.question-view { width: 100%; max-width: 760px; margin: 0 auto; }
.question-topline { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.question-topline .eyebrow { margin: 0; font-size: 12px; letter-spacing: .8px; }
.question-counter { flex: 0 0 auto; color: var(--muted); font-size: 14px; line-height: 1.3; font-variant-numeric: tabular-nums; }
.question-counter strong { color: var(--ink); font-size: 23px; font-weight: 570; letter-spacing: -.5px; }
.progress-track { height: 3px; background: #dfe5f0; margin-bottom: 35px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); transition: width .25s ease; }
.question-surface { padding-top: 0; }
.question-section-label { color: var(--accent); font-size: 12px; font-weight: 620; line-height: 1.6; letter-spacing: .6px; margin: 0 0 15px; }
.question-title { font-size: 29px; font-weight: 580; line-height: 1.36; letter-spacing: -.8px; margin-bottom: 20px; }
.question-hint { max-width: 590px; color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 27px; }
.options { display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0 0 25px; border: 0; min-width: 0; }
.option { position: relative; display: flex; align-items: center; gap: 15px; min-height: 68px; padding: 17px 18px; border: 1px solid var(--line-strong); border-radius: 11px; background: var(--white); font-size: 16px; line-height: 1.65; cursor: pointer; overflow-wrap: anywhere; transition: border-color .16s ease, background .16s ease; }
.option:hover { border-color: #94a9d8; background: #fcfdff; }
.option:has(input:checked) { border-color: var(--accent); background: var(--accent-pale); box-shadow: inset 0 0 0 1px var(--accent); }
.option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.option:has(input:focus-visible) { outline: 3px solid #8cafff; outline-offset: 3px; }
.option-marker { display: flex; align-items: center; justify-content: center; width: 29px; height: 29px; min-width: 29px; border: 1px solid var(--line-strong); border-radius: 7px; color: var(--muted); background: transparent; font-size: 12px; line-height: 1; }
.option input:checked + .option-marker { color: #fff; border-color: var(--accent); background: var(--accent); }
.option:has(input:disabled) { cursor: wait; }
.answer-text { margin: 20px 0 0; }
.answer-text .field { margin-bottom: 0; }
.character-count { color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; margin: 8px 0 0; }
.question-actions, .question-navigation { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.question-actions .button-primary, .question-navigation .button-primary { flex: 1; }
.question-navigation .question-actions { flex: 1; margin-top: 0; }
.back-button { width: 55px; min-width: 55px; padding: 13px; }
.skip-row { text-align: center; margin-top: 10px; }
.save-note { color: var(--muted); font-size: 12px; line-height: 1.75; text-align: center; margin: 17px auto 0; max-width: 570px; }

/* Waiting states deliberately avoid simulated completion. */
.loading-view { max-width: 600px; padding: 25px 0 35px; margin: 0 auto; text-align: center; }
.loading-orbit { display: flex; align-items: center; justify-content: center; height: 85px; margin-bottom: 28px; }
.loading-core { display: flex; align-items: center; justify-content: center; width: 68px; height: 68px; background: var(--accent-pale); border-radius: 18px; color: var(--accent); }
.loading-core svg { width: 29px; height: 29px; }
.loading-view h1 { max-width: 540px; font-size: 35px; line-height: 1.2; margin: 0 auto 23px; }
.loading-view .lead { margin: 0 auto 28px; font-size: 17px; }
.loading-status { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 14px; line-height: 1.65; margin: 30px 0; }
.loading-status .spinner { width: 17px; height: 17px; }
.loading-info { max-width: 430px; padding: 24px 0 0; margin: 30px auto 0; border-top: 1px solid var(--line); text-align: left; }
.loading-info h3 { font-size: 16px; margin-bottom: 9px; }
.loading-info p { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 0; }
.notice-card { width: 100%; max-width: 580px; padding: 8px 0 32px; margin: 0 auto; }
.notice-symbol { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; color: var(--accent); background: var(--accent-pale); border-radius: 15px; font-size: 30px; margin-bottom: 30px; }
.notice-card h1 { font-size: 36px; }
.notice-card p { color: var(--muted); }
.notice-card .inline-error { color: var(--danger); }
.notice-card .button { width: 100%; margin-top: 9px; }

/* A personal essay: a single reading column and clear chapters. */
.report { width: 100%; max-width: 820px; margin: 0 auto; }
.report-header { padding: 2px 0 34px; margin-bottom: 0; border-bottom: 1px solid var(--line-strong); }
.report-header .eyebrow { margin-bottom: 21px; }
.report-label { display: inline-block; color: var(--muted); font-size: 12px; line-height: 1.7; letter-spacing: .5px; margin-bottom: 23px; }
.report-header h1 { max-width: 800px; font-family: Georgia, "Times New Roman", serif; font-size: 42px; line-height: 1.13; font-weight: 400; letter-spacing: -1.25px; margin-bottom: 28px; text-wrap: pretty; }
.report-header > p:not(.eyebrow), .report-intro { max-width: 690px; color: #3d4860; font-size: 20px; line-height: 1.75; margin-bottom: 0; }
.report-intro p { max-width: 690px; font-size: 20px; line-height: 1.75; margin-bottom: 22px; }
.report-intro p:last-child { margin-bottom: 0; }
.report-toc { display: flex; flex-wrap: wrap; gap: 12px 23px; padding: 24px 0; margin: 0; list-style: none; border-bottom: 1px solid var(--line); }
.report-toc > span { width: 100%; color: var(--muted); font-size: 12px; line-height: 1.7; letter-spacing: .6px; text-transform: uppercase; }
.report-toc a { display: inline-flex; align-items: center; gap: 8px; min-height: 30px; color: #52627f; font-size: 14px; line-height: 1.7; text-decoration: none; }
.report-toc a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.report-section { padding: 36px 0 0; margin: 0; scroll-margin-top: 24px; }
.report-section + .report-section { margin-top: 16px; border-top: 1px solid var(--line-strong); }
.section-heading, .report-section-title { display: flex; align-items: baseline; gap: 17px; margin-bottom: 26px; }
.section-heading h2, .report-section-title h2 { font-size: 28px; font-weight: 600; line-height: 1.25; letter-spacing: -.65px; margin: 0; }
.section-number { color: var(--accent); font-size: 12px; font-weight: 650; line-height: 1.5; font-variant-numeric: tabular-nums; min-width: 20px; }
.report-section-intro { max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.8; margin: 0 0 27px; }
.insight-grid, .finding-list { display: block; padding: 0; margin: 0; list-style: none; }
.insight-card { padding: 0 0 29px; margin: 0 0 29px; background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.insight-card:last-child { margin-bottom: 0; border-bottom: 0; }
.finding-list > li { list-style: none; }
.finding-index, .scenario-index { display: block; color: var(--accent); font-size: 12px; font-weight: 650; line-height: 1.7; letter-spacing: .6px; margin-bottom: 9px; }
.insight-card h3 { max-width: 680px; color: var(--ink); font-size: 22px; line-height: 1.4; font-weight: 590; letter-spacing: -.45px; margin-bottom: 14px; }
.report p { max-width: 690px; }
.insight-card p, .scenario-card p, .report-section > p, .practices li { color: #46526a; font-size: 17px; line-height: 1.8; }
.insight-card p { margin-bottom: 20px; }
.insight-card p:last-child { margin-bottom: 0; }
.evidence { max-width: 690px; padding: 1px 0 0; margin-top: 20px; }
.evidence summary { width: fit-content; color: #53678e; font-size: 14px; line-height: 1.7; cursor: pointer; text-underline-offset: 4px; }
.evidence summary:hover { color: var(--accent); text-decoration: underline; }
.evidence[open] { padding: 17px 20px; border-left: 2px solid #a8bdf2; background: #f0f3fa; }
.evidence ol { padding-left: 25px; margin: 19px 0 0; }
.evidence li { color: #68758d; font-size: 15px; line-height: 1.8; padding-left: 5px; margin: 17px 0; overflow-wrap: anywhere; }
.evidence li:last-child { margin-bottom: 0; }
.evidence-answer { display: block; color: var(--ink); margin-top: 7px; }
.scenario-card { padding: 0 0 32px; margin: 0 0 29px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.scenario-card:last-child { margin-bottom: 0; border-bottom: 0; }
.scenario-card h3 { max-width: 680px; font-size: 22px; font-weight: 590; line-height: 1.4; letter-spacing: -.45px; margin-bottom: 14px; }
.scenario-card p { margin-bottom: 20px; }
.scenario-note { color: var(--muted); font-size: 15px; line-height: 1.8; margin: -3px 0 29px; }
.scenario-action { display: flex; align-items: flex-start; gap: 15px; padding: 18px 20px; margin-top: 23px; max-width: 690px; background: var(--accent-pale); border-left: 2px solid var(--accent); }
.scenario-action svg { width: 18px; height: 18px; min-width: 18px; color: var(--accent); margin-top: 5px; }
.scenario-action > div { min-width: 0; }
.scenario-action strong { display: block; color: #354a78; font-size: 14px; font-weight: 650; line-height: 1.6; margin-bottom: 7px; }
.scenario-action p { color: #354a78; font-size: 16px; line-height: 1.8; margin: 0; }
.practices { list-style: none; counter-reset: practice; padding: 0; margin: 0; }
.practices li { display: flex; align-items: flex-start; gap: 19px; counter-increment: practice; padding: 22px 0; border-bottom: 1px solid var(--line); }
.practices li:first-child { padding-top: 0; }
.practices li:last-child { border-bottom: 0; }
.practices li::before { content: counter(practice, decimal-leading-zero); color: var(--accent); font-size: 12px; line-height: 1.7; font-weight: 650; min-width: 20px; margin-top: 4px; font-variant-numeric: tabular-nums; }
.limitations { max-width: 690px; padding: 26px 0 0; margin-top: 34px; border-top: 1px solid var(--line); }
.limitations h3 { font-size: 14px; font-weight: 630; letter-spacing: 0; margin-bottom: 12px; }
.limitations p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 15px; }
.report-toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin: 29px 0 0; }
.report-toolbar .button { font-size: 14px; }
.report-finish { max-width: 690px; padding-top: 30px; margin-top: 36px; border-top: 1px solid var(--line-strong); }
.report-finish h2 { font-size: 27px; line-height: 1.3; }
.report-finish p { color: var(--muted); font-size: 17px; line-height: 1.8; }

/* Review: a useful index of answers, not another dashboard. */
.review-intro { width: 100%; max-width: 760px; margin: 0 auto; }
.review-intro h1 { max-width: 620px; font-size: 36px; line-height: 1.15; }
.review-intro .lead { max-width: 630px; }
.review-stats { display: flex; gap: 0; padding: 24px 0; margin: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-stat { flex: 1; padding: 0 16px; }
.review-stat:first-child { padding-left: 0; }
.review-stat + .review-stat { border-left: 1px solid var(--line); }
.review-stat strong { display: block; font-size: 32px; line-height: 1.15; letter-spacing: -1px; font-weight: 560; font-variant-numeric: tabular-nums; margin-bottom: 8px; }
.review-stat span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.review-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.review-actions .button-primary { flex: 1; }
.review-list { list-style: none; padding: 0; margin: 32px 0 0; border-top: 1px solid var(--line); }
.review-list li { border-bottom: 1px solid var(--line); }
.review-question { display: grid; grid-template-columns: 23px minmax(0, 1fr); gap: 6px 13px; align-items: baseline; width: 100%; min-height: 80px; padding: 20px 0; border: 0; background: transparent; text-align: left; font-size: 16px; line-height: 1.7; }
.review-question:hover { color: var(--accent); }
.review-number { grid-column: 1; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.review-question-copy { grid-column: 2; overflow-wrap: anywhere; }
.review-status { grid-column: 2; color: #45628f; font-size: 12px; line-height: 1.6; }
.review-status.skipped { color: var(--muted); }
.review-status.empty { color: var(--danger); }

.sr-only { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; white-space: nowrap; }
.noscript { margin: 0; padding: 24px; color: var(--ink); background: var(--white); text-align: center; }

@media (min-width: 600px) {
  .page-shell { padding: calc(34px + var(--safe-top)) 42px calc(29px + var(--safe-bottom)); }
  .app-header { padding-bottom: 28px; margin-bottom: 45px; }
  .brand { font-size: 38px; }
  .header-caption { font-size: 14px; }
  h1 { font-size: 47px; letter-spacing: -1.8px; }
  .form-card { padding: 33px; }
  .intro-grid { gap: 37px; }
  .question-title { font-size: 34px; line-height: 1.35; letter-spacing: -1.1px; }
  .option { min-height: 73px; padding: 19px 21px; gap: 18px; font-size: 17px; }
  .question-hint { font-size: 15px; }
  .progress-track { margin-bottom: 43px; }
  .report-header { padding-bottom: 41px; }
  .report-header h1 { font-size: 54px; letter-spacing: -1.8px; }
  .report-header > p:not(.eyebrow), .report-intro, .report-intro p { font-size: 22px; line-height: 1.75; }
  .report-section { padding-top: 43px; }
  .section-heading h2, .report-section-title h2 { font-size: 32px; }
  .insight-card h3, .scenario-card h3 { font-size: 23px; }
  .review-intro h1 { font-size: 43px; }
  .review-question { grid-template-columns: 26px minmax(0, 1fr) 84px; gap: 17px; padding: 23px 0; }
  .review-status { grid-column: 3; text-align: right; }
  .app-footer { margin-top: 55px; }
}
@media (min-width: 960px) {
  .page-shell { padding-top: calc(43px + var(--safe-top)); padding-left: 48px; padding-right: 48px; }
  .app-header { margin-bottom: 59px; }
  .intro-grid { max-width: none; grid-template-columns: minmax(0, .95fr) minmax(0, 1.1fr); gap: 75px; align-items: start; }
  .intro-copy { padding-top: 12px; }
  .intro-copy h1 { font-size: 64px; line-height: 1.05; letter-spacing: -2.8px; margin-bottom: 27px; }
  .intro-copy .lead { font-size: 18px; line-height: 1.8; }
  .session-steps { padding-top: 26px; margin-top: 33px; gap: 17px; }
  .session-steps strong { font-size: 18px; }
  .tiny-note { margin-top: 29px; }
  .form-card { padding: 36px; }
  .card-caption { padding-bottom: 26px; margin-bottom: 28px; }
  .card-caption h2 { font-size: 25px; }
  .question-view { padding-top: 2px; }
  .question-title { font-size: 37px; line-height: 1.34; }
  .loading-view { padding-top: 34px; }
  .loading-view h1 { font-size: 43px; }
  .notice-card { padding-top: 10px; }
  .notice-card h1 { font-size: 44px; }
  .report-header h1 { font-size: 60px; line-height: 1.12; }
  .report-section { padding-top: 47px; }
  .report-section + .report-section { margin-top: 23px; }
  .section-heading, .report-section-title { gap: 22px; margin-bottom: 30px; }
  .insight-card, .scenario-card { padding-bottom: 33px; margin-bottom: 33px; }
  .app-footer { margin-top: 68px; }
}
@media (max-width: 760px) {
  .intro-grid { gap: 23px; }
  .intro-copy .eyebrow, .intro-kicker { margin-bottom: 13px; }
  .intro-copy h1 { margin-bottom: 15px; }
  .session-steps { display: none; }
  .hero-meta { gap: 7px 16px; margin-top: 15px; }
  .tiny-note { margin-top: 16px; }
  .intro-grid .card-caption { padding-bottom: 19px; margin-bottom: 21px; }
}
@media (max-width: 370px) {
  .page-shell { padding-left: 17px; padding-right: 17px; }
  .header-caption { max-width: 125px; }
  .intro-copy h1 { font-size: 34px; letter-spacing: -1.2px; }
  .session-steps { gap: 13px; }
  .form-card { padding: 23px 18px; }
  .card-caption { gap: 10px; }
  .card-caption h2 { font-size: 21px; }
  .question-title { font-size: 26px; letter-spacing: -.6px; }
  .question-topline .eyebrow { font-size: 12px; letter-spacing: .4px; }
  .question-topline .eyebrow::before { display: none; }
  .option { padding: 16px 14px; gap: 12px; }
  .report-header h1 { font-size: 37px; letter-spacing: -1px; }
  .report-header > p:not(.eyebrow), .report-intro, .report-intro p { font-size: 19px; }
  .section-heading, .report-section-title { gap: 12px; }
  .section-heading h2, .report-section-title h2 { font-size: 25px; }
  .scenario-action { padding: 16px; gap: 12px; }
  .review-intro h1 { font-size: 33px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition: none !important; scroll-behavior: auto !important; }
  .spinner { border-top-width: 4px; }
}
@media print {
  :root, body, .page-shell { background: #fff; color: #172134; }
  .page-shell { padding: 0; margin: 0; min-height: 0; max-width: none; }
  .app-header, .app-footer, .demo-banner, .report-toolbar, .report-toc { display: none !important; }
  .report { max-width: none; }
  .report-header h1 { font-size: 36px; }
  .report-header > p:not(.eyebrow), .report-intro, .report-intro p { font-size: 19px; }
  .report-section { padding-top: 30px; }
  .section-heading h2, .report-section-title h2 { font-size: 25px; }
  .insight-card, .scenario-card, .practices li { break-inside: avoid; }
  .scenario-action { background: transparent; border-color: #c6cfdf; }
  .evidence { display: none; }
}
