[hidden] {
  display: none !important;
}

body.flow-mode {
  min-height: 100vh;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 220, 57, 0.2), transparent 18rem),
    linear-gradient(150deg, #eff5ee, #f8faf7 55%, #eef4f8);
}

.flow-app {
  min-height: 100vh;
  color: var(--black);
}

.flow-header {
  position: sticky;
  z-index: 15;
  top: 0;
  color: var(--white);
  background: rgba(3, 47, 35, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.flow-header-inner {
  display: grid;
  width: min(1080px, calc(100% - 36px));
  min-height: 76px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.flow-header .brand {
  justify-self: start;
}

.flow-nav-actions {
  display: flex;
  justify-self: end;
  gap: 8px;
}

.flow-nav-button {
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
}

.flow-nav-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.flow-nav-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.phase-progress {
  display: grid;
  min-width: min(360px, 38vw);
  gap: 7px;
}

.phase-progress-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phase-progress-labels span.active {
  color: var(--yellow);
}

.phase-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.phase-segment {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.phase-segment.complete,
.phase-segment.active {
  background: var(--yellow);
}

.flow-shell {
  width: min(920px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(40px, 7vh, 76px) 0 64px;
}

.flow-card {
  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(9, 80, 54, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(6, 55, 38, 0.13);
  animation: flow-enter 260ms ease both;
}

.flow-card.wide {
  width: min(100%, 900px);
}

.flow-card.centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.flow-card.centered .flow-title,
.flow-card.centered .flow-copy,
.flow-card.centered .qualification-note {
  margin-inline: auto;
}

.flow-card.centered .form-actions {
  justify-content: center;
}

.flow-eyebrow {
  margin: 0 0 15px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.flow-title {
  max-width: 700px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.flow-copy {
  max-width: 680px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.flow-copy.compact {
  font-size: 14px;
}

.question-help,
.safety-note,
.qualification-note,
.dev-note {
  margin: 18px 0 0;
  padding: 13px 15px;
  color: #3d5549;
  background: #edf6f0;
  border-left: 3px solid var(--green-500);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.safety-note {
  background: var(--blue-soft);
  border-left-color: var(--blue);
}

.qualification-note {
  color: var(--muted);
  background: #f6f7f5;
  border-left-color: #b9c5bc;
}

.dev-note {
  color: #654f00;
  background: var(--yellow-soft);
  border-left-color: var(--yellow);
}

.choice-list {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.choice-button {
  display: grid;
  width: 100%;
  min-height: 72px;
  padding: 14px 17px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #d9e4dc;
  border-radius: 14px;
  cursor: pointer;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.choice-button:hover,
.choice-button:focus-visible {
  border-color: var(--green-500);
  box-shadow: 0 9px 24px rgba(6, 75, 49, 0.1);
  transform: translateY(-1px);
}

.choice-marker {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-700);
  background: #e7f6ed;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}

.pie-icon {
  width: 24px;
  height: 24px;
  border: 2px solid var(--green-700);
  border-radius: 50%;
}

.pie-icon.partial {
  background: conic-gradient(var(--green-700) 0 58%, transparent 58% 100%);
}

.pie-icon.full {
  background: var(--green-700);
  box-shadow: inset 0 0 0 4px #e7f6ed;
}

.choice-main {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.choice-arrow {
  color: var(--green-700);
  font-size: 19px;
  font-weight: 800;
}

.field-stack {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

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

.field-label {
  color: #32463a;
  font-size: 13px;
  font-weight: 780;
}

.input-shell {
  display: flex;
  min-height: 58px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ccd9cf;
  border-radius: 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.input-shell:focus-within {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(24, 167, 109, 0.11);
}

.input-affix {
  display: grid;
  min-width: 54px;
  align-self: stretch;
  place-items: center;
  color: var(--green-900);
  background: #edf6f0;
  font-weight: 850;
}

.text-input,
.select-input {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--black);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.select-input {
  background: var(--white);
  border: 1px solid #ccd9cf;
  border-radius: 13px;
}

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

.alternative-actions,
.secondary-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.alternative-actions {
  margin-top: 18px;
}

.form-actions {
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.text-button {
  min-height: 56px;
  padding: 14px 21px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 820;
}

.primary-button {
  color: var(--black);
  background: var(--yellow);
  border: 0;
  box-shadow: 0 10px 24px rgba(83, 65, 0, 0.13);
}

.primary-button::after {
  margin-left: 10px;
  content: "→";
}

.primary-button:hover {
  background: #ffe467;
}

.secondary-button {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid #cddbd1;
}

.text-button {
  min-height: auto;
  padding: 7px 2px;
  color: var(--blue);
  background: transparent;
  border: 0;
}

.primary-button:disabled,
.secondary-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.error-message {
  margin: 12px 0 0;
  color: #9c2f20;
  font-size: 13px;
  font-weight: 680;
}

.helper-panel {
  margin-top: 12px;
  padding: 16px;
  color: var(--muted);
  background: #f5f8f5;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.transition-card {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.transition-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.confetti-layer {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  inset: 0;
}

.confetti-piece {
  position: absolute;
  top: -12%;
  left: var(--x);
  width: 10px;
  height: 18px;
  opacity: 0;
  background: var(--color);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transform: rotate(var(--rotation));
  animation: confetti-fall var(--duration) ease-in var(--delay) infinite;
}

.celebration-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.transition-symbol {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  margin: 0 auto 26px;
  place-items: center;
  color: var(--green-900);
  background: var(--yellow);
  border-radius: 28px 28px 28px 10px;
  font-size: 38px;
  font-weight: 900;
  animation: reward-pop 560ms ease both;
}

.transition-title {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.transition-message {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.reward-progress {
  width: min(360px, 76vw);
  height: 9px;
  margin: 28px auto 0;
  overflow: hidden;
  background: #e3ebe5;
  border-radius: 99px;
}

.reward-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--blue), var(--yellow));
  border-radius: inherit;
  animation: reward-fill 3s linear forwards;
}

.reward-status {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.insight-visual {
  display: flex;
  width: auto;
  margin: 0 auto 28px;
  padding: 0;
  justify-content: center;
  gap: 20px;
  align-items: center;
  background: transparent;
  border: 0;
}

.insight-card {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--green-950);
  background: var(--yellow);
  border-radius: 22px;
  font-size: 30px;
  font-weight: 900;
}

.insight-card.lower {
  color: var(--white);
  background: var(--blue);
}

.insight-arrow {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 30px;
  align-items: center;
}

.cost-contrast {
  display: grid;
  min-height: 290px;
  padding: 25px;
  background: #f3f7f3;
  border: 1px solid var(--line);
  border-radius: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.cost-column {
  display: grid;
  gap: 10px;
  align-content: end;
  text-align: center;
}

.cost-bar {
  width: 100%;
  background: var(--yellow);
  border-radius: 14px 14px 5px 5px;
}

.cost-bar.current {
  height: 190px;
}

.cost-bar.possible {
  height: 78px;
  background: var(--green-500);
}

.cost-column strong {
  font-size: 12px;
}

.review-grid,
.result-grid,
.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.card-details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.card-details[open] {
  border-color: rgba(24, 167, 109, 0.42);
  box-shadow: 0 12px 28px rgba(6, 75, 49, 0.08);
}

.card-details summary {
  display: flex;
  padding: 17px;
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.card-details summary::-webkit-details-marker {
  display: none;
}

.card-details summary > span:first-child {
  display: grid;
  gap: 4px;
}

.card-details summary strong {
  color: var(--green-900);
  font-size: 15px;
}

.card-details summary small {
  color: var(--muted);
  font-size: 12px;
}

.details-toggle {
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.details-toggle::after {
  display: inline-block;
  margin-left: 7px;
  content: "⌄";
  transition: transform 150ms ease;
}

.card-details[open] .details-toggle::after {
  transform: rotate(180deg);
}

.card-detail-grid {
  display: grid;
  padding: 0 17px 17px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.card-detail-grid > div {
  display: grid;
  padding: 13px;
  gap: 5px;
  background: #f5f8f5;
  border-radius: 11px;
}

.card-detail-grid span {
  color: var(--muted);
  font-size: 11px;
}

.card-detail-grid strong {
  color: var(--green-900);
  font-size: 13px;
}

.review-card,
.summary-row,
.result-stat {
  padding: 17px;
  background: #f7f9f6;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.review-card-header,
.summary-row,
.result-stat {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.review-card h3,
.result-stat strong {
  margin: 0;
  color: var(--green-900);
  font-size: 15px;
}

.review-card dl {
  display: grid;
  margin: 14px 0 0;
  grid-template-columns: 1fr auto;
  gap: 7px 18px;
  font-size: 12px;
}

.review-card dt {
  color: var(--muted);
}

.review-card dd {
  margin: 0;
  font-weight: 720;
  text-align: right;
}

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

.result-shell {
  padding-bottom: 170px;
}

.result-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 2%, rgba(255, 220, 57, 0.55) 0 82px, transparent 83px),
    linear-gradient(145deg, #ffffff 0%, #f4faf6 68%, #edf5fa 100%);
  border-top: 8px solid var(--yellow);
}

.saving-panel {
  position: relative;
  margin-top: 28px;
  padding: clamp(25px, 5vw, 38px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  border-radius: 22px;
}

.saving-orbit {
  position: absolute;
  border-radius: 50%;
}

.saving-orbit.yellow {
  width: 150px;
  height: 150px;
  top: -76px;
  right: -28px;
  background: rgba(255, 220, 57, 0.92);
}

.saving-orbit.blue {
  width: 76px;
  height: 76px;
  right: 84px;
  bottom: -44px;
  background: rgba(20, 119, 184, 0.86);
}

.result-stat {
  display: grid;
  gap: 5px;
}

.result-stat span {
  color: var(--muted);
  font-size: 12px;
}

.result-stat strong {
  font-size: 20px;
}

.result-stat {
  border-top-width: 4px;
}

.result-stat.tone-yellow {
  background: #fff9d8;
  border-top-color: var(--yellow);
}

.result-stat.tone-blue {
  background: #edf6fc;
  border-top-color: var(--blue);
}

.result-stat.tone-green {
  background: #eaf7ef;
  border-top-color: var(--green-500);
}

.result-stat.tone-soft {
  background: #f4f2ff;
  border-top-color: #7165b9;
}

.result-callout {
  margin-top: 18px;
  padding: 18px;
  color: var(--green-950);
  background: var(--yellow-soft);
  border: 1px solid #f3df69;
  border-radius: 14px;
  font-weight: 720;
}

.saving-figure {
  position: relative;
  z-index: 1;
  margin-top: 0;
  color: var(--white);
  font-size: clamp(46px, 9vw, 78px);
  font-weight: 920;
  letter-spacing: -0.065em;
  line-height: 1;
}

.saving-caption {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.result-sticky-cta {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 22px;
  color: var(--white);
  background: rgba(3, 47, 35, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -18px 45px rgba(3, 47, 35, 0.18);
  backdrop-filter: blur(14px);
}

.result-sticky-inner {
  display: flex;
  width: min(900px, 100%);
  margin-inline: auto;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.result-sticky-inner .primary-button {
  width: min(520px, 68vw);
  min-height: 64px;
  font-size: 17px;
}

.result-sticky-inner > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.assumptions-panel {
  margin-top: 22px;
  padding: 20px;
  background: #f5f8f5;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.assumptions-panel h3 {
  margin: 0 0 11px;
  color: var(--green-900);
  font-size: 15px;
}

.assumptions-panel summary {
  color: var(--green-900);
  cursor: pointer;
  font-size: 14px;
  font-weight: 820;
}

.assumptions-panel[open] summary {
  margin-bottom: 12px;
}

.assumptions-panel ul,
.next-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.check-row {
  display: grid;
  margin-top: 14px;
  padding: 16px;
  background: #f7f9f6;
  border: 1px solid var(--line);
  border-radius: 13px;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--green-700);
}

.check-row label {
  color: #31473a;
  font-size: 13px;
  line-height: 1.5;
}

.permission-summary {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.permission-summary > div {
  display: grid;
  padding: 16px;
  background: #f7f9f6;
  border: 1px solid var(--line);
  border-radius: 13px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.permission-summary > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-900);
  background: var(--yellow);
  border-radius: 10px;
  font-weight: 900;
}

.permission-summary p {
  margin: 0;
  color: #31473a;
  font-size: 13px;
  line-height: 1.5;
}

.permission-summary strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green-900);
}

.verification-code {
  letter-spacing: 0.45em;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
}

.completion-mark {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 28px auto 0;
  place-items: center;
  color: var(--green-950);
  background: var(--yellow);
  border-radius: 24px 24px 24px 8px;
  font-size: 34px;
  font-weight: 900;
}

.completion-card {
  overflow: hidden;
}

.completion-card .confetti-piece {
  animation-iteration-count: 1;
}

.modal-root {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(3, 25, 18, 0.64);
  backdrop-filter: blur(8px);
}

.modal-card {
  width: min(100%, 570px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 30px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 28px;
  letter-spacing: -0.035em;
}

.modal-card p,
.modal-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.modal-card .form-actions {
  position: sticky;
  bottom: -30px;
  margin-inline: -30px;
  padding: 18px 30px 30px;
  background: linear-gradient(transparent, var(--white) 28%);
}

@keyframes flow-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reward-pop {
  0% {
    opacity: 0;
    transform: scale(0.75) rotate(-7deg);
  }
  70% {
    transform: scale(1.06) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes reward-fill {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) rotate(var(--rotation));
  }
  12% { opacity: 0.9; }
  100% {
    opacity: 0;
    transform: translate3d(34px, 540px, 0) rotate(calc(var(--rotation) + 420deg));
  }
}

@media (max-width: 760px) {
  .flow-header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .phase-progress {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    padding-bottom: 10px;
  }

  .phase-progress-labels {
    display: none;
  }

  .flow-shell {
    padding: 28px 0 44px;
  }

  .flow-card {
    padding: 28px 21px;
    border-radius: 22px;
  }

  .insight-layout,
  .result-grid,
  .inline-fields {
    grid-template-columns: 1fr;
  }

  .cost-contrast {
    min-height: 230px;
  }

  .cost-bar.current {
    height: 140px;
  }

  .review-card-header,
  .summary-row {
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .flow-header-inner,
  .flow-shell {
    width: min(100% - 24px, 920px);
  }

  .flow-header .brand {
    font-size: 17px;
  }

  .flow-header .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .flow-nav-button {
    padding: 7px 9px;
    font-size: 12px;
  }

  .flow-title {
    font-size: clamp(29px, 8.8vw, 38px);
  }

  .choice-button {
    grid-template-columns: 42px 1fr 16px;
    padding: 14px;
  }

  .transition-card {
    min-height: 450px;
  }

  .insight-visual {
    gap: 13px;
  }

  .insight-card {
    width: 66px;
    height: 66px;
  }

  .form-actions,
  .secondary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .review-card dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .review-card dd {
    margin-bottom: 8px;
    text-align: left;
  }

  .card-details summary {
    align-items: flex-start;
  }

  .card-detail-grid {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 24px 20px;
  }

  .result-shell {
    padding-bottom: 135px;
  }

  .result-sticky-cta {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .result-sticky-inner {
    display: block;
  }

  .result-sticky-inner .primary-button {
    width: 100%;
    min-height: 60px;
  }

  .result-sticky-inner > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-card,
  .transition-symbol {
    animation: none;
  }

  .confetti-layer {
    display: none;
  }

  .reward-progress span {
    width: 100%;
    animation: none;
  }
}
