:root {
  color-scheme: light;
  --ink: #17312e;
  --muted: #667572;
  --deep: #123f3a;
  --deep-hover: #0d342f;
  --deep-soft: #e8f1ed;
  --paper: #fffdf8;
  --canvas: #f2eee5;
  --line: #dcded7;
  --line-strong: #b8c4bf;
  --terracotta: #9f4936;
  --terracotta-soft: #f8e8e0;
  --peach: #f3ad92;
  --success: #28644f;
  --success-soft: #e5f1e9;
  --danger: #9d3b31;
  --danger-soft: #fff0ec;
  --shadow-soft: 0 18px 54px rgba(18, 63, 58, 0.09);
  --shadow-card: 0 10px 30px rgba(18, 63, 58, 0.07);
  --radius-xl: 30px;
  --radius-lg: 21px;
  --radius-md: 14px;
  --focus: 0 0 0 4px rgba(200, 111, 82, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 4%, rgba(255, 255, 255, 0.95), transparent 30rem),
    radial-gradient(circle at 95% 35%, rgba(243, 173, 146, 0.15), transparent 26rem),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
label,
input[type="radio"],
input[type="checkbox"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(18, 63, 58, 0.1);
  background: rgba(255, 253, 248, 0.91);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--deep);
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(18, 63, 58, 0.34);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.draft-controls {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

#save-status {
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clear-draft-button {
  min-height: 36px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.clear-draft-button:hover {
  border-color: var(--line-strong);
  background: #fff;
}

.clear-draft-button:focus-visible,
.brand:focus-visible,
.page-footer a:focus-visible {
  outline: 3px solid rgba(200, 111, 82, 0.5);
  outline-offset: 3px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
}

.audit-hero {
  position: relative;
  display: grid;
  gap: 42px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 7vw, 74px) clamp(22px, 7vw, 76px);
  color: #fffaf2;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.04), transparent 44%),
    var(--deep);
  box-shadow: var(--shadow-soft);
}

.audit-hero::before,
.audit-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.audit-hero::before {
  width: 430px;
  height: 430px;
  right: -250px;
  top: -120px;
}

.audit-hero::after {
  width: 270px;
  height: 270px;
  right: -105px;
  top: -38px;
}

.audit-hero-copy,
.hero-summary {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--peach);
}

.audit-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 6.4vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(16px, 2.2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 19px;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

.button:active:not(:disabled) {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button-accent {
  color: var(--deep);
  background: #f6c1ab;
}

.button-accent:hover:not(:disabled) {
  background: #ffd3c0;
}

.time-note {
  color: rgba(255, 250, 242, 0.64);
  font-size: 13px;
}

.hero-summary {
  display: grid;
  align-self: end;
  gap: 14px;
  max-width: 360px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 18px;
}

.summary-number {
  color: var(--peach);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.hero-summary p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.25;
}

.route-line {
  display: flex;
  width: 170px;
  align-items: center;
  margin-top: 6px;
}

.route-line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.route-line span {
  width: 7px;
  height: 7px;
  margin-left: -1px;
  border-radius: 50%;
  background: var(--peach);
}

.route-line span:not(:last-child) {
  margin-right: 43px;
}

.audit-section,
.questionnaire {
  padding: clamp(58px, 9vw, 108px) clamp(0px, 3vw, 34px) 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-heading h2,
.success-view h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.section-heading > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.audit-grid {
  display: grid;
  gap: 16px;
}

.audit-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 29px);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-card);
}

.audit-card-featured {
  border-color: #e0b8a9;
  background: linear-gradient(145deg, #fff9f4, var(--terracotta-soft));
}

.audit-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.audit-card-number {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.impact-label {
  border-radius: 99px;
  padding: 5px 9px;
  color: var(--deep);
  background: var(--deep-soft);
  font-size: 11px;
  font-weight: 760;
  text-align: right;
}

.audit-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.audit-card > p {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.audit-action {
  display: grid;
  gap: 3px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}

.audit-action strong {
  color: var(--terracotta);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-action span {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.quick-plan {
  display: grid;
  gap: 28px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 42px);
  color: #fffaf2;
  background: var(--deep);
}

.quick-plan h3 {
  max-width: 450px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.quick-plan ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-plan li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.quick-plan li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--deep);
  background: var(--peach);
  font-size: 12px;
  font-weight: 850;
}

.quick-plan li div {
  display: grid;
  gap: 2px;
}

.quick-plan li strong {
  font-size: 14px;
}

.quick-plan li small {
  color: rgba(255, 250, 242, 0.65);
  font-size: 12px;
  line-height: 1.45;
}

.audit-caveat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  border: 1px solid #d6dcd7;
  border-radius: var(--radius-lg);
  padding: 20px;
  background: rgba(255, 253, 248, 0.72);
}

.caveat-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.audit-caveat strong {
  font-size: 15px;
}

.audit-caveat p {
  max-width: 850px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.route-divider {
  position: relative;
  display: flex;
  width: min(520px, 72%);
  align-items: center;
  justify-content: space-between;
  margin: clamp(58px, 10vw, 110px) auto 0;
}

.route-divider::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
}

.route-divider span {
  position: relative;
  width: 10px;
  height: 10px;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  background: var(--terracotta);
}

.questionnaire {
  width: min(940px, 100%);
  margin: 0 auto;
  padding-top: clamp(42px, 7vw, 76px);
}

.questionnaire-heading {
  margin-bottom: 24px;
}

.form-progress {
  position: sticky;
  z-index: 20;
  top: 70px;
  margin: 0 0 24px;
  border: 1px solid rgba(18, 63, 58, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 22px rgba(18, 63, 58, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.progress-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
}

#step-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #e4e3dc;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--terracotta);
  transition: width 220ms ease;
}

.notice {
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid;
  border-radius: 12px;
  font-size: 14px;
}

.notice-success {
  border-color: #c6ddcf;
  color: #215842;
  background: var(--success-soft);
}

.notice-error {
  border-color: #e8bdb3;
  color: var(--danger);
  background: var(--danger-soft);
}

.error-summary strong {
  display: block;
  margin-bottom: 7px;
}

.error-summary ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 20px;
}

.error-summary a {
  font-weight: 650;
}

.error-summary a:hover {
  text-decoration-thickness: 2px;
}

.form-sections {
  display: grid;
  gap: 20px;
}

.form-section {
  scroll-margin-top: 145px;
  border: 1px solid rgba(18, 63, 58, 0.11);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 5vw, 40px);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.form-section-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.section-number {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  color: var(--terracotta);
  background: var(--terracotta-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.form-section-heading .eyebrow {
  margin-bottom: 5px;
}

.form-section-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.form-section-heading p:last-child {
  max-width: 680px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.questions {
  display: grid;
  gap: 31px;
}

.question {
  min-width: 0;
  scroll-margin-top: 150px;
  margin: 0;
  padding: 0;
  border: 0;
}

.question legend,
.field-label {
  display: block;
  width: 100%;
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.38;
}

.question-number {
  margin-right: 5px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
}

.required-label {
  display: inline-block;
  margin-left: 6px;
  border-radius: 99px;
  padding: 2px 6px;
  color: var(--deep);
  background: var(--deep-soft);
  font-size: 10px;
  font-weight: 720;
  vertical-align: 2px;
}

.question-help {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.choices {
  display: grid;
  gap: 9px;
}

.choice-card,
.consent-row {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fffefa;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  border-color: var(--line-strong);
  background: #fff;
}

.choice-card:has(input:checked) {
  border-color: var(--deep);
  background: var(--deep-soft);
  box-shadow: inset 0 0 0 1px var(--deep);
}

.choice-card input,
.consent-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.choice-card:has(input:focus-visible),
.consent-row:has(input:focus-visible) {
  outline: 3px solid rgba(243, 173, 146, 0.68);
  outline-offset: 2px;
}

.choice-control {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid #94a29e;
  border-radius: 6px;
  color: #fff;
  background: #fff;
}

input[type="radio"] + .choice-control {
  border-radius: 50%;
}

.choice-card input:checked + .choice-control,
.consent-row input:checked + .choice-control {
  border-color: var(--deep);
  background: var(--deep);
}

.choice-card input:checked + .choice-control::after,
.consent-row input:checked + .choice-control::after {
  content: "";
  width: 8px;
  height: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

input[type="radio"]:checked + .choice-control::after {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  transform: none;
}

.choice-text {
  min-width: 0;
  font-size: 14px;
  line-height: 1.3;
}

.choice-text strong,
.consent-row strong {
  display: block;
  font-size: 14px;
}

.choice-text small,
.consent-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.text-input,
.textarea-input {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  outline: 0;
  color: var(--ink);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.text-input {
  min-height: 54px;
  padding: 0 15px;
}

.textarea-input {
  min-height: 116px;
  padding: 13px 15px;
  line-height: 1.45;
  resize: vertical;
}

.text-input::placeholder,
.textarea-input::placeholder {
  color: #87948f;
}

.text-input:focus,
.textarea-input:focus {
  border-color: var(--deep);
  box-shadow: var(--focus);
}

.question.has-error .text-input,
.question.has-error .textarea-input,
.question.has-error .choice-card {
  border-color: #d47568;
}

.field-error {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 650;
}

.other-field {
  margin-top: 10px;
}

.submit-card {
  display: grid;
  gap: 28px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(23px, 5vw, 42px);
  color: #fffaf2;
  background: var(--deep);
  box-shadow: var(--shadow-soft);
}

.submit-card h3 {
  max-width: 450px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.07;
}

.submit-card-copy > p:last-child {
  max-width: 500px;
  margin: 13px 0 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
}

.submit-card-action {
  min-width: 0;
}

.submit-card .consent-row {
  align-items: flex-start;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.07);
}

.submit-card .consent-row:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.submit-card .consent-row:has(input:checked) {
  border-color: var(--peach);
  background: rgba(243, 173, 146, 0.12);
  box-shadow: inset 0 0 0 1px var(--peach);
}

.submit-card .consent-row small {
  color: rgba(255, 250, 242, 0.62);
}

.submit-card .choice-control {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.submit-card .consent-row input:checked + .choice-control {
  border-color: var(--peach);
  color: var(--deep);
  background: var(--peach);
}

.field-error-light {
  color: #ffd1c3;
}

.submit-card .notice-error {
  margin-top: 14px;
  margin-bottom: 0;
  border-color: rgba(255, 188, 170, 0.45);
  color: #ffe1d8;
  background: rgba(157, 59, 49, 0.28);
}

.button-submit {
  width: 100%;
  margin-top: 14px;
}

.success-view {
  max-width: 700px;
  margin: 28px auto 0;
  border: 1px solid rgba(18, 63, 58, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(38px, 8vw, 76px) clamp(22px, 7vw, 64px);
  text-align: center;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  animation: rise-in 240ms ease both;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 14px 30px rgba(18, 63, 58, 0.2);
}

.success-icon span {
  font-size: 29px;
  font-weight: 850;
}

.success-view .eyebrow {
  margin-bottom: 10px;
}

.success-view h2 {
  margin-right: auto;
  margin-left: auto;
}

.success-view > p:not(.eyebrow) {
  max-width: 580px;
  margin: 17px auto 0;
  color: var(--muted);
}

.success-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 25px;
  border-radius: 12px;
  padding: 11px 15px;
  color: var(--muted);
  background: #f3f2ec;
  font-size: 12px;
}

.success-meta span:empty {
  display: none;
}

.noscript-message {
  margin-top: 20px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.page-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 70px 0 34px;
  color: var(--muted);
  font-size: 12px;
}

.page-footer a {
  color: var(--deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 519px) {
  .topbar-inner {
    width: calc(100% - 24px);
  }

  .brand-copy small,
  #save-status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .clear-draft-button {
    min-height: 34px;
    padding: 0 9px;
  }

  main,
  .page-footer {
    width: min(100% - 20px, 1180px);
  }

  main {
    margin-top: 10px;
  }

  .audit-hero {
    border-radius: 22px;
  }

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

  .progress-meta > span:last-child {
    display: none;
  }

  .form-section-heading {
    grid-template-columns: 1fr;
  }

  .form-section-heading .section-number {
    margin-bottom: 2px;
  }

  .required-label {
    display: table;
    margin: 5px 0 0;
  }

  .page-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (min-width: 640px) {
  .audit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choices:not(.single-column) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card {
    padding: 13px 15px;
  }

  .quick-plan ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  .audit-hero {
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.62fr);
    align-items: end;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
    align-items: end;
  }

  .quick-plan {
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
  }

  .submit-card {
    grid-template-columns: minmax(250px, 0.82fr) minmax(340px, 1.18fr);
    align-items: center;
  }
}

@media (min-width: 1120px) {
  .audit-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .audit-card {
    grid-column: span 6;
  }

  .audit-card-featured {
    grid-column: span 7;
  }

  .audit-card-featured + .audit-card {
    grid-column: span 5;
  }

  .audit-card-wide {
    grid-column: span 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #87938f;
    --line-strong: #5d6d68;
  }

  .choice-card:has(input:checked) {
    box-shadow: inset 0 0 0 2px var(--deep);
  }
}
