.psychology-home-card {
  position: relative;
  min-height: 320px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #ddd5f8;
  border-radius: 18px;
  background: #faf8ff;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  box-shadow: 0 12px 30px rgba(78, 58, 145, 0.09);
}

.psychology-home-art {
  min-height: 320px;
  overflow: hidden;
  order: 2;
}

.psychology-home-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 68% center;
}

.psychology-home-copy {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.psychology-kicker {
  color: #6c51ca;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.psychology-home-copy h3 {
  color: #2f2b3b;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.psychology-home-copy > p {
  max-width: 500px;
  color: #625f6c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.psychology-home-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.psychology-home-skills span {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #e2dcf5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #5d586b;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
}

.psychology-home-progress,
.psychology-hero-progress {
  width: min(100%, 410px);
  display: grid;
  gap: 7px;
}

.psychology-home-progress > span,
.psychology-hero-progress > span,
.psychology-world-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e3f4;
}

.psychology-home-progress i,
.psychology-hero-progress i,
.psychology-world-progress i {
  height: 100%;
  border-radius: inherit;
  background: #8065dc;
  display: block;
}

.psychology-home-progress strong {
  color: #6c6680;
  font-size: 11px;
  font-weight: 800;
}

.psychology-primary {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: #765bd2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 9px 20px rgba(99, 75, 186, 0.23);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.psychology-primary:hover,
.psychology-primary:focus-visible {
  transform: translateY(-1px);
  background: #6549c4;
  box-shadow: 0 12px 24px rgba(99, 75, 186, 0.28);
  outline: 3px solid rgba(118, 91, 210, 0.2);
  outline-offset: 2px;
}

.psychology-primary:disabled {
  transform: none;
  background: #cbc8d5;
  color: #777381;
  cursor: not-allowed;
  box-shadow: none;
  outline: 0;
}

.psychology-club-app {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(241, 237, 255, 0.9), rgba(249, 250, 252, 0) 430px),
    #f9fafc;
}

.psychology-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 54px;
  color: #2c3137;
  font-family: "Be Vietnam Pro", sans-serif;
}

.psychology-topbar,
.psychology-lesson-header {
  min-height: 56px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.psychology-back-link {
  width: max-content;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #5f626d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.psychology-back-link:hover,
.psychology-back-link:focus-visible {
  background: #fff;
  color: #664bc5;
  outline: 2px solid #ddd5f5;
}

.psychology-brand,
.psychology-lesson-brand {
  color: #484257;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.psychology-grade-pill,
.psychology-step-label {
  justify-self: end;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid #ded8ef;
  border-radius: 999px;
  background: #fff;
  color: #705bb9;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 850;
}

.psychology-hero {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #ddd5f5;
  border-radius: 24px;
  background: #faf8ff;
  display: grid;
  grid-template-columns: minmax(410px, 0.86fr) minmax(0, 1.14fr);
  box-shadow: 0 18px 48px rgba(70, 52, 133, 0.11);
}

.psychology-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.psychology-hero-copy h1,
.psychology-world-hero h1,
.psychology-step-card h1 {
  margin: 9px 0 14px;
  color: #302b3b;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.psychology-hero-copy > p {
  max-width: 520px;
  color: #625e6d;
  font-size: 15px;
  font-weight: 570;
  line-height: 1.65;
}

.psychology-hero > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: 68% center;
}

.psychology-hero-progress {
  margin: 24px 0 17px;
}

.psychology-hero-progress > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.psychology-hero-progress strong {
  color: #765bd2;
  font-size: 22px;
  font-weight: 900;
}

.psychology-hero-progress div span {
  color: #716d79;
  font-size: 11px;
  font-weight: 800;
}

.psychology-world-section {
  padding: 46px 0 26px;
}

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

.psychology-section-heading h2 {
  margin-top: 6px;
  color: #302d38;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.psychology-section-heading > p {
  max-width: 430px;
  color: #6c6973;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.psychology-world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.psychology-world-card {
  min-height: 236px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--world), #fff 72%);
  border-radius: 18px;
  background: #fff;
  color: #33323a;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  gap: 7px 12px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 9px 26px rgba(53, 46, 79, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.psychology-world-card:hover,
.psychology-world-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--world);
  box-shadow: 0 16px 34px rgba(53, 46, 79, 0.13);
  outline: 3px solid color-mix(in srgb, var(--world), transparent 78%);
  outline-offset: 2px;
}

.psychology-world-card.is-complete {
  background: color-mix(in srgb, var(--world-soft), #fff 50%);
}

.psychology-world-number {
  width: max-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--world-soft);
  color: var(--world);
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.psychology-world-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--world-soft);
  display: grid;
  place-items: center;
  font-size: 25px;
}

.psychology-world-card > strong {
  grid-column: 1;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.psychology-world-card > small {
  grid-column: 1 / -1;
  min-height: 42px;
  color: #706e75;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.psychology-world-progress {
  grid-column: 1 / -1;
  margin-top: 8px;
  background: #ececef;
}

.psychology-world-progress i {
  background: var(--world);
}

.psychology-world-meta {
  grid-column: 1 / -1;
  color: var(--world);
  font-size: 10px;
  font-weight: 850;
}

.psychology-family-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #dfe4e7;
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.psychology-family-note > span {
  font-size: 28px;
}

.psychology-family-note strong {
  color: #3d3b45;
  font-size: 13px;
}

.psychology-family-note p {
  margin-top: 3px;
  color: #737079;
  font-size: 12px;
  line-height: 1.5;
}

.psychology-world-page {
  --world: #765bd2;
  --world-soft: #f1edff;
}

.psychology-world-page .psychology-kicker,
.psychology-world-page .psychology-grade-pill {
  color: var(--world);
}

.psychology-world-hero {
  min-height: 220px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid color-mix(in srgb, var(--world), #fff 66%);
  border-radius: 22px;
  background: color-mix(in srgb, var(--world-soft), #fff 22%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.psychology-world-hero-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 45px;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--world), transparent 86%);
}

.psychology-world-hero h1 {
  margin-block: 6px 8px;
  font-size: clamp(29px, 4vw, 43px);
}

.psychology-world-hero p {
  max-width: 650px;
  color: #67656e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.psychology-world-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 58%, transparent 59%),
    conic-gradient(var(--world) var(--value), rgba(255, 255, 255, 0.78) 0);
  display: grid;
  place-content: center;
  justify-items: center;
}

.psychology-world-ring strong {
  color: var(--world);
  font-size: 21px;
  font-weight: 900;
}

.psychology-world-ring span {
  color: #7d7983;
  font-size: 8px;
  font-weight: 800;
}

.psychology-lesson-list {
  max-width: 920px;
  margin: 24px auto 0;
  display: grid;
  gap: 10px;
}

.psychology-lesson-row {
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid #e2e3e7;
  border-radius: 16px;
  background: #fff;
  color: #37363e;
  display: grid;
  grid-template-columns: 42px 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(50, 46, 65, 0.05);
}

.psychology-lesson-row:hover,
.psychology-lesson-row:focus-visible {
  border-color: var(--world);
  outline: 3px solid color-mix(in srgb, var(--world), transparent 80%);
  outline-offset: 2px;
}

.psychology-lesson-row.is-complete {
  background: color-mix(in srgb, var(--world-soft), #fff 64%);
}

.psychology-lesson-order {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--world-soft);
  color: var(--world);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.psychology-lesson-emoji {
  font-size: 27px;
}

.psychology-lesson-row strong {
  display: block;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.psychology-lesson-row small {
  margin-top: 4px;
  color: #77747d;
  display: block;
  font-size: 10px;
  font-weight: 650;
}

.psychology-lesson-action {
  color: var(--world);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.psychology-lesson-shell {
  --world: #765bd2;
  --world-soft: #f1edff;
  min-height: 100vh;
  padding: 14px 24px 96px;
  background:
    radial-gradient(circle at 12% 5%, var(--world-soft) 0, transparent 340px),
    #f9fafc;
  color: #34333b;
  font-family: "Be Vietnam Pro", sans-serif;
}

.psychology-lesson-header,
.psychology-step-progress,
.psychology-step-card,
.psychology-lesson-footer {
  width: min(900px, 100%);
  margin-inline: auto;
}

.psychology-lesson-header {
  margin-bottom: 8px;
}

.psychology-lesson-brand,
.psychology-step-label {
  color: var(--world);
}

.psychology-step-label {
  border-color: color-mix(in srgb, var(--world), #fff 70%);
}

.psychology-step-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3e3e8;
}

.psychology-step-progress i {
  height: 100%;
  border-radius: inherit;
  background: var(--world);
  display: block;
  transition: width 220ms ease;
}

.psychology-step-card {
  min-height: 520px;
  margin-top: 18px;
  padding: clamp(30px, 6vw, 60px);
  border: 1px solid #e2e3e7;
  border-radius: 24px;
  background: #fff;
  display: grid;
  align-items: center;
  box-shadow: 0 16px 44px rgba(52, 47, 72, 0.09);
}

.psychology-step-card > div {
  width: min(680px, 100%);
  margin: auto;
}

.psychology-step-card .psychology-kicker {
  color: var(--world);
}

.psychology-step-card h1 {
  max-width: 680px;
  margin-block: 9px 18px;
  font-size: clamp(28px, 4.5vw, 43px);
}

.psychology-step-card p {
  color: #5f5d67;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.75;
}

.psychology-scene-step,
.psychology-result-step {
  text-align: center;
}

.psychology-scene-emoji,
.psychology-result-badge {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 28px;
  background: var(--world-soft);
  display: grid;
  place-items: center;
  font-size: 49px;
}

.psychology-think-prompt,
.psychology-takeaway,
.psychology-feedback,
.psychology-result-reminder {
  margin-top: 26px;
  padding: 17px 19px;
  border: 1px solid color-mix(in srgb, var(--world), #fff 72%);
  border-radius: 16px;
  background: var(--world-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.psychology-think-prompt > span,
.psychology-takeaway > span,
.psychology-feedback > span,
.psychology-result-reminder > span {
  font-size: 23px;
}

.psychology-think-prompt p,
.psychology-takeaway p,
.psychology-feedback p,
.psychology-result-reminder p {
  color: #595762;
  font-size: 12px;
  line-height: 1.6;
}

.psychology-takeaway strong,
.psychology-feedback strong {
  margin-bottom: 3px;
  color: #36343e;
  display: block;
  font-size: 13px;
}

.psychology-action-card {
  min-height: 175px;
  padding: 26px;
  border: 2px dashed color-mix(in srgb, var(--world), #fff 54%);
  border-radius: 20px;
  background: var(--world-soft);
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.psychology-action-card > span {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
}

.psychology-action-card p {
  color: #403d49;
  font-size: 16px;
  font-weight: 750;
}

.psychology-gentle-note {
  margin-top: 18px;
  font-size: 12px !important;
}

.psychology-answer-grid {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.psychology-answer {
  min-height: 64px;
  padding: 11px 15px;
  border: 1px solid #dedfe4;
  border-radius: 14px;
  background: #fff;
  color: #393741;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.psychology-answer:not(:disabled):hover,
.psychology-answer:not(:disabled):focus-visible {
  transform: translateX(3px);
  border-color: var(--world);
  background: var(--world-soft);
  outline: 3px solid color-mix(in srgb, var(--world), transparent 82%);
  outline-offset: 2px;
}

.psychology-answer > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f0f0f3;
  color: #696670;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.psychology-answer strong {
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.psychology-answer.is-correct {
  border-color: #3aae78;
  background: #ebf9f2;
}

.psychology-answer.is-correct > span {
  background: #3aae78;
  color: #fff;
}

.psychology-answer.is-wrong {
  border-color: #e48068;
  background: #fff2ee;
}

.psychology-answer.is-wrong > span {
  background: #dc6b51;
  color: #fff;
}

.psychology-answer.is-muted {
  border-color: #dcdde2;
  background: #f5f5f7;
  color: #4f4c57;
  opacity: 1;
}

.psychology-feedback {
  margin-top: 16px;
}

.psychology-feedback.is-correct {
  border-color: #a8dfc3;
  background: #effaf4;
}

.psychology-feedback.is-wrong {
  border-color: #f0c6bb;
  background: #fff5f2;
}

.psychology-answer-hint {
  margin-top: 13px;
  color: #817e87 !important;
  font-size: 11px !important;
}

.psychology-result-step > p {
  max-width: 570px;
  margin: 0 auto;
}

.psychology-result-summary {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.psychology-result-summary span {
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid #e4e4e8;
  border-radius: 14px;
  background: #fbfbfc;
  color: #706d76;
  display: grid;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
}

.psychology-result-summary b {
  color: var(--world);
  font-size: 20px;
}

.psychology-result-reminder {
  max-width: 570px;
  margin-inline: auto;
}

.psychology-lesson-footer {
  min-height: 76px;
  margin-top: 18px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.psychology-lesson-footer .psychology-primary {
  background: color-mix(in srgb, var(--world), #111827 20%);
  color: #fff;
  box-shadow: 0 9px 20px color-mix(in srgb, var(--world), transparent 77%);
}

.psychology-lesson-footer .psychology-primary:disabled {
  background: #e2e8f0;
  color: #334155;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}

.psychology-secondary {
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #dedfe4;
  border-radius: 13px;
  background: #fff;
  color: #5f5c66;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.psychology-secondary:hover,
.psychology-secondary:focus-visible {
  border-color: var(--world);
  color: var(--world);
  outline: 3px solid color-mix(in srgb, var(--world), transparent 82%);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .psychology-home-card,
  .psychology-hero {
    grid-template-columns: 1fr;
  }

  .psychology-home-art {
    min-height: 260px;
    order: 0;
  }

  .psychology-hero-copy {
    padding-bottom: 30px;
  }

  .psychology-hero > img {
    min-height: 340px;
    max-height: 450px;
  }

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

  .psychology-world-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .psychology-world-ring {
    grid-column: 1 / -1;
    width: 100%;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--world) var(--percent), rgba(255, 255, 255, 0.76) 0);
    display: block;
  }

  .psychology-world-ring strong,
  .psychology-world-ring span {
    display: none;
  }
}

@media (max-width: 640px) {
  .psychology-home-card {
    min-height: 0;
    border-radius: 16px;
  }

  .psychology-home-art {
    min-height: 210px;
  }

  .psychology-home-copy {
    padding: 20px;
  }

  .psychology-home-copy > p {
    font-size: 13px;
  }

  .psychology-home-cta {
    width: 100%;
  }

  .psychology-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 8px;
  }

  .psychology-topbar,
  .psychology-lesson-header {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .psychology-brand,
  .psychology-lesson-brand {
    display: none;
  }

  .psychology-back-link {
    max-width: 100%;
    overflow: hidden;
    padding-left: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .psychology-hero {
    min-height: 0;
    border-radius: 18px;
  }

  .psychology-hero-copy {
    padding: 26px 20px;
  }

  .psychology-hero-copy h1 {
    font-size: 34px;
  }

  .psychology-hero-copy > p {
    font-size: 13px;
  }

  .psychology-primary {
    width: 100%;
  }

  .psychology-hero > img {
    min-height: 240px;
    max-height: 290px;
  }

  .psychology-world-section {
    padding-top: 32px;
  }

  .psychology-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .psychology-section-heading > p {
    font-size: 12px;
  }

  .psychology-world-grid {
    grid-template-columns: 1fr;
  }

  .psychology-world-card {
    min-height: 205px;
  }

  .psychology-family-note {
    align-items: flex-start;
  }

  .psychology-world-hero {
    min-height: 0;
    padding: 22px 18px;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .psychology-world-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 17px;
    font-size: 32px;
  }

  .psychology-world-hero h1 {
    font-size: 27px;
  }

  .psychology-world-hero p {
    grid-column: 1 / -1;
  }

  .psychology-lesson-row {
    min-height: 84px;
    grid-template-columns: 38px 38px minmax(0, 1fr);
    gap: 8px;
  }

  .psychology-lesson-emoji {
    font-size: 23px;
  }

  .psychology-lesson-action {
    grid-column: 3;
    white-space: normal;
  }

  .psychology-lesson-shell {
    padding: 6px 10px 96px;
  }

  .psychology-step-card {
    min-height: 500px;
    margin-top: 12px;
    padding: 27px 18px;
    border-radius: 18px;
  }

  .psychology-step-card h1 {
    font-size: 29px;
  }

  .psychology-step-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .psychology-scene-emoji,
  .psychology-result-badge {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    font-size: 40px;
  }

  .psychology-think-prompt,
  .psychology-takeaway,
  .psychology-feedback,
  .psychology-result-reminder {
    padding: 14px;
  }

  .psychology-action-card {
    padding: 20px 16px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .psychology-answer {
    min-height: 68px;
  }

  .psychology-result-summary {
    flex-direction: column;
  }

  .psychology-lesson-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    min-height: 78px;
    margin: 0;
    padding: 12px 10px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #e1e1e6;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 30px rgba(50, 46, 65, 0.08);
  }

  .psychology-lesson-footer .psychology-secondary {
    flex: 0 0 auto;
  }

  .psychology-lesson-footer .psychology-primary {
    width: auto;
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psychology-primary,
  .psychology-world-card,
  .psychology-answer,
  .psychology-step-progress i {
    transition: none;
  }
}
