@charset "UTF-8";
body.page-home {
  background: var(--background-strong);
}

html:not(.no-js):has(.home:not([data-revealed])) .home-header-chatbot {
  opacity: var(--hero-progress);
}
html:not(.no-js):has(.home:not([data-revealed])) .home-header-chatbot:focus-visible {
  opacity: 1;
}

:root {
  --hero-progress: 0;
}

.home {
  position: relative;
  --headline-h: calc(30px * 1.4 * 2);
  --headline-pill-gap: var(--gap-5);
}

.home-hero__inner {
  display: flex;
  flex-direction: column;
  padding-top: var(--p-2);
}

.home-hero__headline {
  overflow: hidden;
}
.home-hero__headline > .home-hero__headline-text {
  margin: 0 var(--p-1);
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--label-normal);
}
.home-hero__headline > .home-hero__headline-text em {
  font-style: normal;
  color: var(--brand-blue-normal);
}

.home-hero__keyword {
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  vertical-align: bottom;
  transition: width 0.4s var(--ease-out);
}
.home-hero__keyword .home-hero__keyword-strip {
  display: block;
  width: max-content;
  transition: transform 0.4s var(--ease-out);
}
.home-hero__keyword .home-hero__keyword-strip > span {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.home-search {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
  margin-top: var(--headline-pill-gap);
  padding: var(--p-4) var(--p-6);
  border: var(--stroke-2) solid transparent;
  border-radius: var(--rounded-full);
  background: linear-gradient(var(--background-normal), var(--background-normal)) padding-box, linear-gradient(278deg, #be69ff, var(--color-blue-60)) border-box;
  /* 2026-07-16 수정 #0716-6 : home-search 검색 pill box-shadow 를 디자인 확정값으로 교체 */
  box-shadow: 0 15px 20px -5px rgba(54, 23, 206, 0.07), 0 8px 10px -3px rgba(54, 23, 206, 0.07);
  color: var(--label-normal);
}
.home-search:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}
.home-search .home-search__icon {
  flex: none;
  color: var(--brand-blue-normal);
}
.home-search .home-search__placeholder {
  font-size: var(--font-size-component-large);
  font-weight: var(--font-weight-medium);
  color: var(--label-disabled);
}

.home-quick__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 104px));
  justify-content: center;
}

.home-quick__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 0 var(--p-1);
  border-radius: var(--rounded-xl);
  text-align: center;
  color: var(--label-muted);
}
.home-quick__link:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.home-quick__label {
  margin-top: var(--gap-1);
  font-size: var(--font-size-component-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

.home-quick--desktop {
  display: none;
}

.home-quick--mobile {
  margin-top: var(--gap-5);
}
.home-quick--mobile .home-quick__list {
  margin-inline: calc(var(--p-3) - var(--p-5));
}

.home-hero__next {
  display: none;
  align-self: center;
}

html:not(.no-js) .home:not([data-revealed]) {
  --pin-top: 56px;
  --pin-h: calc(100svh - var(--pin-top));
  height: calc(var(--pin-h) + var(--hero-runway, 0px));
  overflow-anchor: none;
}
html:not(.no-js) .home:not([data-revealed]) .home-pin {
  position: sticky;
  top: var(--pin-top);
  height: var(--pin-h);
}
html:not(.no-js) .home:not([data-revealed]) .home-hero__inner {
  position: relative;
  min-height: var(--pin-h);
  padding-bottom: calc(var(--pin-top) + var(--p-2));
  contain: layout;
}
html:not(.no-js) .home:not([data-revealed]) .home-hero__inner::before, html:not(.no-js) .home:not([data-revealed]) .home-hero__inner::after {
  content: "";
  width: 100%;
  flex-grow: 1;
}
html:not(.no-js) .home:not([data-revealed]) .home-hero__inner::before {
  flex-grow: calc(1 - var(--hero-progress));
}
html:not(.no-js) .home:not([data-revealed]) .home-hero__headline {
  height: calc((var(--headline-h) + var(--headline-pill-gap)) * (1 - var(--hero-progress)));
  opacity: calc(1 - var(--hero-progress));
}
html:not(.no-js) .home:not([data-revealed]) .home-search {
  margin-top: 0;
}
html:not(.no-js) .home:not([data-revealed]) .home-hero__next {
  display: inline-flex;
  position: absolute;
  bottom: 19.7%;
  opacity: calc(1 - var(--hero-progress) * 2);
}
html:not(.no-js) .home:not([data-revealed]) .home-body {
  transform: translateY(calc(var(--hero-shift, 0px) * var(--hero-progress) * -1));
}

html:not(.no-js) .home[data-revealed] .home-hero__headline {
  height: 0;
  opacity: 0;
}
html:not(.no-js) .home[data-revealed] .home-search {
  margin-top: 0;
}

.home-banner .carousel__counter {
  font-variant-numeric: tabular-nums;
}

.home-banner__card,
.home-experience__card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--rounded-2xl);
}
.home-banner__card:focus-visible,
.home-experience__card:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
  outline-offset: calc(-1 * var(--stroke-3));
}

.home-banner__img,
.home-experience__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 2/1;
  min-height: 160px;
  padding: var(--p-5);
  padding-bottom: calc(var(--p-4) + 52px);
}

.home-banner__text {
  display: block;
}

.home-banner__title {
  display: block;
  font-size: var(--font-size-component-large);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--label-normal);
}

.home-banner__sub {
  display: block;
  margin-top: var(--gap-1-5);
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-muted);
}

.home-banner__card--inverse .home-banner__title {
  color: var(--label-inverse-normal);
}
.home-banner__card--inverse .home-banner__sub {
  color: var(--label-inverse-muted);
}

.home-section {
  margin-top: var(--gap-12);
}

.home-section__title {
  margin: 0;
  padding-inline: var(--p-1);
  font-size: var(--font-size-title-medium);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--label-normal);
}

.home-top3__scroll,
.home-experience__scroll {
  width: calc(100% + var(--p-5) * 2);
  margin-inline: calc(-1 * var(--p-5));
  padding-inline: var(--p-5);
  scroll-padding-inline-start: var(--p-5);
}
@media (min-width: 768px) {
  .home-top3__scroll,
  .home-experience__scroll {
    width: calc(100% + var(--p-10) * 2);
    margin-inline: calc(-1 * var(--p-10));
    padding-inline: var(--p-10);
    scroll-padding-inline-start: var(--p-10);
  }
}
.home-top3__scroll,
.home-experience__scroll {
  gap: var(--gap-2);
  margin-top: var(--gap-4);
}
.home-top3__scroll > .card-plan,
.home-top3__scroll > .home-experience__card,
.home-experience__scroll > .card-plan,
.home-experience__scroll > .home-experience__card {
  flex-basis: clamp(280px, 100%, 320px);
}

.home-top3,
.home-experience {
  margin-bottom: calc(-1 * var(--scrollbar-size));
}

.home-section.home-directshop {
  margin-top: var(--gap-4);
}
@media (min-width: 768px) {
  .home-section.home-directshop {
    margin-top: var(--gap-6);
  }
}

.home-experience__card {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  scroll-snap-align: start;
  height: 373px;
  padding: var(--p-10) var(--p-5);
}

.home-experience__title {
  font-size: var(--font-size-component-2xlarge);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
  color: var(--label-normal);
}

.home-my__card {
  display: grid;
  gap: var(--gap-5);
  margin-top: var(--gap-4);
  padding: var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-normal);
}

.home-my__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  color: var(--label-muted);
}

.home-my__amount {
  display: flex;
  align-items: center;
  gap: var(--gap-0-5);
  margin-top: var(--gap-1);
  color: var(--label-normal);
}
.home-my__amount > strong {
  font-size: var(--font-size-title-2xlarge);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}
.home-my__amount .home-my__unit {
  font-size: var(--font-size-title-small);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.home-my__amount--pending {
  color: var(--label-disabled);
}

.home-my__diff {
  font-size: var(--font-size-caption-medium);
  line-height: 1.6;
  color: var(--label-soft);
}
.home-my__diff em {
  font-style: normal;
  font-size: var(--font-size-component-xsmall);
  font-weight: var(--font-weight-medium);
  color: var(--brand-red-normal);
}
.home-my__diff[data-trend=up] em {
  color: var(--brand-blue-normal);
}

.home-my__divider {
  height: var(--stroke-1);
  margin: 0;
  border: 0;
  background: var(--border-line-muted);
}

.home-my__total {
  font-size: var(--font-size-caption-medium);
  font-weight: var(--font-weight-regular);
  color: var(--label-soft);
}
.home-my__total em {
  font-style: normal;
  font-weight: var(--font-weight-medium);
  color: var(--label-muted);
}

.home-my__counts {
  display: flex;
  gap: var(--gap-0-5);
  margin-top: var(--gap-3);
}

.home-my__count {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding-block: var(--gap-4);
  background: var(--fill-strong);
  text-align: center;
}
.home-my__count:first-child {
  border-start-start-radius: var(--rounded-lg);
  border-end-start-radius: var(--rounded-lg);
}
.home-my__count:last-child {
  border-start-end-radius: var(--rounded-lg);
  border-end-end-radius: var(--rounded-lg);
}
.home-my__count > strong {
  font-size: var(--font-size-title-xlarge);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--label-normal);
}
.home-my__count > span {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-soft);
}

.home-my__more {
  display: flex;
  justify-content: center;
}

.home-my + .home-combine {
  margin-top: var(--gap-4);
}

.home-combine {
  margin-bottom: calc(-1 * var(--scrollbar-size));
}

.home-combine .banner-marketing-strip {
  --strip-inset: var(--p-5);
}
@media (min-width: 768px) {
  .home-combine .banner-marketing-strip {
    display: flex;
    gap: var(--gap-4);
    overflow-x: scroll;
  }
}

.home-solve__list {
  display: grid;
  gap: var(--gap-2);
  margin-top: var(--gap-4);
}

.home-solve__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-4);
  padding: var(--p-5);
  border-radius: var(--rounded-2xl);
  background: var(--fill-normal);
  text-decoration: none;
}
.home-solve__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.home-solve__card:hover::before {
  opacity: 0.0375;
}
.home-solve__card:active::before, .home-solve__card[aria-expanded=true]::before {
  opacity: 0.09;
}
.home-solve__card:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.home-solve__icon {
  flex: none;
  width: 40px;
  height: 40px;
}

.home-solve__text {
  display: flex;
  flex-direction: column;
  gap: var(--gap-0-5);
  min-width: 0;
}

.home-solve__title {
  font-size: var(--font-size-component-large);
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  color: var(--label-normal);
}

.home-solve__sub {
  font-size: var(--font-size-component-medium);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-soft);
}

.home-ask__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-2);
  margin-top: var(--gap-4);
}

.home-ask__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--gap-2);
  padding: var(--p-4);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  text-decoration: none;
}
.home-ask__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.home-ask__card:hover::before {
  opacity: 0.0375;
}
.home-ask__card:active::before, .home-ask__card[aria-expanded=true]::before {
  opacity: 0.09;
}
.home-ask__card:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.home-ask__label {
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  color: var(--label-normal);
}

.home-ask__icon {
  align-self: flex-end;
  width: 24px;
  height: 24px;
}

.home-ask + .home-notice {
  margin-top: var(--gap-2);
}

.home-notice__bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-2);
  padding: var(--p-3) var(--p-4);
  border-radius: var(--rounded-xl);
  background: var(--fill-normal);
  text-decoration: none;
}
.home-notice__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--fill-hyper);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.home-notice__bar:hover::before {
  opacity: 0.0375;
}
.home-notice__bar:active::before, .home-notice__bar[aria-expanded=true]::before {
  opacity: 0.09;
}
.home-notice__bar:focus-visible {
  outline: var(--stroke-3) solid var(--border-box-heavy);
  outline-offset: 0;
}

.home-notice__label {
  flex: none;
  font-size: var(--font-size-body-medium);
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
  color: var(--label-normal);
}

.home-notice__divider {
  flex: none;
  width: var(--stroke-1);
  height: 10px;
  background: var(--border-line-normal);
}

.home-notice__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-size: var(--font-size-body-small);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--label-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-notice__chevron {
  flex: none;
  color: var(--label-soft);
}

.home-quick--mobile + .home-section {
  margin-top: var(--gap-5);
}

@media (min-width: 768px) {
  .home-hero__inner {
    align-items: center;
    padding-top: var(--p-12);
  }
  .home-hero__headline > .home-hero__headline-text {
    font-size: 48px;
    text-align: center;
  }
  .home-hero__next[data-mo-size=small] {
    width: 44px;
    height: 44px;
  }
  .home-hero__next[data-mo-size=small] svg:not([class*=size-]) {
    width: 20px;
    height: 20px;
  }
  .home-search {
    width: 100%;
    max-width: 640px;
  }
  .home-quick--desktop {
    display: block;
    margin-top: var(--quick-gap);
  }
  .home-quick--desktop .home-quick__list {
    grid-template-columns: repeat(8, minmax(0, 104px));
  }
  .home-quick--mobile {
    display: none;
  }
  .home {
    --headline-h: calc(48px * 1.4 * 2);
    --headline-pill-gap: var(--gap-8);
    --quick-gap: var(--gap-5);
  }
  html:not(.no-js) .home:not([data-revealed]) {
    --pin-top: 64px;
  }
  html:not(.no-js) .home:not([data-revealed]) .home-hero__inner {
    padding-bottom: calc(var(--pin-top) + var(--p-12));
  }
  html:not(.no-js) .home:not([data-revealed]) .home-hero__next {
    bottom: 6.5%;
  }
  html:not(.no-js) .home:not([data-revealed]) .home-quick--desktop {
    margin-top: calc(var(--quick-gap) + (var(--gap-12) - var(--quick-gap)) * (1 - var(--hero-progress)));
  }
  .home-section {
    margin-top: var(--gap-16);
  }
  .home-quick--mobile + .home-section {
    margin-top: var(--gap-10);
  }
  .home-banner .carousel {
    --carousel-slide-size: 50%;
  }
  .home-banner__card {
    padding: var(--p-8);
    border-radius: var(--rounded-3xl);
    justify-content: flex-start;
  }
  .home-banner__title {
    font-size: var(--font-size-component-3xlarge);
  }
  .home-banner__sub {
    font-size: var(--font-size-component-large);
  }
  .home-top3__scroll,
  .home-experience__scroll {
    gap: var(--gap-4);
    margin-top: var(--gap-6);
  }
  .home-top3__scroll > .card-plan,
  .home-top3__scroll > .home-experience__card,
  .home-experience__scroll > .card-plan,
  .home-experience__scroll > .home-experience__card {
    flex-basis: clamp(280px, 100%, 304px);
  }
  .home-experience__card {
    height: 366px;
  }
  .home-my__card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "charge products" "more products";
    gap: var(--gap-1) var(--gap-4);
    margin-top: var(--gap-6);
    padding: var(--p-8) var(--p-6);
  }
  .home-my__charge {
    grid-area: charge;
    padding-inline: var(--p-1);
  }
  .home-my__divider {
    display: none;
  }
  .home-my__products {
    grid-area: products;
  }
  .home-my__more {
    grid-area: more;
    justify-content: flex-start;
    padding-inline: var(--p-1);
  }
  .home-my__amount .home-my__unit {
    padding-top: var(--p-2);
  }
  .home-my__diff {
    font-size: var(--font-size-component-small);
  }
  .home-my__diff em {
    font-size: var(--font-size-component-small);
  }
  .home-my__total em {
    font-size: var(--font-size-component-xsmall);
  }
  .home-my__count {
    padding-block: var(--gap-8);
  }
  .home-my + .home-combine {
    margin-top: var(--gap-6);
  }
  .home-solve__list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-4);
    margin-top: var(--gap-6);
  }
  .home-solve__card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-10);
    padding: var(--p-6);
  }
  .home-solve__title,
  .home-solve__sub {
    white-space: nowrap;
  }
  .home-solve__icon {
    width: 48px;
    height: 48px;
  }
  .home-ask__list {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-4);
    margin-top: var(--gap-6);
  }
  .home-ask__card {
    min-height: 128px;
    padding: var(--p-6);
  }
  .home-ask__icon {
    width: 32px;
    height: 32px;
  }
  .home-ask + .home-notice {
    margin-top: var(--gap-4);
  }
  .home-notice__bar {
    gap: var(--gap-3);
    padding: var(--p-3) var(--p-6);
  }
  .home-notice__divider {
    height: 14px;
  }
}
.home-rail {
  display: none;
}

@media (min-width: 1512px) {
  .home-rail {
    display: block;
  }
  .home-rail__track {
    position: absolute;
    inset-block: 0;
    right: 48px;
    width: 148px;
    pointer-events: none;
  }
  .home-rail__sticky {
    position: sticky;
    top: calc(64px + 32px + var(--gap-6));
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: auto;
  }
  .home-rail__card {
    padding: 6px;
    background: var(--background-elevated-normal);
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-popover);
  }
  .home-rail__list {
    display: flex;
    flex-direction: column;
  }
  .home-rail__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-block: 12px;
    border-radius: var(--rounded-xl);
    color: var(--label-soft);
  }
  .home-rail__link:hover, .home-rail__link:focus-visible, .home-rail__link:active {
    background: var(--background-elevated-strong);
    color: var(--label-normal);
  }
  .home-rail__link:focus-visible:focus-visible {
    outline: var(--stroke-3) solid var(--border-box-heavy);
    outline-offset: 0;
  }
  .home-rail__label {
    font-size: var(--font-size-component-small);
    font-weight: var(--font-weight-medium);
  }
  .home-rail__card--app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-block: 12px;
  }
  .home-rail__qr {
    width: 56px;
    height: 56px;
    border-radius: var(--rounded-md);
    background: var(--background-elevated-strong);
  }
  .home-rail__label--app {
    color: var(--label-muted);
  }
}