.finance-home-card {
  position: relative;
  min-height: 300px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #f1d7b9;
  border-radius: 18px;
  background: #fffaf1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  box-shadow: 0 12px 28px rgba(115, 67, 21, 0.08);
}

.finance-home-art {
  min-height: 300px;
  overflow: hidden;
  order: 2;
}

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

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

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

.finance-home-copy h3 {
  color: #26312d;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.finance-home-copy > p {
  max-width: 520px;
  color: #596762;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

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

.finance-home-skills span {
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid #eadcc7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #53615c;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
}

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

.finance-home-progress > span,
.finance-hero-progress > span,
.finance-unit-card-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfce;
}

.finance-home-progress i,
.finance-hero-progress i,
.finance-unit-card-progress i {
  height: 100%;
  border-radius: inherit;
  background: #e87524;
  display: block;
}

.finance-home-progress strong {
  color: #775f4d;
  font-size: 11px;
  font-weight: 800;
}

.finance-home-cta,
.finance-primary {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: #b84f0f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 9px 20px rgba(146, 58, 8, 0.24);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.finance-home-cta:hover,
.finance-home-cta:focus-visible,
.finance-primary:hover,
.finance-primary:focus-visible {
  transform: translateY(-1px);
  background: #963d09;
  box-shadow: 0 12px 24px rgba(146, 58, 8, 0.28);
  outline: 3px solid rgba(184, 79, 15, 0.22);
  outline-offset: 2px;
}

.finance-primary:disabled {
  transform: none;
  background: #cbd2d0;
  color: #77817e;
  cursor: not-allowed;
  box-shadow: none;
  outline: 0;
}

.finance-club-app {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 244, 224, 0.82), rgba(248, 250, 249, 0) 420px),
    #f8faf9;
}

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

.finance-topbar,
.finance-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;
}

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

.finance-back-link:hover,
.finance-back-link:focus-visible {
  background: #fff;
  color: #b55212;
  outline: 2px solid #f0d6b8;
}

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

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

.finance-hero {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid #ecd7b9;
  border-radius: 24px;
  background: #fff9ed;
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1.15fr);
  box-shadow: 0 18px 48px rgba(96, 67, 31, 0.1);
}

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

.finance-hero-copy h1,
.finance-unit-hero h1,
.finance-step-card h1 {
  margin: 9px 0 13px;
  color: #23322d;
  font-size: clamp(32px, 4.5vw, 55px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

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

.finance-hero > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
  object-position: 66% center;
}

.finance-hero-progress {
  width: min(100%, 390px);
  margin: 24px 0 17px;
  display: grid;
  gap: 8px;
}

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

.finance-hero-progress strong {
  color: #de6518;
  font-size: 22px;
  font-weight: 900;
}

.finance-hero-progress div span {
  color: #69756f;
  font-size: 11px;
  font-weight: 800;
}

.finance-unit-section {
  padding: 46px 0 26px;
}

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

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

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

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

.finance-unit-card {
  min-height: 235px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--unit), #fff 72%);
  border-radius: 18px;
  background: #fff;
  color: #273630;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: start;
  gap: 7px 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 9px 26px rgba(44, 66, 58, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.finance-unit-card:hover,
.finance-unit-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--unit);
  box-shadow: 0 16px 34px rgba(44, 66, 58, 0.12);
  outline: 3px solid color-mix(in srgb, var(--unit), transparent 78%);
  outline-offset: 2px;
}

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

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

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

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

.finance-unit-card > small {
  grid-column: 1 / -1;
  min-height: 42px;
  color: #6a7772;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.finance-unit-card-progress {
  grid-column: 1 / -1;
  margin-top: 8px;
  background: #edf0ef;
}

.finance-unit-card-progress i {
  background: var(--unit);
}

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

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

.finance-parent-note > span {
  font-size: 28px;
}

.finance-parent-note strong {
  color: #30453d;
  font-size: 13px;
}

.finance-parent-note p {
  margin-top: 3px;
  color: #6d7a75;
  font-size: 12px;
  line-height: 1.5;
}

.finance-unit-page {
  --unit: #de6518;
  --unit-soft: #fff3e8;
}

.finance-unit-page .finance-kicker,
.finance-unit-page .finance-grade-pill {
  color: var(--unit);
}

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

.finance-unit-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(--unit), transparent 86%);
}

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

.finance-unit-hero p {
  max-width: 650px;
  color: #60706a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

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

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

.finance-unit-ring span {
  color: #76837e;
  font-size: 8px;
  font-weight: 800;
}

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

.finance-lesson-row {
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid #e1e8e5;
  border-radius: 16px;
  background: #fff;
  color: #2b3a35;
  display: grid;
  grid-template-columns: 42px 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(50, 71, 64, 0.045);
}

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

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

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

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

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

.finance-lesson-row small {
  margin-top: 4px;
  color: #74817c;
  display: block;
  font-size: 10px;
  font-weight: 650;
}

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

.finance-lesson-shell {
  --unit: #de6518;
  --unit-soft: #fff3e8;
  min-height: 100vh;
  padding: 14px 24px 96px;
  background:
    radial-gradient(circle at 12% 5%, var(--unit-soft) 0, transparent 340px),
    #f8faf9;
  color: #26352f;
  font-family: "Be Vietnam Pro", sans-serif;
}

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

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

.finance-lesson-brand {
  color: var(--unit);
}

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

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

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

.finance-step-card {
  min-height: 520px;
  margin-top: 18px;
  padding: clamp(30px, 6vw, 60px);
  border: 1px solid #e1e8e5;
  border-radius: 24px;
  background: #fff;
  display: grid;
  align-items: center;
  box-shadow: 0 16px 44px rgba(44, 66, 58, 0.085);
}

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

.finance-step-card .finance-kicker {
  color: var(--unit);
}

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

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

.finance-step-scene {
  text-align: center;
}

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

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

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

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

.finance-takeaway strong,
.finance-feedback strong {
  margin-bottom: 3px;
  color: #2d4038;
  display: block;
  font-size: 13px;
}

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

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

.finance-action-card p {
  color: #364b42;
  font-size: 16px;
  font-weight: 750;
}

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

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

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

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

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

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

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

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

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

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

.finance-answer.is-muted {
  border-color: #d7dfdc;
  background: #f4f7f6;
  color: #475851;
  opacity: 1;
}

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

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

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

.finance-answer-hint {
  margin-top: 13px;
  color: #78857f !important;
  font-size: 11px !important;
}

.finance-result-step {
  text-align: center;
}

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

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

.finance-result-summary span {
  min-width: 150px;
  padding: 13px 16px;
  border: 1px solid #e3e9e6;
  border-radius: 14px;
  background: #fafcfb;
  color: #66746e;
  display: grid;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
}

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

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

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

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

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

.finance-secondary {
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid #dce4e1;
  border-radius: 13px;
  background: #fff;
  color: #53635d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

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

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

  .finance-home-art {
    min-height: 230px;
    order: 0;
  }

  .finance-home-art img {
    object-position: 64% center;
  }

  .finance-hero {
    grid-template-columns: 1fr;
  }

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

  .finance-hero > img {
    min-height: 340px;
    max-height: 440px;
    object-position: 64% center;
  }

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

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

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

  .finance-unit-ring strong,
  .finance-unit-ring span {
    display: none;
  }
}

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

  .finance-home-art {
    min-height: 190px;
  }

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

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

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

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

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

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

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

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

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

  .finance-hero-copy h1 {
    font-size: 35px;
  }

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

  .finance-primary {
    width: 100%;
  }

  .finance-hero > img {
    min-height: 230px;
    max-height: 280px;
  }

  .finance-unit-section {
    padding-top: 32px;
  }

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

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

  .finance-unit-grid {
    grid-template-columns: 1fr;
  }

  .finance-unit-card {
    min-height: 205px;
  }

  .finance-parent-note {
    align-items: flex-start;
  }

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

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

  .finance-unit-hero h1 {
    font-size: 27px;
  }

  .finance-unit-hero p {
    grid-column: 1 / -1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .finance-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 #dfe6e3;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 30px rgba(44, 66, 58, 0.08);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .finance-home-cta,
  .finance-primary,
  .finance-unit-card,
  .finance-answer,
  .finance-step-progress i {
    transition: none;
  }
}
