:root {
  --brand-purple: #4b2458;
  --aubergine-deep: #4b2458;
  --aubergine-dark: #4b2458;
  --aubergine-light: #4b2458;
  --aubergine-muted: var(--brand-purple);
  --aubergine-panel: var(--brand-purple);
  --white: #ffffff;
  --cyan: #5C98FF;
  --pocket-yellow: #f4d58d;
  --pocket-yellow-hover: #ffffff;
  --apricot: var(--pocket-yellow);
  --apricot-hover: var(--pocket-yellow-hover);
  --ember: var(--pocket-yellow);
  --raspberry: var(--aubergine-dark);
  --coral: var(--impact-orange);
  --action-blue: #5C98FF;
  --pale-aubergine: #f3f4f6;
  --impact-orange: #e87535;
  --impact-orange-wash: #fff5ed;
  --secondary-navy: #536273;
  --reading-navy: #121c2d;
  --data-purple: var(--brand-purple);
  --error: #ffd2c8;
  --font-display: "Forum", Georgia, serif;
  --font-body: "Instrument Sans", Arial, sans-serif;
  --content: 1120px;
  --question: 47%;
  --answer: 43%;
  --ease: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--aubergine-light);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--aubergine-dark);
}
.skip-link:focus { transform: none; }

.hero {
  min-height: clamp(405px, 57vh, 590px);
  display: grid;
  place-items: center;
  padding: 46px 24px 40px;
  background: var(--aubergine-deep);
  text-align: center;
}
.hero__inner { width: min(100%, 920px); }
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 8vw, 6.9rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.035em;
}
.hero h1 span { display: inline-block; margin-top: .16em; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: clamp(34px, 6vh, 58px);
}
.brand__pocket {
  position: relative;
  width: 54px;
  height: 47px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--raspberry);
  border-top: 0;
  border-radius: 5px 5px 24px 24px;
  box-shadow: inset 0 -8px 14px rgb(0 0 0 / 15%);
}
.brand__pocket::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -7px;
  width: 64px;
  height: 15px;
  border-bottom: 4px solid var(--raspberry);
  border-radius: 50%;
}
.brand__pocket span {
  position: relative;
  z-index: 1;
  transform: rotate(-10deg);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}
.brand__name { font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 600; }
.brand__name em { font-family: var(--font-display); font-size: 1.25em; font-style: normal; font-weight: 400; }
.hero__support { margin: 16px 0 0; color: rgb(255 255 255 / 78%); font-size: clamp(.92rem, 1.7vw, 1.05rem); }

.questionnaire {
  min-height: 620px;
  border-top: 0;
  background: var(--aubergine-light);
}
.questionnaire__inner { width: min(100% - 48px, var(--content)); margin: 0 auto; padding: clamp(70px, 9vw, 118px) 0 100px; }
.intro { width: min(100%, 880px); }
.intro h2, .review-panel h2, .details-stage h2, .summary h2, .confirmation h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
}
.choice-row { display: flex; gap: 18px; margin-top: 34px; }
.choice, .answer-choice {
  min-width: 116px;
  border: 1px solid rgb(255 255 255 / 62%);
  border-radius: 999px;
  background: transparent;
  padding: 12px 25px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.choice:hover, .choice:focus-visible, .answer-choice:hover, .answer-choice:focus-visible, .answer-choice[aria-pressed="true"] {
  border-color: var(--white);
  background: var(--white);
  color: var(--aubergine-dark);
  transform: translateY(-1px);
}
.intro__copy { max-width: 760px; margin-top: 44px; animation: reveal .35s ease both; }
.intro__copy p { margin: 0 0 14px; font-size: clamp(1.05rem, 2vw, 1.25rem); }

.primary-button {
  width: fit-content;
  border: 1px solid var(--pocket-yellow);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  padding: 14px 27px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.review-panel > .primary-button,
.summary-actions .primary-button {
  background: transparent;
  color: var(--white);
}
.review-panel > .primary-button:hover,
.review-panel > .primary-button:focus-visible,
.summary-actions .primary-button:hover,
.summary-actions .primary-button:focus-visible {
  background: var(--pocket-yellow);
  color: #261134;
}
.primary-button:hover, .primary-button:focus-visible { background: var(--pocket-yellow); color: #261134; transform: translateY(-1px); box-shadow: none; }
.primary-button span { margin-left: .45em; color: var(--pocket-yellow); }
.primary-button:hover span, .primary-button:focus-visible span { color: #261134; }
.primary-button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.intro__copy .primary-button { margin-top: 23px; }
.text-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 5px 0; cursor: pointer; }

.interview { margin-top: 0; }
.transcript { display: grid; gap: 19px; }
.transcript-row, .question-row {
  display: grid;
  grid-template-columns: minmax(0, var(--question)) minmax(0, var(--answer));
  gap: 7%;
  align-items: baseline;
}
.question-row {
  grid-template-columns: 1fr;
  gap: 18px;
}
.transcript-row { color: rgb(255 255 255 / 64%); }
.transcript-row dt, .transcript-row dd { margin: 0; }
.transcript-row dt { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.85rem); line-height: 1.12; }
.transcript-row dd { font-weight: 600; overflow-wrap: anywhere; }
.transcript-row button { border: 0; border-bottom: 1px solid transparent; background: transparent; color: inherit; padding: 0; text-align: left; cursor: pointer; }
.transcript-row button:hover, .transcript-row button:focus-visible { color: var(--white); border-bottom-color: currentColor; }
.active-question { margin-top: 28px; animation: reveal .34s ease both; }
.question-label { font-family: var(--font-display); font-size: clamp(1.85rem, 4vw, 3.35rem); line-height: 1.05; }
.answer-area { align-self: center; }
.answer-controls { display: flex; flex-wrap: wrap; gap: 12px; }
.field-wrap { position: relative; }
.field-wrap input, .field-wrap select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 72%);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  padding: 9px 3px 8px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}
.field-wrap input:focus, .field-wrap select:focus { border-bottom: 2px solid var(--cyan); }
.field-wrap input::placeholder { color: rgb(255 255 255 / 48%); }
.field-wrap select option { color: #111; }
.field-note { display: block; margin-top: 8px; color: rgb(255 255 255 / 62%); font-size: .84rem; }
.next-button { margin-top: 19px; }
.error-message { min-height: 1.4em; margin: 9px 0 0; color: var(--error); font-size: .88rem; }

.review-panel, .process-stage, .summary, .confirmation { max-width: 880px; animation: reveal .42s ease both; }
.review-panel p, .summary > p, .confirmation p { font-size: clamp(1.05rem, 2vw, 1.24rem); }
.review-panel__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.details-stage { animation: reveal .4s ease both; }
.process-stage {
  width: min(100%, 720px);
  margin: 0 auto;
}
.process-stage h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.35vw, 1.75rem);
  font-weight: 600;
  text-align: center;
}
.process-stage > .section-marker { justify-content: center; }
.recovery-path {
  display: grid;
  grid-template-columns: 72px 26px 72px 26px 72px;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 26px auto 32px;
  color: var(--pocket-yellow);
  text-align: center;
}
.recovery-path > div { display: grid; justify-items: center; gap: 5px; }
.recovery-path img {
  width: 50px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  opacity: .9;
}
.recovery-path span { font-size: .8rem; font-weight: 600; }
.recovery-path .path-arrow { font-size: 1rem; opacity: .65; }
.resolution-first {
  margin: 22px 0 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--pocket-yellow);
  background: var(--aubergine-panel);
}
.resolution-first .section-marker { margin: 0 0 8px; }
.resolution-first h3 { margin: 0 0 10px; font-size: 1.08rem; }
.resolution-first p:not(.section-marker) { margin: 7px 0 0; color: rgb(255 255 255 / 78%); font-size: .96rem; line-height: 1.55; }
.path-question strong {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(244 213 141 / 58%);
  border-radius: 50%;
  font-size: 1.35rem;
}
.process-steps {
  display: grid;
  gap: 24px;
  margin: 34px 0 28px;
}
.process-steps article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
}
.process-number {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pocket-yellow);
  color: #261134;
  font-size: .76rem;
  font-weight: 700;
}
.process-steps article .process-number { background: var(--pocket-yellow); }
.process-steps h3 { margin: 1px 0 7px; font-size: 1.08rem; }
.process-steps p { margin: 0; color: rgb(255 255 255 / 78%); font-size: .96rem; line-height: 1.55; }
.process-steps .process-price { margin-top: 8px; color: #fff; }
.process-price strong { color: var(--cyan); font-size: 1.05rem; }
.process-steps .process-note { margin-top: 10px; color: rgb(255 255 255 / 68%); font-size: .9rem; }
.process-steps article:first-child .process-note { color: var(--pocket-yellow); text-align: center; }
.service-fee {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 18px;
  margin-top: 14px;
  padding: 15px 17px;
  border-left: 3px solid var(--pocket-yellow);
  background: var(--aubergine-panel);
}
.service-fee > span { color: var(--white); font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.service-fee > strong { grid-row: 1 / 3; grid-column: 2; align-self: center; color: var(--pocket-yellow); font-size: 1.55rem; }
.process-steps .service-fee > p { grid-column: 1; color: rgb(255 255 255 / 68%); font-size: .88rem; }
.process-worth {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--pocket-yellow);
  font-size: .92rem;
  font-weight: 600;
  text-align: center;
}
.process-stage > .primary-button {
  display: block;
  margin: 0 0 0 auto;
  background: transparent;
  color: var(--white);
}
.recovery-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1.25fr) 34px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--aubergine-panel);
}
.recovery-example span { display: grid; justify-items: center; gap: 2px; text-align: center; }
.recovery-example small { color: rgb(255 255 255 / 62%); font-size: .78rem; }
.recovery-example strong { color: var(--pocket-yellow); font-size: 1rem; }
.recovery-example b {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: var(--cyan);
  font-size: 1.3rem;
  line-height: 1;
}
.recovery-example__total strong { color: var(--pocket-yellow); font-weight: 700; }
.process-guidance {
  margin-top: 10px !important;
  color: var(--pocket-yellow) !important;
  font-weight: 600;
}
.mediation-comparison {
  margin-top: 24px;
  padding: 22px;
  border-top: 3px solid var(--action-blue);
  background: var(--pale-aubergine);
}
.mediation-comparison .section-marker { margin: 0 0 8px; }
.mediation-comparison h4 {
  margin: 0;
  color: var(--reading-navy);
  font-size: 1.08rem;
  line-height: 1.35;
}
.process-steps .mediation-intro {
  margin-top: 9px;
  color: var(--secondary-navy);
}
.mediation-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.mediation-comparison__grid article {
  display: block;
  padding: 17px;
  border-left: 3px solid var(--aubergine-dark);
  background: #fff;
}
.mediation-comparison__grid h5 {
  margin: 0 0 7px;
  color: var(--aubergine-dark);
  font-size: 1rem;
}
.mediation-comparison__grid ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 18px;
}
.mediation-comparison__grid li {
  color: var(--reading-navy);
  font-size: .9rem;
  line-height: 1.45;
}
.process-steps .mediation-difference {
  margin-top: 18px;
  color: var(--aubergine-dark);
  text-align: center;
}

.distinction-graphic {
  display: grid;
  justify-items: center;
  gap: 9px;
  margin: 22px 0 12px;
  padding: 22px;
  border: 1px solid rgb(46 18 61 / 18%);
  background: #fff;
}

.distinction-parties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  width: 100%;
}

.distinction-parties > span {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.distinction-parties b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--aubergine-dark);
  color: #fff;
  font: 700 1.25rem/1 var(--font-display);
}

.distinction-parties .distinction-mediator b { background: var(--action-blue); }
.distinction-parties small,
.distinction-result small { color: rgb(30 48 72 / 68%); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.distinction-parties strong { color: var(--reading-navy); font-size: .84rem; line-height: 1.25; }
.distinction-arrow { color: var(--action-blue); font-size: 1.4rem; line-height: 1; }
.distinction-result { display: grid; justify-items: center; gap: 2px; width: min(100%, 310px); padding: 12px 18px; border-left: 4px solid var(--coral); background: #fff4f1; text-align: center; }
.distinction-result strong { color: var(--reading-navy); font-size: 1.35rem; }
.distinction-result--court { border-left-color: var(--action-blue); background: #eef4ff; }
.distinction-result--court strong { font-size: 1rem; }
.process-steps .distinction-caption { margin: 10px auto 20px; color: var(--reading-navy); font-weight: 700; line-height: 1.5; text-align: center; }

@media (max-width: 560px) {
  .distinction-graphic { padding: 18px 12px; }
  .distinction-parties { gap: 7px; }
  .distinction-parties b { width: 42px; height: 42px; }
  .distinction-parties strong { font-size: .72rem; }
}
.mediation-enforcement {
  margin-top: 17px;
  padding: 16px 18px;
  border-left: 3px solid var(--impact-orange);
  background: var(--impact-orange-wash);
}
.mediation-enforcement > strong { color: var(--reading-navy); }
.process-steps .mediation-enforcement p { margin-top: 5px; }
.process-steps .mediation-effort { margin-top: 15px; }
.process-steps .mediation-disclaimer {
  margin-top: 14px;
  color: var(--secondary-navy);
  font-size: .78rem;
}
@media (max-width: 520px) {
  .recovery-path {
    grid-template-columns: 58px 18px 58px 18px 58px;
    gap: 5px;
  }
  .recovery-example {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .recovery-example b { display: block; line-height: .8; }
  .mediation-comparison { padding: 18px 15px; }
  .mediation-comparison__grid { grid-template-columns: 1fr; }
}
.details-stage__heading { max-width: 870px; margin-bottom: 40px; }
.summary-list { display: grid; grid-template-columns: 1fr; gap: 8px; width: min(100%, 660px); margin: 24px 0; }
.summary-list div {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 14px;
  border-bottom: 0;
  padding-bottom: 0;
}
.summary-list dt { color: rgb(255 255 255 / 64%); font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
.summary-list dd { margin: 3px 0 0; overflow-wrap: anywhere; }
.consent { display: flex; align-items: flex-start; gap: 12px; max-width: 720px; margin: 20px 0; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--apricot); }
.consent input:focus-visible {
  outline: 2px solid var(--pocket-yellow);
  outline-offset: 3px;
}
.consent input.authorization-pulse {
  animation: authorization-pulse 1.2s ease-in-out 2;
}
.consent > span > span { display: block; }
.authorization-error {
  margin: -12px 0 18px;
  color: var(--pocket-yellow);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.authorization-error.authorization-error--blink {
  animation: authorization-error-blink .7s ease-in-out 3;
}
.summary .summary-edit { display: block; margin: 0; color: rgb(255 255 255 / 70%); font-size: .9rem; }
.summary-intro {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 1rem !important;
  line-height: 1.45;
}
.summary-decision { max-width: 680px; color: rgb(255 255 255 / 72%); }
.summary-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin-top: 20px;
}
.summary-logo {
  display: block;
  width: 62px;
  height: auto;
  margin: 0;
}
.summary-logo-frame {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin: 34px auto 0;
  border-radius: 28px 28px 38px 38px;
  background: var(--data-purple);
  box-shadow: 0 10px 24px rgb(50 20 65 / 16%);
}
.summary-strength {
  margin: 16px auto 0 !important;
  color: #f4d58d;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem) !important;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}
.summary-strength span { display: block; }
.disclaimer { margin-top: 42px !important; color: rgb(255 255 255 / 60%); font-size: .84rem !important; }
.eyebrow { margin: 0 0 9px !important; color: var(--apricot); font-size: .7rem !important; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.confirmation code { color: var(--apricot); }

.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px max(24px, calc((100vw - var(--content)) / 2)); background: var(--aubergine-deep); color: rgb(255 255 255 / 55%); font-size: .78rem; }
.site-footer p { margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

@keyframes reveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }

@media (max-width: 720px) {
  .hero { min-height: 430px; padding-inline: 20px; }
  .hero h1 { line-height: .91; }
  .brand { gap: 10px; }
  .brand__pocket { width: 45px; height: 40px; border-width: 3px; }
  .brand__pocket::before { border-width: 3px; }
  .questionnaire__inner { width: min(100% - 34px, var(--content)); padding: 64px 0 78px; }
  .choice-row { gap: 10px; }
  .choice { min-width: 94px; }
  .transcript-row { grid-template-columns: minmax(0, 42%) minmax(0, 58%); gap: 10px; }
  .question-row { grid-template-columns: 1fr; gap: 7px; }
  .transcript { gap: 22px; }
  .transcript-row dd { padding-left: 0; }
  .answer-area { margin-top: 12px; }
  .summary-list { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
}

/* Approved homepage composition — August 12 visual master */
body { background: #261134; }
.masthead,
.landing { background: #261134; }
.masthead {
  position: relative;
  width: min(100% - 96px, 600px);
  margin: 0 auto;
  padding-top: 17px;
}
.return-link {
  position: fixed;
  z-index: 10;
  top: 18px;
  right: 22px;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--pocket-yellow);
  padding: 5px 0;
  font-size: .76rem;
  font-weight: 650;
  cursor: pointer;
}
.return-link:hover, .return-link:focus-visible { color: var(--white); }
.return-dialog {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgb(16 7 27 / 78%);
  padding: 18px;
  backdrop-filter: blur(3px);
}
.return-dialog__panel { position: relative; width: min(100%, 560px); border: 1px solid rgb(244 213 141 / 38%); border-radius: 18px; background: var(--aubergine-panel); color: var(--white); padding: 34px; box-shadow: 0 24px 70px rgb(0 0 0 / 42%); }
.return-dialog h2 { margin: 3px 0 25px; font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.return-intro { max-width: 32rem; margin: -14px 0 24px; color: rgb(255 255 255 / 76%); font-size: .92rem; line-height: 1.55; }
.return-dialog__close { position: absolute; top: 11px; right: 15px; border: 0; background: transparent; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.continue-device { width: 100%; border: 0; border-radius: 10px; background: var(--pocket-yellow); color: #261134; padding: 13px 16px; font-weight: 750; cursor: pointer; }
.continue-device span { margin-left: .4em; }
.return-divider { margin: 17px 0; color: rgb(255 255 255 / 62%); text-align: center; }
.return-form label { display: block; margin-bottom: 11px; color: rgb(255 255 255 / 82%); font-size: .9rem; }
.return-entry { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.return-entry input { min-width: 0; border: 0; border-radius: 8px; background: #fff; color: #261134; padding: 12px 13px; }
.return-entry button { border: 0; background: transparent; color: var(--pocket-yellow); padding: 9px 4px; font-weight: 700; cursor: pointer; }
.return-method { display: block; margin: 12px 0 0 auto; border: 0; background: transparent; color: rgb(255 255 255 / 78%); padding: 4px 0; font: inherit; font-size: .82rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.return-method:hover, .return-method:focus-visible { color: var(--pocket-yellow); }
.return-status { min-height: 1.5em; margin: 13px 0 0; font-size: .85rem; }
.masthead__logo { display: block; width: min(100%, 540px); height: auto; margin: 0 auto; }
.masthead__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 11px auto 0;
}
.landing {
  position: relative;
  width: min(100% - 120px, 574px);
  min-height: 450px;
  margin: 0 auto;
  padding: 25px 0 42px;
  overflow: hidden;
}
.landing h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.15vw, 2.7rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
  text-align: center;
}
.landing h1 strong {
  display: inline-block;
  font-weight: 700;
  transform: translateX(-0.28em);
}
.deductions {
  position: relative;
  z-index: 2;
  width: min(100%, 490px);
  margin: 30px auto 0;
  font-size: clamp(.82rem, 1.23vw, 1rem);
  line-height: 1.35;
}
.deductions > p { margin: 0 0 13px; }
.deductions ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 48px;
  list-style: none;
}
.deductions li { position: relative; }
.deductions li::before {
  content: "";
  position: absolute;
  top: .47em;
  left: -30px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #f4d58d;
}
.landing__prompt {
  position: relative;
  z-index: 2;
  margin-top: 31px;
  font-size: clamp(.82rem, 1.19vw, .98rem);
}
.landing__prompt > p { margin: 0 0 8px; }
.landing__prompt div { margin-left: 76px; }
.landing__prompt span { display: block; }
.landing__pocket {
  position: absolute;
  z-index: 1;
  right: -105px;
  bottom: 13px;
  width: 301px;
  height: auto;
  opacity: .9;
}
.questionnaire {
  min-height: 430px;
  border-top: 0;
  background: #1b1028;
}
.questionnaire__inner {
  width: min(100% - 72px, 760px);
  min-height: 430px;
  display: flex;
  align-items: flex-start;
  padding-top: 76px;
  padding-bottom: 64px;
}
.interview { width: 100%; }
.question-back {
  display: block;
  margin: 0 0 18px;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 62%);
  padding: 4px 0;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
}
.question-back:hover,
.question-back:focus-visible { color: var(--pocket-yellow); }
.question-back span { margin-right: .3em; }
.save-status {
  min-height: 1em;
  margin: -39px 0 22px !important;
  color: var(--form-data) !important;
  font-size: .72rem !important;
  text-align: right;
}
.question-row {
  grid-template-columns: minmax(0, 54%) minmax(220px, 36%);
  gap: 10%;
  align-items: start;
}
.question-label {
  padding-top: 7px;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.15vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.field-wrap input,
.field-wrap select {
  font-size: 1rem;
}

.email-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 520px);
}

.question-row--email-pair {
  grid-template-columns: 1fr;
  gap: 14px;
}

.question-row--email-pair .field-wrap {
  width: min(100%, 560px);
}

.email-pair__field {
  display: grid;
  gap: 5px;
}

.email-pair__field span {
  color: var(--reading-navy);
  font-size: .72rem;
  font-weight: 600;
}

@media (max-width: 560px) {
  .email-pair { grid-template-columns: 1fr; gap: 12px; }
}
.answer-area { justify-self: start; width: auto; }
.field-wrap { width: min(100%, 220px); }
.field-wrap input[type="date"] {
  width: 190px;
  max-width: 100%;
  padding: 6px 2px 7px;
  font-size: .92rem;
  font-weight: 500;
}
.field-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  width: 15px;
  height: 15px;
  opacity: .62;
  filter: invert(1);
  cursor: pointer;
}
.field-note { margin-top: 7px; font-size: .76rem; }
.next-button {
  margin-top: 16px;
  padding: 10px 21px;
  font-size: .88rem;
}
.choice,
.answer-choice {
  border-color: #aa75bd;
  background: #815092;
  color: var(--white);
}
.choice:hover,
.choice:focus-visible,
.answer-choice:hover,
.answer-choice:focus-visible,
.answer-choice[aria-pressed="true"] {
  border-color: #c28bd2;
  background: #9860aa;
  color: var(--white);
}
.site-footer { background: #261134; }
.site-footer {
  width: 100%;
  padding: 20px max(28px, calc((100vw - 760px) / 2));
  white-space: normal;
}
.site-footer p:last-child { text-align: right; }

/* Questionnaire is a separate screen, entered after the homepage pause. */
body:not(.questionnaire-active) {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}
body:not(.questionnaire-active) .questionnaire,
body:not(.questionnaire-active) .site-footer {
  display: none;
}
body.questionnaire-active .skip-link,
body.questionnaire-active .masthead,
body.questionnaire-active .landing {
  display: none;
}
body.questionnaire-active {
  min-height: 100vh;
  background: #261134;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.questionnaire {
  min-height: calc(100vh - 58px);
  border-top: 0;
  background: #261134;
}
.questionnaire__inner {
  width: min(100% - 72px, 760px);
  min-height: calc(100vh - 58px);
  display: block;
  padding: 30px 0 42px;
}
.active-question { margin-top: 0; animation: question-fade .48s ease both; }
.question-header {
  margin: 0 0 12px;
  color: var(--pocket-yellow);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.active-question .question-label {
  position: relative;
  padding-left: 16px;
}
.active-question .question-label::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4d58d;
}
.transcript {
  gap: 12px;
  margin-bottom: 16px;
}
.transcript-row,
.question-row {
  grid-template-columns: minmax(0, 54%) minmax(168px, 36%);
  gap: 10%;
  align-items: start;
}
.transcript-row {
  color: rgb(255 255 255 / 52%);
}
.transcript-row dt,
.transcript-row dd,
.transcript-row button,
.question-label {
  padding-top: 4px;
  font-family: var(--font-body);
  font-size: clamp(.94rem, 1.35vw, 1.08rem);
  font-weight: 500;
  line-height: 1.3;
}
.transcript-row dd,
.transcript-row button {
  padding-top: 2px;
  font-size: .88rem;
  line-height: 1.35;
}
.transcript-row--single {
  grid-template-columns: minmax(0, 58%) minmax(0, 32%);
  gap: 10%;
  align-items: baseline;
}
.transcript-row--single dt,
.transcript-row--single dd,
.transcript-row--single button {
  padding-top: 4px;
  white-space: nowrap;
}
.answer-area {
  width: 100%;
  justify-self: stretch;
}
.answer-controls--amount {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px;
}
.answer-choice--amount {
  min-width: 78px;
  padding: 8px 14px;
  font-size: .78rem;
}
.amount-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.amount-entry input {
  width: 100%;
  font-size: .78rem;
  font-weight: 500;
}
.amount-entry .field-next {
  justify-self: end;
  margin: 0;
}
.field-next {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #f4d58d;
  padding: 5px 1px 3px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
.field-next:hover,
.field-next:focus-visible {
  outline: 0;
  color: var(--pocket-yellow);
}
.field-wrap > .field-next { margin-top: 10px; }
.field-wrap { width: 100%; }
.field-wrap--date {
  width: 100%;
  min-height: 54px;
  cursor: pointer;
}
.sdg-date-picker { position: relative; width: 100%; }
.date-trigger {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgb(79 155 166 / 58%);
  background: transparent;
  color: var(--white);
  padding: 10px 2px 7px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.date-trigger:focus-visible { outline: 2px solid var(--pocket-yellow); outline-offset: 3px; }
.date-trigger svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.calendar-panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: min(300px, calc(100vw - 46px));
  border: 1px solid rgb(244 213 141 / 35%);
  border-radius: 10px;
  background: var(--brand-purple);
  padding: 12px;
  box-shadow: 0 16px 38px rgb(0 0 0 / 35%);
}
.calendar-panel__header { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; margin-bottom: 8px; text-align: center; }
.calendar-panel__header button,
.calendar-grid button { border: 0; background: transparent; color: var(--white); cursor: pointer; }
.calendar-panel__header button { min-height: 34px; font-size: 1.3rem; }
.calendar-panel__header button:disabled,
.calendar-grid button:disabled { color: rgb(255 255 255 / 22%); cursor: default; }
.calendar-panel__header strong { color: var(--pocket-yellow); font-size: .82rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar-grid__weekday { padding: 5px 0; color: rgb(255 255 255 / 48%); font-size: .62rem; text-align: center; }
.calendar-grid button { aspect-ratio: 1; border-radius: 50%; font-size: .72rem; }
.calendar-grid button:not(:disabled):hover,
.calendar-grid button:not(:disabled):focus-visible { background: rgb(255 255 255 / 12%); outline: 0; }
.calendar-grid button.is-selected { background: var(--pocket-yellow); color: #261134; font-weight: 700; }
.field-wrap--address { width: 100%; }
.address-fields {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px 14px;
}
.address-field { display: grid; gap: 4px; }
.address-field span { color: rgb(255 255 255 / 62%); font-size: .7rem; }
.address-field--rentalStreet,
.address-field--rentalCity { grid-column: 1; }
.address-field--rentalUnit,
.address-field--rentalState { grid-column: 2; }
.address-field--rentalZip { grid-column: 1 / -1; width: 120px; }
.address-next { margin-top: 14px; }
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"] {
  border-bottom: 1px solid rgb(79 155 166 / 58%);
}
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap input[type="date"]:focus {
  border-bottom: 1px solid #4f9ba6;
}
.field-wrap input[type="date"] {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 52px;
  padding: 13px 38px 7px 2px;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}
.field-wrap input[type="date"]:focus {
  border: 0;
  outline: 0;
}
.field-wrap input[type="date"]::-webkit-datetime-edit,
.field-wrap input[type="date"]::-webkit-date-and-time-value { display: block; }
.field-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.calendar-icon {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 2px;
  width: 19px;
  height: 19px;
  color: rgb(255 255 255 / 78%);
  pointer-events: none;
}
.calendar-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.date-next { display: block; margin-top: 10px; }
.field-note {
  margin-top: 6px;
  color: rgb(255 255 255 / 48%);
  font-size: .7rem;
}
.review-panel {
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: left;
}
.review-first {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  color: rgb(255 255 255 / 72%);
  font-size: .78rem;
}
.claim-result {
  width: min(90%, 540px);
  margin: 0 auto;
  padding: 26px 28px 25px;
  border-left: 0;
  background: var(--aubergine-panel);
  text-align: center;
  animation: findings-reveal .5s ease both;
}
.review-panel .claim-result h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
}
.claim-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--pocket-yellow);
  font-size: 1.02em;
  font-weight: 750;
  letter-spacing: .03em;
}
.review-panel .claim-result h2 > span:last-child { display: block; }
.review-panel .claim-promise {
  margin: 16px auto 0;
  color: #f4d58d;
  font-size: clamp(.88rem, 1.35vw, 1rem);
  animation: delayed-promise .55s ease 1s both;
}
.confirmation-promise { color: var(--pocket-yellow); font-weight: 650; text-align: center; }
.confirmation {
  width: min(100%, 700px);
  margin-inline: auto;
  text-align: center;
}
.confirmation-copy {
  max-width: 620px;
  margin: 8px auto 0;
  line-height: 1.48;
  text-align: center;
}
.confirmation-copy span { display: block; }
.friend-share {
  width: min(100%, 480px);
  margin: 34px auto 0;
  padding: 21px 28px 18px;
  border: 1px solid rgb(244 213 141 / 18%);
  background: var(--aubergine-panel);
  text-align: center;
}
.friend-share__marker { margin: 0 0 8px !important; color: var(--pocket-yellow); font-size: .67rem !important; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.friend-share h3 { margin: 0; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.25; }
.friend-share > p:not(.friend-share__marker, .friend-share__status) { max-width: 390px; margin: 10px auto 15px; color: rgb(255 255 255 / 72%); font-size: .88rem; line-height: 1.48; }
.friend-share .primary-button { display: block; margin-inline: auto; background: transparent; color: var(--white); }
.friend-share__status { min-height: 1.2em; margin: 8px 0 0 !important; color: rgb(255 255 255 / 58%); font-size: .72rem !important; text-align: center; }

/* Forward-action convention: every primary move-forward control sits right. */
.interview .primary-button {
  display: block;
  margin-left: auto;
  margin-right: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pocket-yellow);
  padding: 7px 0;
  font-size: .82rem;
  line-height: 1.2;
  box-shadow: none;
}
.interview .primary-button:hover,
.interview .primary-button:focus-visible {
  background: transparent;
  color: var(--white);
  transform: none;
  box-shadow: none;
}
.interview .primary-button span,
.interview .primary-button:hover span,
.interview .primary-button:focus-visible span {
  margin-left: .3em;
  color: currentColor;
}
.reality-statement {
  width: min(100%, 590px);
  margin: 30px auto;
  padding: 20px 26px;
  border: 1px solid var(--coral);
  color: var(--coral);
  text-align: center;
}
.reality-statement p {
  margin: 0;
  color: inherit;
  font-size: clamp(.98rem, 1.65vw, 1.12rem);
  font-weight: 650;
  line-height: 1.42;
}
.review-panel .reality-statement { max-width: 470px; }
.process-stage > .reality-statement { margin-top: 26px; margin-bottom: 28px; }
.summary .reality-statement--summary { margin-top: 24px; margin-bottom: 28px; }
.review-panel .claim-instruction {
  max-width: 430px;
  margin: 14px 0 20px auto;
  color: rgb(255 255 255 / 62%);
  font-size: .82rem;
}
.review-panel > .primary-button { margin: 0 0 0 auto; }
.review-panel__actions { margin-top: 0; }

/* Section-title convention: compact Instrument Sans with one pocket-yellow cue. */
.details-stage__heading h2,
.process-stage h2,
.summary h2,
.confirmation h2 {
  font-family: var(--font-body);
  color: var(--pocket-yellow);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  text-align: center;
}
#process-title { color: var(--white); }
.summary > .section-marker,
.confirmation > .eyebrow { justify-content: center; text-align: center; }
.summary-intro { margin-inline: auto; text-align: center; }
.summary h2 {
  max-width: 650px;
  margin-inline: auto;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.3;
}
.details-stage__heading {
  border-left: 0;
  padding-left: 0;
}
.section-marker {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin: 0 0 12px !important;
  color: #f4d58d;
  font-size: .7rem !important;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@keyframes question-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes findings-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes delayed-promise { from { opacity: 0; } to { opacity: 1; } }
@keyframes authorization-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgb(244 213 141 / 0%)); }
  50% { filter: drop-shadow(0 0 7px rgb(244 213 141 / 90%)); }
}
@keyframes authorization-error-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .18; }
}
@media (prefers-reduced-motion: reduce) {
  .active-question,
  .review-panel,
  .claim-result,
  .review-panel .claim-promise { animation: none; }
  .consent input.authorization-pulse {
    animation: none;
    outline: 3px solid #f4d58d;
    outline-offset: 3px;
  }
  .authorization-error.authorization-error--blink {
    animation: none;
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
}

/* Calendar-purple data system and deliberate address alignment. */
.active-question .answer-area {
  padding-left: 16px;
}

.field-wrap--address {
  width: 100%;
  margin-left: 0;
}

.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger {
  border-bottom-color: rgb(50 20 65 / 38%);
}

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap input[type="date"]:focus,
.date-trigger:focus-visible {
  border-bottom-color: var(--data-purple);
}

.calendar-icon,
.date-trigger svg {
  color: var(--data-purple);
}

.transcript-row dd button,
.summary-list dd {
  white-space: pre-line;
}

@media (max-width: 720px) {
  .active-question .answer-area {
    padding-left: 12px;
  }

  .field-wrap--address {
    width: 100%;
    margin-left: 0;
  }
}

/* Rebalance the hero body copy beneath the centered headline. */
@media (min-width: 721px) {
  .landing .deductions {
    transform: translateX(48px);
  }

  .landing .landing__prompt {
    transform: none;
  }

  .landing .landing__prompt > p,
  .landing .landing__prompt > div {
    transform: translateX(48px);
  }
}

/* Final alignment and calendar-purple process treatment. */
.transcript-row--address {
  grid-template-columns: minmax(0, 58%) minmax(0, 32%);
  gap: 10%;
  align-items: start;
}

.recovery-path {
  background: var(--brand-purple);
}

.deductions li::before,
.active-question .question-label::before,
.process-number,
.process-steps article .process-number {
  background: var(--brand-purple);
}

.process-steps article:nth-child(4) .service-fee > strong {
  color: var(--action-blue) !important;
}

.process-guidance,
.recovery-example small,
.recovery-example strong,
.recovery-example b,
.recovery-example__total strong {
  color: var(--action-blue) !important;
}

@media (max-width: 720px) {
  .transcript-row--address {
    grid-template-columns: minmax(0, 58%) minmax(0, 32%);
    gap: 10%;
  }
}

/* Screenshot-directed refinements — August 16. */

/* Keep saved and entered data unmistakably bright purple. */
.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value {
  color: var(--data-purple) !important;
}

/* Address: street/unit first line; city/state/ZIP together on line two. */
.field-wrap--address {
  width: calc(100% - 16px);
  margin-left: 16px;
}

.address-fields {
  grid-template-columns: minmax(0, 1fr) 82px 118px;
  gap: 12px 14px;
}

.address-field--rentalStreet { grid-column: 1 / 3; grid-row: 1; }
.address-field--rentalUnit { grid-column: 3; grid-row: 1; }
.address-field--rentalCity { grid-column: 1; grid-row: 2; }
.address-field--rentalState { grid-column: 2; grid-row: 2; }
.address-field--rentalZip {
  grid-column: 3;
  grid-row: 2;
  width: auto;
}

/* Review screen supporting actions use the same readable size. */
.review-first,
.review-panel .claim-instruction {
  font-size: .9rem;
  line-height: 1.4;
}

/* Recovery diagram: lighter, recognizably purple—not indigo. */
.recovery-path {
  background: var(--brand-purple);
  color: var(--pocket-yellow);
}

.recovery-path .path-question strong {
  border-color: rgb(244 213 141 / 78%);
  color: var(--pocket-yellow);
}

/* Eliminate the remaining pink cast from process and choice surfaces. */
.choice,
.answer-choice,
.resolution-first,
.service-fee,
.recovery-example,
.confirmation .friend-share {
  background: #f3f4f6;
}

.reality-statement {
  background: #fffaf5;
}

/* Make the no-upfront explanation a structured note. */
.process-steps article:first-child .process-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--action-blue);
  background: #f3f4f6;
  color: var(--reading-navy);
  font-size: .9rem;
  line-height: 1.5;
  text-align: left;
}

.process-steps article:first-child .process-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--action-blue);
}

/* Tenant Fact Summary and recovery figures return to pocket yellow. */
.process-steps article:nth-child(4) .service-fee > strong,
.process-guidance,
.recovery-example strong,
.recovery-example__total strong {
  color: var(--pocket-yellow) !important;
}

@media (max-width: 720px) {
  .field-wrap--address {
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .address-fields {
    grid-template-columns: minmax(0, 1fr) 64px 94px;
    gap: 10px;
  }
}
.begin-button {
  display: block;
  margin: 20px 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pocket-yellow);
  padding: 7px 0;
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
}
.begin-button:hover,
.begin-button:focus-visible { background: transparent; color: var(--white); }
.begin-button span { margin-left: .3em; color: currentColor; }
.begin-button:hover span, .begin-button:focus-visible span { color: currentColor; }

/* Final layout convention: inputs stack below questions and forward controls stay predictable. */
.question-row {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.deductions li::before,
.active-question .question-label::before,
.process-number,
.process-steps article .process-number { background: var(--pocket-yellow); }
.field-note { font-size: .9rem; }
.address-field span { color: rgb(255 255 255 / 68%); font-size: .82rem; }
.review-first,
.summary .summary-edit { font-size: .9rem; }
.forward-action {
  position: static;
  display: block;
  margin: 18px 0 0 auto;
  padding: 10px 2px;
  color: var(--pocket-yellow);
  font-size: 1rem;
  font-weight: 750;
}

/* Opacity-only section reveals keep viewport-fixed actions anchored to the screen. */
.review-panel,
.process-stage,
.details-stage,
.summary {
  animation: question-fade .4s ease both;
}
.exit-button {
  position: static;
  margin: 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 68%);
  padding: 10px 2px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}
.exit-button:hover,
.exit-button:focus-visible { color: var(--white); }
.stage-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
}
.stage-actions .forward-action,
.stage-actions .exit-button {
  position: static;
  margin: 0;
}
.stage-actions .forward-action,
.stage-actions .exit-button,
.summary .summary-edit {
  font-size: .9rem;
  font-weight: 650;
}
.summary .summary-edit {
  border-bottom: 0;
  text-align: left;
}
.site-footer {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 4px;
  text-align: right;
}
.site-footer p,
.site-footer p:last-child { text-align: right; }
.questionnaire__inner,
.review-panel,
.process-stage,
.summary { padding-bottom: 44px; }

.field-wrap input:-webkit-autofill,
.field-wrap input:-webkit-autofill:hover,
.field-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: #261134;
  box-shadow: 0 0 0 1000px #fff inset;
  caret-color: #261134;
}

/* Request received: white editorial field with an aubergine masthead. */
body.confirmation-active,
body.confirmation-active .questionnaire,
body.confirmation-active .questionnaire__inner {
  background: #fff;
}
body.confirmation-active .questionnaire__inner {
  width: min(100% - 48px, 760px);
}
body.confirmation-active .site-footer {
  background: var(--aubergine-deep);
}
.confirmation {
  width: min(100%, 760px);
  margin-inline: auto;
  color: var(--aubergine-deep);
}
.confirmation-masthead {
  position: relative;
  padding: 32px 34px 34px;
  background: var(--data-purple);
  color: var(--white);
}
.confirmation-masthead::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 0;
  width: 92px;
  height: 3px;
  background: var(--cyan);
}
.confirmation-masthead h2 {
  color: var(--pocket-yellow);
}
.confirmation-copy {
  color: rgb(255 255 255 / 84%);
}
.confirmation-body {
  padding: 34px 34px 38px;
  background: #fff;
  color: var(--aubergine-deep);
}
.confirmation-promise {
  width: fit-content;
  margin: 0 auto;
  padding: 13px 22px 14px;
  background: var(--pocket-yellow);
  color: var(--aubergine-deep);
  font-weight: 700;
  line-height: 1.35;
}
.confirmation .friend-share {
  border: 1px solid rgb(38 17 52 / 18%);
  border-left: 4px solid var(--cyan);
  background: #f7f3f8;
  color: var(--aubergine-deep);
}
.confirmation .friend-share__marker {
  color: var(--brand-purple);
}
.confirmation .friend-share > p:not(.friend-share__marker, .friend-share__status) {
  color: rgb(38 17 52 / 72%);
}
.confirmation .friend-share .primary-button {
  color: var(--aubergine-deep);
}
.confirmation .friend-share__status {
  color: rgb(38 17 52 / 58%);
}

@media (max-width: 720px) {
  .masthead { width: min(100% - 42px, 900px); padding-top: 14px; }
  .return-link { position: static; display: block; margin: 0 0 8px auto; font-size: .72rem; }
  .masthead__logo { width: 88%; }
  .masthead__rule { margin-top: 8px; }
  .landing { width: min(100% - 46px, 820px); height: auto; min-height: 0; padding: 25px 0 36px; }
  .landing h1 { font-size: clamp(2.05rem, 9.5vw, 2.8rem); }
  .deductions { margin-top: 34px; font-size: .98rem; }
  .deductions br { display: none; }
  .deductions ul { gap: 11px; padding-left: 40px; }
  .deductions li::before { left: -28px; width: 9px; height: 9px; }
  .landing__prompt { margin-top: 36px; font-size: 1rem; }
  .landing__prompt div { margin: 12px 0 0 30px; }
  .begin-button { margin-left: auto; }
  .landing__pocket { right: -210px; bottom: -5px; width: 265px; opacity: .78; }
  .questionnaire__inner { width: min(100% - 38px, 760px); min-height: 390px; padding-top: 52px; }
  .transcript-row { grid-template-columns: minmax(0, 42%) minmax(0, 58%); gap: 10px; }
  .transcript-row--single { grid-template-columns: minmax(0, 58%) minmax(0, 32%); gap: 10%; }
  .question-row { grid-template-columns: 1fr; gap: 12px; }
  .reality-statement { padding: 17px 18px; }
  .question-label { font-size: 1.35rem; }
  .site-footer { gap: 6px; padding: 12px 20px; font-size: .68rem; }
  .site-footer p:last-child { text-align: left; }
  .questionnaire__inner { min-height: calc(100vh - 96px); padding: 28px 0 44px; }
  .question-row { gap: 12px; }
  .question-label { font-size: 1rem; }
  .address-fields { grid-template-columns: 1fr 84px; gap: 10px; }
}

@media (max-width: 480px) {
  .return-dialog__panel { padding: 29px 22px 24px; }
  .return-entry { grid-template-columns: 1fr; }
  .return-entry button { justify-self: end; }
}

@media (orientation: landscape) and (max-height: 520px) {
  html, body { min-height: 100%; overflow-y: auto; }
  body:not(.questionnaire-active) { height: auto; overflow-y: auto; }
  .landing { min-height: 0; overflow: visible; padding-bottom: 46px; }
  .questionnaire,
  .questionnaire__inner { min-height: 100%; }
  .questionnaire__inner { padding-top: 24px; padding-bottom: 36px; }
}

@media (max-width: 720px) {
  .questionnaire__inner,
  .review-panel,
  .process-stage,
  .summary { padding-bottom: 44px; }
}

/* Editorial light theme: aubergine masthead, white reading field. */
body {
  background: #fff;
  color: var(--aubergine-deep);
}
.masthead {
  width: 100%;
  padding: 17px max(48px, calc((100vw - 600px) / 2)) 12px;
  background: #261134;
}
.masthead__logo,
.masthead__rule { max-width: 600px; }
.landing {
  background: #fff;
  color: var(--aubergine-deep);
}
.landing h1,
.deductions,
.landing__prompt { color: var(--aubergine-deep); }
.landing__pocket { opacity: .11; }
body.questionnaire-active,
.questionnaire,
.questionnaire__inner {
  background: #fff;
  color: var(--aubergine-deep);
}
.transcript-row,
.summary-list dt,
.summary-decision,
.summary .summary-edit,
.review-panel .claim-instruction,
.field-note {
  color: rgb(38 17 52 / 66%);
}
.transcript-row button:hover,
.transcript-row button:focus-visible { color: var(--aubergine-deep); }
.field-wrap input,
.field-wrap select {
  border-bottom-color: rgb(38 17 52 / 42%);
  color: var(--aubergine-deep);
}
.field-wrap input::placeholder { color: rgb(38 17 52 / 42%); }
.choice,
.answer-choice {
  border-color: #815092;
  background: #f4edf6;
  color: var(--aubergine-deep);
}
.choice:hover,
.choice:focus-visible,
.answer-choice:hover,
.answer-choice:focus-visible,
.answer-choice[aria-pressed="true"] {
  border-color: var(--brand-purple);
  background: #815092;
  color: #fff;
}
.question-back,
.text-button,
.exit-button { color: var(--aubergine-deep); }
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button {
  color: var(--brand-purple);
}
.interview .primary-button:hover,
.interview .primary-button:focus-visible { color: var(--aubergine-deep); }
.question-header,
.section-marker,
.details-stage__heading h2,
.process-stage h2,
.summary h2 { color: var(--brand-purple); }
#process-title { color: var(--aubergine-deep); }
.resolution-first,
.service-fee,
.recovery-example {
  background: #f4edf6;
  color: var(--aubergine-deep);
}
.resolution-first p:not(.section-marker),
.process-steps p,
.process-steps .process-note,
.process-steps .service-fee > p,
.recovery-example small { color: rgb(38 17 52 / 72%); }
.process-steps .process-price,
.service-fee > span { color: var(--aubergine-deep); }
.claim-result {
  background: var(--brand-purple);
  color: #fff;
}
.reality-statement {
  background: #fff;
}
.summary-list dd,
.consent,
.summary-intro { color: var(--aubergine-deep); }
.authorization-error { color: #8d315e; }
.summary-strength { color: var(--brand-purple); }
.disclaimer { color: rgb(38 17 52 / 58%); }

@media (max-width: 720px) {
  .masthead {
    width: 100%;
    padding: 14px 21px 11px;
  }
  .masthead__logo { width: min(88%, 540px); }
  .landing__pocket { opacity: .09; }
}

/* Refined light-theme hierarchy and action treatment. */
.details-stage__heading h2,
.process-stage h2,
.summary h2,
.question-label,
.friend-share h3 {
  color: var(--aubergine-deep);
}
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger {
  border-bottom-color: rgb(38 17 52 / 38%);
}
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap input[type="date"]:focus,
.date-trigger:focus-visible {
  border-bottom-color: var(--aubergine-deep);
}
.date-trigger { color: var(--aubergine-deep); }
.address-field span { color: rgb(38 17 52 / 62%); }
.recovery-path {
  min-width: min(100%, 430px);
  padding: 24px 30px;
  border-radius: 16px;
  background: var(--aubergine-deep);
  color: var(--pocket-yellow);
}
.recovery-path .path-question strong {
  border-color: rgb(244 213 141 / 68%);
  color: var(--pocket-yellow);
}
.recovery-path .path-arrow { color: var(--cyan); opacity: 1; }
#submit-button {
  min-width: 108px;
  border: 0;
  border-radius: 999px;
  background: var(--action-blue);
  color: #fff;
  padding: 12px 24px;
  box-shadow: 0 8px 22px rgb(40 119 232 / 22%);
}
#submit-button:hover,
#submit-button:focus-visible {
  background: #5C98FF;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 520px) {
  .recovery-path {
    min-width: 0;
    padding: 20px 18px;
  }
}

/* Unified forward actions: SDG aubergine; blue is the fresh accent. */
.begin-button,
.field-next,
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button,
#submit-button,
.friend-share .primary-button,
.continue-device,
.return-entry button {
  min-width: 104px;
  border: 0;
  border-radius: 999px;
  background: var(--action-blue);
  color: #fff;
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 7px 18px rgb(40 119 232 / 20%);
}
.begin-button:hover,
.begin-button:focus-visible,
.field-next:hover,
.field-next:focus-visible,
.interview .primary-button:hover,
.interview .primary-button:focus-visible,
.process-stage > .primary-button:hover,
.process-stage > .primary-button:focus-visible,
.review-panel > .primary-button:hover,
.review-panel > .primary-button:focus-visible,
#submit-button:hover,
#submit-button:focus-visible,
.friend-share .primary-button:hover,
.friend-share .primary-button:focus-visible,
.continue-device:hover,
.continue-device:focus-visible,
.return-entry button:hover,
.return-entry button:focus-visible {
  background: #5C98FF;
  color: #fff;
  transform: translateY(-1px);
}
.interview .primary-button span,
.friend-share .primary-button span { color: #fff; }

/* Hero divider intentionally removed. */
.masthead__rule { display: none; }
.masthead::after { content: none; }

/* Form typography: ChatGPT charcoal copy, aubergine values, neutral rules. */
.interview,
.question-label,
.transcript-row,
.field-note,
.address-field span,
.summary-list dt,
.summary-list dd,
.summary-intro,
.summary-decision,
.consent {
  color: #121c2d;
}
.interview p:not(.claim-promise, .confirmation-promise, .summary-strength, .section-marker, .friend-share__marker, .friend-share__status),
.interview li,
.interview label,
.interview .answer-area {
  color: #121c2d;
}
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger {
  border-bottom-color: #c9c9c9;
  color: var(--aubergine-deep);
}
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap input[type="date"]:focus,
.date-trigger:focus-visible {
  border-bottom-color: #858585;
}
.field-wrap input::placeholder { color: #777; }
.text-button { border-bottom-color: #c9c9c9; }

/* Compact actions and unified Twilio-navy hero typography. */
.landing,
.landing h1,
.deductions,
.landing__prompt {
  color: #121c2d;
}
.begin-button,
.field-next,
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button,
#submit-button,
.friend-share .primary-button,
.continue-device,
.return-entry button {
  min-width: 88px;
  padding: 8px 15px;
  font-size: .82rem;
}

/* Final light palette: cool aubergine tints, orange consequence, blue action. */
.choice,
.answer-choice,
.resolution-first,
.service-fee,
.recovery-example,
.confirmation .friend-share {
  background: var(--pale-aubergine);
}
.choice,
.answer-choice {
  border-color: rgb(38 17 52 / 32%);
}
.choice:hover,
.choice:focus-visible,
.answer-choice:hover,
.answer-choice:focus-visible,
.answer-choice[aria-pressed="true"] {
  border-color: var(--aubergine-deep);
  background: var(--aubergine-deep);
  color: #fff;
}
.reality-statement {
  border-color: var(--impact-orange);
  background: var(--impact-orange-wash);
  color: #121c2d;
}
.reality-statement p { color: #121c2d; }
.recovery-path {
  justify-content: center;
  margin-inline: auto;
  background: var(--aubergine-deep);
}
.recovery-path .path-arrow { color: var(--pocket-yellow); }
.service-fee > strong,
.process-steps article:first-child .process-note {
  color: var(--action-blue);
}

/* Authoritative final palette and referral controls. */
:root {
  --reading-navy: #001489;
  --secondary-navy: #001489;
}

.landing,
.landing h1,
.landing .deductions,
.landing .landing__prompt,
.interview,
.interview p:not(.claim-promise, .confirmation-promise, .summary-strength, .friend-share__marker, .friend-share__status),
.interview li,
.interview label,
.interview h2,
.interview h3,
.question-header,
.question-label,
.transcript-row,
.transcript-row dt,
.field-note,
.address-field span,
.review-first,
.review-panel .claim-instruction,
.summary-list dt,
.summary-intro,
.summary-decision,
.consent,
.text-button,
.question-back,
.exit-button,
.resolution-first,
.resolution-first p,
.process-steps p,
.process-steps h3,
.process-worth,
.reality-statement,
.reality-statement p,
.confirmation .friend-share,
.confirmation .friend-share h3,
.confirmation .friend-share > p,
.confirmation .friend-share__status {
  color: var(--reading-navy) !important;
}

.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value {
  color: var(--data-purple) !important;
}

.recovery-path {
  background: var(--data-purple) !important;
}

.recovery-path .path-arrow {
  color: var(--white) !important;
}

.process-guidance,
.process-steps article:nth-child(4) .service-fee > strong,
.recovery-example b,
.recovery-example span:nth-of-type(2) small,
.recovery-example span:nth-of-type(2) strong,
.recovery-example__total small,
.recovery-example__total strong {
  color: var(--action-blue) !important;
}

.recovery-example span:first-of-type small,
.recovery-example span:first-of-type strong {
  color: var(--reading-navy) !important;
}

.confirmation-masthead .eyebrow,
.confirmation-masthead h2,
.confirmation-masthead .confirmation-copy,
.confirmation-masthead .confirmation-copy span {
  color: var(--white) !important;
}

/* Predictable action placement and final results-page rhythm. */
.amount-entry input::placeholder {
  color: var(--reading-navy) !important;
  opacity: 1;
}

.resolution-first h3,
.resolution-first p:not(.section-marker) {
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.resolution-first h3 { margin-bottom: 8px !important; }
.resolution-first p:not(.section-marker) { margin-top: 6px !important; }

.section-marker,
.question-header,
.friend-share__marker,
.confirmation .eyebrow {
  font-size: .52rem !important;
}

.summary {
  padding-bottom: 118px !important;
}

.summary h2 {
  margin-bottom: 8px !important;
}

.summary-intro {
  margin-top: 6px !important;
}

.summary .reality-statement--summary {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.summary-list {
  gap: 3px !important;
  margin: 12px 0 !important;
}

.summary-list div {
  padding: 3px 0 !important;
}

.summary-list dd {
  margin-top: 1px !important;
}

.consent {
  margin: 12px 0 !important;
}

.summary-decision {
  margin: 4px 0 0 !important;
}

.summary-actions {
  margin-top: 8px !important;
}

.summary .summary-edit {
  color: var(--action-blue) !important;
  font-weight: 650;
}

.summary:not(.summary--editing) .summary-list dd button {
  cursor: default;
  pointer-events: none;
}

.forward-action {
  position: fixed !important;
  right: max(28px, calc((100vw - 760px) / 2)) !important;
  bottom: 28px !important;
  z-index: 40;
  margin: 0 !important;
}

.active-question,
.review-panel,
.process-stage,
.details-stage {
  padding-bottom: 92px;
}

@media (max-width: 720px) {
  .forward-action {
    right: 22px !important;
    bottom: 22px !important;
  }
}

.share-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(100%, 430px);
  margin: 12px auto 0;
  text-align: left;
}

.share-field {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--reading-navy) !important;
  font-size: .77rem;
  font-weight: 800 !important;
}

.share-field input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgb(46 18 61 / 32%);
  border-radius: 6px;
  background: var(--white);
  color: var(--form-data);
  font: inherit;
}

.share-field input:focus-visible {
  outline: 3px solid rgb(92 152 255 / 30%);
  outline-offset: 1px;
  border-color: var(--action-blue);
}

.share-options button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--action-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--action-blue);
  font-weight: 650;
  cursor: pointer;
}

.share-options button:hover,
.share-options button:focus-visible {
  background: var(--action-blue);
  color: var(--white);
}

@media (max-width: 520px) {
  .share-options { grid-template-columns: 1fr; }
}

/* Phone fit: keep the Small Claims fee card fully inside its process column. */
@media (max-width: 720px) {
  .process-stage,
  .process-steps,
  .process-steps article,
  .process-steps article > div {
    min-width: 0;
    max-width: 100%;
  }

  .process-steps article {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .service-fee {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 14px;
    overflow: hidden;
  }

  .service-fee > span,
  .service-fee > strong,
  .process-steps .service-fee > p {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .service-fee > strong {
    justify-self: start;
  }
}

/* Warm editorial palette: aubergine identity, pocket gold, burnt-orange accent,
   and a soft cream reading surface. */
:root {
  --impact-orange: #c76535;
  --impact-orange-wash: #f8e9dc;
  --warm-cream: #fbf6ee;
  --pale-aubergine: #f4eee7;
}

body,
.landing,
.interview,
.confirmation-body {
  background: var(--warm-cream);
}

.choice,
.answer-choice,
.resolution-first,
.service-fee,
.recovery-example,
.confirmation .friend-share,
.process-steps article:first-child .process-note {
  background: var(--pale-aubergine);
}

.reality-statement,
.mediation-enforcement {
  background: var(--impact-orange-wash);
}

/* Locked palette trial: one dark aubergine, one warm orange. */
:root {
  --aubergine-deep: #261134;
  --aubergine-dark: #261134;
  --aubergine-light: #261134;
  --aubergine-panel: #261134;
  --data-purple: #261134;
  --reading-navy: #261134;
  --secondary-navy: #261134;
  --cta-violet: #261134;
  --cta-violet-hover: #51225d;
  --data-orange: #d96837;
}

.begin-button,
.field-next,
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button,
#submit-button,
.friend-share .primary-button,
.share-options button,
.continue-device,
.return-entry button {
  border-color: var(--aubergine-dark) !important;
  background: var(--aubergine-dark) !important;
  color: #fff !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.landing h1 strong { color: var(--impact-orange) !important; }

.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.summary-list dd button,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value,
.answer-area input,
.answer-area select {
  color: var(--data-orange) !important;
  -webkit-text-fill-color: var(--data-orange) !important;
  caret-color: var(--data-orange) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

body #authorization-error.authorization-error,
.summary .summary-edit {
  color: var(--data-orange) !important;
  -webkit-text-fill-color: var(--data-orange) !important;
  font-weight: 800 !important;
}

.section-marker,
.question-header,
.friend-share__marker,
.confirmation .eyebrow,
.service-fee > span,
.summary-list dt,
.claim-kicker {
  font-weight: 800 !important;
}

.consent input[type="checkbox"] {
  appearance: none;
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--aubergine-dark);
  border-radius: 3px;
  background: #fff;
  accent-color: auto;
}

.consent input[type="checkbox"]:checked {
  background: #fff;
}

.consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--aubergine-dark);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.summary-logo-frame { background: var(--aubergine-dark) !important; }

/* Final type-strength pass: keep action text crisp and field names unmistakable. */
.begin-button,
.field-next,
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button,
#submit-button,
.friend-share .primary-button,
.share-options button,
.continue-device,
.return-entry button,
.exit-button,
.question-back,
.text-button {
  font-family: Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: .875rem !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1;
  transform: none !important;
  transition-property: background-color, color, border-color !important;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

.begin-button:hover,
.begin-button:focus-visible,
.field-next:hover,
.field-next:focus-visible,
.interview .primary-button:hover,
.interview .primary-button:focus-visible,
.process-stage > .primary-button:hover,
.process-stage > .primary-button:focus-visible,
.review-panel > .primary-button:hover,
.review-panel > .primary-button:focus-visible,
#submit-button:hover,
#submit-button:focus-visible,
.friend-share .primary-button:hover,
.friend-share .primary-button:focus-visible,
.share-options button:hover,
.share-options button:focus-visible {
  transform: none !important;
  filter: none !important;
}

.question-label,
.address-field > span,
.email-pair__field > span,
.field-wrap > label,
.field-wrap--address label > span,
.share-field > span,
.return-form label {
  color: var(--reading-navy) !important;
  font-family: Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

/* CTA signal: vivid violet draws the eye without competing with SDG aubergine. */
:root {
  --cta-violet: #261134;
  --cta-violet-hover: #51225d;
  --data-orange: #c65320;
}

.begin-button,
.field-next,
.interview .primary-button,
.process-stage > .primary-button,
.review-panel > .primary-button,
#submit-button,
.friend-share .primary-button,
.share-options button,
.continue-device,
.return-entry button {
  border-color: var(--cta-violet) !important;
  background: var(--cta-violet) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.begin-button:hover,
.begin-button:focus-visible,
.field-next:hover,
.field-next:focus-visible,
.interview .primary-button:hover,
.interview .primary-button:focus-visible,
.process-stage > .primary-button:hover,
.process-stage > .primary-button:focus-visible,
.review-panel > .primary-button:hover,
.review-panel > .primary-button:focus-visible,
#submit-button:hover,
#submit-button:focus-visible,
.friend-share .primary-button:hover,
.friend-share .primary-button:focus-visible,
.share-options button:hover,
.share-options button:focus-visible,
.continue-device:hover,
.continue-device:focus-visible,
.return-entry button:hover,
.return-entry button:focus-visible {
  border-color: var(--cta-violet-hover) !important;
  background: var(--cta-violet-hover) !important;
  color: #fff !important;
}

.begin-button span,
.interview .primary-button span,
.friend-share .primary-button span { color: #fff !important; }

/* Current visual trial: aubergine actions and orange user-entered data. */
.landing h1 strong { color: var(--impact-orange) !important; }

.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.summary-list dd button,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value,
.answer-area input,
.answer-area select {
  color: var(--data-orange) !important;
  -webkit-text-fill-color: var(--data-orange) !important;
  caret-color: var(--data-orange) !important;
  font-weight: 800 !important;
  opacity: 1 !important;
}

.field-wrap input:-webkit-autofill,
.field-wrap input:-webkit-autofill:hover,
.field-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--data-orange) !important;
  caret-color: var(--data-orange) !important;
  font-weight: 800 !important;
}

/* Questionnaire field names remain visually distinct from entered answers. */
.question-label,
.address-field > span,
.email-pair__field > span,
.field-wrap > label,
.interview label {
  font-weight: 800 !important;
}

body #authorization-error.authorization-error {
  color: #5C98FF !important;
  -webkit-text-fill-color: #5C98FF !important;
}

.confirmation-delivery {
  max-width: 560px;
  margin: 18px auto 0;
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

/* Final phone-pass button clearance: one-half inch lower. */
.forward-action {
  bottom: 172px !important;
}

@media (max-width: 720px) {
  .forward-action {
    bottom: 166px !important;
  }
}

/* Final interaction positioning and compact uppercase scale. */
.forward-action {
  bottom: 172px !important;
}

.section-marker,
.question-header,
.friend-share__marker,
.confirmation .eyebrow,
.service-fee > span,
.summary-list dt {
  font-size: .52rem !important;
}

@media (max-width: 720px) {
  .forward-action {
    bottom: 166px !important;
  }
}

/* Latest requested scale and placement adjustments. */
.authorization-error {
  color: var(--action-blue) !important;
}

.forward-action {
  bottom: 172px !important;
}

.section-marker,
.question-header,
.friend-share__marker,
.confirmation .eyebrow,
.service-fee > span,
.summary-list dt {
  font-size: .65rem !important;
}

@media (max-width: 720px) {
  .forward-action {
    bottom: 166px !important;
  }
}

/* Keep browser-filled values in the same Cornflower Blue as typed data. */
.field-wrap input:-webkit-autofill,
.field-wrap input:-webkit-autofill:hover,
.field-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--form-data) !important;
  caret-color: var(--form-data) !important;
}

/* Collect one answer at a time; compile both sections at the final review. */
#qualification .transcript,
#details-stage .transcript {
  display: none;
}

.review-panel .claim-result h2 > span:last-child {
  color: var(--white) !important;
}

.summary-list dd button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--form-data);
  text-align: left;
  cursor: pointer;
}

.summary--editing .summary-list dd button {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* August 16 color and sharing consistency pass. */
:root {
  --reading-navy: #001489;
  --secondary-navy: #001489;
}

/* Twilio blue is the single reading color on every light form surface. */
.interview,
.interview p:not(.claim-promise, .confirmation-promise, .summary-strength, .friend-share__marker, .friend-share__status),
.interview li,
.interview label,
.interview h2,
.interview h3,
.question-header,
.question-label,
.transcript-row,
.transcript-row dt,
.field-note,
.address-field span,
.review-first,
.review-panel .claim-instruction,
.summary-list dt,
.summary-intro,
.summary-decision,
.consent,
.text-button,
.question-back,
.exit-button,
.resolution-first,
.resolution-first p,
.process-steps p,
.process-steps h3,
.process-worth,
.confirmation .friend-share,
.confirmation .friend-share h3,
.confirmation .friend-share > p,
.confirmation .friend-share__status {
  color: var(--reading-navy) !important;
}

/* Entered data remains calendar purple. */
.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value {
  color: var(--data-purple) !important;
}

/* The recovery diagram uses the exact date-picker purple. */
.recovery-path {
  background: var(--data-purple) !important;
}

.recovery-path .path-arrow {
  color: var(--white) !important;
}

/* Additional-recovery information is bright blue; ordinary figures are navy. */
.process-guidance,
.process-steps article:nth-child(4) .service-fee > strong,
.recovery-example b,
.recovery-example span:nth-of-type(2) small,
.recovery-example span:nth-of-type(2) strong,
.recovery-example__total small,
.recovery-example__total strong {
  color: var(--action-blue) !important;
}

.recovery-example span:first-of-type small,
.recovery-example span:first-of-type strong {
  color: var(--reading-navy) !important;
}

/* Keep the dark confirmation masthead legible. */
.confirmation-masthead .eyebrow,
.confirmation-masthead h2,
.confirmation-masthead .confirmation-copy,
.confirmation-masthead .confirmation-copy span {
  color: var(--white) !important;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 430px);
  margin: 12px auto 0;
}

.share-options button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--action-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--action-blue);
  font-weight: 650;
  cursor: pointer;
}

.share-options button:hover,
.share-options button:focus-visible {
  background: var(--action-blue);
  color: var(--white);
}

@media (max-width: 520px) {
  .share-options { grid-template-columns: 1fr; }
}

/* Cross-screen consistency pass. */
.deductions li::before,
.active-question .question-label::before,
.process-number,
.process-steps article .process-number {
  background: var(--aubergine-dark);
  color: var(--white);
}

/* Comparable questionnaire copy uses one size and one reading color. */
.question-header,
.question-label,
.transcript-row dt,
.transcript-row dd,
.transcript-row button {
  color: var(--reading-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.35;
}

.question-header {
  margin-bottom: 12px;
  letter-spacing: .08em;
}

.address-field span,
.field-note {
  color: var(--reading-navy);
  font-size: .82rem;
}

/* Tenant-entered and selected data gets its own brighter purple. */
.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value {
  color: var(--data-purple);
}

.field-wrap input:-webkit-autofill,
.field-wrap input:-webkit-autofill:hover,
.field-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--data-purple);
  caret-color: var(--data-purple);
}

/* Align the multi-field address with the indented question copy. */
.field-wrap--address {
  width: calc(100% - 16px);
  margin-left: 16px;
}

/* Referral page follows the same editorial system—no pink remnants. */
.confirmation-body {
  background: var(--warm-cream);
  color: var(--reading-navy);
}

.confirmation .friend-share {
  border: 1px solid rgb(46 18 61 / 20%);
  border-left: 4px solid var(--aubergine-dark);
  background: var(--pale-aubergine);
  color: var(--reading-navy);
}

.confirmation .friend-share__marker {
  color: var(--aubergine-dark);
}

.confirmation .friend-share h3,
.confirmation .friend-share > p:not(.friend-share__marker, .friend-share__status),
.confirmation .friend-share__status {
  color: var(--reading-navy);
}

.confirmation .friend-share .primary-button {
  background: var(--action-blue);
  color: var(--white);
}

.confirmation .friend-share .primary-button:hover,
.confirmation .friend-share .primary-button:focus-visible {
  background: #5C98FF;
  color: var(--white);
}

.authorization-error {
  color: var(--impact-orange);
}

@media (max-width: 720px) {
  .question-header,
  .question-label,
  .transcript-row dt,
  .transcript-row dd,
  .transcript-row button {
    font-size: 1rem;
  }

  .field-wrap--address {
    width: calc(100% - 12px);
    margin-left: 12px;
  }
}
.process-steps p,
.resolution-first p:not(.section-marker),
.process-steps .process-note,
.process-steps .service-fee > p,
.recovery-example small,
.confirmation .friend-share > p:not(.friend-share__marker, .friend-share__status) {
  color: var(--secondary-navy);
}

/* Give the light hero a clear blue accent without decorative movement. */
.landing h1 strong { color: var(--action-blue); }
.deductions li::before { background: var(--action-blue); }
.landing__pocket { display: none; }

/* Static hero script. */
.hero-narrative {
  width: min(100%, 540px);
  margin: 0 auto 30px;
  color: var(--reading-navy);
}

.hero-narrative__script {
  display: grid;
  gap: 10px;
  font-size: clamp(.94rem, 1.35vw, 1.04rem);
  line-height: 1.55;
  text-align: center;
}

.hero-narrative__script p,
.hero-support,
.hero-guidance,
.hero-risk {
  margin: 0;
}

.hero-narrative__recognition {
  width: min(100%, 470px);
  margin: 5px auto;
  text-align: left;
}

.hero-narrative__recognition ul {
  display: grid;
  gap: 7px;
  margin: 7px 0 0;
  padding-left: 1.25rem;
}

.hero-narrative__recognition li::marker {
  color: var(--action-blue);
}

.hero-narrative__conclusion {
  margin-top: 3px !important;
}

.hero-support,
.hero-guidance,
.hero-risk {
  width: min(100%, 510px);
  margin-right: auto;
  margin-left: auto;
  color: var(--reading-navy);
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.hero-support {
  margin-top: 15px;
  font-size: 1rem;
}

.hero-guidance {
  margin-top: 18px;
  font-size: .95rem;
}

.hero-risk {
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 700;
}

.hero-early-cta {
  display: flex;
  justify-content: center;
  width: min(100%, 540px);
  margin: 22px auto 0;
}

.hero-early-cta .begin-button {
  margin: 0;
}

@media (max-width: 520px) {
  .hero-narrative { margin-bottom: 26px; }
  .hero-narrative__script { font-size: .94rem; }
  .hero-support,
  .hero-guidance,
  .hero-risk { text-align: center; }
}

body:not(.questionnaire-active) {
  height: auto;
  min-height: 100svh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body:not(.questionnaire-active) .landing {
  overflow: visible;
}

/* Complete the Twilio-navy form copy and tighten the second date placement. */
.review-first,
.review-panel .claim-instruction {
  color: #121c2d;
}
.sdg-date-picker--statementDate {
  width: calc(100% + 12px);
  margin-top: -10px;
  margin-left: -12px;
}

@media (max-width: 520px) {
  .sdg-date-picker--statementDate {
    width: calc(100% + 6px);
    margin-top: -8px;
    margin-left: -6px;
  }
}

/* Final palette audit: aubergine = identity, navy = reading,
   blue = action/financial emphasis, yellow = optimism, orange = consequence. */
.deductions li::before {
  background: var(--aubergine-dark);
}

.choice,
.answer-choice,
.resolution-first,
.service-fee,
.recovery-example,
.confirmation .friend-share {
  background: var(--pale-aubergine);
}

.choice,
.answer-choice {
  border-color: rgb(46 18 61 / 24%);
  color: var(--reading-navy);
}

.choice:hover,
.choice:focus-visible,
.answer-choice:hover,
.answer-choice:focus-visible,
.answer-choice[aria-pressed="true"] {
  border-color: var(--aubergine-dark);
  background: var(--aubergine-dark);
  color: var(--white);
}

.reality-statement {
  border-color: var(--impact-orange);
  background: var(--impact-orange-wash);
  color: var(--reading-navy);
}

.reality-statement p {
  color: var(--reading-navy);
}

.interview,
.interview p:not(.claim-promise, .confirmation-promise, .summary-strength, .friend-share__marker, .friend-share__status),
.interview li,
.interview label,
.interview h2,
.interview h3,
.question-header,
.section-marker,
.question-label,
.transcript-row,
.transcript-row dt,
.field-note,
.address-field span,
.review-first,
.review-panel .claim-instruction,
.summary-list dt,
.summary-intro,
.summary-decision,
.consent,
.text-button,
.question-back,
.exit-button,
.confirmation .friend-share__marker,
.summary-strength {
  color: var(--reading-navy);
}

.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger {
  color: var(--aubergine-deep);
}

.service-fee > strong,
.process-steps article:first-child .process-note {
  color: var(--action-blue);
}

/* Final cascade: no charcoal; calendar purple, Twilio blue, and action blue only. */
:root {
  --reading-navy: #2E123D;
  --secondary-navy: #2E123D;
  --form-data: #5C98FF;
}

.field-wrap input:-webkit-autofill,
.field-wrap input:-webkit-autofill:hover,
.field-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--form-data) !important;
  caret-color: var(--form-data) !important;
}

.landing,
.landing h1,
.landing .deductions,
.landing .landing__prompt,
.interview,
.interview p:not(.claim-promise, .confirmation-promise, .summary-strength, .friend-share__marker, .friend-share__status),
.interview li,
.interview label,
.interview h2,
.interview h3,
.question-header,
.question-label,
.transcript-row,
.transcript-row dt,
.field-note,
.address-field span,
.review-first,
.review-panel .claim-instruction,
.summary-list dt,
.summary-intro,
.summary-decision,
.consent,
.text-button,
.question-back,
.exit-button,
.resolution-first,
.resolution-first p,
.process-steps p,
.process-steps h3,
.process-worth,
.reality-statement,
.reality-statement p,
.confirmation .friend-share,
.confirmation .friend-share h3,
.confirmation .friend-share > p,
.confirmation .friend-share__status {
  color: var(--reading-navy) !important;
}

.transcript-row dd,
.transcript-row dd button,
.summary-list dd,
.field-wrap input,
.field-wrap select,
.field-wrap input[type="date"],
.date-trigger,
.date-trigger__value {
  color: var(--form-data) !important;
}

.recovery-path { background: var(--data-purple) !important; }
.recovery-path .path-arrow { color: var(--white) !important; }

.process-guidance,
.process-steps article:nth-child(4) .service-fee > strong,
.recovery-example b,
.recovery-example span:nth-of-type(2) small,
.recovery-example span:nth-of-type(2) strong,
.recovery-example__total small,
.recovery-example__total strong {
  color: var(--action-blue) !important;
}

.recovery-example span:first-of-type small,
.recovery-example span:first-of-type strong {
  color: var(--reading-navy) !important;
}

.confirmation-masthead .eyebrow,
.confirmation-masthead h2,
.confirmation-masthead .confirmation-copy,
.confirmation-masthead .confirmation-copy span {
  color: var(--white) !important;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 430px);
  margin: 12px auto 0;
}

.share-options button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--action-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--action-blue);
  font-weight: 650;
  cursor: pointer;
}

.share-options button:hover,
.share-options button:focus-visible {
  background: var(--action-blue);
  color: var(--white);
}

@media (max-width: 520px) {
  .share-options { grid-template-columns: 1fr; }
}
