@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  src: local("Pretendard Regular"), local("Pretendard");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  src: local("Pretendard Bold"), local("Pretendard");
}

:root {
  --bg: #f2fcff;
  --blue: #3264f0;
  --yellow: #ffe23c;
  --ink: #172033;
  --muted: #5d6a78;
  --paper: #ffffff;
  --line: rgba(23, 32, 51, 0.14);
  --shadow: 0 18px 50px rgba(20, 52, 86, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 226, 60, 0.24), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(50, 100, 240, 0.1), transparent 20rem),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 44%, #edf9fc 100%);
  color: var(--ink);
  font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

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

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

.app {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.intro-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.title-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
}

.title-lockup > div {
  min-width: 0;
}

.title-mascot {
  width: clamp(74px, 10vw, 116px);
  height: clamp(74px, 10vw, 116px);
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
}

.eyebrow,
.selected-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(20px, 2.8vw, 41px);
  line-height: 1.02;
  font-weight: 700;
}

.intro #page-title {
  max-width: none;
  font-size: clamp(24px, 2.8vw, 41px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

h2 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
}

.ground-rule-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.6fr);
  align-items: center;
  align-content: center;
  gap: clamp(32px, 7vw, 100px);
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: clamp(28px, 5vw, 56px) max(7vw, 24px);
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 226, 60, 0.24), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(50, 100, 240, 0.1), transparent 20rem),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 44%, #edf9fc 100%);
  pointer-events: none;
  animation: ground-rule-scene-exit 900ms ease 2700ms forwards;
}

.ground-rule-intro h2 {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ground-rule-intro h2 span,
.ground-rule-intro h2 strong {
  display: block;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  animation: ground-rule-reveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ground-rule-intro h2 strong {
  text-align: center;
  animation-delay: 260ms;
}

.ground-rule-copy > p:first-child {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.ground-rule-copy > p:first-child span {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(24px);
  animation: ground-rule-copy-reveal 1200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ground-rule-copy > p:first-child span:first-child {
  animation-delay: 560ms;
}

.ground-rule-copy > p:first-child span:last-child {
  animation-delay: 820ms;
}

.staged-intro,
.staged-value-picker {
  opacity: 0;
  transform: translateY(80px);
  animation: section-stage-reveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.staged-intro {
  animation-delay: 2850ms;
  scroll-margin-block: 20vh;
}

.staged-value-picker {
  animation-delay: 3350ms;
}

@keyframes ground-rule-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ground-rule-copy-reveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes section-stage-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ground-rule-scene-exit {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10vh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ground-rule-intro h2 span,
  .ground-rule-intro h2 strong,
  .ground-rule-copy > p:first-child span,
  .staged-intro,
  .staged-value-picker {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .ground-rule-intro {
    display: none;
  }
}

.value-picker,
.form-area {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading p,
.helper-text {
  margin-bottom: 0;
  color: var(--muted);
}

.value-group + .value-group {
  margin-top: 24px;
}

.value-group-heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.value-group-heading h3,
.value-group-heading p {
  margin: 0;
}

.value-group-heading p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}

.value-button,
.ghost-button,
.ghost-link,
.submit-button,
.submit-link {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.value-button {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 156px;
  padding: 10px;
  background: #f7fbff;
  color: var(--ink);
  border: 1px solid rgba(50, 100, 240, 0.18);
  text-align: left;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.value-button:hover,
.value-button.is-active {
  transform: translateY(-2px);
  background: var(--blue);
  color: #ffffff;
}

.value-button.is-active::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

.value-image {
  width: 96px;
  height: 96px;
  align-self: center;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(50, 100, 240, 0.08);
}

.value-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 7px;
}

.value-title {
  display: block;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.2;
}

.value-description {
  display: block;
  color: rgba(23, 32, 51, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  word-break: keep-all;
}

.value-button:hover .value-description,
.value-button.is-active .value-description {
  color: rgba(255, 255, 255, 0.82);
}

.value-button:hover .value-title,
.value-button.is-active .value-title {
  color: #ffffff;
}

.value-button.is-active .value-title {
  padding-right: 28px;
}

.ghost-button,
.ghost-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  border: 1px solid rgba(50, 100, 240, 0.22);
  font-size: 14px;
  white-space: nowrap;
}

.intro-actions .ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.external-link-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-actions .ghost-link:hover,
.intro-actions .ghost-link:active {
  transform: translateY(-2px);
  background: var(--blue);
  color: #ffffff;
}

.form-area {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.question-panel {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
  background: var(--yellow);
  overflow: hidden;
}

.question-panel > * {
  position: relative;
  z-index: 1;
}

.question-panel.is-default-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3)),
    #ffe23c;
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.09);
}

.question-panel.is-default-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  background-image: url("value-images/trust.png");
  background-repeat: no-repeat;
  background-position: right 12px bottom 10px;
  background-size: min(48%, 180px);
  opacity: 0.7;
  pointer-events: none;
}

.question-panel.is-default-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.48) 58%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

.question-panel.has-selected-value {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3)),
    var(--selected-card-color, var(--yellow));
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.09);
}

.question-panel.has-selected-value::before {
  content: "";
  position: absolute;
  inset: 12px;
  background-image: var(--selected-card-image);
  background-repeat: no-repeat;
  background-position: right 12px bottom 10px;
  background-size: min(48%, 180px);
  opacity: 0.7;
  pointer-events: none;
}

.question-panel.has-selected-value::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.48) 58%,
    rgba(255, 255, 255, 0.08) 100%
  );
  pointer-events: none;
}

.selected-value-name {
  max-width: 68%;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
}

.question-panel.has-selected-value h2 {
  max-width: 65%;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.25;
  white-space: nowrap;
}

.selected-answer-field {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.selected-answer-field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.selected-answer-field strong {
  color: var(--blue);
}

.selected-answer-field textarea {
  position: relative;
  z-index: 2;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.answer-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.field-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mini-link {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(50, 100, 240, 0.22);
  border-radius: 8px;
  background: rgba(50, 100, 240, 0.06);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.field strong,
.check-field strong {
  color: var(--blue);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

input::placeholder,
textarea::placeholder {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

input {
  height: 48px;
  padding: 0 14px;
}

select {
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

select:invalid,
select:has(option[value=""]:checked) {
  color: #757575;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 128px;
  padding: 14px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(50, 100, 240, 0.14);
}

.fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.fieldset legend {
  margin-bottom: 8px;
}

.radio-group,
.rating-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rating-group {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.radio-group label,
.rating-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(23, 32, 51, 0.18);
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.radio-group input,
.rating-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.is-hidden {
  display: none;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.privacy-notice {
  padding: 16px;
  border: 1px solid rgba(50, 100, 240, 0.16);
  border-radius: 8px;
  background: rgba(247, 251, 255, 0.88);
  font-size: 14px;
}

.privacy-notice h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 15px;
}

.privacy-notice dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.privacy-notice div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
}

.privacy-notice dt {
  color: var(--ink);
  font-weight: 700;
}

.privacy-notice dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.submit-button {
  width: 100%;
  background: var(--blue);
  color: #ffffff;
}

.display-guide {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.display-guide p {
  max-width: 720px;
  margin-bottom: 6px;
  color: var(--muted);
}

.submit-link {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  padding: 0 18px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
}

.success-app {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.success-panel {
  display: grid;
  justify-items: center;
  width: min(100%, 680px);
  padding: 44px 28px;
  border: 1px solid rgba(50, 100, 240, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-mascot {
  width: min(180px, 44vw);
  height: auto;
  margin-bottom: 18px;
}

.success-panel h1 {
  margin-bottom: 14px;
  font-size: clamp(10px, 3.4vw, 30px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.success-panel p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(8px, 2.5vw, 16px);
  letter-spacing: -0.03em;
  line-height: 1.55;
  white-space: nowrap;
}

.success-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.success-links .ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.success-retry-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(23, 32, 51, 0.28);
  text-underline-offset: 4px;
}

.success-retry-link:hover {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.wall {
  min-height: 560px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.wall-heading {
  margin-bottom: 12px;
}

.note-stage {
  position: relative;
  min-height: 470px;
}

.note {
  position: absolute;
  width: min(240px, 72vw);
  min-height: 170px;
  padding: 18px;
  border-radius: 6px;
  background: var(--note-color, var(--yellow));
  box-shadow: 0 14px 30px rgba(23, 32, 51, 0.16);
}

.note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.25);
}

.note-category {
  position: relative;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.note-answer {
  position: relative;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.note-meta {
  position: relative;
  margin-bottom: 0;
  color: rgba(23, 32, 51, 0.62);
  font-size: 13px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 420px;
  color: rgba(23, 32, 51, 0.62);
  text-align: center;
}

.display-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(255, 226, 60, 0.24), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(50, 100, 240, 0.1), transparent 20rem),
    linear-gradient(135deg, #f7fdff 0%, #ffffff 44%, #edf9fc 100%);
}

.display-app {
  width: min(100% - 52px, 1600px);
  height: 100vh;
  margin: 0 auto;
  padding: 22px 0 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

.display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 2px;
}

.display-header h1 {
  max-width: 900px;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
}

.display-wall {
  min-height: 0;
  height: 100%;
  padding: 16px;
}

.display-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-content: start;
  gap: 18px;
  min-height: 100%;
  height: 100%;
  overflow: auto;
  padding: 4px;
}

.display-value-wall {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto minmax(0, 2fr);
  gap: 12px;
  min-height: 0;
}

.display-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.display-group-title {
  margin: 0;
  color: var(--blue);
  font-size: 17px;
  letter-spacing: 0;
}

.display-note-count {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  place-items: center;
  padding: 0 12px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.display-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}

.cv-display-grid {
  grid-template-rows: minmax(0, 1fr);
}

.lp-display-grid {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
}

.display-value-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 0;
  padding: 15px 16px;
  border: 1px solid rgba(50, 100, 240, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3)),
    var(--card-color, #ffe23c);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.09);
  overflow: hidden;
}

.display-value-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  background-image: var(--card-image);
  background-repeat: no-repeat;
  background-position: right 12px bottom 10px;
  background-size: min(46%, 132px);
  opacity: 0.7;
  pointer-events: none;
}

.display-value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.display-card-label {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(17px, 1.3vw, 24px);
  line-height: 1.1;
  font-weight: 700;
}

.display-card-answer {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.display-card-name {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(23, 32, 51, 0.64);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .intro,
  .intro-actions,
  .display-header,
  .section-heading {
    display: grid;
  }

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

  .value-grid,
  .form-area,
  .form-row {
    grid-template-columns: 1fr;
  }

  .value-button {
    grid-template-columns: 76px 1fr;
  }

  .value-image {
    width: 76px;
    height: 76px;
  }

  .display-stage .note {
    width: 100%;
  }

  .display-value-grid {
    grid-template-columns: 1fr;
  }

  .lp-display-grid {
    grid-template-rows: none;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at 12% 4%, rgba(255, 226, 60, 0.22), transparent 12rem),
      linear-gradient(180deg, #f7fdff 0%, #ffffff 52%, #edf9fc 100%);
  }

  .app {
    width: min(100% - 24px, 1180px);
    padding: 18px 0 36px;
  }

  .intro {
    gap: 14px;
    margin-bottom: 16px;
  }

  .title-lockup {
    align-items: flex-start;
    gap: 12px;
  }

  .title-mascot {
    width: 58px;
    height: 58px;
  }

  .eyebrow,
  .selected-label {
    margin-bottom: 6px;
    font-size: 11px;
  }

  h1 {
    font-size: 24px;
    line-height: 1.16;
  }

  h2 {
    font-size: 20px;
  }

  .intro-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .intro-actions .ghost-link {
    width: 100%;
    min-height: 42px;
    padding: 0 6px;
    justify-content: center;
    font-size: 12px;
    white-space: nowrap;
  }

  .value-picker,
  .form-area,
  .wall {
    padding: 16px;
  }

  .ground-rule-intro {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    margin: 0;
    padding: 24px 8px;
  }

  .ground-rule-intro h2 {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: clamp(27px, 9vw, 38px);
    white-space: nowrap;
  }

  .ground-rule-intro h2 strong {
    text-align: left;
  }

  .ground-rule-copy > p:first-child {
    font-size: clamp(11px, 3.75vw, 18px);
    line-height: 1.45;
  }

  .question-panel {
    padding: 18px;
  }

  .section-heading {
    gap: 6px;
    margin-bottom: 14px;
  }

  .section-heading p {
    font-size: 14px;
    line-height: 1.45;
  }

  .value-group + .value-group {
    margin-top: 18px;
  }

  .value-group-heading {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
  }

  .value-group-heading p {
    font-size: 11px;
  }

  .value-grid {
    gap: 8px;
  }

  .value-button {
    grid-template-columns: 62px 1fr;
    min-height: 130px;
    padding: 9px;
  }

  .value-image {
    width: 62px;
    height: 62px;
  }

  .value-copy {
    align-content: start;
    gap: 10px;
    padding-top: 0;
  }

  .value-title {
    font-size: 18px;
  }

  .value-description {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    overflow: visible;
  }

  .form-area {
    gap: 14px;
  }

  .field-title-row {
    display: grid;
    gap: 8px;
  }

  .mini-link {
    justify-self: start;
  }

  input,
  select {
    height: 46px;
  }

  textarea {
    min-height: 150px;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .rating-group {
    grid-template-columns: 1fr;
  }

  .check-field {
    align-items: center;
    gap: 6px;
    font-size: clamp(8px, 2.65vw, 12px);
    line-height: 1.35;
    white-space: nowrap;
  }

  .check-field input {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 0;
  }

  .privacy-notice div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .privacy-notice {
    padding: 12px;
    font-size: clamp(8px, 2.65vw, 12px);
    line-height: 1.35;
  }

  .privacy-notice h3 {
    margin-bottom: 8px;
    font-size: clamp(10px, 3vw, 13px);
  }

  .privacy-notice dl {
    gap: 6px;
  }

  .privacy-notice dd {
    line-height: 1.35;
  }

  .submit-button {
    min-height: 52px;
    font-size: 16px;
  }
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
