:root {
  --mota-red: #d90d0d;
  --kv-red: #ff4040;
  --ink: #24272a;
  --muted: #717171;
  --disabled: #9c9e9f;
  --border: #cccccc;
  --soft-border: #e5e5e5;
  --notice: #fff7e5;
  --surface: #ffffff;
  --page-gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  background: #eef0f2;
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 360px;
  background: #eef0f2;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
select,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  position: relative;
  width: min(100%, 480px);
  min-height: 1547.45px;
  margin: 0 auto;
  padding-bottom: calc(110px + env(safe-area-inset-bottom));
  overflow: clip;
  background: var(--surface);
  box-shadow: 0 0 32px rgba(36, 39, 42, 0.08);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  background: #fff;
}

.brand-logo {
  width: 129px;
  height: 20px;
  object-fit: contain;
}

.login-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.login-button img {
  width: 10.501px;
  height: 13.5px;
  object-fit: contain;
}

.deal-steps {
  height: 60px;
  margin-top: 8px;
  padding: 4px 16px 28px;
  background: #fff;
}

.deal-steps ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deal-step {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--disabled);
}

.deal-step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 14px;
  left: 50%;
  width: 100%;
  border-top: 0.5px solid #999;
  content: "";
}

.deal-step__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #999;
  border-radius: 50%;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.deal-step__label {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.deal-step.is-current {
  color: var(--mota-red);
}

.deal-step.is-current::after {
  border-color: var(--mota-red);
}

.deal-step.is-current .deal-step__number {
  border-color: var(--mota-red);
  background: var(--mota-red);
  color: #fff;
}

.status-notice {
  display: flex;
  height: 167px;
  margin-top: 8px;
  padding: 16px 32px;
  flex-direction: column;
  gap: 8px;
  background: var(--notice);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.status-notice p {
  margin: 0;
}

.status-notice__title {
  font-size: 14px;
  line-height: 21px;
}

.status-notice strong {
  color: var(--mota-red);
}

.status-copy {
  height: 39px;
}

.status-copy p:not(.status-notice__title) {
  line-height: 18px;
}

.vehicle-summary-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 16px 12px;
  gap: 16px;
  border-radius: 8px;
  background: #fff;
}

.vehicle-summary-card__photo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 0.833px dashed #d1d5dc;
  border-radius: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  line-height: 6.875px;
}

.vehicle-summary-card__text {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.vehicle-summary-card__text span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  line-height: 12px;
}

.vehicle-summary-card__text strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 17.5px;
}

.vehicle-summary-card__arrow {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.vehicle-summary-card__arrow img {
  position: absolute;
  inset: 2px;
  display: block;
  width: 20px;
  height: 20px;
}

.vehicle-prompt {
  display: flex;
  margin-top: 8px;
  padding: 16px 32px 0;
  flex-direction: column;
  gap: 16px;
}

.vehicle-prompt__title {
  width: 100%;
  height: 67.5px;
}

.vehicle-prompt h1 {
  margin: 0 0 4px;
  color: var(--mota-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.vehicle-prompt__lead,
.deadline {
  margin: 0;
  line-height: 1.25;
}

.vehicle-prompt__lead {
  font-size: 14px;
  font-weight: 700;
}

.deadline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 16.5px;
}

.deadline strong {
  color: var(--mota-red);
}

.vehicle-prompt .primary-button {
  height: 54px;
  min-height: 54px;
  margin-top: 0;
  padding: 0 40px;
  line-height: 16px;
  box-shadow: none;
  background: linear-gradient(-42.288deg, var(--kv-red) 0%, var(--mota-red) 100%);
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10000px;
  background: linear-gradient(101deg, var(--mota-red), var(--kv-red));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: none;
  cursor: pointer;
  transition: background-color 70ms linear, color 70ms linear;
}

.primary-button:active {
  transform: none;
  box-shadow: none;
}

.primary-button:focus-visible,
.guide-link:focus-visible,
.login-button:focus-visible,
.bottom-nav button:focus-visible,
.sheet-close:focus-visible {
  outline: 3px solid rgba(217, 13, 13, 0.3);
  outline-offset: 2px;
}

.input-progress {
  height: 154.5px;
  margin-top: 16px;
  padding: 0 32px;
}

.input-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 16.5px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
}

.input-progress__header h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 16.5px;
}

.input-progress__header span {
  color: var(--ink);
  font-weight: 700;
  line-height: 16.5px;
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 16777200px;
  background: #f3f4f6;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--mota-red);
  transition: width 220ms ease;
}

.progress-list li.is-progress-entering .check img {
  animation: progress-check-reveal 320ms cubic-bezier(.2, .8, .2, 1) both;
  animation-delay: var(--progress-delay, 0ms);
}

.progress-list li.is-progress-entering > span:nth-child(2) {
  animation: progress-label-reveal 240ms ease-out both;
  animation-delay: var(--progress-delay, 0ms);
}

@keyframes progress-check-reveal {
  0% { opacity: 0; clip-path: circle(0 at 50% 50%); }
  65% { opacity: 1; clip-path: circle(12px at 50% 50%); }
  100% { opacity: 1; clip-path: circle(10px at 50% 50%); }
}

@keyframes progress-label-reveal {
  from { opacity: .45; color: var(--disabled); }
  to { opacity: 1; color: var(--ink); }
}

.progress-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.progress-list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  min-height: 24px;
  column-gap: 8px;
  color: var(--disabled);
  font-weight: 700;
  line-height: 12px;
}

.progress-list li.is-actionable {
  margin: 0 -8px;
  padding: 0 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 70ms linear;
}

@media (hover: hover) and (pointer: fine) {
  .progress-list li.is-actionable:hover {
    background: #f5f5f5;
  }
}

.progress-list li.is-actionable:active {
  background: #ececec;
}

.progress-list li.is-actionable:focus-visible {
  outline: 2px solid #777;
  outline-offset: 1px;
}

.progress-list .check {
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.progress-list .check img {
  display: block;
  width: 24px;
  height: 24px;
  clip-path: circle(10px at 50% 50%);
}

.progress-list li.is-complete {
  color: var(--ink);
}

.progress-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20.5px;
  padding: 2px 7px;
  border-radius: 29px;
  color: var(--mota-red);
  font-size: 11px;
  line-height: 16.5px;
}

.task-editor {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--soft-border);
  border-radius: 12px;
  background: #fafafa;
  animation: reveal 180ms ease both;
}

.task-editor h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.task-control {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--soft-border);
  cursor: pointer;
}

.task-control:first-of-type {
  border-top: 0;
}

.task-control input {
  width: 22px;
  height: 22px;
  accent-color: var(--mota-red);
}

.task-control span {
  display: grid;
  flex: 1;
}

.task-control b {
  font-size: 13px;
}

.task-control small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.task-control select {
  max-width: 142px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
}

.guide-section {
  height: 782.45px;
  margin-top: 32px;
  padding: 24px 33px 0 32px;
}

.guide-section > h2 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.guide-card[data-guide] { height: 168px; }

.guide-card:first-of-type {
  margin-top: 0;
}

.guide-card__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.guide-card__heading h3 {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.guide-card[data-guide="caution"] .guide-card__heading,
.guide-card[data-guide="photo"] .guide-card__heading {
  min-height: 40.225px;
}

.guide-card[data-guide="caution"] .guide-card__heading h3,
.guide-card[data-guide="photo"] .guide-card__heading h3 {
  line-height: 1.25;
}

.guide-illustration {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 48px;
  overflow: hidden;
}

.guide-illustration span,
.guide-illustration img {
  position: absolute;
  display: block;
}

.guide-illustration img {
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-vector {
  top: 50%;
  right: 16.34%;
  left: 16.34%;
  aspect-ratio: 94 / 88;
  overflow: hidden;
  transform: translateY(-50%);
}

.flow-black { inset: 0 0.01% 0 0; }
.flow-red { inset: 38.61% 27.8% 0.56% 1.63%; }
.flow-gray { inset: 29.25% 13.56% 66.64% 59.98%; }
.flow-white { inset: 10.74% 10.59% 0.57% 8.99%; }

.guide-illustration--secure,
.guide-illustration--caution,
.guide-illustration--photo {
  width: 64px;
  height: 41px;
}

.guide-illustration--photo > img {
  position: static;
  display: block;
  width: 64px;
  height: 41px;
  object-fit: contain;
}

.secure-scene { inset: 3.13% 0 0.45%; overflow: hidden; }
.secure-v0 { inset: 11.02% 0.02% 0 53%; }
.secure-v1 { inset: 44.66% 39.78% 52.1% 41.03%; }
.secure-v2 { inset: 44.66% 60.11% 52.1% 38%; }
.secure-v3 { inset: 40.93% 39.76% 47.89% 55.56%; }
.secure-layer { inset: 10.8% 37.25% 65.43% 37.91%; overflow: hidden; }
.secure-g0 { inset: 14.19% 8.6% 0 0; }
.secure-g1 { inset: 0 0 14.19% 8.6%; }
.secure-g2 { inset: 13.91% 28.09% 28.04% 36.75%; }
.secure-g3 { inset: 28.77% 37.64% 39.8% 46.26%; }
.secure-front { inset: 13.54% 53.02% 1.04% 0; }

.caution-vector {
  top: 50%;
  right: 2.61%;
  left: 3.27%;
  aspect-ratio: 153 / 102;
  overflow: hidden;
  transform: translateY(-50%);
}

.caution-gray { inset: 30.17% 23% 63.33% 49.87%; }
.caution-white { inset: 6.12% 9.99% 0.66% 1.24%; }
.caution-red { inset: 33.34% 1.21% 0.92% 26.3%; }
.caution-black { inset: -0.01% 0 0.01%; }

.guide-card > p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.guide-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-top: auto;
}

.read-state {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--mota-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.read-state.is-read {
  background: var(--soft-border);
  color: var(--ink);
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 24px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.guide-link__label {
  border-bottom: 1px solid var(--ink);
}

.guide-link .guide-link__arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.guide-link__arrow img {
  position: absolute;
  inset: 2px;
  display: block;
  width: 20px;
  height: 20px;
}

.bottom-nav {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 0;
  width: min(100vw, 480px);
  height: calc(110px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: transparent;
  transform: translateX(-50%);
}

.bottom-nav::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 99px;
  border-top: 1px solid var(--soft-border);
  background: #fff;
  box-shadow: 0 -4px 10px rgba(36, 39, 42, 0.06);
  content: "";
}

.bottom-nav__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 93px;
  margin-top: 4px;
  padding: 0 22px;
}

.nav-item,
.nav-primary {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
}

.nav-item {
  width: 50px;
  padding: 10px 0;
  gap: 4px;
  background: transparent;
}

.nav-item.is-active {
  color: var(--mota-red);
}

.nav-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.nav-icon img,
.nav-car img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.nav-icon--home img { inset: 8.32% 12.54% 8.33% 12.5%; width: auto; height: auto; }
.nav-icon--user .nav-user { inset: 8.33%; width: auto; height: auto; }
.nav-icon--user .nav-badge { inset: 62.5% 8.33% 8.33% 62.5%; width: auto; height: auto; }
.nav-icon--question img { inset: 8.33%; width: auto; height: auto; }
.nav-icon--menu { width: 20px; height: 20px; margin: 2px; }
.nav-icon--menu img { inset: 12.5% 8.33%; width: auto; height: auto; }

.nav-primary {
  position: relative;
  justify-content: flex-start;
  width: 91.82px;
  height: 91.82px;
  margin-right: 4px;
  margin-left: 4px;
  padding-top: 16.4px;
  border: 4.372px solid #fff;
  border-radius: 45.91px;
  background: linear-gradient(-79.679deg, var(--kv-red) 0%, var(--mota-red) 100%);
  color: #fff;
  font-size: 9.71px;
  line-height: 14.568px;
  transform: translateY(1.32px);
}

.nav-car {
  position: relative;
  display: block;
  width: 34.979px;
  height: 34.979px;
  margin-bottom: -1.093px;
}

.hamburger-menu {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, 480px);
  height: 100dvh;
  min-height: 590px;
  overflow-y: auto;
  background: #fff;
  transform: translateX(-50%);
  animation: menu-in 180ms ease-out both;
}

.hamburger-menu[hidden] {
  display: none;
}

.hamburger-menu__close {
  position: absolute;
  z-index: 1;
  top: 26px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid #999;
  border-radius: 10000px;
  background: #fff;
  cursor: pointer;
}

.hamburger-menu__close img {
  display: block;
  width: 9.818px;
  height: 9.818px;
}

.hamburger-menu__content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 48px;
  flex-direction: column;
  gap: 40px;
}

.hamburger-menu__header {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.hamburger-avatar {
  position: relative;
  display: block;
  width: 40px;
  height: 49.524px;
  overflow: hidden;
}

.hamburger-avatar img {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
}

.hamburger-avatar__body { inset: 18.21% 0 1.03%; }
.hamburger-avatar__red { inset: 50.98% 4.89% 1.03% 5.74%; }
.hamburger-avatar__white { inset: 53.73% 36.15% 1.03% 37.59%; }
.hamburger-avatar__face { inset: 16.36% 23.77% 48.05% 25.33%; }
.hamburger-avatar__outline { inset: 0.07% 4.07% 1.85% 4.92%; }

.hamburger-menu__header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.hamburger-menu__nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px;
}

.hamburger-menu__group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.hamburger-menu__link {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
}

.hamburger-menu__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.hamburger-menu__icon img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hamburger-menu__icon--home img { inset: 8.32% 12.54% 8.33% 12.5%; width: auto; height: auto; }
.hamburger-menu__icon--account img { inset: 8.37% 8.33% 8.29%; width: auto; height: auto; }
.hamburger-menu__icon--question img,
.hamburger-menu__icon--secure img { inset: 8.33%; width: auto; height: auto; }
.hamburger-menu__icon--logout img { inset: 8.33% 16.67%; width: auto; height: auto; }

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: calc(124px + env(safe-area-inset-bottom));
  max-width: min(320px, calc(100vw - 48px));
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(36, 39, 42, 0.94);
  color: #fff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal-layer {
  position: fixed;
  z-index: 50;
  inset: 0;
}

.modal-layer[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.38);
}

.bottom-sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(100%, 480px);
  max-height: 82vh;
  margin: 0 auto;
  padding: 14px var(--page-gutter) calc(24px + env(safe-area-inset-bottom));
  overflow: auto;
  border-radius: 20px 20px 0 0;
  background: #fff;
  animation: sheet-in 220ms cubic-bezier(.2,.8,.2,1) both;
}

.modal-layer.is-guide-panel .bottom-sheet {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, 390px);
  max-height: none;
  margin: 0;
  padding-top: 32px;
  border-radius: 0;
  animation-name: guide-panel-in;
}

.sheet-close {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 5px;
  border: 1px solid #999;
  border-radius: 10000px;
  background: #fff;
  cursor: pointer;
}

.sheet-close img {
  display: block;
  width: 9.818px;
  height: 9.818px;
}

.sheet-eyebrow {
  margin: 0 0 8px;
  color: var(--mota-red);
  font-size: 11px;
  font-weight: 700;
}

.bottom-sheet h2 {
  margin: 0 44px 14px 0;
  font-size: 20px;
  line-height: 1.35;
}

.bottom-sheet h3 {
  margin: 18px 0 6px;
  font-size: 14px;
}

.bottom-sheet p,
.bottom-sheet li {
  font-size: 13px;
  line-height: 1.7;
}

.bottom-sheet ul,
.bottom-sheet ol {
  padding-left: 1.3em;
}

.sheet-primary {
  margin-top: 20px;
}

body.has-modal,
body.has-menu {
  overflow: hidden;
}

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

@keyframes sheet-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes guide-panel-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes menu-in {
  from { opacity: 0; transform: translate(-50%, 6px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 379px) {
  .vehicle-prompt h1 { font-size: 18px; }
  .guide-card { padding: 18px; }
  .guide-card__heading h3 { font-size: 15px; }
  .guide-link { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
