:root {
  --navy: #003666;
  --blue: #245d9a;
  --light-blue: #5195e1;
  --dark-gray: #304055;
  --slate: #5c6979;
  --light-gray: #c1c2c4;
  --offwhite: #f4f6f9;
  --white: #ffffff;
  --black: #000000;
  --orange: #ff8b00;
  --success: #2f6e55;
  --danger: #9e2f3d;
  --shadow: 0 24px 60px rgba(0, 54, 102, 0.12);
  --shadow-soft: 0 12px 30px rgba(0, 54, 102, 0.08);
  --radius: 18px;
  --radius-small: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(193, 194, 196, 0.65);
}

.site-header__inner,
.hero__inner,
.category-nav__inner,
.survey-shell,
.site-footer,
.results-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: block;
  width: 210px;
  max-width: 45vw;
  height: auto;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(81, 149, 225, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(81, 149, 225, 0.08), 0 0 0 150px rgba(81, 149, 225, 0.04);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 238px;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 72px;
}

.hero--compact .hero__inner {
  min-height: 190px;
}

.hero__eyebrow,
.section-eyebrow {
  margin: 0 0 10px;
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero__copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero__status {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.hero__status-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__status strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.progress-track {
  height: 5px;
  margin-top: 11px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--light-blue);
  transition: width 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--light-gray);
  background: rgba(244, 246, 249, 0.96);
  backdrop-filter: blur(14px);
}

.category-nav__inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 11px 0;
  scrollbar-width: none;
}

.category-nav__inner::-webkit-scrollbar {
  display: none;
}

.category-step {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-step:hover:not(:disabled) {
  transform: translateY(-1px);
  color: var(--navy);
}

.category-step.is-current {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.category-step.is-complete:not(.is-current)::before {
  content: "✓";
  margin-right: 6px;
  color: var(--success);
}

.category-step:disabled {
  cursor: default;
  opacity: 0.58;
}

.survey-shell {
  padding: 28px 0 80px;
}

.save-banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.save-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.save-banner.is-saving .save-dot {
  background: var(--light-blue);
  box-shadow: 0 0 0 5px rgba(81, 149, 225, 0.12);
  animation: pulse 1.2s infinite;
}

.save-banner.is-saved .save-dot {
  background: var(--success);
}

.save-banner.is-error {
  color: var(--danger);
}

.save-banner.is-error .save-dot {
  background: var(--danger);
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

.survey-card,
.admin-gate,
.results-content {
  border: 1px solid rgba(193, 194, 196, 0.65);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.survey-card {
  min-height: 540px;
  overflow: hidden;
  animation: card-in 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  position: relative;
  padding: 34px 42px 30px;
  border-bottom: 1px solid rgba(193, 194, 196, 0.7);
  background: linear-gradient(115deg, var(--white) 0%, var(--offwhite) 100%);
}

.section-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--light-blue);
}

.section-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-description {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--dark-gray);
  font-size: 16px;
}

.section-body {
  padding: 38px 42px 18px;
}

.question-block {
  padding-bottom: 38px;
}

.question-block + .question-block {
  padding-top: 38px;
  border-top: 1px solid rgba(193, 194, 196, 0.6);
}

.question-number {
  display: block;
  margin-bottom: 8px;
  color: var(--light-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.question-prompt {
  max-width: 930px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.24;
}

.question-help {
  margin: 9px 0 0;
  color: var(--slate);
  font-size: 14px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.option-card {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--black);
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: var(--light-blue);
  box-shadow: var(--shadow-soft);
}

.option-card.is-selected {
  border-color: var(--navy);
  background: #f2f7fc;
  box-shadow: inset 5px 0 0 var(--light-blue), var(--shadow-soft);
}

.option-control {
  position: absolute;
  left: 18px;
  top: 21px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  background: var(--white);
}

.option-card.is-selected .option-control {
  border: 6px solid var(--navy);
}

.option-title {
  display: block;
  margin-bottom: 4px;
  color: var(--dark-gray);
  font-weight: 700;
  line-height: 1.25;
}

.option-description {
  display: block;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.42;
}

.option-card input,
.attendance-option input,
.matrix-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.scenario-wrap {
  margin-top: 26px;
}

.scenario-frame {
  overflow: hidden;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.scenario-slide-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1600 / 711;
  background: var(--white);
}

.scenario-slide-art {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-16.22%);
  pointer-events: none;
}

.scenario-hotspot {
  position: absolute;
  z-index: 1;
  width: 33.8%;
  height: 35.7%;
  border: 3px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: transparent;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.scenario-hotspot:hover,
.scenario-hotspot:focus-visible {
  border-color: rgba(81, 149, 225, 0.8);
  background: rgba(81, 149, 225, 0.07);
  outline: none;
}

.scenario-hotspot.is-selected {
  border-color: var(--light-blue);
  background: rgba(81, 149, 225, 0.11);
  box-shadow: inset 0 0 0 2px rgba(81, 149, 225, 0.18);
}

.scenario-hotspot.top-left { left: 17.1%; top: 7.2%; }
.scenario-hotspot.top-right { right: 11.8%; top: 7.2%; }
.scenario-hotspot.bottom-left { left: 17.1%; top: 49.4%; height: 36.4%; }
.scenario-hotspot.bottom-right { right: 11.8%; top: 49.4%; }

.scenario-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-options .option-card {
  min-height: 122px;
  padding-left: 18px;
}

.scenario-options .option-control {
  left: auto;
  right: 15px;
  top: 15px;
}

.scenario-options .option-title {
  padding-right: 30px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.identity-panel {
  padding: 26px;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  background: var(--offwhite);
}

.identity-panel h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.identity-panel > p {
  margin: 0 0 18px;
  color: var(--slate);
  font-size: 14px;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 700;
}

.text-input,
.textarea,
.admin-form input {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: 9px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.text-input,
.admin-form input {
  min-height: 48px;
  padding: 11px 13px;
}

.text-input:focus,
.textarea:focus,
.admin-form input:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(81, 149, 225, 0.16);
}

.name-results {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.name-result {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark-gray);
  font-weight: 700;
  text-align: left;
}

.name-result input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--navy);
}

.name-result:hover,
.name-result:focus-visible {
  border-color: var(--light-blue);
  outline: none;
}

.selected-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(47, 110, 85, 0.35);
  border-radius: 9px;
  background: rgba(47, 110, 85, 0.08);
  color: var(--success);
  font-weight: 700;
}

.selected-person button {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.attendance-options {
  display: grid;
  gap: 9px;
}

.attendance-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background: var(--white);
  color: var(--dark-gray);
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease;
}

.attendance-option::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  background: var(--white);
}

.attendance-option.is-selected {
  border-color: var(--navy);
  background: #f2f7fc;
}

.attendance-option.is-selected::before {
  border: 5px solid var(--navy);
}

.matrix-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.matrix-table th,
.matrix-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(193, 194, 196, 0.65);
  text-align: center;
  vertical-align: middle;
}

.matrix-table tr:last-child th,
.matrix-table tr:last-child td {
  border-bottom: 0;
}

.matrix-table thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.matrix-table thead th:first-child,
.matrix-table tbody th {
  text-align: left;
}

.matrix-table tbody th {
  width: 42%;
  color: var(--dark-gray);
  font-size: 14px;
}

.matrix-table tbody tr:nth-child(even) {
  background: var(--offwhite);
}

.matrix-choice {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  background: var(--white);
}

.matrix-choice.is-selected {
  border: 8px solid var(--navy);
}

.matrix-other {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.textarea {
  min-height: 190px;
  padding: 15px;
  resize: vertical;
}

.textarea-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
  color: var(--slate);
  font-size: 12px;
}

.section-actions {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 42px;
  border-top: 1px solid rgba(193, 194, 196, 0.7);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.section-actions__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

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

.button--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 54, 102, 0.18);
}

.button--primary:hover:not(:disabled) {
  background: #00467f;
}

.button--secondary {
  border-color: var(--light-gray);
  background: var(--white);
  color: var(--navy);
}

.button--text {
  padding-inline: 8px;
  background: transparent;
  color: var(--slate);
}

.button--submit {
  background: var(--blue);
  color: var(--white);
}

.field-error,
.section-error {
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
}

.field-error:empty,
.section-error:empty {
  display: none;
}

.section-error {
  margin: 0;
}

.completion {
  padding: 54px 42px;
}

.completion-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 28px;
}

.completion h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
}

.completion-intro {
  max-width: 680px;
  margin: 14px 0 34px;
  color: var(--dark-gray);
  font-size: 17px;
}

.completion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 24px;
}

.completion-actions__note {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 12px;
}

.fingerprint {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--light-gray);
  border-radius: 14px;
  background: var(--offwhite);
}

.fingerprint h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.fingerprint__note {
  margin: 7px 0 20px;
  color: var(--slate);
  font-size: 13px;
}

.posture-card {
  padding: 19px;
  border-left: 5px solid var(--light-blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.posture-card__label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
}

.posture-card p {
  margin: 0;
  color: var(--dark-gray);
  font-size: 14px;
}

.fingerprint-bars {
  display: grid;
  gap: 9px;
}

.fingerprint-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: center;
  color: var(--dark-gray);
  font-size: 12px;
  font-weight: 700;
}

.fingerprint-track {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe5eb;
}

.fingerprint-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--light-blue);
}

.tension-list {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 18px 20px;
  border-top: 1px solid var(--light-gray);
}

.tension-list strong {
  color: var(--dark-gray);
}

.tension-list ul {
  margin: 9px 0 0;
  padding-left: 20px;
  color: var(--dark-gray);
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 36px;
  color: var(--slate);
  font-size: 12px;
}

.site-footer span:first-child {
  color: var(--navy);
  font-weight: 700;
}

.noscript {
  position: fixed;
  inset: auto 20px 20px;
  padding: 14px;
  border-radius: 8px;
  background: var(--danger);
  color: var(--white);
  text-align: center;
}

.results-shell {
  padding: 40px 0 80px;
}

.admin-gate,
.results-content {
  padding: 34px;
}

.admin-gate {
  max-width: 660px;
}

.admin-gate h2,
.results-content h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.admin-form {
  margin-top: 24px;
}

.admin-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark-gray);
  font-size: 13px;
  font-weight: 700;
}

.admin-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.results-breakdown {
  padding: 20px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
}

.results-breakdown h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.breakdown-list {
  display: grid;
  gap: 11px;
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) minmax(70px, 1.2fr) 24px;
  gap: 8px;
  align-items: center;
  color: var(--dark-gray);
  font-size: 12px;
  text-transform: capitalize;
}

.breakdown-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--offwhite);
}

.breakdown-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--light-blue);
}

.metric-card {
  padding: 20px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  background: var(--offwhite);
}

.metric-card span {
  display: block;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
}

.results-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--light-gray);
  text-align: left;
  font-size: 13px;
}

.results-table th {
  color: var(--dark-gray);
  font-weight: 700;
}

.results-table td {
  color: var(--slate);
}

.status-chip {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 99px;
  background: var(--offwhite);
  color: var(--dark-gray);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__status {
    width: min(280px, 100%);
  }

  .identity-grid,
  .fingerprint {
    grid-template-columns: 1fr;
  }

  .scenario-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header__inner,
  .hero__inner,
  .category-nav__inner,
  .survey-shell,
  .site-footer,
  .results-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 165px;
  }

  .header-meta {
    display: none;
  }

  .hero__inner {
    min-height: 220px;
    padding: 36px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__copy {
    font-size: 16px;
  }

  .survey-shell {
    padding-top: 18px;
  }

  .section-header,
  .section-body,
  .completion,
  .admin-gate,
  .results-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-actions {
    padding: 15px 20px;
  }

  .option-grid,
  .scenario-options,
  .identity-grid,
  .matrix-other,
  .metric-grid,
  .breakdown-grid {
    grid-template-columns: 1fr;
  }

  .results-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .scenario-hotspot {
    border-width: 2px;
  }

  .option-card {
    min-height: 96px;
  }

  .section-actions__right {
    width: 100%;
    justify-content: flex-end;
  }

  .button--text {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .admin-form__row {
    grid-template-columns: 1fr;
  }
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
