@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #281b32;
  --purple: #432675;
  --purple-deep: #281444;
  --purple-soft: #f2ecfb;
  --pink: #f52488;
  --pink-deep: #bd1765;
  --pink-light: #ff9dca;
  --pink-soft: #fff0f7;
  --white: #ffffff;
  --paper: #fffafd;
  --text: #382d3e;
  --muted: #716878;
  --line: rgba(67, 38, 117, 0.14);
  --line-strong: rgba(67, 38, 117, 0.25);
  --error: #a30f4f;
  --error-soft: #fff0f5;
  --success: #256c4b;
  --shell: min(1160px, calc(100% - 40px));
  --questionnaire-shell: min(880px, calc(100% - 40px));
  --display: "Fraunces", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 60px rgba(40, 20, 68, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--purple-deep);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-170%);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-deep);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.page-context {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.questionnaire-introduction {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 96px) clamp(70px, 9vw, 108px);
  background:
    radial-gradient(circle at 9% 12%, rgba(245, 36, 136, 0.09), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(67, 38, 117, 0.08), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #fff8fc 58%, #f6f1fc 100%);
}

.questionnaire-introduction::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(245, 36, 136, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.eyebrow,
.stage-count {
  margin: 0 0 18px;
  color: var(--pink-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.questionnaire-introduction h1 {
  max-width: 820px;
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.6vw, 4.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.01;
}

.introduction-copy {
  max-width: 700px;
  margin-top: clamp(34px, 5vw, 54px);
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.introduction-copy p {
  margin: 0 0 17px;
}

.completion-time {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 32px 0 24px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 700;
}

.completion-time::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 2px solid var(--pink-deep);
  border-radius: 999px;
  background: var(--pink-deep);
  box-shadow: 0 12px 30px rgba(245, 36, 136, 0.18);
  color: var(--white);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
}

.button:hover {
  border-color: var(--purple);
  background: var(--purple);
  box-shadow: 0 16px 34px rgba(189, 23, 101, 0.24);
  transform: translateY(-2px);
}

.button:disabled {
  border-color: var(--pink-deep);
  background: var(--pink-deep);
  box-shadow: none;
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--white);
  box-shadow: none;
  color: var(--purple);
}

.button-secondary::after {
  order: -1;
  content: "←";
}

.button-secondary:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
  box-shadow: none;
}

button.button::after {
  content: "✓";
}

.questionnaire-progress {
  position: sticky;
  z-index: 15;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(40, 20, 68, 0.04);
}

.questionnaire-progress .questionnaire-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 58px;
}

.questionnaire-progress span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.questionnaire-progress progress {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--pink);
}

.questionnaire-progress progress::-webkit-progress-bar {
  border-radius: 999px;
  background: var(--purple-soft);
}

.questionnaire-progress progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--pink);
}

.questionnaire-progress progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--pink);
}

.questionnaire-form {
  padding-block: clamp(34px, 6vw, 76px) clamp(88px, 11vw, 140px);
}

.questionnaire-stage {
  scroll-margin-top: 90px;
}

.questionnaire-stage + .questionnaire-stage {
  margin-top: clamp(96px, 13vw, 164px);
  padding-top: clamp(82px, 10vw, 120px);
  border-top: 1px solid var(--line-strong);
}

.stage-header {
  position: relative;
  margin-bottom: clamp(48px, 7vw, 74px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.stage-header::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 82px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
}

.stage-header h2 {
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.stage-header > p:last-child:not(.stage-count) {
  max-width: 610px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.question {
  min-width: 0;
  margin: 0;
  padding: clamp(34px, 5vw, 50px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.question:first-of-type {
  padding-top: 0;
}

.question legend,
.question-label {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.82rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.question-number {
  color: var(--pink-deep);
  font-family: var(--sans);
  font-size: 0.75em;
  font-weight: 700;
}

.question-status {
  margin: 11px 0 20px;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.field-hint {
  max-width: 690px;
  margin: -10px 0 20px;
  color: var(--muted);
  font-size: 0.87rem;
}

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

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

.option-list label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-size: 0.94rem;
  line-height: 1.45;
  transition: border-color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease, transform 160ms ease;
}

.option-list label:hover {
  border-color: rgba(245, 36, 136, 0.46);
  background: var(--pink-soft);
  transform: translateY(-1px);
}

.option-list label:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-soft);
  box-shadow: inset 4px 0 0 var(--pink);
  color: var(--purple-deep);
}

.option-list label:focus-within {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.option-list input[type="radio"],
.option-list input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--pink);
}

.scale-ends {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: -3px 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.scale-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.scale-options label {
  position: relative;
  display: block;
  cursor: pointer;
}

.scale-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.scale-options span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--purple);
  font-size: 1rem;
  font-weight: 700;
  transition: border-color 160ms ease, background-color 160ms ease,
    color 160ms ease, transform 160ms ease;
}

.scale-options label:hover span {
  border-color: rgba(245, 36, 136, 0.46);
  background: var(--pink-soft);
  transform: translateY(-1px);
}

.scale-options input:focus-visible + span {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.scale-options input:checked + span {
  border-color: var(--pink-deep);
  background: var(--pink-deep);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(245, 36, 136, 0.2);
}

input[type="text"],
textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  caret-color: var(--pink);
  transition: border-color 160ms ease, background-color 160ms ease,
    box-shadow 160ms ease;
}

input[type="text"] {
  min-height: 54px;
  padding: 11px 15px;
}

textarea {
  min-height: 154px;
  padding: 15px 17px;
  line-height: 1.55;
  resize: vertical;
}

input[type="text"]:hover,
textarea:hover {
  border-color: var(--purple);
}

input[type="text"]:focus,
textarea:focus {
  border-color: var(--pink);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 36, 136, 0.12);
}

[aria-invalid="true"] input[type="text"],
[aria-invalid="true"] textarea,
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
  background: var(--error-soft);
}

.conditional-field {
  margin-top: 14px;
  padding: 20px;
  border-left: 4px solid var(--pink);
  border-radius: 0 13px 13px 0;
  background: var(--purple-soft);
}

.conditional-field > label {
  display: block;
  margin-bottom: 9px;
  color: var(--purple-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.conditional-field .field-hint {
  margin: 8px 0 0;
}

.idea-introduction,
.concept-introduction,
.privacy-before-submit {
  margin: 0 0 clamp(36px, 6vw, 60px);
  padding: clamp(27px, 4vw, 38px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--pink);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink-soft), var(--purple-soft));
  color: var(--purple-deep);
}

.idea-introduction p,
.concept-introduction p,
.privacy-before-submit p {
  margin: 0 0 13px;
}

.idea-introduction p:last-child,
.concept-introduction p:last-child,
.privacy-before-submit p:last-child {
  margin-bottom: 0;
}

.idea-introduction h3,
.privacy-before-submit h3 {
  margin: 6px 0 18px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
}

.privacy-before-submit a,
.error-summary a {
  color: var(--pink-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-you {
  margin-top: clamp(62px, 9vw, 96px);
  padding: clamp(30px, 5vw, 48px);
  border-radius: 22px;
  background: var(--purple-soft);
}

.about-you > header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.about-you h3 {
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.about-you > header p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
}

.about-you .question:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-before-submit {
  margin-top: 40px;
  margin-bottom: 0;
  border-left-color: var(--purple);
  background: var(--white);
}

.privacy-before-submit h3 {
  font-size: 1.7rem;
}

.stage-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 38px;
}

.stage-actions:has(.button-secondary) {
  justify-content: space-between;
}

.final-actions {
  margin-top: 28px;
}

.field-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -8px 0 17px;
  padding: 10px 12px;
  border-left: 4px solid var(--error);
  border-radius: 0 8px 8px 0;
  background: var(--error-soft);
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 700;
}

.field-error::before {
  content: "!";
  flex: 0 0 auto;
}

.error-summary,
.no-script-notice {
  margin: 46px 0 0;
  padding: 24px;
  border: 1px solid rgba(163, 15, 79, 0.3);
  border-left: 5px solid var(--error);
  border-radius: 14px;
  background: var(--error-soft);
}

.error-summary h2 {
  margin: 0;
  color: var(--error);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}

.error-summary p {
  margin: 7px 0 10px;
}

.error-summary ul {
  margin: 0;
  padding-left: 22px;
}

.no-script-notice {
  border-color: var(--line-strong);
  border-left-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding-block: 68px 30px;
  background: var(--purple-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.7fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  padding-bottom: 62px;
}

.brand-lockup-footer {
  color: var(--white);
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--display);
  font-style: italic;
}

.footer-rhythm {
  display: block;
  margin-top: 8px;
  color: var(--pink-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-policy-column > p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-quiet {
  display: flex;
  align-items: baseline;
  gap: 14px;
  width: fit-content;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-contact-quiet > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-quiet > a {
  color: var(--pink-light);
  font-size: 0.78rem;
  font-weight: 500;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-contact-quiet > a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}

.footer-links a:hover {
  color: var(--pink-light);
}

.company-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.69rem;
  line-height: 1.7;
}

.company-details div {
  display: flex;
  flex-direction: column;
}

.company-details strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.company-details p {
  margin: 0;
}

.thank-you-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(245, 36, 136, 0.09), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(67, 38, 117, 0.08), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #fff8fc 58%, #f6f1fc 100%);
}

.thank-you-hero {
  padding-block: clamp(72px, 10vw, 118px) clamp(88px, 12vw, 142px);
}

.success-emblem {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(245, 36, 136, 0.2);
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
}

.thank-you-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.03;
}

.thank-you-copy {
  max-width: 700px;
  margin-top: 32px;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.thank-you-copy p {
  margin: 0 0 16px;
}

.next-step-panel {
  max-width: 760px;
  margin-top: clamp(52px, 8vw, 80px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--pink);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.next-step-label {
  margin: 0 0 12px;
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.next-step-panel h2 {
  margin: 0;
  color: var(--purple-deep);
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.next-step-panel > p:not(.next-step-label) {
  max-width: 650px;
  margin: 17px 0 0;
  color: var(--muted);
}

.next-step-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.next-step-panel .waitlist-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--purple);
  font-size: 0.84rem;
}

.thank-you-rhythm {
  margin: 34px 0 0;
  color: var(--pink-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.return-link {
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.return-link:hover {
  color: var(--pink-deep);
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 1160px);
    --questionnaire-shell: min(100% - 30px, 880px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header-inner {
    min-height: 70px;
    gap: 16px;
  }

  .brand-lockup {
    gap: 9px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .page-context {
    max-width: 120px;
    font-size: 0.58rem;
    line-height: 1.35;
    text-align: right;
  }

  .questionnaire-introduction {
    padding-block: 58px 74px;
  }

  .questionnaire-introduction h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .introduction-copy {
    margin-top: 29px;
    font-size: 0.98rem;
  }

  .button {
    min-height: 54px;
    padding-inline: 21px;
    font-size: 0.7rem;
  }

  .questionnaire-form {
    padding-top: 22px;
  }

  .questionnaire-stage + .questionnaire-stage {
    margin-top: 88px;
    padding-top: 74px;
  }

  .stage-header {
    margin-bottom: 38px;
  }

  .question {
    padding-block: 32px;
  }

  .question legend,
  .question-label {
    font-size: 1.36rem;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .option-list label {
    min-height: 58px;
    padding: 13px 14px;
    font-size: 0.91rem;
  }

  .scale-options {
    gap: 7px;
  }

  .scale-options span {
    min-height: 56px;
    border-radius: 11px;
  }

  .about-you {
    margin-inline: -5px;
    padding: 26px 20px;
  }

  .stage-actions,
  .stage-actions:has(.button-secondary) {
    align-items: stretch;
  }

  .stage-actions .button {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 46px;
  }

  .company-details {
    flex-direction: column;
    gap: 22px;
  }

  .thank-you-hero {
    padding-block: 58px 88px;
  }

  .thank-you-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.55rem);
  }

  .success-emblem {
    width: 54px;
    height: 54px;
    margin-bottom: 25px;
  }

  .next-step-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .next-step-actions .button {
    width: 100%;
  }

  .return-link {
    align-self: center;
    padding: 8px;
  }
}

@media (max-width: 520px) {
  .questionnaire-progress .questionnaire-shell {
    gap: 12px;
  }

  .questionnaire-introduction .button {
    width: 100%;
  }

  .stage-actions,
  .stage-actions:has(.button-secondary) {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
  }

  .stage-actions:not(:has(.button-secondary)) {
    grid-template-columns: 1fr;
  }

  .stage-actions .button {
    width: 100%;
    padding-inline: 14px;
  }

  .final-actions {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .final-actions .button {
    font-size: 0.64rem;
  }

  .footer-contact-quiet {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

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

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