:root {
  color-scheme: light;
  --color-bg: #f8f3e9;
  --color-bg-paper: #f5efe3;
  --color-surface: #fffbf2;
  --color-surface-soft: #f9f4ea;
  --color-surface-inset: #f1ebdd;
  --color-text-main: #3c342b;
  --color-text-heading: #352d25;
  --color-text-secondary: #70675b;
  --color-text-muted: #9b9286;
  --color-primary: #596344;
  --color-primary-dark: #434b34;
  --color-primary-soft: #eef2e5;
  --color-bluegray: #6e8390;
  --color-bluegray-soft: #edf3f5;
  --color-terracotta: #b96e42;
  --color-terracotta-dark: #985735;
  --color-terracotta-soft: #f4e2d5;
  --color-border-soft: #e5dccb;
  --color-border-medium: #d4c7b4;
  --color-success: #667a4f;
  --color-success-bg: #eef2e5;
  --color-warning: #b98342;
  --color-warning-bg: #f6e9d4;
  --color-error: #b85f4d;
  --color-error-bg: #f5ddd8;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", serif;
  --shadow-soft: 8px 8px 20px rgba(77, 64, 45, 0.075), -8px -8px 20px rgba(255, 255, 255, 0.8);
  --shadow-light: 4px 4px 12px rgba(77, 64, 45, 0.06), -4px -4px 12px rgba(255, 255, 255, 0.72);
  --shadow-inset: inset 4px 4px 10px rgba(77, 64, 45, 0.055), inset -4px -4px 10px rgba(255, 255, 255, 0.86);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-bg);
}

body {
  min-height: 100%;
  margin: 0;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(rgba(70, 60, 45, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22));
  background-size: 18px 18px, cover;
  color: var(--color-text-main);
  font-family: var(--font-sans);
}

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

button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

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

button:disabled {
  background: #ded7ca;
  color: #a7a096;
  cursor: not-allowed;
  box-shadow: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(212, 199, 180, 0.62);
  border-radius: 20px;
  background: var(--color-surface-soft);
  color: var(--color-text-main);
  box-shadow: var(--shadow-inset);
  outline: none;
}

input,
select {
  min-height: 62px;
  padding: 0 20px;
}

textarea {
  min-height: 220px;
  padding: 20px;
  resize: vertical;
  line-height: 1.65;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(185, 110, 66, 0.58);
  box-shadow:
    0 0 0 4px rgba(185, 110, 66, 0.11),
    var(--shadow-inset);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-text-heading);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

.respondentShell {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 24px 18px max(36px, calc(22px + env(safe-area-inset-bottom)));
}

.softCard,
.entryPanel,
.resumePanel {
  border: 1px solid rgba(229, 220, 203, 0.78);
  border-radius: 26px;
  background: rgba(255, 251, 242, 0.9);
  box-shadow: var(--shadow-soft);
}

.brandHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}

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

.entryHero {
  padding: 18px 0 26px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.heroCopy h1 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.12;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-terracotta);
  font-size: 15px;
  font-weight: 800;
}

.lead,
.heroCopy p,
.summary p,
.guideIntro p,
.resumePanel p,
.questionContent,
.recordingHeader p,
.questionPreview li p {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.heroIllustration,
.summary > img,
.guideIntro > img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.heroIllustration {
  display: block;
  width: calc(100% + 36px);
  height: clamp(238px, 62vw, 292px);
  max-width: none;
  max-height: none;
  margin: 4px -18px -6px;
  object-fit: cover;
  object-position: center 54%;
}

.entryPanel,
.resumePanel {
  margin-top: 16px;
  padding: 18px;
}

.entryPanel h2,
.resumePanel h2 {
  margin-bottom: 14px;
  font-size: 23px;
}

.nativeRoleSelect {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.roleGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.roleCard {
  position: relative;
  display: grid;
  min-height: 108px;
  place-items: center;
  gap: 10px;
  padding: 14px 10px;
  border: 1px solid rgba(229, 220, 203, 0.76);
  border-radius: 18px;
  background: var(--color-surface);
  color: var(--color-text-main);
  box-shadow: var(--shadow-light);
}

.roleCard img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.roleCard strong {
  font-size: 16px;
  font-weight: 650;
}

.roleGuidance {
  display: grid;
  gap: 5px;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(229, 220, 203, 0.78);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.roleGuidance strong {
  color: var(--color-primary-dark);
  font-size: 15px;
}

.roleCard.isSelected {
  border-color: var(--color-terracotta);
  background: #fff8ee;
}

.roleCheck {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  opacity: 0;
}

.roleCard.isSelected .roleCheck {
  opacity: 1;
}

.entryFields {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.softField {
  display: grid;
  gap: 8px;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.primaryButton,
form button[type="submit"],
#uploadRecording {
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 6px 6px 16px rgba(67, 75, 52, 0.22), -4px -4px 14px rgba(255, 255, 255, 0.82);
}

.secondaryButton,
.inputRow button,
.answerActions button {
  border: 1px solid var(--color-border-medium);
  background: var(--color-surface);
  color: var(--color-text-main);
  font-size: 16px;
  font-weight: 650;
  box-shadow: var(--shadow-light);
}

form button[type="submit"] {
  width: 100%;
  min-height: 56px;
}

.status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.status[data-kind="muted"] {
  color: var(--color-text-secondary);
}

.status[data-kind="loading"] {
  color: var(--color-bluegray);
}

.status[data-kind="success"] {
  color: var(--color-success);
}

.status[data-kind="error"] {
  color: var(--color-error);
}

.resumePanel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 18px;
}

.inputRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.interviewResult {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.summary,
.guideIntro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.summary h2,
.guideIntro h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.guideIntro > img {
  max-height: 142px;
}

.participant {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.stats,
.submitStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stats span,
.submitStats span,
.saveChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.submitStats strong {
  color: var(--color-text-heading);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.sectionHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.sectionHeader img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.questionPreview {
  padding: 24px;
}

.questionPreview ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.questionPreview li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(229, 220, 203, 0.75);
  border-radius: 18px;
  background: rgba(255, 251, 242, 0.75);
  box-shadow: var(--shadow-light);
}

.questionPreview li span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.questionPreview li strong {
  color: var(--color-text-heading);
  font-weight: 750;
}

.questionCard {
  padding: 18px;
}

.questionTopline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.stepDots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stepDots button {
  display: grid;
  width: 13px;
  height: 13px;
  min-height: 13px;
  padding: 0;
  border: 2px solid var(--color-border-soft);
  border-radius: 50%;
  background: var(--color-surface-inset);
  box-shadow: none;
}

.stepDots button span {
  display: none;
}

.stepDots button:not(:disabled):hover {
  transform: scale(1.18);
}

.stepDots .isDone {
  border-color: var(--color-success);
  background: var(--color-success);
}

.stepDots .isCurrent {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta);
  box-shadow: 0 0 0 5px rgba(185, 110, 66, 0.13);
}

.progressBar {
  height: 10px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-surface-inset);
  box-shadow: var(--shadow-inset);
}

.progressBar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-primary));
}

.questionHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.questionHero h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 6vw, 28px);
  line-height: 1.25;
}

.questionHero img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.questionHint {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid rgba(185, 110, 66, 0.24);
  border-radius: 18px;
  background: rgba(255, 251, 242, 0.82);
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 14px;
}

.questionHint img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.answerCard {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid rgba(229, 220, 203, 0.75);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-light);
}

.answerCardHeader,
.recordingHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.answerCard h4,
.recordingHeader h4 {
  margin-bottom: 6px;
  color: var(--color-text-heading);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
}

.answerCardHeader span,
.recordingHeader span,
.audioSummary {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 750;
}

.recordingPad {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 10px;
  min-height: 124px;
  margin-bottom: 12px;
  padding: 14px 12px;
  border: 1px solid rgba(212, 199, 180, 0.52);
  border-radius: 26px;
  background: rgba(249, 244, 234, 0.76);
  box-shadow: var(--shadow-inset);
}

.recordingControls {
  display: grid;
  grid-template-columns: 40px 62px 40px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.recordingPrimaryButton {
  display: grid;
  width: 62px;
  height: 62px;
  min-height: 62px;
  place-items: center;
  padding: 13px;
  border: 1px solid rgba(212, 199, 180, 0.65);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-light);
}

.recordingPrimaryButton img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.recordingPrimaryButton.isRecording {
  border-color: rgba(185, 110, 66, 0.5);
  background: var(--color-terracotta);
  color: #fff;
  box-shadow: 7px 7px 18px rgba(185, 110, 66, 0.22), -5px -5px 14px rgba(255, 255, 255, 0.75);
}

.recordingPrimaryButton.isRecording img {
  filter: brightness(0) invert(1);
}

.recordingPrimaryButton.hasLocalAudio {
  border-color: rgba(89, 99, 68, 0.42);
  background: var(--color-primary);
  color: #fff;
}

.recordingPrimaryButton.hasLocalAudio img {
  filter: brightness(0) invert(1);
}

.recordingPrimaryButton.isPaused {
  border-color: rgba(89, 99, 68, 0.42);
  background: var(--color-primary-soft);
}

.recordingIconButton {
  display: grid;
  width: 40px;
  height: 40px;
  min-height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(212, 199, 180, 0.7);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-light);
  font-size: 18px;
  font-weight: 850;
}

.pauseIcon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.pauseIcon::before,
.pauseIcon::after {
  content: "";
  position: absolute;
  top: 1px;
  height: 18px;
  width: 5px;
  border-radius: 999px;
  background: currentColor;
}

.pauseIcon::before {
  left: 3px;
}

.pauseIcon::after {
  right: 3px;
}

.stopIcon {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: currentColor;
}

.finishButton {
  color: var(--color-terracotta-dark);
}

.recordingDisplay {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
}

.recordingTimer {
  color: var(--color-text-heading);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.recordingTimer.isRecording {
  color: var(--color-terracotta-dark);
}

.audioWave {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 26px;
}

.audioWave span {
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: rgba(89, 99, 68, 0.34);
  transition: height 160ms ease, background 160ms ease, opacity 160ms ease;
}

.audioWave span:nth-child(2),
.audioWave span:nth-child(5) {
  height: 30px;
}

.audioWave span:nth-child(3) {
  height: 38px;
  background: rgba(185, 110, 66, 0.54);
}

.audioWave.isRecording span {
  animation: wavePulse 820ms ease-in-out infinite;
  background: rgba(185, 110, 66, 0.72);
}

.audioWave.isRecording span:nth-child(2n) {
  animation-delay: 100ms;
}

.audioWave.isRecording span:nth-child(3n) {
  animation-delay: 180ms;
}

.audioWave.isPaused span {
  animation: none;
  opacity: 0.45;
  background: rgba(89, 99, 68, 0.52);
}

.audioWave.hasAudio span {
  background: rgba(89, 99, 68, 0.52);
}

@keyframes wavePulse {
  0%,
  100% {
    height: 16px;
    opacity: 0.58;
  }
  50% {
    height: 32px;
    opacity: 1;
  }
}

.uploadedAudio,
.localAudio {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

audio {
  width: 100%;
}

.audioPlayback {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 220, 203, 0.7);
  border-radius: 16px;
  background: rgba(255, 251, 242, 0.68);
}

.audioSeekRow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 750;
}

.audioSeekRow input[type="range"] {
  min-height: 24px;
  padding: 0;
  accent-color: var(--color-primary);
  box-shadow: none;
}

.recordingActions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.recordingActions button {
  min-height: 46px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 750;
}

#retryRecording {
  border: 1px solid var(--color-border-medium);
  background: var(--color-surface);
  color: var(--color-text-main);
  box-shadow: var(--shadow-light);
}

.answerActions {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
  margin-top: 16px;
}

.answerActions button {
  min-height: 48px;
  padding: 0 14px;
}

.textAnswerCard textarea {
  min-height: 116px;
  padding: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.submitPanel {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.submitPanel h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.submitPanel button {
  width: 100%;
  min-height: 52px;
}

#submitSummary {
  margin-bottom: 0;
  color: var(--color-primary-dark);
  font-weight: 800;
  line-height: 1.7;
}

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

.reviewQuestionButton {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 220, 203, 0.78);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.82);
  color: var(--color-text-main);
  box-shadow: var(--shadow-light);
  text-align: left;
}

.reviewOrder {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
}

.reviewText {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.reviewText strong,
.reviewText small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reviewText strong {
  font-size: 15px;
}

.reviewText small {
  color: var(--color-text-secondary);
  font-size: 13px;
}

.reviewStatus {
  display: grid;
  gap: 1px;
  min-width: 58px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.reviewStatus strong {
  font-size: 12px;
}

.reviewStatus small {
  font-size: 11px;
  font-weight: 700;
}

.reviewStatus[data-kind="complete"] {
  background: var(--color-bluegray-soft);
  color: var(--color-bluegray);
}

.reviewStatus[data-kind="missing"] {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.completionScreen {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 15px;
  overflow: hidden;
  padding: 24px 18px 0;
  text-align: center;
}

.completionBrand {
  justify-self: start;
}

.completionPerson {
  width: 112px;
  max-width: 40%;
  object-fit: contain;
}

.completionCopy h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.completionCopy p {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.completionStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(229, 220, 203, 0.78);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: var(--shadow-light);
}

.completionStats span {
  display: grid;
  gap: 6px;
  padding: 13px 8px;
  color: var(--color-text-secondary);
  font-weight: 700;
}

.completionStats span + span {
  border-left: 1px solid rgba(212, 199, 180, 0.58);
}

.completionStats strong {
  color: var(--color-text-heading);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.completionReview {
  display: grid;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.completionReview h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.completionReview p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.completionPrivacy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.completionPrivacy img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.completionLandscape {
  width: calc(100% + 44px);
  max-height: 120px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.9;
}

.roleEmptyState {
  grid-column: 1 / -1;
  padding: 16px;
  border: 1px solid rgba(185, 110, 66, 0.24);
  border-radius: 18px;
  background: rgba(244, 226, 213, 0.45);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.roleEmptyState strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-heading);
}

@media (max-width: 760px) {
  .respondentShell {
    padding: 20px 14px max(34px, calc(20px + env(safe-area-inset-bottom)));
  }

  .brandHeader {
    font-size: 21px;
  }

  .brandHeader img {
    width: 40px;
    height: 40px;
  }

  .heroGrid,
  .summary,
  .guideIntro,
  .resumePanel {
    grid-template-columns: 1fr;
  }

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

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

  .answerActions {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  .recordingPad {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .questionTopline,
  .answerCardHeader,
  .recordingHeader {
    display: grid;
  }

  .questionHero h3 {
    font-size: 25px;
  }
}

@media (max-width: 430px) {
  .respondentShell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .heroCopy h1 {
    font-size: 32px;
  }

  button {
    min-height: 48px;
  }

  input,
  select {
    min-height: 52px;
  }

  textarea {
    min-height: 150px;
  }

  .heroIllustration {
    width: calc(100% + 36px);
    height: 268px;
    margin: 4px -18px -6px;
  }

  .entryPanel,
  .resumePanel,
  .summary,
  .guideIntro,
  .questionPreview,
  .questionCard,
  .submitPanel {
    padding: 16px;
    border-radius: 24px;
  }

  .roleGrid {
    gap: 12px;
  }

  .roleCard {
    min-height: 104px;
  }

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

  .questionHero {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

  .questionHero img {
    max-height: 84px;
  }
}
