@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;1,9..144,500&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --green-deep: #142318;
  --green-mid: #243d2b;
  --green-soft: #3a5c44;
  --green-fairway: #4d7358;
  --cream: #f4f0e6;
  --cream-warm: #ebe4d4;
  --cream-dark: #ddd5c4;
  --sand: #b8a88a;
  --brass: #a8925a;
  --ink: #1a1916;
  --ink-muted: #5e5a52;
  --white: #fffcf7;
  --accent: #3d6b4a;
  --accent-light: #e4ece6;
  --danger-soft: #f3ebe9;
  --danger: #8f4a40;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(20, 35, 24, 0.06);
  --shadow-lg: 0 16px 48px rgba(20, 35, 24, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      168deg,
      transparent,
      transparent 48px,
      rgba(58, 92, 68, 0.025) 48px,
      rgba(58, 92, 68, 0.025) 49px
    ),
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(77, 115, 88, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(168, 146, 90, 0.12), transparent);
}

.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 230, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 35, 24, 0.07);
  padding: 0.875rem 1.25rem;
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.brand-logo {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  background: var(--green-deep);
  border-radius: 50%;
  border: 1.5px solid rgba(168, 146, 90, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.progress-bar {
  height: 3px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-fairway), var(--brass));
  border-radius: 2px;
  transition: width 0.35s ease;
}

/* Main */
.main {
  flex: 1;
  padding: 1.75rem 1.25rem 5rem;
}

.main-inner {
  max-width: 720px;
  margin: 0 auto;
}

.validation-msg {
  max-width: 720px;
  margin: 1rem auto 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--danger);
  background: var(--danger-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--danger);
}

.step {
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
  margin-bottom: 0.4rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-deep);
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
}

.step-lead {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 1.75rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 35, 24, 0.06);
  margin-bottom: 1.25rem;
}

.card + .card {
  margin-top: 1rem;
}

.concept-card {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(168, 146, 90, 0.15), transparent 70%);
  pointer-events: none;
}

.concept-card p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

.concept-card strong {
  font-weight: 600;
  color: var(--sand);
}

/* Questions */
.question {
  margin-bottom: 1.75rem;
}

.question:last-child {
  margin-bottom: 0;
}

.question-label {
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.question-hint {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: -0.35rem 0 0.85rem;
}

.question-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 1.75rem 0;
}

.question-enter {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.95rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-size: 0.925rem;
  color: var(--ink);
}

.option:hover {
  background: var(--cream-warm);
  border-color: rgba(58, 92, 68, 0.15);
}

.option.selected {
  background: var(--accent-light);
  border-color: var(--accent);
}

.option input {
  margin-top: 0.12rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

/* Bipolar / semantic differential scale */
.bipolar-scale {
  padding: 0.25rem 0 0.5rem;
}

.bipolar-poles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.bipolar-pole {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}

.bipolar-pole--left {
  border-left: 3px solid var(--green-fairway);
}

.bipolar-pole--right {
  border-right: 3px solid var(--brass);
  text-align: right;
}

.bipolar-pole-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.bipolar-pole p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--green-deep);
  font-style: italic;
}

.bipolar-track-wrap {
  position: relative;
  padding: 0.5rem 0 0;
  margin-bottom: 1rem;
}

.bipolar-track-line {
  position: absolute;
  top: 1.15rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-fairway), var(--cream-dark) 50%, var(--brass));
  border-radius: 1px;
  pointer-events: none;
}

.bipolar-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.25rem;
}

.bipolar-point {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 0;
}

.bipolar-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.bipolar-point:hover .bipolar-dot {
  border-color: var(--sand);
  transform: scale(1.1);
}

.bipolar-point.selected .bipolar-dot {
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: 0 0 0 4px var(--accent-light);
  transform: scale(1.15);
}

.bipolar-point-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.25;
  max-width: 4.5rem;
}

.bipolar-point.selected .bipolar-point-label {
  color: var(--green-deep);
}

.bipolar-selection {
  padding: 0.85rem 1rem;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--green-mid);
  border-left: 3px solid var(--green-fairway);
}

.bipolar-selection--empty {
  background: var(--cream);
  color: var(--ink-muted);
  font-style: italic;
  border-left-color: var(--cream-dark);
}

.bipolar-selection-label {
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-soft);
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 560px) {
  .bipolar-poles {
    grid-template-columns: 1fr;
  }

  .bipolar-pole--right {
    text-align: left;
    border-right: none;
    border-left: 3px solid var(--brass);
  }

  .bipolar-point-label {
    font-size: 0.62rem;
    max-width: 3.25rem;
  }
}

/* Likert */
.likert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.likert-btn {
  flex: 1;
  min-width: 2.25rem;
  padding: 0.55rem 0.35rem;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--ink-muted);
}

.likert-btn:hover {
  border-color: var(--sand);
  color: var(--ink);
}

.likert-btn.selected {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

.likert-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

/* Matrix — brand familiarity */
.matrix-table {
  width: 100%;
}

.matrix-table-head {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(0, 5.5rem));
  gap: 0.5rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 0.25rem;
}

.matrix-table-head span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-align: center;
}

.matrix-table-head span:first-child {
  text-align: left;
}

.matrix-table-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(0, 5.5rem));
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(221, 213, 196, 0.6);
}

.matrix-table-row:last-child {
  border-bottom: none;
}

.matrix-brand {
  font-size: 0.9rem;
  font-weight: 500;
  padding-right: 0.5rem;
}

.matrix-cell {
  display: flex;
  justify-content: center;
}

.matrix-radio {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
  position: relative;
}

.matrix-radio:hover {
  border-color: var(--sand);
}

.matrix-radio.selected {
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: inset 0 0 0 3px var(--white);
}

.matrix-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

/* Text inputs */
.text-input,
textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.975rem;
  resize: vertical;
  min-height: 96px;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--ink);
}

.text-input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.text-input {
  min-height: auto;
}

/* MaxDiff table */
.maxdiff-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 35, 24, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.maxdiff-instructions {
  padding: 1.1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--green-mid);
  background: var(--accent-light);
  border-bottom: 1px solid rgba(58, 92, 68, 0.1);
}

.maxdiff-table {
  width: 100%;
}

.maxdiff-table-head {
  display: grid;
  grid-template-columns: 1fr 5rem 5rem;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.maxdiff-table-head span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-align: center;
}

.maxdiff-table-head span:first-child {
  text-align: left;
}

.maxdiff-table-head .best-col {
  color: var(--green-soft);
}

.maxdiff-table-head .worst-col {
  color: var(--danger);
}

.maxdiff-table-row {
  display: grid;
  grid-template-columns: 1fr 5rem 5rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(221, 213, 196, 0.5);
  transition: background var(--transition);
}

.maxdiff-table-row:last-child {
  border-bottom: none;
}

.maxdiff-table-row.row-best {
  background: rgba(228, 236, 230, 0.55);
}

.maxdiff-table-row.row-worst {
  background: rgba(243, 235, 233, 0.45);
}

.maxdiff-table-phrase {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--green-deep);
  padding-right: 0.75rem;
}

.maxdiff-table-cell {
  display: flex;
  justify-content: center;
}

.maxdiff-radio {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.maxdiff-radio:hover:not(:disabled) {
  border-color: var(--sand);
  transform: scale(1.08);
}

.maxdiff-radio:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.maxdiff-radio.best.selected {
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.maxdiff-radio.worst.selected {
  border-color: var(--danger);
  background: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-soft);
}

.maxdiff-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  font-size: 0.8rem;
}

.status-pending {
  color: var(--ink-muted);
  font-weight: 500;
}

.status-done {
  color: var(--green-soft);
  font-weight: 600;
}

.status-complete {
  color: var(--green-deep);
  font-weight: 600;
}

/* Boundary scale */
.boundary-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.boundary-item:last-child {
  border-bottom: none;
}

.boundary-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--green-deep);
}

.scale-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}

.scale-7 button {
  aspect-ratio: 1;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--ink-muted);
}

.scale-7 button:hover {
  border-color: var(--sand);
}

.scale-7 button.selected {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

/* Pricing */
.price-single {
  padding: 0.5rem 0;
}

.price-single-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.price-single-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 200px;
}

.price-single-currency {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--green-deep);
}

.price-input {
  min-height: auto;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.65rem 0.85rem;
  max-width: 140px;
}

.gabor-price-display {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  padding: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.gabor-price-display::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  margin: 0 auto 1rem;
}

.price-grid {
  display: grid;
  gap: 0.85rem;
}

.price-field label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.price-field input {
  width: 100%;
  max-width: 130px;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.975rem;
  font-family: inherit;
  background: var(--white);
}

.price-field input:focus {
  outline: none;
  border-color: var(--accent);
}

/* NPS */
.nps-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0.25rem;
}

.nps-btn {
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  border-radius: 6px;
  font-size: clamp(0.62rem, 2.5vw, 0.78rem);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: var(--ink-muted);
}

.nps-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.nps-btn.selected {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}

.nps-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}

/* Footer */
.footer {
  position: sticky;
  bottom: 0;
  background: rgba(244, 240, 230, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(20, 35, 24, 0.07);
  padding: 0.875rem 1.25rem;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 0.65rem;
}

.btn {
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink-muted);
  border: 1.5px solid var(--cream-dark);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--sand);
  color: var(--ink);
}

.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
  margin-left: auto;
  min-width: 8rem;
}

.btn-primary:hover:not(:disabled) {
  background: var(--green-mid);
}

.btn-primary.shake {
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Welcome */
.welcome-hero {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.welcome-mark {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  background: var(--green-deep);
  border-radius: 50%;
  border: 2px solid rgba(168, 146, 90, 0.4);
  box-shadow: var(--shadow-lg);
}

.welcome-hero .step-title {
  font-size: clamp(2rem, 7vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.welcome-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.welcome-incentive {
  margin: 1.75rem auto 0;
  max-width: 28rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  background: rgba(58, 92, 68, 0.06);
  border: 1px solid rgba(58, 92, 68, 0.16);
  border-radius: 12px;
}

.welcome-incentive-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.welcome-incentive-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-deep);
}

.welcome-incentive-body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.welcome-legal {
  margin: 1.75rem auto 0;
  max-width: 34rem;
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--ink-muted);
  opacity: 0.85;
}

.question-legal {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(58, 92, 68, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.toggle-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
  min-width: 0;
}

.toggle-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.toggle-sub {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-muted);
}

.toggle-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.toggle-ui {
  position: relative;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(58, 92, 68, 0.18);
  transition: background 0.2s ease;
}

.toggle-ui::after {
  content: '';
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.toggle-input:checked + .toggle-ui {
  background: var(--green-deep);
}

.toggle-input:checked + .toggle-ui::after {
  transform: translateX(1.15rem);
}

.toggle-input:focus-visible + .toggle-ui {
  outline: 2px solid rgba(58, 92, 68, 0.35);
  outline-offset: 2px;
}

.welcome-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-deep);
}

.welcome-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Complete */
.complete-screen,
.terminate-screen {
  text-align: center;
  padding: 2.5rem 0;
}

.complete-mark {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--accent-light);
  border-radius: 50%;
  border: 1.5px solid rgba(58, 92, 68, 0.2);
}

.hidden {
  display: none !important;
}

@media (max-width: 560px) {
  .maxdiff-table-head,
  .maxdiff-table-row {
    grid-template-columns: 1fr 3.5rem 3.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .maxdiff-table-phrase {
    font-size: 0.95rem;
  }

  .matrix-table-head,
  .matrix-table-row {
    grid-template-columns: 1fr repeat(3, 3rem);
    gap: 0.35rem;
  }

  .matrix-brand {
    font-size: 0.82rem;
  }

  .nps-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
