.upgrade-intro .remote-intro__desc {
  line-height: 1.6;
}

.upgrade-address__desc {
  margin-top: var(--gap-2);
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-soft);
}

.upgrade-address__section {
  margin-top: var(--gap-8);
  padding: 0 var(--p-5) var(--p-8);
}

.address-choice {
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
}

.address-choice__box {
  position: relative;
  display: block;
  padding: var(--p-4) var(--p-5);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  cursor: pointer;
}
.address-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.address-choice__box:hover::before {
  opacity: 0.0375;
}
.address-choice__box:active::before, .address-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.address-choice__box:has(.address-choice__input:checked) {
  border-color: var(--border-box-ultra);
}
.address-choice__box:has(.address-choice__input:checked) .address-choice__addr {
  color: var(--label-normal);
  font-weight: var(--font-weight-semibold);
}
.address-choice__box:has(.address-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.address-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.address-choice__addr {
  display: block;
  overflow: hidden;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.address-choice__date {
  display: block;
  margin-top: var(--gap-0-5);
  font-size: var(--font-size-component-small);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}

.upgrade-notes {
  margin-top: var(--gap-3);
}

.upgrade-scope {
  padding: var(--p-3) var(--p-5);
}

.upgrade-scope__box {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
  min-height: 67px;
  padding: var(--p-3) var(--p-3) var(--p-3) var(--p-4);
  border: 1px solid var(--brand-blue-normal);
  border-radius: var(--rounded-lg);
  background: var(--brand-blue-weak);
}

.upgrade-scope__addr {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-semibold);
  color: var(--label-normal);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upgrade-scope__change {
  flex-shrink: 0;
  padding: 0 var(--p-1);
  border-radius: var(--rounded-md);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--brand-blue-normal);
  text-decoration: none;
}
.upgrade-scope__change:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}
.upgrade-scope__change:hover, .upgrade-scope__change:active {
  text-decoration: underline;
}

.upgrade-section {
  margin-top: var(--gap-8);
  padding-inline: var(--p-5);
}

.upgrade-section__title {
  font-size: var(--font-size-title-medium);
  font-weight: var(--font-weight-bold);
  color: var(--label-normal);
}

.upgrade-section__head {
  display: flex;
  align-items: center;
  gap: var(--gap-2);
}
.upgrade-section__head .upgrade-section__title {
  flex: 1 1 auto;
  min-width: 0;
}

.upgrade-section__count {
  flex-shrink: 0;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-soft);
}
.upgrade-section__count strong {
  margin-inline-end: var(--gap-1);
  font-weight: var(--font-weight-semibold);
  color: var(--brand-blue-normal);
}

.upgrade-current {
  margin-top: var(--gap-4);
  padding: 0 var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-strong);
}
.upgrade-current li {
  padding-block: var(--p-4);
}
.upgrade-current li + li {
  border-top: var(--stroke-1) solid var(--border-line-muted);
}

.upgrade-current__name {
  display: block;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-normal);
}

.upgrade-current__date {
  display: block;
  margin-top: var(--gap-0-5);
  font-size: var(--font-size-component-small);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}

.upgrade-select__band {
  margin-top: var(--gap-8);
}

.plan-choice {
  margin-top: var(--gap-4);
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
}

.plan-choice__box {
  position: relative;
  display: block;
  padding: var(--p-4) var(--p-5);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  cursor: pointer;
}
.plan-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.plan-choice__box:hover::before {
  opacity: 0.0375;
}
.plan-choice__box:active::before, .plan-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.plan-choice__box:has(.plan-choice__input:checked) {
  border-color: var(--border-box-ultra);
}
.plan-choice__box:has(.plan-choice__input:checked) .plan-choice__name {
  color: var(--label-normal);
  font-weight: var(--font-weight-semibold);
}
.plan-choice__box:has(.plan-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.plan-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.plan-choice__name {
  display: block;
  overflow: hidden;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-choice__sub {
  display: block;
  margin-top: var(--gap-0-5);
  font-size: var(--font-size-component-small);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}

.plan-choice__price {
  display: block;
  margin-top: var(--gap-1);
  font-size: var(--font-size-component-large);
  font-weight: var(--font-weight-semibold);
  color: var(--label-normal);
}

.plan-choice__unit {
  margin-inline-start: var(--gap-0-5);
  font-size: var(--font-size-component-2xsmall);
  vertical-align: 2px;
}

.plan-choice__badge {
  position: absolute;
  top: -7px;
  right: 7px;
  padding: 1px var(--p-1-5);
  border-radius: var(--rounded-md);
  background: var(--brand-blue-subtle);
  font-size: var(--font-size-component-2xsmall);
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  color: var(--brand-blue-normal);
}

.gift-choice {
  margin-top: var(--gap-4);
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
}

.gift-choice__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-3);
  padding: var(--p-4);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  cursor: pointer;
}
.gift-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.gift-choice__box:hover::before {
  opacity: 0.0375;
}
.gift-choice__box:active::before, .gift-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.gift-choice__box:has(.gift-choice__input:checked) {
  border-color: var(--border-box-ultra);
}
.gift-choice__box:has(.gift-choice__input:checked) .gift-choice__name {
  color: var(--label-normal);
  font-weight: var(--font-weight-semibold);
}
.gift-choice__box:has(.gift-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.gift-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.gift-choice__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--rounded-lg);
  object-fit: cover;
}

.gift-choice__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upgrade-select__agree {
  margin-top: var(--gap-8);
  padding-inline: var(--p-5);
}
.upgrade-select__agree .agreement__items .checkbox__label {
  font-weight: var(--font-weight-medium);
}

.upgrade-select__notes {
  margin-top: var(--gap-8);
  margin-inline: var(--p-5);
}

.upgrade-schedule__section {
  margin-top: var(--gap-8);
  padding-inline: var(--p-5);
}

.upgrade-schedule__section--end {
  padding-bottom: var(--p-18);
}

.upgrade-schedule__band {
  margin-top: var(--gap-8);
}

.upgrade-schedule__method-note {
  margin-top: var(--gap-2);
}

.upgrade-schedule__group {
  margin-top: var(--gap-8);
  padding-inline: var(--p-5);
  display: flex;
  flex-direction: column;
  gap: var(--gap-5);
}

.upgrade-schedule__toggle {
  margin-top: var(--gap-2);
  padding: var(--p-4) var(--p-5);
}

.upgrade-schedule__desired {
  margin-top: var(--gap-2);
  padding-inline: var(--p-5);
  display: flex;
  flex-direction: column;
  gap: var(--gap-5);
}

.upgrade-schedule__desired[hidden] {
  display: none;
}

.install-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-2);
}

.install-choice__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 var(--p-3);
  border: 1px solid var(--border-box-normal);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  color: var(--label-muted);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  text-align: center;
  cursor: pointer;
}
.install-choice__box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.install-choice__box:hover::before {
  opacity: 0.0375;
}
.install-choice__box:active::before, .install-choice__box[aria-expanded=true]::before {
  opacity: 0.09;
}
.install-choice__box:has(.install-choice__input:checked) {
  border-color: var(--border-box-ultra);
  color: var(--label-normal);
  font-weight: var(--font-weight-bold);
}
.install-choice__box:has(.install-choice__input:focus-visible) {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}
.install-choice__box:has(.install-choice__input:disabled) {
  border-color: transparent;
  background: var(--fill-disabled);
  color: var(--label-disabled);
  font-weight: var(--font-weight-medium);
  cursor: default;
}
.install-choice__box:has(.install-choice__input:disabled)::before {
  display: none;
}

.install-choice__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.upgrade-done .result__body {
  padding-top: var(--p-20);
}

.upgrade-done__cards,
.upgrade-done__notes {
  width: 100%;
  text-align: left;
}

.upgrade-done__cards {
  margin-top: var(--gap-8);
}

.upgrade-done__card {
  padding: var(--p-4) var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-strong);
}

.upgrade-done__card--after {
  border: var(--stroke-1) solid var(--border-line-normal);
  background: var(--fill-normal);
}

.upgrade-done__card-title {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-semibold);
  color: var(--label-muted);
}

.upgrade-done__card--after .upgrade-done__card-title {
  color: var(--label-normal);
}

.upgrade-done__card-title + .info-cell {
  margin-top: var(--gap-2);
}

.upgrade-done__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--gap-2);
}

.upgrade-done__arrow-circle {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: var(--stroke-1) solid var(--border-line-normal);
  border-radius: var(--rounded-full);
  background: var(--fill-normal);
  color: var(--label-normal);
}

.upgrade-unavail .result__body {
  padding-top: var(--p-20);
}

.upgrade-unavail__reason {
  margin-top: var(--gap-8);
  width: 100%;
  padding: var(--p-4) var(--p-5);
  border: var(--stroke-1) solid var(--border-line-normal);
  border-radius: var(--rounded-2xl);
}

.upgrade-unavail__reason-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-2);
  padding-block: var(--p-1);
}
.upgrade-unavail__reason-row dt {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--label-soft);
}
.upgrade-unavail__reason-row dd {
  margin: 0;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  color: var(--brand-red-normal);
}

.upgrade-unavail__reason + .bundle-unavail__hours {
  margin-top: var(--gap-2);
}

.upgrade-terms__intro {
  margin-top: var(--gap-2);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  color: var(--label-soft);
}

.upgrade-terms__table {
  margin-top: var(--gap-4);
}

.upgrade-terms__notes {
  margin-top: var(--gap-2);
}