:root {
  --pink-rgb: 255, 95, 143;
  --pink-deep-rgb: 239, 57, 117;
  --coral-rgb: 255, 137, 120;
  --yellow-rgb: 255, 216, 77;
  --mint-rgb: 88, 216, 155;
  --sky-rgb: 98, 173, 255;
  --lavender-rgb: 183, 149, 255;
  --ink-rgb: 62, 24, 36;
  --muted-rgb: 131, 88, 102;
  --white-rgb: 255, 255, 255;
  --pink: rgb(var(--pink-rgb));
  --pink-deep: rgb(var(--pink-deep-rgb));
  --coral: rgb(var(--coral-rgb));
  --yellow: rgb(var(--yellow-rgb));
  --mint: rgb(var(--mint-rgb));
  --sky: rgb(var(--sky-rgb));
  --lavender: rgb(var(--lavender-rgb));
  --ink: rgb(var(--ink-rgb));
  --muted: rgb(var(--muted-rgb));
  --paper: #fff9fb;
  --line: rgba(var(--muted-rgb), 0.16);
  --shadow: 0 24px 70px rgba(var(--pink-deep-rgb), 0.22);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(var(--yellow-rgb), 0.35), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(var(--sky-rgb), 0.22), transparent 25%),
    linear-gradient(145deg, #fff8e9 0%, #ffe1ea 42%, #dff8ff 100%);
  overflow-x: hidden;
}

button,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.app {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 28px;
  place-items: center;
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  color: rgba(var(--pink-deep-rgb), 0.55);
}

.sparkles span {
  position: absolute;
  font-size: clamp(18px, 3vw, 42px);
  animation: floaty 7s ease-in-out infinite;
}

.sparkles span:nth-child(1) { left: 9%; top: 11%; animation-delay: -1s; }
.sparkles span:nth-child(2) { right: 18%; top: 12%; animation-delay: -3s; }
.sparkles span:nth-child(3) { left: 6%; bottom: 18%; animation-delay: -2s; }
.sparkles span:nth-child(4) { right: 8%; bottom: 20%; color: rgba(var(--sky-rgb), 0.5); }
.sparkles span:nth-child(5) { left: 22%; bottom: 9%; color: rgba(var(--mint-rgb), 0.55); animation-delay: -4s; }
.sparkles span:nth-child(6) { right: 29%; bottom: 8%; animation-delay: -5s; }

.confetti {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}

.confetti span {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 16px;
  border-radius: 4px;
  background: var(--pink);
  opacity: 0;
  animation: confetti-fall 1700ms ease-out forwards;
}

.window-shell {
  position: relative;
  width: min(1040px, 100%);
  min-height: min(810px, calc(100vh - 56px));
  border: 2px solid rgba(var(--ink-rgb), 0.13);
  border-radius: 24px;
  background: rgba(var(--white-rgb), 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.top-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.72);
}

.traffic,
.top-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.traffic span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.traffic span:nth-child(1) { background: #ff6688; }
.traffic span:nth-child(2) { background: #ffc93f; }
.traffic span:nth-child(3) { background: #55d88c; }

.address {
  min-width: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line);
}

.top-icons span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--pink-deep);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line);
}

.scene {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  min-height: 660px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(var(--white-rgb), 0.82), transparent 26%),
    linear-gradient(180deg, rgba(255, 151, 172, 0.62), rgba(255, 241, 165, 0.72) 74%, rgba(124, 226, 181, 0.55));
}

.scene::before,
.scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.scene::before {
  top: 130px;
  height: 110px;
  background:
    radial-gradient(ellipse at 16% 90%, #fff 0 36%, transparent 37%),
    radial-gradient(ellipse at 34% 82%, #fff 0 42%, transparent 43%),
    radial-gradient(ellipse at 56% 86%, #fff 0 46%, transparent 47%),
    radial-gradient(ellipse at 78% 78%, #fff 0 38%, transparent 39%);
  opacity: 0.86;
}

.scene::after {
  bottom: 0;
  height: 88px;
  background:
    radial-gradient(ellipse at 10% 100%, #65d59a 0 32%, transparent 33%),
    radial-gradient(ellipse at 26% 100%, #bee875 0 28%, transparent 29%),
    radial-gradient(ellipse at 78% 100%, #66d39c 0 34%, transparent 35%),
    radial-gradient(ellipse at 92% 100%, #40c995 0 28%, transparent 29%);
}

.mascot-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 22px 18px;
  border: 1px solid rgba(var(--pink-deep-rgb), 0.22);
  border-radius: 18px;
  background: rgba(var(--white-rgb), 0.78);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), 0.12);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.mascot {
  display: grid;
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 48% 52% 45% 55%;
  background: #fff;
  color: #5c2833;
  font-size: 30px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(var(--pink-rgb), 0.22), 0 12px 30px rgba(var(--pink-rgb), 0.2);
  animation: bob 3s ease-in-out infinite;
}

.bubble {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
  transform-origin: center;
}

.bubble.attention {
  animation: bubble-pop 520ms ease both;
}

.card-stack {
  position: relative;
  z-index: 1;
  min-height: 610px;
}

.card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(var(--white-rgb), 0.86);
  border-radius: 46% 42% 44% 43% / 33% 34% 42% 43%;
  background: rgba(var(--white-rgb), 0.92);
  box-shadow: 0 26px 70px rgba(var(--ink-rgb), 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
  visibility: hidden;
}

.card.active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.sticker-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: clamp(30px, 6vw, 62px);
  font-weight: 900;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.16;
  text-align: center;
  letter-spacing: 0;
  text-wrap: balance;
}

h1:focus {
  outline: 0;
}

h1:focus-visible {
  outline: 0;
}

.step[data-step="2"] h1,
.step[data-step="3"] h1 {
  max-width: 680px;
  font-size: clamp(30px, 4.3vw, 48px);
}

.step[data-step="4"] {
  align-content: start;
  padding-top: clamp(26px, 4vw, 42px);
}

.step[data-step="4"] .big-emoji {
  width: 70px;
  height: 70px;
  margin-bottom: 8px;
  font-size: 32px;
}

.step[data-step="4"] h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.step[data-step="4"] .subcopy {
  margin: 6px 0 12px;
}

.subcopy {
  max-width: 620px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  text-align: center;
}

.tiny {
  min-height: 28px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.choice-yard {
  position: relative;
  display: block;
  --choice-button-width: 148px;
  --choice-gap: 56px;
  width: min(560px, 100%);
  min-height: 230px;
  margin-top: 4px;
}

.btn {
  position: relative;
  min-width: 148px;
  min-height: 58px;
  padding: 14px 28px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.14), 0 12px 24px rgba(var(--ink-rgb), 0.17);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  touch-action: manipulation;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  filter: saturate(1.06);
  outline: 4px solid rgba(var(--yellow-rgb), 0.56);
  outline-offset: 4px;
}

.choice-yard #yesBtn:hover,
.choice-yard #yesBtn:focus-visible {
  transform: none;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15), 0 8px 18px rgba(var(--ink-rgb), 0.14);
}

.primary {
  background: linear-gradient(180deg, #ff6f9c, var(--pink-deep));
}

.avoid {
  background: linear-gradient(180deg, #ff86a7, #f14076);
  z-index: 3;
}

#yesBtn,
#noBtn {
  position: absolute;
  width: var(--choice-button-width);
  top: 76px;
}

#yesBtn {
  left: calc(50% - var(--choice-gap) / 2 - var(--choice-button-width));
}

#noBtn {
  left: calc(50% + var(--choice-gap) / 2);
  transition:
    left 460ms cubic-bezier(0.2, 0.8, 0.2, 1),
    top 460ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 160ms ease,
    box-shadow 160ms ease;
}

.choice-yard:hover .avoid,
.avoid.teasing {
  will-change: transform, left, top;
}

.avoid.teasing {
  filter: saturate(1.12);
}

.avoid.surrendered {
  width: 190px;
}

.blue {
  background: linear-gradient(180deg, #74bbff, #3d8dff);
}

.wide {
  width: 100%;
  max-width: 340px;
}

.big-emoji {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #ffe3ec);
  color: var(--pink-deep);
  font-size: 40px;
  font-weight: 900;
  box-shadow: inset 0 0 0 2px rgba(var(--pink-rgb), 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 22px;
  width: min(640px, 100%);
  margin: 8px 0 24px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 62px;
  padding: 0 46px 0 18px;
  border: 2px solid rgba(var(--muted-rgb), 0.22);
  border-radius: 16px;
  appearance: none;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, var(--pink-deep) 50%) calc(100% - 24px) 28px / 8px 8px no-repeat,
    linear-gradient(135deg, var(--pink-deep) 50%, transparent 50%) calc(100% - 16px) 28px / 8px 8px no-repeat,
    #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(var(--ink-rgb), 0.08);
}

select:focus {
  border-color: var(--sky);
  outline: 4px solid rgba(var(--sky-rgb), 0.24);
}

.form-note {
  min-height: 22px;
  margin: -8px 0 12px;
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.ticket-preview {
  display: grid;
  gap: 5px;
  width: min(520px, 100%);
  margin: -8px 0 18px;
  padding: 14px 18px;
  border: 1px dashed rgba(var(--pink-deep-rgb), 0.34);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(var(--yellow-rgb), 0.16), rgba(var(--pink-rgb), 0.1)),
    rgba(var(--white-rgb), 0.82);
  color: var(--muted);
  text-align: center;
  box-shadow: 0 12px 26px rgba(var(--ink-rgb), 0.08);
}

.ticket-preview span {
  font-size: 13px;
  font-weight: 900;
}

.ticket-preview strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.topic-toolbar {
  display: flex;
  width: min(620px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -8px 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.mini-action {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(var(--pink-deep-rgb), 0.22);
  border-radius: 999px;
  background: rgba(var(--white-rgb), 0.82);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(var(--ink-rgb), 0.08);
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.mini-action:hover,
.mini-action:focus-visible {
  background: rgba(var(--yellow-rgb), 0.2);
  box-shadow: 0 12px 22px rgba(var(--pink-rgb), 0.16);
  outline: 3px solid rgba(var(--yellow-rgb), 0.42);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.mini-action:active {
  transform: translateY(1px) scale(0.98);
}

.topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px 14px;
  width: min(620px, 100%);
  margin-bottom: 20px;
}

.topic {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 52px;
  padding: 10px 15px;
  border: 2px solid rgba(var(--muted-rgb), 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(var(--ink-rgb), 0.08);
  transition: transform 140ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.topic:active {
  transform: scale(0.96);
}

.topic span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 10px;
  background: rgba(var(--yellow-rgb), 0.22);
  font-size: 18px;
  flex: 0 0 auto;
}

.topic[aria-pressed="true"] {
  border-color: var(--mint);
  background: linear-gradient(180deg, #ffffff, #e9fff3);
  box-shadow: 0 12px 26px rgba(var(--mint-rgb), 0.18);
  transform: translateY(-1px);
}

.topic:active,
.topic[aria-pressed="true"]:active {
  transform: scale(0.96);
}

.topic[aria-pressed="true"]::after {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 15px;
}

.summary {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin: 4px 0 0;
}

.step[data-step="4"] .summary {
  gap: 7px;
}

.summary-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  border-radius: 16px;
  background: rgba(var(--white-rgb), 0.86);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(var(--ink-rgb), 0.08);
}

.step[data-step="4"] .summary-row {
  padding: 9px 16px;
  font-size: 15px;
}

.summary-row strong {
  color: var(--pink-deep);
}

.promise-card {
  width: min(560px, 100%);
  margin: 8px 0 9px;
  padding: 9px 16px;
  border-radius: 18px;
  background: rgba(var(--yellow-rgb), 0.18);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.step[data-step="4"] .btn {
  min-height: 50px;
}

.step[data-step="4"] .form-note {
  margin: 6px 0 0;
}

.receipt-choice {
  display: grid;
  gap: 7px;
  justify-items: center;
  width: min(560px, 100%);
  margin-top: 7px;
}

.receipt-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.receipt-actions .mini-action {
  min-height: 36px;
  padding: 7px 14px;
}

.receipt-primary {
  background: rgba(var(--pink-rgb), 0.12);
}

.receipt-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(var(--ink-rgb), 0.32);
  backdrop-filter: blur(14px);
}

.receipt-modal[hidden] {
  display: none;
}

.receipt-modal-card {
  display: grid;
  gap: 14px;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  border: 1px solid rgba(var(--white-rgb), 0.78);
  border-radius: 24px;
  background: rgba(var(--white-rgb), 0.93);
  box-shadow: 0 28px 80px rgba(var(--ink-rgb), 0.28);
  overflow: auto;
}

.receipt-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.receipt-modal-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.receipt-modal-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--pink-deep-rgb), 0.22);
  border-radius: 50%;
  background: #fff;
  color: var(--pink-deep);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

#receiptCanvas {
  width: min(100%, 390px);
  height: auto;
  justify-self: center;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(var(--ink-rgb), 0.2);
}

.receipt-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.receipt-modal-actions .btn {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(var(--white-rgb), 0.74);
}

.dot {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #a8adb5;
  color: #fff;
  font-weight: 900;
}

.dot.active {
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(var(--pink-rgb), 0.34);
}

.line {
  width: min(82px, 9vw);
  height: 3px;
  border-radius: 999px;
  background: #c9ccd2;
}

.line.active {
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(7deg); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bubble-pop {
  0% { transform: scale(0.96); border-color: rgba(var(--pink-deep-rgb), 0.22); }
  45% { transform: scale(1.04); border-color: rgba(var(--pink-deep-rgb), 0.46); }
  100% { transform: scale(1); border-color: rgba(var(--pink-deep-rgb), 0.22); }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg);
  }
  12% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 105vh, 0) rotate(620deg);
  }
}

@media (max-width: 820px) {
  .app {
    padding: 14px;
  }

  .window-shell {
    min-height: calc(100vh - 28px);
    border-radius: 20px;
  }

  .top-bar {
    grid-template-columns: 1fr auto;
  }

  .traffic {
    display: none;
  }

  .address {
    font-size: 13px;
  }

  .scene {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding: 18px;
  }

  .mascot-panel {
    display: none;
  }

  .card-stack {
    min-height: 570px;
  }

  .card {
    border-radius: 28px;
    padding: 26px 18px;
  }

  h1 {
    font-size: clamp(31px, 9vw, 46px);
  }

  .choice-yard {
    --choice-gap: 32px;
    width: min(320px, 100%);
    min-height: 230px;
    margin-inline: auto;
  }

  #yesBtn {
    left: calc(50% - var(--choice-button-width) / 2);
    top: 36px;
  }

  #noBtn {
    left: calc(50% - var(--choice-button-width) / 2);
    top: 126px;
  }

  .form-grid,
  .topics {
    grid-template-columns: 1fr;
  }

  .topic-toolbar {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .ticket-preview,
  .promise-card {
    padding: 12px 14px;
  }

  .step[data-step="4"] {
    padding-top: 24px;
  }

  .receipt-choice {
    margin-top: 6px;
  }

  .receipt-modal {
    padding: 12px;
  }

  .receipt-modal-card {
    max-height: calc(100vh - 24px);
    padding: 14px;
  }

  .progress {
    gap: 6px;
    padding: 14px 10px;
  }

  .dot {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .line {
    width: 8vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
