/* ================================================================
   marketing.css — wishtag 앱 소개 랜딩 페이지 전용 스타일
   prefix: .mk- (마케팅 레이아웃), .sc- (폰 스크린 내부)
================================================================ */

:root {
    --bg: #fff;
    --bg_gr: #f1f1f1;

    --card: #FFF;
    --pr: #FF4D2E;
    --pr_bg: #fff1ef;
    --pl: #FFF0ED;
    --tx: #191919;
    --ts: #8A8A8A;
    --bd: #EBEBEB;
    --tbg: #F0EDE8;
    --green: #00C471;
    --gl: #E6FAF2;
    --blue: #3B82F6;
    --bl: #EFF6FF;

    --black: #0b0b0b;
}

/* ── 기본 리셋 ── */
.mk-body {
    background: #0D0D0D;
    color: #fff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.mk-body * { box-sizing: border-box; }

/* ── 헤더 ── */
.mk-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(13,13,13,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mk-header-logo { height: 36px; }
.mk-header-link {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color .2s;
}
.mk-header-link:hover { color: #fff; }

/* ── 히어로 ── */
.mk-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 60px 60px;
    position: relative;
    overflow: hidden;
}
.mk-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,77,46,.18) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-55%, -50%);
    pointer-events: none;
}

.mk-hero-content {
    flex: 1;
    max-width: 520px;
}
.mk-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pr);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mk-label::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pr);
    animation: mkPulse 2s ease-in-out infinite;
}
@keyframes mkPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.mk-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0em;
    margin-bottom: 12px;
    color: #fff;
}
.mk-hl {
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(135deg, #FF4D2E, #ff8a70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.4;
}
.mk-hero-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin-bottom: 40px;
}
@media(max-width:420px) {
    .mk-hero-desc{font-size: 14px;}
    .mk-hero-desc .mob{
        display: none;
    }
}
.mk-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mk-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--pr);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(255,77,46,.2);
}
.mk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,77,46,.3);
}
.mk-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
}
.mk-btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ── 폰 프레임 ── */
.mk-phone-wrap {
    flex-shrink: 0;
    position: relative;
}
.mk-phone-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(255,77,46,.2) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}
.mk-phone {
    width: 264px;
    height: 540px;
    background: #1C1C1E;
    border-radius: 50px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 0 0 8px rgba(255,255,255,.03),
        0 40px 80px rgba(0,0,0,.7),
        inset 0 1px 0 rgba(255,255,255,.12);
    position: relative;
}
.mk-phone-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    color: #191919;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    -webkit-clip-path: inset(0 round 42px);
    clip-path: inset(0 round 42px);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}
/* 다이나믹 아일랜드 */
.mk-phone-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 20px;
    background: #1C1C1E;
    border-radius: 20px;
    z-index: 30;
}

/* ── 스크린 씬 공통 ── */
.mk-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    overflow: hidden;
}
.mk-scene.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── 씬 0: 나의 태그 빈 상태 ── */
.sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 14px 10px;
    background: #fff;
}
.sc-logo-img { height: 18px; }
.sc-hbtns { display: flex; gap: 8px; }
.sc-hbtn {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #f0ede8;
}

.sc-ubox {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
}
.sc-input {
    flex: 1;
    height: 36px;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 11px;
    color: #191919;
    background: #fff;
    outline: none;
    font-family: inherit;
}
.sc-input.typing { color: #191919; }
@keyframes sc-input-paste {
    from { opacity: 0; transform: translateY(3px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sc-input.paste-in {
    animation: sc-input-paste 0.28s ease forwards;
}
.sc-tag-btn {
    height: 36px;
    padding: 0 12px;
    background: var(--pr);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: inherit;
    cursor: default;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.sc-tag-ripple {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.4);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}
#scene-2.active .sc-tag-ripple {
    animation: scTagTap .55s ease-out 1.2s forwards;
}
@keyframes scTagTap {
    0%   { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* 태그 버튼 터치 닷 */
.sc-tap-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,.18);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
    opacity: 0;
}
#scene-2.active .sc-tap-dot {
    animation: scTapDot 0.75s ease 0.95s forwards;
}
@keyframes scTapDot {
    0%   { opacity: 0;   transform: translate(-50%, -50%) scale(1); }
    12%  { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
    45%  { opacity: 1;   transform: translate(-50%, -50%) scale(.78); }
    75%  { opacity: 1;   transform: translate(-50%, -50%) scale(.78); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(1); }
}

.sc-chips {
    display: flex;
    gap: 6px;
    padding: 4px 12px 8px;
    overflow-x: auto;
    scrollbar-width: none;
}
.sc-chip {
    height: 26px;
    padding: 0 10px;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    font-size: 10px;
    color: #8A8A8A;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.sc-chip.on {
    background: var(--pr);
    border-color: var(--pr);
    color: #fff;
    font-weight: 700;
}

.sc-stitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px 8px;
}
.sc-stl { font-size: 12px; font-weight: 700; color: #191919; }
.sc-smore { font-size: 10px; color: #8A8A8A; }

.sc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 40px;
}
.sc-empty-ico { width: 48px; height: 48px; opacity: .8; }
.sc-empty-title { font-size: 12px; font-weight: 600; color: #191919; }
.sc-empty-desc { font-size: 10px; color: #8A8A8A; text-align: center; line-height: 1.5; }

/* ── 씬 2: 스캔 ── */
.sc-webview-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sc-webview-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(.45) blur(1px);
}
.sc-scan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.sc-scan-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -58%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.sc-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mkSpin 1s linear infinite;
}
@keyframes mkSpin { to { transform: rotate(360deg); } }
.sc-scan-label {
    font-size: 11px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    text-align: center;
}

/* 바텀시트 (스캔) */
.sc-sheet {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.15);
}
.sc-sheet-handle {
    width: 32px; height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin: 0 auto 12px;
}
.sc-build-preview {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.sc-build-thumb {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: #F0EDE8;
    flex-shrink: 0;
    overflow: hidden;
}
.sc-build-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sc-build-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sc-build-bar {
    height: 8px;
    border-radius: 4px;
    background: #e8e8e8;
    transform-origin: left;
}
.sc-build-bar.long { width: 90%; }
.sc-build-bar.mid  { width: 65%; }
.sc-build-bar.short { width: 45%; }

/* 스캔바 애니메이션 (active 씬에서만 실행) */
.mk-scene.active .sc-bar-ani { animation: mkBarGrow .5s cubic-bezier(.34,1.2,.64,1) forwards; }
.sc-bar-1 { animation-delay: .3s !important; }
.sc-bar-2 { animation-delay: .8s !important; }
.sc-bar-3 { animation-delay: 1.3s !important; }
@keyframes mkBarGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.sc-build-status {
    font-size: 10px;
    color: #8A8A8A;
    text-align: center;
    padding-top: 4px;
}

/* ── 씬 3: 확인 모달 ── */
.sc-confirm-sheet {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 16px;
}
.sc-confirm-label {
    font-size: 12px;
    font-weight: 500;
    color: #191919;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.5;
}
.sc-confirm-btns {
    display: flex;
    gap: 8px;
}
.sc-confirm-btns button {
    flex: 1;
    height: 40px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    cursor: default;
}
.sc-btn-no { background: #f5f5f5; color: #191919; }
.sc-btn-yes { background: var(--pr); color: #fff; }

/* ── 씬 4: 카드 목록 ── */
.sc-card-list { padding: 0 12px; }

/* ── 씬 5: row-wrap 스와이프 영역 ── */
.sc-row-wrap {
    position: relative;
    height: 34px;
    overflow: hidden;
    border-top: 1px solid #F0F0F0;
}
.sc-row-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 0;
    overflow: hidden;
    display: flex;
}
.sc-ra-buy {
    min-width: 100px;
    background: var(--green, #00C471);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
    overflow: hidden;
}
.sc-ra-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
    opacity: 0;
}
#scene-5.active .sc-card.show .sc-ra-dot {
    animation: scTapDot 0.75s ease 1.9s forwards;
}
.sc-ra-ico { width: 16px; height: 16px; display: block; flex-shrink: 0; }
.sc-ra-txt { font-size: 8px; font-weight: 700; color: #fff; white-space: nowrap; }
.sc-row-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background: #fafafa;
    z-index: 1;
}
.sc-row-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.sc-chevrons {
    display: flex;
    gap: 0;
    opacity: 0.25;
    font-size: 10px;
    color: #888;
    letter-spacing: -2px;
}

/* row-slide 슬라이드 애니메이션 */
#scene-5.active .sc-card.show .sc-row-slide {
    animation: scRowSlide 1.3s cubic-bezier(.25,.46,.45,.94) 0.7s forwards;
}
#scene-5.active .sc-card.show .sc-row-bg {
    animation: scRowBg 1.3s cubic-bezier(.25,.46,.45,.94) 0.7s forwards;
}
@keyframes scRowSlide {
    0%   { transform: translateX(0); }
    55%  { transform: translateX(-104px); }
    100% { transform: translateX(-100px); }
}
@keyframes scRowBg {
    0%   { width: 0; }
    55%  { width: 104px; }
    100% { width: 100px; }
}

/* 터치 인디케이터 */
.sc-touch-dot {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,.18);
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}
#scene-5.active .sc-card.show .sc-touch-dot {
    animation: scTouchDot 1.5s ease 0.55s forwards;
}
@keyframes scTouchDot {
    0%   { opacity: 0;   transform: translateY(-50%) translateX(0); }
    10%  { opacity: 1;   transform: translateY(-50%) translateX(0); }
    70%  { opacity: .8;  transform: translateY(-50%) translateX(-96px); }
    90%  { opacity: 0;   transform: translateY(-50%) translateX(-96px); }
    100% { opacity: 0;   transform: translateY(-50%) translateX(-96px); }
}

.sc-card {
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
    opacity: 0;
    transform: scale(.96) translateY(6px);
    transition: opacity .4s ease, transform .4s ease;
}
.sc-card.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.sc-card-top {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: flex-start;
}
.sc-card-thumb {
    width: 52px; height: 52px;
    border-radius: 10px;
    object-fit: cover;
    background: #F0EDE8;
    flex-shrink: 0;
}
.sc-card-info { flex: 1; }
.sc-card-name {
    font-size: 10px;
    font-weight: 400;
    color: #191919;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}
.sc-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-top: 1px solid #EBEBEB;
    background: #fafafa;
}
.sc-card-shop { font-size: 10px; color: #8A8A8A; }
.sc-card-price { font-size: 12px; font-weight: 700; color: var(--pr); }

/* ── 씬 5: 나의 쇼핑 ── */
.sc-summary {
    display: flex;
    gap: 6px;
    padding: 6px 12px 8px;
}
.sc-sum-left {
    flex: 1;
    background: #fff1ef;
    border-radius: 12px;
    padding: 10px;
}
.sc-sum-tit { font-size: 9px; color: #8A8A8A; margin-bottom: 4px; }
.sc-sum-val { font-size: 14px; font-weight: 800; color: var(--pr); }
.sc-sum-btn {
    margin-top: 30px;
    width: 100%;
    height: 22px;
    color: var(--pr);
    border: 1px solid var(--pr);
    background-color: #fff;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    font-family: inherit;
    cursor: default;
}
.sc-sum-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.sc-sum-box {
    flex: 1;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 8px 10px;
}
.sc-sum-box .sc-sum-val { font-size: 12px; color: #191919; }

.sc-tabs {
    display: flex;
    border-bottom: 1px solid #EBEBEB;
    margin: 0 12px 8px;
}
.sc-tab {
    flex: 1;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8A8A8A;
}
.sc-tab.on {
    color: #191919;
    font-weight: 700;
    border-bottom: 2px solid #191919;
}

.sc-tl-group {
    padding: 0 12px;
}
.sc-tl-date { font-size: 9px; color: #8A8A8A; margin-bottom: 6px; font-weight: 600; }
.sc-tl-item {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
}
.sc-tl-item.show { opacity: 1; transform: translateY(0); }
.sc-tl-left { display: flex; flex-direction: column; align-items: center; }
.sc-tl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--pr);
    flex-shrink: 0;
    margin-top: 2px;
}
.sc-tl-line { flex: 1; width: 1px; background: #EBEBEB; margin: 3px 0; }
.sc-tl-card {
    flex: 1;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    padding: 8px 10px;
}
.sc-tl-shop { font-size: 9px; color: #8A8A8A; margin-bottom: 4px; }
.sc-tl-price { font-size: 12px; font-weight: 700; color: #191919; margin-bottom: 4px; }
.sc-tl-name {
    font-size: 10px;
    color: #191919;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sc-tl-thumb {
    width: 100%;
    margin-top: 6px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
}
.sc-tl-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── 씬 진행 도트 ── */
.mk-scene-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}
.mk-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: background .3s, width .3s;
}
.mk-dot.active {
    background: rgba(255,255,255,.85);
    width: 16px;
    border-radius: 3px;
}

/* ── 섹션 공통 ── */
.mk-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.mk-section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--pr);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.mk-section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px;
}
.mk-section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    max-width: 480px;
}

/* ── 피처 행 (스텝) ── */
.mk-how { padding: 0 60px 80px; }
.mk-how-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin-top: 48px;
    margin-bottom: 16px;

}
.mk-how-sub{
    font-size: 14px;
    text-align: center;
    font-weight: 300;
    color: #adadad;
    margin-bottom: 48px;
}

.mk-steps-wrap {
    display: flex;
    gap: 30px;
    position: relative;
    justify-content: center;
}
.mk-steps-wrap::before {
    content: '';
    position: absolute;
    top: 20px; left: calc(50% - 264px/2);
    right: 0;
    display: none;
}

.mk-steps-phone {
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 340px;
}

.mk-steps-list {
    /* padding: 40px 0 40px 60px; */
    padding: 0;
}

.mk-step {
    min-height: 200px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity .4s;
    opacity: .3;
    cursor: pointer;
}
.mk-step.active { opacity: 1; }
.mk-step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--pr);
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.mk-step-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    line-height: 1.3;
    word-break: keep-all
}
.mk-step-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.5);
    word-break: keep-all;
}

/* ── 피처 그리드 ── */
.mk-features {
    padding: 0 60px 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.mk-features-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 40px;
}
.mk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.mk-grid-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    padding: 28px 24px;
    transition: background .3s;
}
.mk-grid-item:hover { background: rgba(255,255,255,.07); }
.mk-grid-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,77,46,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.mk-grid-ico svg { width: 22px; height: 22px; }
.mk-grid-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.mk-grid-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.45);
    word-break: keep-all;
}

/* ── CTA ── */
.mk-cta {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mk-cta::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,77,46,.2) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.mk-cta-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--pr);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.mk-cta-title {
    font-size: 42px;
    font-weight: 800;
    /* letter-spacing: -.03em; */
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: 0.3s;
}
.mk-cta-title span{
    font-size: 32px;
}
@media(max-width:470px){
    .mk-cta-title{
        font-size: 26px;
    }
    .mob{
        display: none;
        font-size: 15px;
    }
    .mk-cta-title span{
        font-size: 22px;
    }
    .mk-cta-desc{
        font-size: 14px !important;
    }
}
.mk-cta-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-bottom: 40px;
}
.mk-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.mk-btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s;
}
.mk-btn-store:hover { transform: translateY(-2px); }
.mk-btn-store.ios {
    background: #fff;
    color: #191919;
}
.mk-btn-store.android {
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
}
.mk-btn-store svg { width: 20px; height: 20px; }

/* ── 씬 0(신): 가상 쇼핑몰 상품 페이지 ── */
.sc-product-page {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.sc-browser-bar {
    display: flex;
    align-items: center;
    padding: 50px 10px 8px;
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
}
.sc-browser-url {
    flex: 1;
    height: 22px;
    background: #e8e8e8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 9px;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.sc-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}
.sc-product-info {
    padding: 10px 12px;
}
.sc-product-name {
    font-size: 10px;
    font-weight: 600;
    color: #191919;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sc-product-price {
    font-size: 14px;
    font-weight: 800;
    color: #191919;
}
.sc-share-row {
    position: absolute;
    bottom: 190px;
    right: 14px;
    z-index: 5;
}
.sc-share-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sc-share-btn svg { width: 18px; height: 18px; }
.sc-share-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,77,46,.38);
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
}
.mk-scene.active .sc-share-ripple {
    animation: scShareRipple 0.9s ease-out 1.4s forwards;
}
@keyframes scShareRipple {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* ── 씬 1(신): iOS 공유시트 ── */
.sc-ios-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sc-ios-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.45);
}
.sc-share-sheet {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(248,248,248,.97);
    border-radius: 16px 16px 0 0;
    padding: 14px 0 28px;
}
.sc-share-title {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-align: center;
    margin-bottom: 16px;
}
.sc-app-icons {
    display: flex;
    gap: 14px;
    padding: 0 18px;
    justify-content: center;
}
.sc-app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.sc-app-icon-img {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    overflow: hidden;
}
.sc-app-icon-label {
    font-size: 9px;
    color: #444;
    font-weight: 500;
    text-align: center;
}
.sc-app-icon.wishtag .sc-app-icon-img {
    background: #FF4D2E;
}
.sc-app-icon.wishtag .sc-app-icon-img img {
    width: 100%; height: 100%;
}
.mk-scene.active .sc-app-icon.wishtag .sc-app-icon-img {
    animation: scIconTap 0.45s ease 1.8s forwards;
}
@keyframes scIconTap {
    0%   { transform: scale(1); }
    45%  { transform: scale(0.82); box-shadow: 0 0 0 6px rgba(255,77,46,.22); }
    75%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* ── 구분선 ── */
.mk-divider {
    height: 1px;
    background: rgba(255,255,255,.06);
    margin: 0 60px;
}

/* ── 풋터 ── */
.mk-footer {
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mk-footer-logo { height: 20px; opacity: .4; }
.mk-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── 반응형 ── */
@media (max-width: 900px) {
    .mk-hero {
        flex-direction: column;
        padding: 100px 32px 60px;
        gap: 48px;
        text-align: left;
    }
    .mk-hero::before { left: 50%; }
    .mk-hero-content { max-width: 100%; }
    .mk-headline { font-size: 36px; }
    .mk-hero-btns { justify-content: center; }
    .mk-steps-wrap { flex-direction: column; }
    .mk-steps-phone {
        position: relative; top: auto; height: auto; width: 100%;
        display: none;
        }
    .mk-steps-list { padding: 24px 0 0; max-width: 500px; margin: 0 auto;}
    .mk-step { opacity: 1; }
    .mk-how { padding: 44px 32px 28px 32px; }
    .mk-section { padding: 60px 32px; }
    .mk-features { padding: 0 32px 60px; }
    .mk-grid { grid-template-columns: 1fr 1fr; }
    .mk-cta { padding: 60px 32px; }
    .mk-divider { margin: 0 32px; }
    .mk-footer { padding: 32px; flex-direction: column; gap: 12px; text-align: center; }
    .mk-header { padding: 0 24px; }
    .mk-how-sub{ display: none; }
    .mk-hl { font-size: 22px; }
}
@media (max-width: 560px) {
    .mk-headline { font-size: 28px; }
    .mk-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   marketing_v2.css — wishtag 앱 모바일 자동 슬라이드 소개 랜딩 페이지
   prefix: .mkv2-
================================================================ */

.mkv2-body {
    background: #0D0D0D;
    color: #fff;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0; padding: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden; 
    -webkit-font-smoothing: antialiased;
}

.mkv2-container {
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    background: #111;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mkv2-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.mkv2-logo { height: 20px; }

/* 캐러셀 래퍼 (상단 텍스트 영역) */
.mkv2-swiper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
}

.mkv2-slide {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    padding: 90px 20px 0;
    text-align: center;
}

.mkv2-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

/* 텍스트 애니메이션 */
.mkv2-slide .mkv2-label,
.mkv2-slide .mkv2-title,
.mkv2-slide .mkv2-desc,
.mkv2-slide .mkv2-cta-btns,
.mkv2-slide .mkv2-cta-top {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.mkv2-slide.active .mkv2-label { transition-delay: 0.1s; transform: translateY(0); opacity: 1; }
.mkv2-slide.active .mkv2-title,
.mkv2-slide.active .mkv2-cta-top { transition-delay: 0.2s; transform: translateY(0); opacity: 1; }
.mkv2-slide.active .mkv2-desc  { transition-delay: 0.3s; transform: translateY(0); opacity: 1; }
.mkv2-slide.active .mkv2-cta-btns { transition-delay: 0.4s; transform: translateY(0); opacity: 1; }

.mkv2-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pr);
    letter-spacing: .08em;
    padding: 6px 12px;
    background: rgba(255,77,46,.15);
    border-radius: 20px;
    margin-bottom: 16px;
}

.mkv2-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.mkv2-desc {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}

/* CTA Screen 버튼 컨테이너 */
.mkv2-cta-btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

/* 고정형 폰 프레임 영역 */
.mkv2-phone-fixed {
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    z-index: 20;
    pointer-events: none; /* 스와이프를 막지 않기 위해 */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Phone Visual */
.mkv2-visual {
    position: relative;
    width: 260px;
    height: 520px;
    background: #1C1C1E;
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,.8);
    pointer-events: auto; /* 폰 내부는 클릭 가능하도록 */
}

/* 마지막 슬라이드(CTA) 등에서 폰 숨기기 용도 */
.mkv2-phone-fixed.hide {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.mkv2-visual-inner {
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* 실제 앱 UI를 감싸는 스케일링 래퍼 (가로 360px 표준 비율로 맞춤) */
.mkv2-real-ui-wrapper {
    width: 360px;
    height: 744px;
    /* visual-inner: 244×504px. scale = 244/360 = 0.677. height: 504/0.677 = 744px */
    transform: scale(0.677);
    transform-origin: top left;
    background: #fff;
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    pointer-events: none; /* 슬라이드 동작 방해 않기 */
}

/* 앱 UI 내부에서 가로 스크롤바 등 숨기기 */
.mkv2-real-ui-wrapper::-webkit-scrollbar { display: none; }

/* Pagination Dots */
.mkv2-pagination {
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 100;
}
.mkv2-dot {
    width: 6px; height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.2);
    transition: all 0.3s;
}
.mkv2-dot.active {
    width: 18px;
    background: var(--pr);
}

/* 슬라이드 배경색 */
.mkv2-slide-intro { background: radial-gradient(circle at 50% 30%, rgba(255,77,46,.12) 0%, transparent 60%); }
.mkv2-slide-tag   { background: radial-gradient(circle at 80% 50%, rgba(31,164,255,.1) 0%, transparent 60%); }
.mkv2-slide-shop  { background: radial-gradient(circle at 20% 50%, rgba(162,31,255,.1) 0%, transparent 60%); }
.mkv2-slide-cta   { background: radial-gradient(circle at 50% 50%, rgba(255,77,46,.2) 0%, transparent 70%); padding-top: 80px; }

/* 폰 씬 스캔바 애니메이션 (mkv2-scene용) */
.mkv2-scene.active .sc-bar-ani { animation: mkBarGrow .5s cubic-bezier(.34,1.2,.64,1) forwards; }

/* CTA 버튼 */
.mkv2-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 20px;
    height: 48px;
    background: var(--pr);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255,77,46,.3);
}

/* Phone Screen Scenes */
.mkv2-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.mkv2-scene.active {
    opacity: 1;
    pointer-events: auto;
}

/* ── 부드러운 앵커 스크롤 ── */
html { scroll-behavior: smooth; }

/* ── 마케팅 페이지 토스트 ── */
.mk-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: rgba(25,25,25,.92);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 9999;
}
.mk-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tc-name_mkt{
    font-size: 10px;
    line-height: 1.4;
    text-align: left;
}
/* ── 스텝 A 서브씬 ── */
.sa-sub {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    overflow: hidden;
}
.sa-sub.active {
    opacity: 1;
    pointer-events: auto;
}

/* 서브씬 A0: 공유 버튼 ripple */
#step-sub-A0.active .sc-share-ripple {
    animation: scShareRipple 0.9s ease-out 1.4s forwards;
}
/* 서브씬 A1: 위시태그 아이콘 탭 */
#step-sub-A1.active .sc-app-icon.wishtag .sc-app-icon-img {
    animation: scIconTap 0.45s ease 1.8s forwards;
}
/* 서브씬 A2: 태그 버튼 터치 */
#step-sub-A2.active .sc-tap-dot {
    animation: scTapDot 0.75s ease 0.95s forwards;
}
#step-sub-A2.active .sc-tag-ripple {
    animation: scTagTap .55s ease-out 1.2s forwards;
}

/* ── 스텝 A1 위시태그 아이콘 탭 모션 ── */
#step-sub-A1 .sc-app-icon.wishtag .sc-app-icon-img.do-tap {
    animation: scStepIconTap 0.55s cubic-bezier(.36,.07,.19,.97) 1.8s both;
}
@keyframes scStepIconTap {
    0%   { transform: scale(1); }
    35%  { transform: scale(0.74); box-shadow: 0 0 0 6px rgba(255,77,46,.22); }
    68%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ── 스텝 폰 프로그레스바 ── */
.mk-step-progress {
    display: flex;
    gap: 5px;
    margin-top: 14px;
    width: 100%;
    padding: 0 2px;
}
.mk-sp-bar {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}
.mk-sp-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pr);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
}
.mk-sp-bar.sp-done::after {
    transform: scaleX(1);
}
.mk-sp-bar.sp-active::after {
    transform: scaleX(1);
    transition: transform var(--sp-dur, 2.5s) linear;
}

/* ── 히어로 단일 프로그레스바 ── */
.mk-hero-progress {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.15);
    margin-top: 16px;
    overflow: hidden;
}
.mk-hero-bar {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    background: var(--pr);
    animation: heroBarFill 16s linear infinite;
}
@keyframes heroBarFill {
    from { width: 0%; }
    to   { width: 100%; }
}

.mk-header-logo-link { display: flex; align-items: center; }

/* ── 모바일 스텝 캐러셀 ── */
.mk-steps-mobile { display: none; }

@media (max-width: 900px) {
    .mk-steps-wrap { display: none !important; }
    .mk-steps-mobile { display: block; }
}

.mk-sm-viewport { overflow: hidden; width: 100%; }

.mk-sm-track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    -webkit-user-select: none;
    user-select: none;
}

.mk-sm-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 8px;
    gap: 28px;
}

.mk-sm-screen {
    width: 200px;
    height: 418px;
    background: #fff;
    color: #191919;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07);
}

.mk-sm-inner {
    width: 244px;
    height: 520px;
    transform: scale(0.82);
    transform-origin: top left;
    position: absolute;
    top: 0;
    left: 0;
}
.mk-sm-screen .sc-header { padding-top: 18px; }

.mk-sm-info {
    text-align: center;
    max-width: 280px;
}
.mk-sm-info .mk-step-num {
    font-size: 12px;
    font-weight: 800;
    color: var(--pr);
    letter-spacing: .1em;
    margin-bottom: 8px;
}
.mk-sm-info .mk-step-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 10px;
    line-height: 1.3;
    word-break: keep-all;
}
.mk-sm-info .mk-step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    word-break: keep-all;
}

/* sm 서브씬 */
.sm-sub {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    overflow: hidden;
}
.sm-sub.active { opacity: 1; pointer-events: auto; }

/* sm / sv3 서브씬 애니메이션 */
#step-sub-A0.active .hero-ss-border,
#sv3-sub-0.active  .hero-ss-border { animation: v4SSBorder 0.7s ease 0.2s forwards; }
#step-sub-A0.active .hero-ss-flash,
#sv3-sub-0.active  .hero-ss-flash  { animation: v4SSFlash 0.45s ease 0.5s forwards; }
#sm-sub-2.active .sc-tap-dot { animation: scTapDot 0.75s ease 0.95s forwards; }
#sm-sub-2.active .sc-tag-ripple { animation: scTagTap 0.55s ease-out 1.2s forwards; }

/* 캐러셀 네비게이션 */
.mk-sm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}
.mk-sm-dots { display: flex; gap: 6px; align-items: center; }
.mk-sm-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.2);
    transition: all .3s;
}
.mk-sm-dot.active { width: 18px; background: var(--pr); }
.mk-sm-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, color .2s, opacity .2s;
}
.mk-sm-arrow:hover { background: rgba(255,255,255,.15); color: #fff; }
.mk-sm-arrow:disabled { opacity: .2; cursor: default; pointer-events: none; }
.mk-sm-arrow svg { width: 14px; height: 14px; }

/* ── v3 가로 스크롤 스텝 (marketing_v3.html 전용) ── */
.mk-steps-v3 {
    display: none;
}
@media (max-width: 900px) {
    .mk-steps-v3 {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0 32px;
        cursor: grab;
    }
    .mk-steps-v3.is-grabbing {
        cursor: grabbing;
        user-select: none;
    }
    .mk-steps-v3::-webkit-scrollbar { display: none; }
}
.mk-sv3-track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 0 24px;
}
.mk-sv3-card {
    width: 260px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 16px 10px 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.mk-sv3-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 6px;
}
.mk-sv3-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--pr);
    letter-spacing: .04em;
}
.mk-sv3-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin: 0;
}
.mk-sv3-desc {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    margin: 0;
}

/* ================================================================
   v4 히어로 씬 전용 스타일 — .mk-phone-v4 스코프
   ID 기반 애니메이션 트리거는 모두 .mk-phone-v4로 앞에 붙여 v3와 격리
================================================================ */

/* ── hero-app: 씬 내부 앱 레이아웃 컨테이너 ── */
.hero-app {
    position: absolute;
    inset: 0;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── hero-sub: scene-1 서브씬 ── */
.hero-sub {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    overflow: hidden;
}
.hero-sub.active {
    opacity: 1;
    pointer-events: auto;
}

/* ══════════════════════════════════════════════
   Scene 0: 화면 캡처
══════════════════════════════════════════════ */
.hero-ss-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #fff;
}
.hero-real-img {
    width: 100%;
    height: auto;
    object-position: top;
    display: block;
}
/* .hero-ss-border {
    position: absolute;
    inset: 0;
    border: 3px solid #007AFF;
    opacity: 0;
    pointer-events: none;
    border-radius: 2px;
} */
.hero-ss-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
}
.hero-ss-fullcap {
    position: absolute;
    inset: 0;
    opacity: 1;
    overflow: hidden;
    border-radius: 0;
    transform-origin: bottom right;
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
    width: 100%;
}
.hero-ss-fullcap img {
    width: 100%;
    height: auto;
    /* object-fit: contain; */
    object-position: top;
    display: block;
}

.mk-phone-v4 #scene-0.active .hero-ss-border {
    animation: v4SSBorder 0.7s ease 1.6s forwards;
}
.mk-phone-v4 #scene-0.active .hero-ss-flash {
    animation: v4SSFlash 0.45s ease 2.0s forwards;
}
.mk-phone-v4 #scene-0.active .hero-ss-fullcap {
    display: none;
}

@keyframes v4SSBorder {
    0%   { opacity: 0; }
    25%  { opacity: 1; }
    75%  { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes v4SSFlash {
    0%   { opacity: 0; }
    30%  { opacity: 0.85; }
    100% { opacity: 0; }
}
@keyframes v4SSCap {
    0%   { opacity: 0;   transform: scale(1)    translate(0, 0);        border-radius: 0; }
    10%  { opacity: 1;   transform: scale(1)    translate(0, 0);        border-radius: 0; }
    45%  { opacity: 1;   transform: scale(1)    translate(0, 0);        border-radius: 0; }
    78%  { opacity: 1;   transform: scale(.27)  translate(10%, 10%);    border-radius: 20px; }
    90%  { opacity: 1;   transform: scale(.27)  translate(10%, 10%);    border-radius: 20px; }
    100% { opacity: 0;   transform: scale(.27)  translate(10%, 10%);    border-radius: 20px; }
}

/* ══════════════════════════════════════════════
   Scene 1: 링크 공유
══════════════════════════════════════════════ */
/* share sheet 슬라이드업 (hero-sub active 전환 시) */
.hero-sub.active .sc-share-sheet {
    animation: v4SheetUp 0.42s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes v4SheetUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
/* share btn press + ripple — scene-1이 활성화된 시점 기준 */
#scene-1.active #hs1-0.active .sc-share-btn {
    animation: v4BtnTap 0.32s ease 1.0s both;
}
@keyframes v4BtnTap {
    0%   { transform: scale(1);    background: rgba(0,0,0,.07); }
    38%  { transform: scale(0.76); background: rgba(0,0,0,.2); }
    100% { transform: scale(1);    background: rgba(0,0,0,.07); }
}
#scene-1.active #hs1-0.active .sc-share-ripple {
    animation: scShareRipple 0.9s ease-out 1.3s forwards;
}
/* URL복사 아이콘 탭 */
.hero-copy-link .sc-app-icon-img.do-tap {
    animation: v4IconTap 0.38s ease forwards;
}
@keyframes v4IconTap {
    0%   { transform: scale(1); }
    35%  { transform: scale(.82); }
    70%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* ══════════════════════════════════════════════
   Scene 2: 붙여넣기 허용 → 미완성 카드
══════════════════════════════════════════════ */
/* URL 텍스트 (입력창 대신 div) */
.hero-url-text {
    flex: 1;
    height: 36px;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 10px;
    color: #191919;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

/* 미완성 카드 — lc-card 스타일, 폰 내부 스케일다운 */
.hero-empty-card { opacity: 0; }

.mk-phone-inner .lc-card {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.mk-phone-inner .lc-top {
    padding: 8px 12px 8px;
    gap: 8px;
}
.mk-phone-inner .lc-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}
.mk-phone-inner .lc-shop {
    font-size: 10px;
}
.mk-phone-inner .lc-date {
    font-size: 9px;
    margin-top: 2px;
}
.mk-phone-inner .lc-footer {
    padding: 7px 10px 8px 12px;
}
.mk-phone-inner .lc-link-btn {
    font-size: 9px;
}
.mk-phone-inner .lc-add-btn {
    font-size: 9px;
    padding: 5px 10px;
    border-radius: 12px;
}

/* 붙여넣기 dim + 모달 */
.hero-paste-dim {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
}
.hero-paste-modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.85);
    width: 78%;
    background: rgba(242,242,247,.97);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}
.hero-pm-body {
    padding: 16px 14px 10px;
}
.hero-pm-title {
    font-size: 11px;
    line-height: 1.5;
    color: #1c1c1e;
    text-align: center;
}
.hero-pm-divider { height: 1px; background: rgba(0,0,0,.15); }
.hero-pm-btns { display: flex; }
.hero-pm-btn {
    flex: 1;
    text-align: center;
    padding: 10px 4px;
    font-size: 11px;
    font-weight: 500;
    color: #007AFF;
}
.hero-pm-btn + .hero-pm-btn {
    border-left: 1px solid rgba(0,0,0,.15);
    font-weight: 700;
}

/* scene-2 활성 애니메이션 */
.mk-phone-v4 #scene-2.active .hero-paste-dim {
    animation: v4DimIn 0.35s ease 0.5s forwards, v4DimOut 0.3s ease 2.65s forwards;
}
.mk-phone-v4 #scene-2.active .hero-paste-modal {
    animation: v4PasteIn 0.42s cubic-bezier(.34,1.3,.64,1) 0.55s forwards, v4PasteOut 0.3s ease 2.65s forwards;
}
.mk-phone-v4 #scene-2.active .hero-pm-allow {
    animation: v4PmTap 0.32s ease 2.1s forwards;
}
.mk-phone-v4 #scene-2.active .hero-empty-card {
    animation: v4CardIn 0.5s cubic-bezier(.34,1.3,.64,1) 3.0s forwards;
}

@keyframes v4DimIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes v4DimOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes v4PasteIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(.85); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
}
@keyframes v4PasteOut {
    from { opacity: 1; transform: translate(-50%, -50%) scale(1);   }
    to   { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
}
@keyframes v4PmTap {
    0%   { background: transparent; }
    45%  { background: rgba(0,122,255,.2); }
    100% { background: transparent; }
}
@keyframes v4CardIn {
    from { opacity: 0; transform: translateY(10px) scale(.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

/* ══════════════════════════════════════════════
   Scene 3: 정보 모달 → 완성 카드
══════════════════════════════════════════════ */
/* 정보 입력 dim */
.hero-info-dim {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
}
/* 정보 입력 중앙 모달 */
.hero-info-modal {
    position: absolute;
    left: 12px; right: 12px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: #fff;
    border-radius: 16px;
    padding: 16px 14px 20px;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.hero-im-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-im-title {
    font-size: 12px;
    font-weight: 700;
    color: #191919;
}
.hero-im-ss-btn {
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--pr);
    text-align: center;
    border: 1px solid var(--pr);
}
.hero-im-or {
    text-align: center;
    font-size: 10px;
    color: #8A8A8A;
    position: relative;
}
.hero-im-or::before,
.hero-im-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28%;
    height: 1px;
    background: #EBEBEB;
}
.hero-im-or::before { left: 0; }
.hero-im-or::after  { right: 0; }
.hero-im-body {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.hero-im-thumb {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #f2f2f7;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-im-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-im-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-im-label {
    font-size: 9px;
    color: #8A8A8A;
    margin-bottom: 3px;
}
.hero-im-val {
    font-size: 11px;
    color: #191919;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    display: block;
}
.hero-im-btns {
    display: flex;
    gap: 8px;
}
.hero-im-cancel,
.hero-im-save {
    flex: 1;
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}
.hero-im-cancel { background: #f2f2f7; color: #8A8A8A; }
.hero-im-save   { background: var(--pr, #FF4D2E); color: #fff; }

/* 저장 완료 오버레이 */
.hero-post-save {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

/* scene-3 활성 애니메이션 */
.mk-phone-v4 #scene-3.active .hero-info-dim {
    animation: v4DimIn 0.4s ease 0.4s forwards, v4DimOut 0.38s ease 3.45s forwards;
}
.mk-phone-v4 #scene-3.active .hero-info-modal {
    animation: v4ModalIn 0.35s cubic-bezier(.25,.46,.45,.94) 0.45s forwards,
               v4ModalOut 0.3s cubic-bezier(.55,0,1,.45) 3.45s forwards;
}
.mk-phone-v4 #scene-3.active .hero-val-name {
    animation: v4TypeIn 0.9s steps(14, end) 1.3s forwards;
}
.mk-phone-v4 #scene-3.active .hero-val-price {
    animation: v4TypeIn 0.6s steps(8, end) 2.35s forwards;
}
.mk-phone-v4 #scene-3.active .hero-im-save {
    animation: v4SaveTap 0.35s ease 3.1s forwards;
}
.mk-phone-v4 #scene-3.active .hero-post-save {
    animation: v4PostIn 0.55s ease 3.8s forwards;
}

@keyframes v4ModalIn {
    from { transform: translateY(-50%) scale(0.9); opacity: 0; }
    to   { transform: translateY(-50%) scale(1);   opacity: 1; }
}
@keyframes v4ModalOut {
    from { transform: translateY(-50%) scale(1);   opacity: 1; }
    to   { transform: translateY(-50%) scale(0.9); opacity: 0; }
}
@keyframes v4TypeIn {
    from { max-width: 0; }
    to   { max-width: 140px; }
}
@keyframes v4SaveTap {
    0%   { filter: brightness(1); }
    40%  { filter: brightness(.75); }
    100% { filter: brightness(1); }
}
@keyframes v4PostIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   Scene 4: 카드 스와이프 (v4 스코프)
   — scRowSlide / scRowBg / scTouchDot / scTapDot 키프레임은
     기존 marketing.css에 이미 정의됨
══════════════════════════════════════════════ */
.mk-phone-v4 #scene-4.active .sc-card.show .sc-row-slide {
    animation: scRowSlide 1.3s cubic-bezier(.25,.46,.45,.94) 0.7s forwards;
}
.mk-phone-v4 #scene-4.active .sc-card.show .sc-row-bg {
    animation: scRowBg 1.3s cubic-bezier(.25,.46,.45,.94) 0.7s forwards;
}
.mk-phone-v4 #scene-4.active .sc-card.show .sc-touch-dot {
    animation: scTouchDot 1.5s ease 0.55s forwards;
}
.mk-phone-v4 #scene-4.active .sc-card.show .sc-ra-dot {
    animation: scTapDot 0.75s ease 1.9s forwards;
}

/* ══════════════════════════════════════════════
   Scene 5: 나의 쇼핑 타임라인 순차 fade-in (v4 스코프)
══════════════════════════════════════════════ */
.mk-phone-v4 #scene-5.active #htl-0 {
    animation: v4TlIn 0.5s ease 0.35s both;
}
.mk-phone-v4 #scene-5.active #htl-1 {
    animation: v4TlIn 0.5s ease 0.85s both;
}
.mk-phone-v4 #scene-5.active #htl-2 {
    animation: v4TlIn 0.5s ease 1.35s both;
}
@keyframes v4TlIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0);    }
}

