:root {
  --ink: #19261f;
  --forest: #203d33;
  --forest-deep: #173127;
  --forest-soft: #e9f0ea;
  --paper: #f7f3eb;
  --paper-deep: #ebe3d5;
  --clay: #c4622d;
  --clay-soft: #f5dfd2;
  --gold: #c69239;
  --line: rgba(29, 54, 43, 0.16);
  --muted: #657067;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
[hidden] {
  display: none !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;
}
.skip-link {
  position: fixed;
  z-index: 20;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--clay);
  border-radius: 6px;
}
.skip-link:focus {
  top: 16px;
}

.demo-notice {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 7px 24px;
  color: #f9f5ed;
  background: var(--forest-deep);
  font-size: 12px;
  letter-spacing: 0.01em;
  text-align: center;
}
.demo-notice strong {
  font-size: 10px;
  letter-spacing: 0.14em;
}
.notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9874f;
  box-shadow: 0 0 0 3px rgba(233, 135, 79, 0.18);
}
.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--forest);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: bold;
}
.brand-name,
.brand-subtitle {
  display: block;
}
.brand-name {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}
.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sample-label {
  padding: 5px 10px;
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tour-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 4px 0 70px;
}
.tour-progress {
  width: min(660px, 100%);
  margin: 0 auto 38px;
}
.progress-track {
  height: 2px;
  margin: 0 29px -16px;
  background: #d7d0c4;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--clay);
  transition: width 0.35s ease;
}
.tour-progress ol {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #9a998f;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.tour-progress li span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #8d8d84;
  background: var(--paper);
  border: 2px solid #d7d0c4;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.tour-progress li strong {
  font-weight: 600;
}
.tour-progress li.is-current {
  color: var(--forest);
}
.tour-progress li.is-current span,
.tour-progress li.is-complete span {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.stage {
  animation: stageIn 0.35s ease both;
}
@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eyebrow,
.panel-kicker {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1,
h2,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.3rem, 4vw, 4.25rem);
}
h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}
.lede {
  max-width: 630px;
  color: #49574e;
  font-size: 18px;
}
.welcome-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
}
.stage-intro {
  min-height: 430px;
}
#welcome {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
  padding: 20px 0 35px;
}
.trust-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 630px;
  margin: 25px 0 22px;
  padding: 14px 17px;
  background: #edf1eb;
  border-left: 3px solid var(--forest);
}
.trust-callout svg {
  flex: 0 0 21px;
  width: 21px;
  margin-top: 2px;
  color: var(--forest);
}
.trust-callout p {
  margin: 0;
  font-size: 14px;
}
.microcopy {
  margin: 12px 0 0;
  color: #6f766f;
  font-size: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:focus-visible,
.brand:focus-visible,
.response-options label:focus-within {
  outline: 3px solid rgba(196, 98, 45, 0.35);
  outline-offset: 3px;
}
.button-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 8px 18px rgba(29, 54, 43, 0.16);
}
.button-primary:hover {
  background: #294d3f;
}
.button-quiet {
  color: #4f5f54;
  background: transparent;
}
.button-quiet:hover {
  background: rgba(32, 61, 51, 0.06);
}
.button-outline {
  color: var(--forest);
  background: #fffdf8;
  border-color: rgba(32, 61, 51, 0.35);
}

.hero-art {
  position: relative;
  min-height: 392px;
  margin: 0;
  display: grid;
  place-items: center;
}
.hero-art-glow {
  position: absolute;
  inset: 12% 5%;
  border-radius: 48% 52% 46% 54%;
  background: #dce8dc;
  transform: rotate(-7deg);
}
.dashboard-preview {
  position: relative;
  width: min(100%, 460px);
  padding: 19px;
  color: #edf4eb;
  background: #244638;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 22px 40px rgba(31, 53, 43, 0.22);
  transform: rotate(2.4deg);
}
.preview-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
}
.preview-avatar {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #29463a;
  background: #ecdfc4;
  font-size: 9px;
  font-weight: 800;
}
.preview-status {
  margin-left: auto;
  padding: 3px 6px;
  color: #f2d6bf;
  border: 1px solid rgba(242, 214, 191, 0.45);
  border-radius: 99px;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.preview-score-row {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 0;
}
.score-orb {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  align-content: center;
  flex: 0 0 auto;
  border: 8px solid #c56a37;
  border-right-color: #b6d5bf;
  border-radius: 50%;
}
.score-orb strong {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.9;
}
.score-orb span {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.preview-label {
  margin: 0 0 4px;
  color: #bbd1bd;
  font-size: 10px;
}
.preview-score-row h2 {
  max-width: 216px;
  margin: 0;
  color: #fffdf8;
  font-size: 20px;
}
.mini-bars {
  display: grid;
  gap: 11px;
  padding: 14px;
  background: rgba(8, 25, 17, 0.18);
  border-radius: 7px;
}
.mini-bars div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
  color: #cadbc9;
  font-size: 9px;
}
.mini-bars i,
.summary-row i {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 99px;
}
.mini-bars i::after,
.summary-row i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: #dca071;
}
.floating-tag {
  position: absolute;
  z-index: 1;
  padding: 8px 10px;
  color: var(--forest);
  background: #fffdf8;
  border: 1px solid rgba(32, 61, 51, 0.13);
  border-radius: 5px;
  box-shadow: 0 9px 16px rgba(31, 53, 43, 0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag-one {
  top: 10%;
  left: 1%;
  transform: rotate(-4deg);
}
.tag-two {
  right: 0;
  bottom: 9%;
  transform: rotate(5deg);
}

.compact-heading {
  max-width: 760px;
  margin: 0 auto 27px;
  text-align: center;
}
.compact-heading h1 {
  margin-bottom: 12px;
}
.compact-heading > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: #5d685f;
}
.survey-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 970px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 12px 26px rgba(38, 52, 42, 0.07);
}
.dimension-list {
  padding: 28px 24px;
  background: var(--forest);
  color: #e8f0e6;
}
.dimension-list .panel-kicker {
  color: #f5c7aa;
}
.dimension-list ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dimension-list li {
  padding: 8px 9px;
  border-radius: 4px;
  font-size: 13px;
}
.dimension-list li span {
  display: inline-block;
  width: 30px;
  color: #a8c3aa;
  font-size: 10px;
  letter-spacing: 0.07em;
}
.dimension-list li.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 700;
}
.dimension-list li.is-current span {
  color: #f4b98f;
}
.dimension-note {
  margin: 25px 0 0;
  color: #adc2ad;
  font-size: 11px;
  line-height: 1.5;
}
.survey-card {
  padding: 35px clamp(24px, 6vw, 62px) 24px;
}
.question-meta {
  display: flex;
  justify-content: space-between;
  color: #667269;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.question-meta span:last-child {
  color: var(--clay);
}
.question-progress {
  height: 4px;
  margin: 18px 0 36px;
  background: #e8e5db;
  border-radius: 99px;
}
.question-progress span {
  display: block;
  width: 22%;
  height: 100%;
  background: var(--clay);
  border-radius: inherit;
}
.question-number {
  margin-bottom: 7px;
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.survey-card h2 {
  max-width: 580px;
  margin-bottom: 27px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}
.response-options {
  display: grid;
  gap: 9px;
  max-width: 600px;
  margin: 0;
  padding: 0;
  border: 0;
}
.response-options label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  color: #33493d;
  border: 1px solid #ddd7ca;
  border-radius: 5px;
  font-size: 14px;
  transition:
    border 0.2s ease,
    background 0.2s ease;
}
.response-options label:hover {
  border-color: #94aa99;
  background: #faf8f2;
}
.response-options input {
  accent-color: var(--forest);
}
.response-options label:has(input:checked) {
  background: #edf3ed;
  border-color: #6d9275;
}
.response-feedback {
  min-height: 20px;
  margin: 15px 0 0;
  color: #58715e;
  font-size: 12px;
}
.card-footer-note {
  margin-top: 25px;
  padding-top: 15px;
  color: #6a756d;
  border-top: 1px solid #eee9df;
  font-size: 11px;
}
.card-footer-note span {
  color: var(--clay);
  font-size: 17px;
  vertical-align: -1px;
}
.stage-nav {
  width: min(970px, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0;
}
.single-back {
  justify-content: flex-start;
}

.results-app-shell {
  display: grid;
  grid-template-columns: 205px 1fr;
  max-width: 1010px;
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d7ddd6;
  border-radius: 10px;
  background: #f9fbf8;
  box-shadow: 0 14px 28px rgba(38, 52, 42, 0.09);
}
.results-sidebar {
  display: flex;
  flex-direction: column;
  padding: 23px 16px 17px;
  color: #cbe0cd;
  background: var(--forest);
}
.small-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px 23px;
  color: #fff;
  font-size: 14px;
}
.small-brand span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-family: var(--serif);
}
.results-sidebar nav {
  display: grid;
  gap: 4px;
}
.results-sidebar nav a {
  padding: 9px;
  color: #bcd2bf;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
}
.results-sidebar nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}
.sidebar-privacy {
  display: flex;
  gap: 7px;
  margin-top: auto;
  padding: 9px;
  color: #d8ead8;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  font-size: 10px;
}
.sidebar-privacy p {
  margin: 0;
}
.results-content {
  padding: 32px clamp(20px, 4vw, 42px);
}
.results-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}
.greeting {
  margin-bottom: 5px;
  color: #6c776e;
  font-size: 12px;
}
.results-heading h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}
.data-pill {
  flex: 0 0 auto;
  padding: 5px 7px;
  color: #9b542d;
  background: var(--clay-soft);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 14px;
  margin: 24px 0 13px;
}
.score-panel,
.radar-panel {
  padding: 17px;
  background: #fff;
  border: 1px solid #e3e7e2;
  border-radius: 6px;
}
.score-panel p,
.radar-panel p {
  margin-bottom: 10px;
  color: #647067;
  font-size: 11px;
  font-weight: 700;
}
.large-score {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.large-score strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 66px;
  line-height: 1;
}
.large-score span {
  color: #738078;
  font-size: 13px;
}
.score-trend {
  display: inline-block;
  margin-top: 7px;
  color: #43734d;
  font-size: 10px;
}
.radar-panel {
  position: relative;
  overflow: hidden;
}
.radar-wrap {
  width: 142px;
  height: 118px;
  position: relative;
  margin: -3px auto -10px;
}
.radar-wrap svg {
  position: absolute;
  inset: -5px auto auto -6px;
  width: 145px;
}
.radar-shape {
  position: absolute;
  inset: 11px 20px auto auto;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(32, 61, 51, 0.08);
  transform: rotate(45deg);
}
.radar-shape.r2 {
  inset: 26px 35px auto auto;
  width: 50px;
  height: 50px;
}
.radar-shape.r3 {
  inset: 39px 48px auto auto;
  width: 24px;
  height: 24px;
}
.dimension-summary {
  display: grid;
  gap: 7px;
}
.summary-row {
  display: grid;
  grid-template-columns: 88px 1fr 25px 48px;
  gap: 10px;
  align-items: center;
  color: #4e5d52;
  font-size: 11px;
}
.summary-row div {
  height: 6px;
  overflow: hidden;
  background: #dde5dd;
  border-radius: 99px;
}
.summary-row i::after {
  width: var(--value);
  background: var(--forest);
}
.summary-row strong {
  color: var(--forest);
}
.summary-row em {
  padding: 2px 4px;
  color: #46734e;
  background: #e3efe4;
  border-radius: 3px;
  font-size: 9px;
  font-style: normal;
  text-align: center;
}
.summary-row em.watch {
  color: #95572f;
  background: #f7e8db;
}
.results-footnote {
  margin: 17px 0 0;
  color: #748077;
  font-size: 10px;
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, 0.75fr);
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}
.comparison-card {
  padding: clamp(22px, 4vw, 38px);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(38, 52, 42, 0.06);
}
.comparison-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.comparison-header h2 {
  margin: 0;
  font-size: 29px;
}
.threshold-badge {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: #2e6d42;
  background: #e7f2e9;
  border: 1px solid #bcdbbf;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.comparison-context {
  margin: 19px 0;
  color: #637069;
  font-size: 12px;
}
.comparison-table {
  overflow: hidden;
  border: 1px solid #e1e3dc;
  border-radius: 5px;
}
.comparison-row {
  display: grid;
  grid-template-columns: minmax(85px, 1.1fr) 40px minmax(120px, 1.6fr) 38px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 8px 12px;
  border-top: 1px solid #e8e9e4;
  color: #415247;
  font-size: 12px;
}
.comparison-row:first-child {
  border-top: 0;
}
.table-head {
  min-height: 32px;
  color: #66736a;
  background: #f4f5f0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-bars {
  position: relative;
  height: 15px;
}
.compare-bars i {
  position: absolute;
  left: 0;
  display: block;
  height: 5px;
  width: var(--width);
  border-radius: 99px;
}
.compare-bars .you-bar {
  top: 1px;
  background: var(--clay);
}
.compare-bars .peer-bar {
  bottom: 1px;
  background: #89ad8d;
}
.comparison-row em {
  justify-self: end;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 10px;
  font-style: normal;
  text-align: center;
}
.positive {
  color: #2b6b40;
  background: #e6f3e8;
}
.negative {
  color: #99532f;
  background: #fae7da;
}
.comparison-key {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  color: #69756c;
  font-size: 10px;
}
.comparison-key span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.comparison-key i {
  width: 14px;
  height: 4px;
  border-radius: 99px;
}
.key-you {
  background: var(--clay);
}
.key-peer {
  background: #89ad8d;
}
.privacy-card {
  padding: 28px 24px;
  color: #eef6ed;
  background: var(--forest);
  border-radius: 9px;
}
.privacy-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #f0be98;
  border: 1px solid rgba(240, 190, 152, 0.65);
  border-radius: 50%;
  font-size: 18px;
}
.privacy-card h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 25px;
}
.privacy-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 18px;
  color: #d2e2d1;
  font-size: 12px;
}
.privacy-card li::marker {
  color: #efb889;
}
.tour-complete {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1050px;
  margin: 18px auto 0;
  padding: 16px 19px;
  background: #ebefe6;
  border-radius: 7px;
}
.tour-complete > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.complete-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--clay);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}
.tour-complete p {
  max-width: 680px;
  margin: 0;
  color: #435449;
  font-size: 12px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 22px 0 30px;
  color: #738076;
  border-top: 1px solid var(--line);
  font-size: 10px;
}
.site-footer p {
  margin: 0;
}
.site-footer strong {
  color: #4a5f50;
}

@media (max-width: 780px) {
  .demo-notice {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px 18px;
    text-align: left;
  }
  .site-header,
  .tour-shell,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }
  .sample-label {
    display: none;
  }
  #welcome {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 8px;
  }
  .hero-art {
    min-height: 320px;
  }
  .dashboard-preview {
    width: min(90%, 430px);
  }
  .tag-one {
    left: 0;
  }
  .survey-layout,
  .results-app-shell,
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  .dimension-list {
    padding: 18px;
  }
  .dimension-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dimension-list li {
    padding: 5px;
    font-size: 11px;
  }
  .dimension-note {
    margin-top: 14px;
  }
  .results-sidebar {
    display: none;
  }
  .comparison-header {
    display: block;
  }
  .threshold-badge {
    display: inline-block;
    margin-top: 10px;
  }
  .comparison-row {
    grid-template-columns: 82px 32px minmax(70px, 1fr) 32px;
    gap: 6px;
    padding: 8px;
    font-size: 11px;
  }
  .table-head {
    font-size: 8px;
  }
  .tour-complete,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .tour-progress li strong {
    display: none;
  }
  .tour-progress {
    margin-bottom: 26px;
  }
  h1 {
    font-size: 2.25rem;
  }
  .lede {
    font-size: 16px;
  }
  .dimension-list ul {
    grid-template-columns: 1fr;
  }
  .survey-card {
    padding: 24px 16px 18px;
  }
  .response-options label {
    padding: 8px 9px;
    font-size: 12px;
  }
  .results-content {
    padding: 22px 14px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .radar-panel {
    display: none;
  }
  .comparison-card {
    padding: 19px 12px;
  }
  .comparison-row {
    grid-template-columns: 72px 28px minmax(55px, 1fr) 27px;
    font-size: 10px;
  }
  .table-head {
    font-size: 7px;
    letter-spacing: 0;
  }
}

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