:root {
  color-scheme: dark;
  --ink: #091114;
  --ink-soft: #101a20;
  --ink-raised: #17252b;
  --ink-line: #294047;
  --paper: #f5f7f4;
  --paper-soft: #d7dfdd;
  --muted: #9babad;
  --teal: #79ddd4;
  --teal-strong: #3fc5b9;
  --teal-dark: #123b3b;
  --gold: #efd089;
  --gold-soft: #7f6b3d;
  --rose: #ff8aa4;
  --rose-dark: #4a1e2a;
  --danger: #ff9b91;
  --success: #8ee5b8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--teal);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(121, 221, 212, 0.15);
  background: rgba(9, 17, 20, 0.88);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  background: var(--teal);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-nav > a:not(.button),
.header-back-link {
  color: var(--paper-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.header-nav > a:not(.button):hover,
.header-back-link:hover {
  color: var(--teal);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(63, 197, 185, 0.18);
}

.button-primary:hover {
  background: #96e9e1;
}

.button-secondary {
  border-color: var(--ink-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button-ghost {
  min-height: 42px;
  padding: 10px 17px;
  border-color: var(--ink-line);
  background: transparent;
  color: var(--paper);
}

.button-quiet {
  min-height: 42px;
  padding: 9px 16px;
  border-color: transparent;
  background: transparent;
  color: var(--teal);
}

.button-quiet:hover {
  background: rgba(121, 221, 212, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.button-wide {
  width: 100%;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--paper);
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h3 {
  font-weight: 850;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(64px, 8vw, 116px);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.hero-copy h1::after {
  color: var(--rose);
  content: "";
}

.hero-lead {
  max-width: 670px;
  margin: 0 0 24px;
  color: var(--paper-soft);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.42;
}

.outcome-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.outcome-row span {
  padding: 8px 12px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-note {
  max-width: 600px;
  margin: 0 0 28px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(121, 221, 212, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(121, 221, 212, 0.17), transparent 36%),
    linear-gradient(145deg, rgba(23, 37, 43, 0.98), rgba(11, 21, 25, 0.98));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(239, 208, 137, 0.13);
  border-radius: 50%;
  content: "";
  inset: -55px -45px auto auto;
}

.panel-topline,
.tool-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.mini-progress {
  height: 4px;
  margin: 12px 0 32px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ink-line);
}

.mini-progress span {
  display: block;
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.panel-question {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.preview-choice {
  margin-top: 10px;
  padding: 15px 17px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper-soft);
  font-weight: 700;
}

.preview-choice:nth-of-type(2) {
  border-color: rgba(121, 221, 212, 0.52);
  background: rgba(121, 221, 212, 0.08);
  color: var(--teal);
}

.panel-caption {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 750;
}

.free-check-section {
  padding-block: clamp(76px, 10vw, 130px);
  border-block: 1px solid var(--ink-line);
  background: var(--paper);
  color: #233237;
}

.split-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.7fr) minmax(400px, 1.3fr);
  gap: clamp(38px, 8vw, 110px);
}

.section-intro {
  position: sticky;
  top: 120px;
}

.free-check-section h2,
.free-check-section h3 {
  color: #102126;
}

.section-intro h2,
.section-heading h2,
.respect-card h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.section-intro p:not(.eyebrow) {
  color: #536368;
  font-size: 1.08rem;
}

.section-note {
  padding-left: 16px;
  border-left: 3px solid var(--teal-strong);
}

.check-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid #ccd6d3;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(27, 51, 55, 0.12);
}

.check-card fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.check-card legend {
  margin-bottom: 13px;
  color: #102126;
  font-weight: 850;
}

.radio-line {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #d7dfdc;
  border-radius: var(--radius-sm);
  background: #f8faf8;
  color: #314247;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.radio-line:hover {
  border-color: #78bdb7;
}

.radio-line:has(input:checked) {
  border-color: #2c9f96;
  background: #eaf8f5;
  color: #102e2e;
}

.radio-line input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #188f86;
}

.form-error {
  margin: 12px 0 0;
  color: #9c253b;
  font-weight: 750;
}

.quick-result {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: #102126;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.quick-result h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.quick-result > p:not(.result-kicker) {
  max-width: 650px;
  color: var(--paper-soft);
  font-size: 1.08rem;
}

.result-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quick-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.how-section {
  padding-block: clamp(82px, 11vw, 148px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.compact-heading {
  margin-inline: auto;
  text-align: center;
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
}

.steps-grid li {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--ink-raised), rgba(16, 26, 32, 0.72));
}

.step-number,
.feature-label {
  display: inline-flex;
  margin-bottom: 55px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps-grid h3,
.feature-grid h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.steps-grid p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.inside-section {
  padding-block: clamp(82px, 10vw, 135px);
  background: #0e1a1f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  background: var(--ink-line);
}

.feature-grid article {
  min-height: 255px;
  padding: 28px;
  background: var(--ink-soft);
}

.feature-grid .feature-label {
  margin-bottom: 38px;
  color: var(--gold);
}

.respect-section {
  padding-block: clamp(78px, 10vw, 140px);
}

.respect-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 7vw, 82px);
  border: 1px solid rgba(239, 208, 137, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #18282e, #0d171b);
}

.respect-card::after {
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(121, 221, 212, 0.05);
  border-radius: 50%;
  content: "";
}

.respect-card h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.respect-card > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 0;
  color: var(--paper-soft);
  font-size: 1.12rem;
}

.final-cta {
  padding-block: clamp(62px, 8vw, 96px);
  background: var(--teal);
  color: var(--ink);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--ink);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  margin: 0;
  color: #23403f;
  font-size: 1.08rem;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.final-cta .button-primary {
  background: var(--ink);
  color: var(--paper);
}

.final-cta .text-link {
  color: var(--ink);
}

.site-footer {
  padding-block: 54px;
  border-top: 1px solid var(--ink-line);
  background: #050a0c;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sse-credit {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 430px;
  text-decoration: none;
}

.sse-credit img {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(239, 208, 137, 0.3);
  border-radius: 50%;
  object-fit: cover;
}

.sse-credit span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sse-credit strong {
  color: var(--paper);
  font-size: 0.95rem;
}

.sse-credit small {
  color: var(--teal);
  font-size: 0.88rem;
}

.sse-credit:hover strong {
  color: var(--gold);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-copy p {
  margin: 4px 0;
}

.footer-copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
}

.footer-copy a {
  color: var(--paper-soft);
}

/* Access gate and guided tool */

.tool-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(121, 221, 212, 0.08), transparent 34%),
    var(--ink);
}

.tool-main {
  min-height: calc(100vh - 76px);
}

.access-shell {
  display: grid;
  width: min(100% - 40px, 640px);
  min-height: calc(100vh - 76px);
  margin-inline: auto;
  padding-block: 64px;
  place-items: center;
}

.access-card {
  width: 100%;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  background: rgba(16, 26, 32, 0.96);
  box-shadow: var(--shadow);
}

.access-card h1 {
  margin-bottom: 17px;
  font-size: clamp(2.55rem, 7vw, 4.5rem);
}

.access-card > p:not(.eyebrow) {
  color: var(--paper-soft);
}

.license-form {
  margin-top: 28px;
}

.license-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.license-form input {
  width: 100%;
  min-height: 58px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: #081014;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.license-form input::placeholder {
  color: #657579;
}

.license-form input:focus {
  border-color: var(--teal);
}

.gate-status {
  min-height: 26px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.gate-status.is-error {
  color: var(--danger);
}

.gate-status.is-success {
  color: var(--success);
}

.access-help {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
  color: var(--muted);
}

.access-help p {
  margin: 0;
}

.privacy-promise {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 30px;
  padding: 16px;
  border-left: 3px solid var(--teal);
  background: rgba(121, 221, 212, 0.06);
}

.privacy-promise strong {
  color: var(--teal);
}

.privacy-promise span {
  color: var(--paper-soft);
  font-size: 0.9rem;
}

.tool-shell,
.result-shell {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
  padding-block: clamp(44px, 8vw, 88px);
}

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

.tool-topbar h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.tool-stage-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tool-progress-wrap {
  margin-bottom: 24px;
}

.tool-progress {
  height: 7px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ink-line);
}

.tool-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-strong), var(--gold));
  transition: width 220ms ease;
}

.tool-card {
  min-height: 440px;
  padding: clamp(25px, 5vw, 46px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(23, 37, 43, 0.98), rgba(12, 22, 26, 0.98));
  box-shadow: var(--shadow);
}

.question-number {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.question-title {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  line-height: 1.16;
}

.question-help {
  max-width: 650px;
  margin: 0 0 26px;
  color: var(--muted);
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 66px;
  align-items: center;
  padding: 13px 18px 13px 54px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.choice-card:hover {
  border-color: #52747a;
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  border-color: var(--teal);
  background: rgba(121, 221, 212, 0.09);
}

.choice-card input {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--teal-strong);
  transform: translateY(-50%);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--paper);
  line-height: 1.35;
}

.choice-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.86rem;
}

.reflection-grid {
  display: grid;
  gap: 22px;
}

.reflection-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--paper);
  font-weight: 800;
}

.reflection-field p {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reflection-field textarea {
  width: 100%;
  min-height: 105px;
  resize: vertical;
  padding: 13px 14px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: #081014;
  color: var(--paper);
}

.reflection-field textarea:focus {
  border-color: var(--teal);
}

.tool-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.tool-actions .button-primary {
  justify-self: end;
  min-width: 210px;
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.result-header {
  padding: clamp(30px, 7vw, 62px);
  border-bottom: 1px solid var(--ink-line);
  background:
    radial-gradient(circle at 100% 0%, rgba(121, 221, 212, 0.17), transparent 42%),
    #132128;
}

.result-header h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  text-transform: uppercase;
}

.result-shell[data-outcome="text"] .result-header h1 {
  color: var(--teal);
}

.result-shell[data-outcome="wait"] .result-header h1 {
  color: var(--gold);
}

.result-shell[data-outcome="letgo"] .result-header h1 {
  color: var(--rose);
}

.result-summary {
  max-width: 640px;
  margin: 0;
  color: var(--paper-soft);
  font-size: 1.16rem;
}

.result-section {
  padding: clamp(26px, 5vw, 45px);
  border-bottom: 1px solid var(--ink-line);
}

.result-section h2 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.reason-list,
.plan-list {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--paper-soft);
}

.reason-list {
  padding-left: 23px;
}

.reason-list li::marker {
  color: var(--teal);
}

.plan-list {
  padding-left: 28px;
}

.plan-list li {
  padding-left: 7px;
}

.plan-list li::marker {
  color: var(--gold);
  font-weight: 900;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.message-template {
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #091316;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  line-height: 1.65;
}

.template-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reflection-summary dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.reflection-summary dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reflection-summary dd {
  margin: 0;
  color: var(--paper-soft);
  white-space: pre-wrap;
}

.result-boundary {
  padding: 25px clamp(26px, 5vw, 45px);
  border-bottom: 1px solid var(--ink-line);
  background: rgba(255, 138, 164, 0.07);
  color: #ffd0d9;
}

.result-boundary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--rose);
}

.result-disclaimer {
  padding: 25px clamp(26px, 5vw, 45px);
  color: var(--muted);
  font-size: 0.9rem;
}

.result-disclaimer strong {
  color: var(--paper-soft);
}

.result-disclaimer p {
  margin: 4px 0 0;
}

.print-brand {
  display: none;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.tool-footer {
  margin-top: 40px;
}

/* Legal pages */

.legal-main {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
  padding-block: clamp(60px, 9vw, 110px);
}

.legal-main h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.legal-main h2 {
  margin: 42px 0 13px;
  font-family: inherit;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.legal-main p,
.legal-main li {
  color: var(--paper-soft);
}

.legal-updated {
  color: var(--muted) !important;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .header-nav > a:not(.button) {
    display: none;
  }

  .hero,
  .split-section,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 650px;
  }

  .section-intro {
    position: static;
  }

  .steps-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-actions {
    align-items: flex-start;
  }

  .footer-copy {
    max-width: 660px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1160px);
    --radius-lg: 22px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .wordmark {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .wordmark-mark {
    width: 34px;
    height: 34px;
  }

  .header-nav .button,
  .header-back-link {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 54px 72px;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-actions,
  .hero-actions .button,
  .quick-result-actions,
  .quick-result-actions .button {
    width: 100%;
  }

  .hero-panel {
    padding: 24px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .check-card {
    padding: 20px;
  }

  .steps-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid li {
    min-height: 250px;
  }

  .feature-grid article {
    min-height: 220px;
  }

  .final-cta-actions,
  .final-cta-actions .button {
    width: 100%;
  }

  .sse-credit {
    align-items: center;
  }

  .sse-credit img {
    width: 78px;
    height: 78px;
  }

  .access-shell,
  .tool-shell,
  .result-shell {
    width: min(100% - 24px, 820px);
  }

  .access-shell {
    min-height: calc(100vh - 66px);
    padding-block: 34px;
  }

  .access-card {
    padding: 25px 20px;
  }

  .tool-topbar {
    align-items: center;
  }

  .tool-card {
    min-height: 390px;
    padding: 24px 18px;
  }

  .choice-card {
    padding-right: 13px;
    padding-left: 50px;
  }

  .tool-actions {
    grid-template-columns: 1fr 1.5fr;
  }

  .tool-actions .button-primary {
    min-width: 0;
    justify-self: stretch;
  }

  .result-actions {
    flex-direction: column;
  }

  .section-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media print {
  :root {
    color-scheme: light;
  }

  @page {
    margin: 14mm;
    size: A4;
  }

  body {
    background: #ffffff;
    color: #142126;
    font-size: 11pt;
  }

  .no-print,
  .site-header,
  .site-footer,
  #access-gate,
  #guided-tool {
    display: none !important;
  }

  .result-shell {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .result-card {
    overflow: visible;
    border: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .result-header,
  .result-section,
  .result-boundary,
  .result-disclaimer {
    break-inside: avoid;
    border-color: #c8d1ce;
    background: #ffffff !important;
    color: #142126;
  }

  .result-header {
    padding: 0 0 10mm;
  }

  .result-header h1,
  .result-shell[data-outcome] .result-header h1,
  .result-section h2,
  .message-template {
    color: #142126;
  }

  .result-summary,
  .reason-list,
  .plan-list,
  .reflection-summary dd,
  .template-note,
  .result-disclaimer,
  .result-disclaimer strong {
    color: #34464a;
  }

  .result-section {
    padding: 8mm 0;
  }

  .message-template {
    border-color: #279c94;
    background: #eef8f6;
  }

  .result-boundary {
    padding: 7mm 0;
  }

  .result-boundary strong {
    color: #9d2944;
  }

  .print-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 9mm;
    color: #506064;
    font-size: 8pt;
  }

  .print-brand img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
}
