.gift-page {
    background: var(--color-white);
    color: var(--text-main);
}

.gift-page main > .container,
.gift-page .gift-works-inner {
    padding-left: 0;
    padding-right: 0;
}

.gift-hero {
    position: relative;
    height: clamp(715px, 59.17vw, 852px);
    overflow: hidden;
    background: var(--color-white);
}

.gift-hero::before {
    content: '';
    display: none;
    padding-top: 59.17%;
}

@media (min-width: 1024px) {
    .gift-hero {
        min-height: 715px;
    }
}

.gift-hero img {
    position: absolute;
    top: 135px;
    left: 50%;
    width: 1440px;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
}

.gift-hero picture {
    display: contents;
}

.gift-intro {
    height: auto;
    overflow: hidden;
    background: var(--color-white);
    padding-top: 60px;
    padding-bottom: 160px;
}

.gift-intro-copy {
    width: 920px;
    margin: 0 auto;
    text-align: center;
}

.gift-intro-copy h1 {
    width: 100%;
    margin: 0 0 20px;
    padding-bottom: 4px;
    color: transparent;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ad6ee3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 72px;
    font-weight: 700;
    line-height: 80px;
}

.gift-intro-copy p {
    margin: 0;
    color: var(--text-main);
    font-size: 21px;
    font-weight: 500;
    line-height: 36px;
}

.gift-intro-copy .intro-emphasis {
    color: var(--text-main);
}

.gift-intro-copy .intro-muted {
    color: #888888;
}

.gift-deco-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: auto;
    max-width: none;
    margin-top: 0;
    margin-left: -130px;
    margin-right: -130px;
    pointer-events: none;
}

.gift-deco-card {
    display: block;
    flex: 0 0 calc((100% - 25px) / 2);
    width: calc((100% - 25px) / 2);
    min-width: 0;
    max-width: none;
    height: auto;
    opacity: 1;
    transform: translateY(0);
}

.gift-deco-card-left {
    aspect-ratio: 1644 / 1157;
}

.gift-deco-card-right {
    aspect-ratio: 1690 / 1583;
}

.gift-deco-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-deco-card-left {
    width: calc((100% - 25px) / 2);
}

.gift-deco-card-right {
    width: calc((100% - 25px) / 2);
    margin-top: 240px;
}

.gift-features {
    width: 1160px;
    max-width: 1160px;
}

.gift-features h2,
.gift-works h2,
.gift-scenarios h2,
.gift-business h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
}

.gift-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    gap: 40px;
    margin-top: 60px;
}

.gift-feature-image {
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-feature-image picture {
    display: block;
    width: 100%;
    aspect-ratio: 1;
}

.gift-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-feature-card h3 {
    margin: 0 14px 12px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.gift-feature-card p {
    margin: 0 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 21px;
}

.gift-works {
    margin-top: 160px;
    padding-top: 100px;
    background: var(--bg-light-gray);
}

.gift-works-inner {
    position: relative;
    width: 1160px;
    max-width: 1160px;
    aspect-ratio: 1160 / 680;
}

.gift-works-steps {
    position: absolute;
    top: 160px;
    left: 0;
    width: 420px;
}

.gift-works-mobile-desc {
    display: none;
}

.gift-works-progress {
    position: absolute;
    top: 554px;
    left: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 380px;
    height: 6px;
}

.gift-works-progress-bar {
    display: block;
    flex: 0 0 24px;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: #e5e5e5;
    transition: flex-basis 0.35s ease;
}

.gift-works-progress-bar span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left center;
}

.gift-works-progress-bar.is-complete span {
    transform: scaleX(1);
}

.gift-works-progress-bar.is-current span {
    animation: giftWorksProgress 6s linear both;
}

.gift-works-progress-bar.is-current {
    flex-basis: 120px;
}

.gift-works-progress-bar.is-pending span {
    transform: scaleX(0);
}

.gift-step {
    position: relative;
    width: 420px;
    min-height: 80px;
    margin-bottom: 24px;
    padding: 28px 56px 28px 28px;
    border: 0;
    border-radius: 2px;
    background: var(--color-white);
    color: var(--text-dark);
    font: inherit;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    appearance: none;
    transition: padding 0.35s ease, background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    user-select: text;
    -webkit-user-select: text;
}

.gift-step-active {
    padding-top: 26px;
    padding-bottom: 26px;
    color: var(--color-white);
    background: var(--primary-color);
}

.gift-step:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.gift-step h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.gift-step-copy {
    display: block;
}

.gift-step-desc {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-4px);
    overflow: hidden;
    transition: grid-template-rows 0.36s ease, margin-top 0.36s ease, opacity 0.24s ease, transform 0.36s ease;
}

.gift-step-active .gift-step-desc {
    margin-top: 14px;
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.gift-step-desc p {
    min-height: 0;
    margin: 0;
    font-size: 14px;
    line-height: 21px;
    overflow: hidden;
}

.gift-step-plus {
    position: absolute;
    top: 26px;
    right: 28px;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    background: rgba(68, 68, 68, 0.08);
    transition: background-color 0.35s ease;
}

.gift-step-active .gift-step-plus {
    background: rgba(255, 255, 255, 0.8);
}

.gift-step-plus::before,
.gift-step-plus::after {
    content: '';
    position: absolute;
    top: 13px;
    left: 9px;
    width: 10px;
    height: 2px;
    background: var(--text-subtle);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gift-step-active .gift-step-plus::before,
.gift-step-active .gift-step-plus::after {
    background: var(--primary-color);
}

.gift-step-plus::after {
    transform: rotate(90deg);
}

.gift-step-active .gift-step-plus::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
}

.gift-works-stage {
    position: absolute;
    inset: 0;
    --phone-width: 484px;
    --gift-step-two-scale: 1;
    --gift-step-two-key-size: calc(72px * var(--gift-step-two-scale));
    --gift-step-two-key-font-size: calc(21px * var(--gift-step-two-scale));
    --gift-step-two-key-line-height: calc(21px * var(--gift-step-two-scale));
    --gift-step-two-key-gap-x: calc(20px * var(--gift-step-two-scale));
    --gift-step-two-key-gap-y: calc(12px * var(--gift-step-two-scale));
    --dot-default: #d8d8d8;
    pointer-events: none;
    user-select: none;
}

.gift-works-phone-wrap {
    position: absolute;
    right: 15px;
    bottom: 0;
    width: var(--phone-width);
    height: 600px;
}

.gift-works-card {
    position: absolute;
    top: 26.33%;
    left: -16.74%;
    width: 90.91%;
    height: 46.33%;
    object-fit: contain;
    display: none;
    opacity: 0;
    transform: translateX(-13.64%);
    z-index: 0;
}

.gift-works-stage.gift-works-started .gift-works-card,
.gift-works-stage.gift-step-one-running .gift-works-card {
    display: block;
}

.gift-works-stage.gift-works-started .gift-works-card {
    opacity: 1;
    transform: translateX(0);
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-card {
    animation: giftStepOneCardIn 400ms cubic-bezier(0.16, 1, 0.3, 1) 800ms both;
}

.gift-works-phone {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-works-phone-screen {
    position: absolute;
    left: 15.7%;
    top: 9%;
    width: 69.21%;
    height: 91%;
    z-index: 2;
}

.gift-works-gradient-mask {
    position: absolute;
    left: 525px;
    bottom: 0;
    z-index: 4;
    width: 665px;
    height: 83px;
    background: linear-gradient(180deg, rgba(246, 246, 248, 0) 0%, var(--bg-page-gray) 100%);
    pointer-events: none;
}

.gift-works-step-logo {
    position: absolute;
    left: 36.12%;
    top: 36.63%;
    width: 27.46%;
    height: auto;
    opacity: 1;
}

.gift-works-stage.gift-works-started .gift-works-step-logo {
    opacity: 0;
}

.gift-works-stage[data-current-step="0"].gift-works-intro-running .gift-works-step-logo {
    animation: giftStepLogoOut 500ms ease forwards;
}

.gift-works-activate-badge {
    position: absolute;
    left: 32.24%;
    top: 23.81%;
    width: 35.82%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 200ms ease;
}

.gift-works-activate-icon {
    position: absolute;
    left: 31.67%;
    top: 27.5%;
    width: 35.83%;
    height: 45%;
    fill: var(--color-white);
    opacity: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.gift-works-check {
    position: absolute;
    left: 26.43%;
    top: 33.67%;
    width: 47.47%;
    height: 33.31%;
    overflow: visible;
    opacity: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.gift-works-check path {
    fill: none;
    stroke: var(--color-white);
    stroke-width: 8;
    stroke-linecap: butt;
    stroke-linejoin: miter;
    stroke-dasharray: 72;
    stroke-dashoffset: 72;
}

.gift-works-dots {
    position: absolute;
    left: 42.39%;
    top: 53.11%;
    width: 15.52%;
    height: 2.2%;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transform: translateZ(0);
}

.gift-works-dots span {
    width: 23.08%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--dot-default);
    will-change: background-color, opacity, transform;
}

.gift-works-step-two {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.gift-step-two-pins {
    position: absolute;
    left: 15.01%;
    top: 16.46%;
    width: 69.25%;
    height: 5.86%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gift-step-two-pin {
    width: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-step-two-pin span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
}

.gift-step-two-keypad {
    position: absolute;
    left: 11.43%;
    top: 29.1%;
    width: 76.42%;
    height: 59.34%;
    display: grid;
    grid-template-columns: repeat(3, var(--gift-step-two-key-size));
    grid-auto-rows: var(--gift-step-two-key-size);
    gap: var(--gift-step-two-key-gap-y) var(--gift-step-two-key-gap-x);
}

.gift-step-two-key {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: #444444;
    font-size: var(--gift-step-two-key-font-size);
    font-weight: 600;
    line-height: var(--gift-step-two-key-line-height);
}

.gift-step-two-key-zero {
    grid-column: 2;
}

.gift-works-step-three {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.gift-step-three-label,
.gift-step-three-amount,
.gift-step-three-action {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
}

.gift-step-three-label {
    left: 11.94%;
    top: 13.92%;
    margin: 0;
    color: #777777;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}

.gift-step-three-amount {
    left: 10.15%;
    top: 17.95%;
    margin: 0;
    color: #222222;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 88px;
    font-weight: 600;
    line-height: 105px;
}

.gift-step-three-amount span {
    color: rgba(67, 64, 223, 0.2);
    font-size: 0.64em;
}

.gift-step-three-action {
    left: 22.09%;
    top: 44.51%;
    width: 55.22%;
    height: 13.19%;
    border: 0;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--color-white);
    padding: 0;
    font: inherit;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    pointer-events: none;
}

.gift-step-three-action > span:last-child {
    position: absolute;
    left: 48.12%;
    top: 30.56%;
}

.gift-step-three-icon {
    position: absolute;
    left: 4.32%;
    top: 11.11%;
    width: 30.27%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-step-three-icon svg {
    width: 35.71%;
    height: 35.71%;
}

.gift-step-three-icon path {
    fill: currentColor;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-works-step-two {
    animation: giftStepTwoIn 500ms ease forwards;
}

.gift-works-stage[data-current-step="2"].gift-step-three-running .gift-works-step-three {
    opacity: 1;
}

.gift-works-stage[data-current-step="2"].gift-step-three-running .gift-step-three-label {
    animation: giftStepThreeItemIn 500ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gift-works-stage[data-current-step="2"].gift-step-three-running .gift-step-three-amount {
    animation: giftStepThreeItemIn 500ms cubic-bezier(0.16, 1, 0.3, 1) 100ms forwards;
}

.gift-works-stage[data-current-step="2"].gift-step-three-running .gift-step-three-action {
    animation: giftStepThreeItemIn 500ms cubic-bezier(0.16, 1, 0.3, 1) 200ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(1) span {
    animation:
        giftStepTwoPinInput 300ms ease 500ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(2) span {
    animation:
        giftStepTwoPinInput 300ms ease 1500ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(3) span {
    animation:
        giftStepTwoPinInput 300ms ease 1800ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(4) span {
    animation:
        giftStepTwoPinInput 300ms ease 2100ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(5) span {
    animation:
        giftStepTwoPinInput 300ms ease 2400ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(6) span {
    animation:
        giftStepTwoPinInput 300ms ease 2700ms forwards,
        giftStepTwoPinComplete 300ms ease 3500ms forwards;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin {
    animation: giftStepTwoPinWave 900ms ease-in-out 3800ms infinite;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(2) {
    animation-delay: 3900ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(3) {
    animation-delay: 4000ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(4) {
    animation-delay: 4100ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(5) {
    animation-delay: 4200ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-pin:nth-child(6) {
    animation-delay: 4300ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="1"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 500ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="2"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 1500ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="3"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 1800ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="5"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 2100ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="8"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 2400ms;
}

.gift-works-stage[data-current-step="1"].gift-step-two-running .gift-step-two-key[data-key="0"] {
    animation: giftStepTwoKeyPress 300ms steps(1, end) 2700ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-activate-badge {
    animation: giftStepOneScreenIn 1000ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-activate-badge {
    animation-delay: 1000ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-activate-badge {
    animation:
        giftStepOneScreenIn 1000ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards,
        giftStepOneBadgeComplete 200ms ease 3300ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-activate-badge {
    animation-delay: 1000ms, 3800ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-activate-icon {
    animation: giftStepOneIconOut 200ms ease 3300ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-activate-icon {
    animation-delay: 3800ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-dots {
    animation: giftStepOneDotsIn 1000ms cubic-bezier(0.22, 1, 0.36, 1) 500ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-dots {
    animation-delay: 1000ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-check {
    animation: giftStepOneCheckIn 500ms cubic-bezier(0.16, 1, 0.3, 1) 3500ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-check {
    animation-delay: 4000ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-check path {
    animation: giftStepOneCheckDraw 500ms cubic-bezier(0.16, 1, 0.3, 1) 3500ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-check path {
    animation-delay: 4000ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-dots span:nth-child(1) {
    animation:
        giftStepDotOne 1.2s steps(1, end) 1000ms infinite,
        giftStepOneDotsOut 500ms cubic-bezier(0.22, 1, 0.36, 1) 3300ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-dots span:nth-child(1) {
    animation-delay: 1500ms, 3800ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-dots span:nth-child(2) {
    animation:
        giftStepDotTwo 1.2s steps(1, end) 1000ms infinite,
        giftStepOneDotsOut 500ms cubic-bezier(0.22, 1, 0.36, 1) 3300ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-dots span:nth-child(2) {
    animation-delay: 1500ms, 3800ms;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running .gift-works-dots span:nth-child(3) {
    animation:
        giftStepDotThree 1.2s steps(1, end) 1000ms infinite,
        giftStepOneDotsOut 500ms cubic-bezier(0.22, 1, 0.36, 1) 3300ms forwards;
}

.gift-works-stage[data-current-step="0"].gift-step-one-running.gift-works-intro-running .gift-works-dots span:nth-child(3) {
    animation-delay: 1500ms, 3800ms;
}

@keyframes giftStepOneCardIn {
    0% {
        opacity: 0;
        transform: translateX(-13.64%);
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes giftWorksProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes giftStepOneScreenIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes giftStepTwoIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes giftStepTwoPinInput {
    from {
        width: var(--gift-step-two-pin-size, 12px);
        height: var(--gift-step-two-pin-size, 12px);
        background: rgba(0, 0, 0, 0.2);
    }

    to {
        width: var(--gift-step-two-pin-size, 12px);
        height: var(--gift-step-two-pin-active-height, 24px);
        background: var(--primary-color);
    }
}

@keyframes giftStepTwoPinComplete {
    from {
        width: var(--gift-step-two-pin-size, 12px);
        height: var(--gift-step-two-pin-active-height, 24px);
        background: var(--primary-color);
    }

    to {
        width: var(--gift-step-two-pin-size, 12px);
        height: var(--gift-step-two-pin-size, 12px);
        background: var(--primary-color);
    }
}

@keyframes giftStepTwoPinWave {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(var(--gift-step-two-pin-wave-y, -12px));
    }
}

@keyframes giftStepTwoKeyPress {
    0%,
    99% {
        background: var(--primary-color);
        color: var(--color-white);
    }

    100% {
        background: rgba(0, 0, 0, 0.04);
        color: #444444;
    }
}

@keyframes giftStepThreeItemIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes giftStepLogoOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes giftStepOneBadgeComplete {
    from {
        background: var(--primary-color);
    }

    to {
        background: var(--success-color);
    }
}

@keyframes giftStepOneIconOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes giftStepOneDotsOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(250%);
    }
}

@keyframes giftStepOneDotsIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes giftStepOneCheckIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes giftStepOneCheckDraw {
    from {
        stroke-dashoffset: 72;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes giftStepDotOne {
    0%,
    33.32% {
        background-color: var(--primary-color);
    }

    33.33%,
    100% {
        background-color: var(--dot-default);
    }
}

@keyframes giftStepDotTwo {
    0%,
    33.32% {
        background-color: var(--dot-default);
    }

    33.33%,
    66.65% {
        background-color: var(--primary-color);
    }

    66.66%,
    100% {
        background-color: var(--dot-default);
    }
}

@keyframes giftStepDotThree {
    0%,
    66.65% {
        background-color: var(--dot-default);
    }

    66.66%,
    100% {
        background-color: var(--primary-color);
    }
}

.gift-scenarios {
    width: 1160px;
    max-width: 1160px;
    margin-top: 180px;
}

.gift-section-label {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 40px;
    margin-top: 80px;
}

.scenario-card {
    width: 260px;
}

.scenario-card picture {
    display: block;
    width: 260px;
    height: 436px;
}

.scenario-card img {
    width: 260px;
    height: 436px;
    object-fit: cover;
}

.scenario-card h3 {
    margin: 20px 0 10px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.scenario-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 21px;
}

.scenario-social {
    margin-top: 0;
}

.scenario-cross {
    margin-top: 80px;
}

.scenario-business {
    margin-top: 0;
}

.scenario-daily {
    margin-top: 80px;
}

.gift-business {
    width: 1160px;
    max-width: 1160px;
    margin-top: 160px;
}

.gift-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 540px);
    gap: 80px;
    margin-top: 60px;
}

.gift-business-card img {
    width: 540px;
    height: 300px;
    object-fit: cover;
}

.gift-business-card picture {
    display: block;
    width: 540px;
    height: 300px;
}

.gift-business-card h3 {
    margin: 30px 0 10px;
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.gift-business-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 21px;
}

@media (min-width: 1024px) {
    .gift-feature-card p,
    .scenario-card p,
    .gift-business-card p {
        font-size: 15px;
        line-height: 22px;
    }
}

.gift-page .footer {
    margin-top: 200px;
}

@media (max-width: 1023px) {
    .gift-hero,
    .gift-intro,
    .gift-features,
    .gift-works,
    .gift-scenarios,
    .gift-business {
        min-width: 0;
    }

    .gift-hero {
        height: auto;
        margin-top: 80px;
    }

    .gift-hero::before {
        display: block;
        padding-top: 112%;
    }

    .gift-hero img {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-width: 100%;
        transform: none;
    }

    .gift-intro {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .gift-intro-copy {
        width: 100%;
        margin: 0;
        padding: 0 30px;
        text-align: left;
    }

    .gift-intro-copy h1 {
        margin-bottom: 16px;
        font-size: 40px;
        line-height: 44px;
    }

    .gift-intro-copy p {
        font-size: 15px;
        line-height: 24px;
    }

    .gift-deco-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-top: 40px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .gift-deco-card,
    .gift-deco-card-left,
    .gift-deco-card-right {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .gift-deco-card-left {
        width: 88.267vw;
        margin-left: -16.533vw;
    }

    .gift-deco-card-right {
        width: 90.133vw;
        margin-top: 0;
        margin-left: 37.867vw;
    }

    .gift-feature-grid,
    .gift-business-grid {
        grid-template-columns: 1fr;
    }

    .gift-page main > .gift-features,
    .gift-page main > .gift-business {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .gift-features h2,
    .gift-works h2,
    .gift-scenarios h2,
    .gift-business h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .gift-section-label {
        margin-bottom: 6px;
        font-size: 18px;
        line-height: 21px;
    }

    .gift-feature-grid {
        gap: 60px;
        margin-top: 40px;
    }

    .gift-feature-image {
        height: auto;
        aspect-ratio: 1;
        margin-bottom: 30px;
        border-radius: 0;
    }

    .gift-feature-card h3,
    .gift-feature-card p {
        margin-left: 0;
        margin-right: 0;
    }

    .gift-works {
        margin-top: 100px;
        padding-top: 0;
        overflow: hidden;
        background: var(--bg-light-gray);
    }

    .gift-works-inner {
        width: 100%;
        max-width: none;
        height: calc(374px + min(600px, 123.967vw));
        aspect-ratio: auto;
    }

    .gift-works-inner::before,
    .gift-works-inner::after {
        content: '';
        position: absolute;
        top: 214px;
        z-index: 2;
        width: 30px;
        height: 54px;
        pointer-events: none;
    }

    .gift-works-inner::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg-light-gray) 0%, rgba(246, 246, 248, 0) 100%);
    }

    .gift-works-inner::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg-light-gray) 0%, rgba(246, 246, 248, 0) 100%);
    }

    .gift-works h2 {
        position: absolute;
        top: 100px;
        left: 30px;
        right: 30px;
        width: auto;
        font-size: 32px;
        line-height: 40px;
    }

    .gift-works-steps {
        position: absolute;
        top: 214px;
        left: 0;
        right: 0;
        width: auto;
        display: flex;
        gap: 32px;
        overflow-x: auto;
        overflow-y: visible;
        padding: 0 180px 100px 30px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .gift-works-steps::-webkit-scrollbar {
        display: none;
    }

    .gift-step {
        position: static;
        flex: 0 0 auto;
        width: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        color: var(--text-muted);
        overflow: visible;
        transition: color 0.2s ease;
    }

    .gift-step-active {
        background: transparent;
        color: var(--primary-color);
    }

    .gift-step h3 {
        position: relative;
        font-size: 20px;
        line-height: 24px;
        white-space: nowrap;
    }

    .gift-step-active h3::before,
    .gift-step-active h3::after {
        content: '';
        position: absolute;
        left: 0;
        top: 30px;
        height: 2px;
        border-radius: 999px;
        transform-origin: left center;
    }

    .gift-step-active h3::before {
        width: 100%;
        background: #dddddd;
    }

    .gift-step-active h3::after {
        width: 100%;
        background: var(--primary-color);
        transform: scaleX(0);
    }

    .gift-works.gift-works-has-started .gift-step-active.gift-step-progress-running h3::after {
        animation: giftMobileStepProgress 6s linear both;
    }

    .gift-step-desc {
        display: none;
    }

    .gift-step-active .gift-step-desc {
        display: none;
    }

    .gift-works-mobile-desc {
        position: absolute;
        left: 30px;
        right: 30px;
        top: 266px;
        display: block;
        width: auto;
        min-height: 84px;
        margin: 0;
        color: var(--text-main);
        font-size: 14px;
        line-height: 21px;
    }

    .gift-works-progress {
        display: none;
    }

    .gift-works-mobile-desc p {
        margin: 0;
    }

    .gift-step-plus {
        display: none;
    }

    .gift-works-stage {
        inset: auto;
        top: 359px;
        left: 0;
        width: 100%;
        height: min(600px, 123.967vw);
        --phone-width: min(100%, 484px);
        --gift-step-two-key-size: min(72px, 14.876vw);
        --gift-step-two-key-font-size: min(21px, 4.339vw);
        --gift-step-two-key-line-height: min(21px, 4.339vw);
        --gift-step-two-key-gap-x: min(20px, 4.132vw);
        --gift-step-two-key-gap-y: min(12px, 2.479vw);
        --gift-step-two-pin-size: min(12px, 2.479vw);
        --gift-step-two-pin-height: min(32px, 6.612vw);
        --gift-step-two-pin-active-height: min(24px, 4.959vw);
        --gift-step-two-pin-wave-y: max(-12px, -2.479vw);
        overflow: visible;
        pointer-events: auto;
        touch-action: pan-y;
    }

    .gift-works-phone-wrap {
        top: 0;
        right: auto;
        bottom: auto;
        left: 50%;
        width: var(--phone-width);
        height: min(600px, 123.967vw);
        transform: translateX(-50%);
    }

    .gift-works-gradient-mask {
        left: 0;
        bottom: 0;
        width: 100%;
        height: min(83px, 17.149vw);
    }

    .gift-step-two-pin {
        width: var(--gift-step-two-pin-size);
        height: var(--gift-step-two-pin-height);
    }

    .gift-step-two-pin span {
        width: var(--gift-step-two-pin-size);
        height: var(--gift-step-two-pin-size);
    }

    .gift-step-three-label {
        font-size: min(15px, 3.099vw);
        line-height: min(18px, 3.719vw);
    }

    .gift-step-three-amount {
        font-size: min(88px, 18.182vw);
        line-height: min(105px, 21.694vw);
    }

    .gift-step-three-action {
        font-size: min(22px, 4.545vw);
        line-height: min(26px, 5.372vw);
    }

    @keyframes giftMobileStepProgress {
        from {
            transform: scaleX(0);
        }

        to {
            transform: scaleX(1);
        }
    }

    .gift-page main > .gift-scenarios {
        position: relative;
        width: 100%;
        max-width: none;
        margin-top: 160px;
        padding-left: 30px;
        padding-right: 30px;
        overflow: hidden;
    }

    .gift-scenarios .gift-section-label,
    .gift-scenarios h2 {
        margin-left: 0;
        margin-right: 0;
    }

    .scenario-grid {
        display: flex;
        grid-template-columns: none;
        gap: 40px;
        width: calc(100% + 60px);
        margin: 40px -30px 0;
        padding-left: 30px;
        padding-right: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .scenario-grid::-webkit-scrollbar {
        display: none;
    }

    .scenario-card {
        flex: 0 0 260px;
        width: 260px;
        margin-top: 0;
    }

    .scenario-card img {
        width: 260px;
        height: 436px;
    }

    .gift-scenarios::before,
    .gift-scenarios::after {
        content: '';
        position: absolute;
        top: 107px;
        z-index: 2;
        width: 30px;
        height: 436px;
        pointer-events: none;
    }

    .gift-scenarios::before {
        left: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .gift-scenarios::after {
        right: 0;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .gift-business {
        margin-top: 160px;
    }

    .gift-page .footer {
        margin-top: 258px;
    }

    .gift-business-grid {
        gap: 60px;
        margin-top: 40px;
    }

    .gift-business-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 315 / 175;
        object-fit: contain;
    }

    .gift-business-card picture {
        width: 100%;
        height: auto;
        aspect-ratio: 315 / 175;
    }

    .gift-business-card h3 {
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .gift-hero {
        height: auto;
        margin-top: 0;
        min-height: 0;
    }

    .gift-hero::before {
        display: block;
        padding-top: 59.17%;
    }

    .gift-hero img {
        top: clamp(72px, 9.38vw, 96px);
        left: 50%;
        width: 100vw;
        max-width: none;
        transform: translateX(-50%);
    }

    .gift-intro {
        padding-top: 60px;
        padding-bottom: 140px;
    }

    .gift-intro-copy {
        width: 80%;
        max-width: 760px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }

    .gift-intro-copy h1 {
        margin-bottom: 20px;
        font-size: 48px;
        line-height: 56px;
    }

    .gift-intro-copy p {
        font-size: 17px;
        line-height: 28px;
    }

    .gift-deco-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        width: calc(100% + 160px);
        margin-top: 40px;
        margin-left: -80px;
        margin-right: -80px;
    }

    .gift-deco-card,
    .gift-deco-card-left,
    .gift-deco-card-right {
        flex: 0 0 calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
        max-width: none;
    }

    .gift-deco-card-left {
        margin-left: 0;
    }

    .gift-deco-card-right {
        margin-top: 18vw;
        margin-left: 0;
    }

    .gift-page main > .gift-features,
    .gift-page main > .gift-business {
        width: calc(100% - 60px);
        max-width: 900px;
        padding-left: 0;
        padding-right: 0;
    }

    .gift-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        margin-top: 50px;
    }

    .gift-feature-image {
        aspect-ratio: 1;
        margin-bottom: 24px;
        border-radius: 16px;
    }

    .gift-feature-card h3 {
        margin-left: 0;
        margin-right: 0;
    }

    .gift-feature-card p {
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
        line-height: 21px;
    }

    .gift-business-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .gift-business-card img {
        width: 100%;
        height: 100%;
        aspect-ratio: 540 / 300;
        object-fit: cover;
    }

    .gift-business-card picture {
        width: 100%;
        height: auto;
        aspect-ratio: 540 / 300;
    }

    .gift-business-card h3 {
        margin-top: 24px;
    }

    .gift-business-card p {
        font-size: 14px;
        line-height: 21px;
    }
}
