/* ============================================
   娃屋 Wawu — 扭蛋盲盒玩法小程序
   潮玩风格 · 明亮活泼 · 移动端优先
   ============================================ */

:root {
    --bg: #fff8f0;
    --bg-soft: #fff3e4;
    --bg-card: #ffffff;
    --surface: #fff3e4;
    --surface-2: #ffe8cc;
    --border: rgba(120, 60, 20, 0.08);
    --border-strong: rgba(120, 60, 20, 0.15);
    --text: #3d2410;
    --text-mute: #8a6340;
    --text-dim: #b89270;

    --pink: #ff4d8d;
    --pink-soft: #ffd1e3;
    --purple: #9b59ff;
    --purple-soft: #e8d4ff;
    --yellow: #ffb800;
    --yellow-soft: #fff0c2;
    --green: #2dd4a8;
    --green-soft: #c8f5e0;
    --blue: #3b82f6;
    --blue-soft: #cfe2ff;

    --grad: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    --grad-warm: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 100%);
    --grad-cool: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    --grad-btn: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);

    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --shadow: 0 16px 40px -16px rgba(120, 60, 20, 0.18);
    --shadow-lg: 0 24px 60px -20px rgba(255, 77, 141, 0.25);
    --container: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s var(--ease-bounce);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn--primary {
    background: var(--grad-btn);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(255, 77, 141, 0.45);
}
.btn--primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px -8px rgba(255, 77, 141, 0.6);
}
.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%);
}
.btn--ghost {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}
.btn--ghost:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-3px);
}
.btn--white {
    background: #fff;
    color: var(--pink);
    font-weight: 700;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12);
}
.btn--white:hover { transform: translateY(-3px) scale(1.03); }
.btn--white-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn--white-ghost:hover { background: rgba(255,255,255,0.12); }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: all 0.4s var(--ease);
}
.nav--scrolled {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 8px 24px -16px rgba(120,60,20,0.12);
}
.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.nav__logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__logo {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 6px;
}

/* Hero logo */
.hero__logo {
    height: 72px;
    width: auto;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 14px rgba(255,77,141,0.35));
    animation: logoSpin 12s linear infinite;
}
@keyframes logoSpin {
    0% { transform: rotate(0); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(0); }
    75% { transform: rotate(-8deg); }
    100% { transform: rotate(0); }
}

/* View more link */
.products__more-link {
    display: block;
    text-align: center;
    margin: -32px 0 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
    transition: all 0.25s ease;
    position: relative;
}
.products__more-link:hover {
    color: var(--purple);
    transform: translateX(4px);
}
.products__more-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: width 0.3s var(--ease);
}
.products__more-link:hover::after {
    width: 80px;
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    font-size: 14px;
    color: var(--text-mute);
    transition: color 0.2s;
    font-weight: 500;
}
.nav__link:hover { color: var(--pink); }
.nav__cta {
    padding: 10px 24px;
    background: var(--grad-btn);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--ease-bounce);
    box-shadow: 0 4px 16px -4px rgba(255,77,141,0.4);
}
.nav__cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 20px -6px rgba(255,77,141,0.5); }
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   Capsule Shape (shared)
   ============================================ */
.capsule-shape {
    width: 44px;
    height: 60px;
    border-radius: 22px 22px 18px 18px;
    position: relative;
    box-shadow: inset 0 -6px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}
.capsule-shape::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 8px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
    transform: rotate(-20deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #fff8f0 0%, #ffe8f0 50%, #fff3e4 100%);
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,77,141,0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(155,89,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255,184,0,0.06) 0%, transparent 35%);
}

/* Floating capsules decoration */
.hero__deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.hero__deco--1 { top: 12%; left: 6%; animation: float-a 7s ease-in-out infinite alternate; }
.hero__deco--2 { top: 18%; right: 8%; animation: float-b 9s ease-in-out infinite alternate; }
.hero__deco--3 { bottom: 16%; left: 10%; animation: float-c 8s ease-in-out infinite alternate; }
.hero__deco--4 { bottom: 22%; right: 14%; animation: float-a 10s ease-in-out infinite alternate-reverse; }
.hero__deco--5 { top: 45%; left: 3%; animation: float-b 6s ease-in-out infinite alternate; }
.hero__deco--6 { top: 50%; right: 4%; animation: float-c 11s ease-in-out infinite alternate-reverse; }

@keyframes float-a {
    0% { transform: translate(0, 0) rotate(-8deg); }
    100% { transform: translate(12px, -20px) rotate(6deg); }
}
@keyframes float-b {
    0% { transform: translate(0, 0) rotate(5deg); }
    100% { transform: translate(-10px, 18px) rotate(-8deg); }
}
@keyframes float-c {
    0% { transform: translate(0, 0) rotate(-3deg); }
    100% { transform: translate(15px, 14px) rotate(10deg); }
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 77, 141, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: var(--pink);
    margin-bottom: 24px;
    font-weight: 600;
}
.hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--pink);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}
.hero__title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.hero__title-sub {
    display: block;
    font-size: 0.38em;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    -webkit-text-fill-color: var(--text-mute);
    margin-top: 4px;
}
.hero__subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-mute);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.hero__stat-num {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat-unit { font-size: 0.5em; font-weight: 700; }
.hero__stat-label {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
    display: block;
}

/* Phone mockup */
.hero__phone {
    position: absolute;
    right: calc((100% - var(--container)) / 2 + 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 320px;
}
.phone {
    position: relative;
    background: #2a1a10;
    border: 10px solid #3d2410;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.phone__screen {
    aspect-ratio: 9/19;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #fff8f0, #fff3e4);
}
.phone__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #2a1a10;
    border-radius: 0 0 16px 16px;
    z-index: 5;
}
.phone__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 4px;
    font-size: 12px;
    color: #3d2410;
    font-weight: 600;
}
.phone__status-icons { display: flex; align-items: center; gap: 5px; }
.phone__status-icons svg { opacity: 0.6; }
.phone__app {
    padding: 0 16px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
}
.app-header {
    text-align: center;
    padding: 12px 0 10px;
}
.app-header__title {
    font-size: 18px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.app-header__sub {
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Capsule machine animation in phone */
.app-machine {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
.app-machine__glass {
    width: 120px;
    height: 80px;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
    border: 2px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px;
}
.app-capsule {
    width: 16px;
    height: 22px;
    border-radius: 50% 50% 40% 40%;
    position: relative;
    animation: capsuleJiggle 3s ease-in-out infinite;
}
.app-capsule::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 6px; height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
}
.app-capsule--1 { background: linear-gradient(180deg, #ff4d8d, #d6336c); animation-delay: 0s; }
.app-capsule--2 { background: linear-gradient(180deg, #9b59ff, #7c3aed); animation-delay: 0.3s; }
.app-capsule--3 { background: linear-gradient(180deg, #ffb800, #e09e00); animation-delay: 0.6s; }
.app-capsule--4 { background: linear-gradient(180deg, #2dd4a8, #10b981); animation-delay: 0.9s; }
.app-capsule--5 { background: linear-gradient(180deg, #3b82f6, #2563eb); animation-delay: 1.2s; }
.app-capsule--6 { background: linear-gradient(180deg, #ff6b6d, #ee5a5a); animation-delay: 0.4s; }
.app-capsule--7 { background: linear-gradient(180deg, #f2d64b, #d4a810); animation-delay: 1.0s; }
.app-capsule--8 { background: linear-gradient(180deg, #7c83ff, #5b63f0); animation-delay: 0.7s; }

@keyframes capsuleJiggle {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-2px) rotate(-3deg); }
    50% { transform: translateY(1px) rotate(1deg); }
    75% { transform: translateY(-1px) rotate(2deg); }
}

.app-machine__base {
    width: 90px;
    height: 18px;
    background: linear-gradient(180deg, #ff4d8d, #d6336c);
    border-radius: 0 0 10px 10px;
    margin-top: -2px;
    position: relative;
}
.app-machine__base::after {
    content: '';
    position: absolute;
    top: 4px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
}

.app-capsule-btn {
    margin-top: 10px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 4px 12px rgba(255,77,141,0.4);
    position: relative;
    animation: btnPulse 2s ease-in-out infinite;
}
.app-capsule-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}
@keyframes btnPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(255,77,141,0.4); }
    50% { transform: scale(1.08); box-shadow: 0 6px 20px rgba(255,77,141,0.6); }
}

.app-tabs {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 16px;
    border-top: 1px solid var(--border);
}
.app-tabs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    color: var(--text-dim);
}
.app-tabs__item--active { color: var(--pink); font-weight: 600; }

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.hero__scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    40% { opacity: 1; transform: scaleY(1); }
    80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); }
}

/* ============================================
   Trust Bar
   ============================================ */
.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    background: var(--bg-card);
}
.trust__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust__label {
    font-size: 11px;
    color: var(--text-dim);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.trust__logos {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.trust__logos span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
    transition: color 0.2s;
}
.trust__logos span:hover { color: var(--text-mute); }

/* ============================================
   Section Header (shared)
   ============================================ */
.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; }
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--pink-soft);
    border-radius: 100px;
    font-size: 12px;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.section-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.section-title--left { text-align: left; }
.section-title .highlight {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 15px;
    color: var(--text-mute);
    max-width: 520px;
    line-height: 1.8;
}
.section-desc--left { margin: 0; }
.section-head--center .section-desc { margin: 0 auto; }

/* ============================================
   Features
   ============================================ */
.features { padding: 110px 0; background: var(--bg-card); }
.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-bounce);
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: transparent;
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
    color: #fff;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .feature-card__icon { background: rgba(255,255,255,0.2); }
.feature-card:hover .feature-card__title,
.feature-card:hover .feature-card__desc { color: #fff; }
.feature-card:hover .feature-card__tag { background: rgba(255,255,255,0.25); }
.feature-card__icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}
.feature-card__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.feature-card__desc {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}
.feature-card__tag {
    position: absolute;
    top: 18px; right: 18px;
    font-size: 10px;
    padding: 4px 10px;
    background: var(--grad);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    z-index: 2;
}

/* Different color accents for cards */
.feature-card:nth-child(2) .feature-card__icon { background: var(--purple-soft); color: var(--purple); }
.feature-card:nth-child(3) .feature-card__icon { background: var(--yellow-soft); color: var(--yellow); }
.feature-card:nth-child(4) .feature-card__icon { background: var(--green-soft); color: var(--green); }
.feature-card:nth-child(5) .feature-card__icon { background: var(--blue-soft); color: var(--blue); }
.feature-card:nth-child(6) .feature-card__icon { background: var(--pink-soft); color: var(--pink); }

/* ============================================
   Flow
   ============================================ */
.flow {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.flow__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    position: relative;
}
.flow__step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    position: relative;
    transition: all 0.4s var(--ease-bounce);
    text-align: center;
}
.flow__step:hover {
    border-color: var(--pink);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.flow__num {
    font-size: 48px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 8px;
}
.flow__icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
}
.flow__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.flow__desc {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.7;
}
.flow__arrow {
    display: none;
}

/* ============================================
   Hero QR Code
   ============================================ */
.hero__qr {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.hero__qr-card {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 6px;
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.hero__qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}
.hero__qr-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 900;
    color: var(--pink);
    background: rgba(255,255,255,0.92);
    border-radius: 6px;
    padding: 1px 6px;
    line-height: 1.2;
    pointer-events: none;
}
.hero__qr-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero__qr-text strong {
    font-size: 15px;
    font-weight: 700;
}
.hero__qr-text span {
    font-size: 12px;
    color: var(--text-dim);
}

/* ============================================
   CTA QR Code
   ============================================ */
.cta__qr {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.cta__qr-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: contain;
}
.cta__qr-text {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ============================================
   Stores List
   ============================================ */
.stores {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.stores__filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.store-filter {
    padding: 8px 22px;
    border-radius: 100px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mute);
    transition: all 0.3s var(--ease-bounce);
    font-family: inherit;
}
.store-filter:hover {
    border-color: var(--pink-soft);
    color: var(--pink);
}
.store-filter.active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px -4px rgba(255,77,141,0.4);
    transform: scale(1.04);
}
.stores__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.store-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease-bounce);
}
.store-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--pink);
}
.store-card__cover {
    height: 130px;
    position: relative;
    overflow: hidden;
}
.store-card__imgPlaceholder {
    width: 100%;
    height: 100%;
}
.store-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.store-card__tag--hot { background: var(--pink); }
.store-card__tag--promo { background: var(--purple); }
.store-card__body {
    padding: 16px 18px 18px;
}
.store-card__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}
.store-card__addr {
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.store-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    font-size: 12px;
}
.store-card__dist {
    font-weight: 700;
    color: var(--pink);
}
.store-card__status {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.store-card__status--on { background: var(--green-soft); color: var(--green); }
.store-card__status--off { background: rgba(120,60,20,0.08); color: var(--text-dim); }
.store-card__count { color: var(--text-dim); }
.store-card__series {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.store-series__chlip {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    background: var(--surface);
    color: var(--text-mute);
}

/* ============================================
   Capsule Products (IP → 系列 → 款式)
   ============================================ */
.products {
    padding: 110px 0;
    background: var(--bg-card);
}
.products__levels {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.product-level__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.product-level__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -4px rgba(255,77,141,0.5);
}
.product-level__label {
    font-size: 18px;
    font-weight: 800;
}
.product-level__items {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.product-level__items--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 14px;
}

/* IP chips */
.ip-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s var(--ease-bounce);
    font-family: inherit;
    cursor: pointer;
}
.ip-chip:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}
.ip-chip--active {
    background: var(--grad);
    border-color: transparent;
}
.ip-chip--active .ip-chip__name { color: #fff; }
.ip-chip__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.15), inset 0 2px 6px rgba(255,255,255,0.3);
    position: relative;
}
.ip-chip__avatar::after {
    content: '';
    position: absolute;
    top: 5px; left: 6px;
    width: 12px; height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}
.ip-chip__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

/* Series cards */
.series-card {
    width: 140px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease-bounce);
    font-family: inherit;
    cursor: pointer;
}
.series-card:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.series-card--active {
    border-color: transparent;
    background: linear-gradient(180deg, var(--purple-soft), var(--bg));
    box-shadow: 0 8px 24px -8px rgba(155,89,255,0.35);
}
.series-card__thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.series-card__cap {
    width: 20px;
    height: 28px;
    border-radius: 50% 50% 40% 40%;
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.12);
    animation: capsuleJiggle 3s ease-in-out infinite;
}
.series-card__name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

/* Style cards (款式) */
.style-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s var(--ease-bounce);
    cursor: pointer;
}
.style-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: var(--shadow);
}
.style-card__visual {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    position: relative;
}
.style-card__cap--big {
    width: 38px;
    height: 54px;
    border-radius: 50% 50% 40% 40%;
    box-shadow: inset 0 -6px 12px rgba(0,0,0,0.12), 0 6px 14px -6px rgba(0,0,0,0.15);
    animation: capsuleJiggle 3s ease-in-out infinite;
    position: relative;
}
.style-card__cap--big::after {
    content: '';
    position: absolute;
    top: 6px; left: 6px;
    width: 12px; height: 8px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
}
.style-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.style-card__name {
    font-size: 14px;
    font-weight: 700;
}
.style-card__rarity {
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}
.style-card__rarity--common {
    background: var(--surface);
    color: var(--text-dim);
}
.style-card__rarity--rare {
    background: var(--blue-soft);
    color: var(--blue);
}
.style-card__rarity--legend {
    background: var(--yellow-soft);
    color: #b8860b;
    animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   Screens (Tab navigation) - Capsule Machine
   ============================================ */
.screens { padding: 110px 0; background: var(--bg-card); }
.screens__tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.screen-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    min-width: 160px;
    flex: 0 1 auto;
}
.screen-tab:hover { border-color: var(--pink-soft); }
.screen-tab--active {
    background: var(--grad);
    border-color: transparent;
    color: #fff;
    transform: scale(1.04);
}
.screen-tab__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.screen-tab:not(.screen-tab--active) .screen-tab__icon {
    background: var(--pink-soft);
    color: var(--pink);
}
.screen-tab--active .screen-tab__icon { background: rgba(255,255,255,0.25); }
.screen-tab__info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.screen-tab__info p { font-size: 11px; opacity: 0.85; }

.screen-detail {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.screen-detail--active { display: grid; }
.screen-detail__title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.screen-detail__desc {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.8;
    margin-bottom: 24px;
}
.screen-detail__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.screen-detail__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-mute);
}
.screen-detail__list .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}
.screen-detail__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Big capsule machine visual */
.machine-visual {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.machine-visual__glass {
    width: 100%;
    height: 180px;
    border-radius: 24px 24px 12px 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
    border: 3px solid rgba(255,255,255,0.8);
    box-shadow: inset 0 8px 24px rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
}
.machine-visual__glass .cap {
    width: 30px;
    height: 42px;
    border-radius: 50% 50% 40% 40%;
    position: relative;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.1);
    animation: capsuleJiggle 3s ease-in-out infinite;
}
.machine-visual__glass .cap::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 10px; height: 6px;
    background: rgba(255,255,255,0.55);
    border-radius: 50%;
}
.machine-visual__glass .cap--1 { background: linear-gradient(180deg, #ff4d8d, #d6336c); animation-delay: 0s; }
.machine-visual__glass .cap--2 { background: linear-gradient(180deg, #9b59ff, #7c3aed); animation-delay: 0.4s; }
.machine-visual__glass .cap--3 { background: linear-gradient(180deg, #ffb800, #e09e00); animation-delay: 0.8s; }
.machine-visual__glass .cap--4 { background: linear-gradient(180deg, #2dd4a8, #10b981); animation-delay: 1.2s; }
.machine-visual__glass .cap--5 { background: linear-scale(180deg, #3b82f6, #2563eb); animation-delay: 0.2s; }
.machine-visual__glass .cap--6 { background: linear-gradient(180deg, #3b82f6, #2563eb); animation-delay: 0.2s; }
.machine-visual__glass .cap--7 { background: linear-gradient(180deg, #ff6b6d, #ee5a5a); animation-delay: 0.6s; }
.machine-visual__glass .cap--8 { background: linear-gradient(180deg, #f2d64b, #d4a810); animation-delay: 1.0s; }
.machine-visual__glass .cap--9 { background: linear-gradient(180deg, #7c83ff, #5b63f0); animation-delay: 1.4s; }
.machine-visual__glass .cap--10 { background: linear-gradient(180deg, #ff9ec4, #ff4d8d); animation-delay: 0.3s; }
.machine-visual__base {
    width: 180px;
    height: 32px;
    background: var(--grad);
    border-radius: 0 0 16px 16px;
    margin-top: -3px;
    position: relative;
    box-shadow: 0 6px 16px rgba(255,77,141,0.3);
}
.machine-visual__base::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 10px;
    background: rgba(255,255,255,0.35);
    border-radius: 6px;
}
.machine-visual__base::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 14px;
    background: #3d2410;
    border-radius: 0 0 8px 8px;
}

/* Falling capsule animation */
@keyframes capsuleFall {
    0% { transform: translateY(-20px) scale(0.8); opacity: 0; }
    60% { transform: translateY(4px) scale(1.05); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.machine-visual__glass .cap {
    animation: capsuleJiggle 3s ease-in-out infinite, capsuleFall 0.6s var(--ease-bounce) backwards;
}

/* Map visual */
.map-visual {
    width: 260px;
    height: 320px;
    border-radius: var(--radius);
    background: #e8f4f8;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-visual__pin {
    position: absolute;
    width: 36px; height: 36px;
    border-radius: 50% 50% 50% 0;
    background: var(--grad);
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(255,77,141,0.4);
    animation: pinBounce 2s ease-in-out infinite;
}
.map-visual__pin::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #fff;
}
.map-visual__pin--1 { top: 20%; left: 25%; animation-delay: 0s; }
.map-visual__pin--2 { top: 45%; left: 60%; animation-delay: 0.5s; }
.map-visual__pin--3 { top: 65%; left: 30%; animation-delay: 1s; }
.map-visual__pin--4 { top: 30%; left: 70%; animation-delay: 1.5s; }
@keyframes pinBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-8px); }
}
.map-visual__road {
    position: absolute;
    background: rgba(120,60,20,0.1);
    border-radius: 100px;
}
.map-visual__road--1 { width: 80%; height: 8px; top: 35%; left: 10%; transform: rotate(-5deg); }
.map-visual__road--2 { width: 60%; height: 8px; top: 55%; left: 20%; transform: rotate(8deg); }

/* Payment visual */
.payment-visual {
    width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.pay-row:last-child { border-bottom: none; }
.pay-row__label { color: var(--text-mute); }
.pay-row__value { font-weight: 700; color: var(--text); }
.pay-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 20px;
    font-size: 15px;
    font-weight: 700;
}
.pay-total__price {
    font-size: 24px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pay-btn {
    width: 100%;
    padding: 14px;
    background: var(--grad);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 16px -6px rgba(255,77,141,0.5);
}
.pay-discount {
    display: inline-block;
    padding: 2px 8px;
    background: var(--pink-soft);
    color: var(--pink);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   Advantage / Highlights
   ============================================ */
.advantage { padding: 110px 0; background: var(--bg-soft); }
.advantage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.advantage__items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.advantage__item {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-bounce);
}
.advantage__item:hover {
    transform: translateX(6px);
    border-color: var(--pink);
    box-shadow: var(--shadow);
}
.advantage__item-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.advantage__item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.advantage__item p { font-size: 12px; color: var(--text-mute); }

/* Roadmap chips */
.advantage__roadmap {
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px dashed var(--border-strong);
}
.advantage__roadmap-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.advantage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.advantage__chip {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background: var(--purple-soft);
    color: var(--purple);
}

/* ============================================
   Specs
   ============================================ */
.specs { padding: 110px 0; background: var(--bg-card); }
.specs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}
.spec {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease-bounce);
}
.spec:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow);
    border-color: var(--pink);
}
.spec__icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: inline-block;
    animation: float-a 4s ease-in-out infinite;
}
.spec:nth-child(2) .spec__icon { animation-delay: 0.5s; }
.spec:nth-child(3) .spec__icon { animation-delay: 1s; }
.spec:nth-child(4) .spec__icon { animation-delay: 1.5s; }
.spec:nth-child(5) .spec__icon { animation-delay: 2s; }
.spec:nth-child(6) .spec__icon { animation-delay: 2.5s; }
.spec__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.spec__desc {
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */
.cta { padding: 80px 0 110px; background: var(--bg); }
.cta__box {
    background: var(--grad);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), transparent 60%);
}
.cta__deco {
    position: absolute;
    pointer-events: none;
}
.cta__deco--1 { top: -10px; left: -10px; }
.cta__deco--2 { bottom: -10px; right: -10px; }
.cta__content { position: relative; z-index: 1; }
.cta__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: #fff;
}
.cta__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cta__info {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.cta__divider {
    width: 1px;
    background: rgba(255,255,255,0.3);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer__desc {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 14px;
    line-height: 1.7;
    max-width: 280px;
}
.footer__col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.footer__col a {
    display: block;
    font-size: 13px;
    color: var(--text-mute);
    padding: 5px 0;
    transition: color 0.2s;
}
.footer__col a:hover { color: var(--pink); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .hero__phone { right: 24px; width: 280px; }
}

@media (max-width: 1024px) {
    .hero__phone { display: none; }
    .advantage__grid { grid-template-columns: 1fr; }
    .screen-detail--active { grid-template-columns: 1fr; }
    .screen-detail__visual { order: -1; }
}

@media (max-width: 860px) {
    .nav__menu, .nav__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 12px; right: 12px;
        flex-direction: column;
        gap: 4px;
        background: var(--bg-card);
        border: 1px solid var(--border-strong);
        border-radius: var(--radius);
        padding: 12px;
        box-shadow: var(--shadow);
    }
    .nav__menu.open { display: flex; }
    .nav__link { padding: 12px 16px; border-radius: 100px; text-align: center; }
    .nav__link:hover { background: var(--surface); }

    .hero { padding: 100px 0 40px; min-height: auto; }
    .section-head { margin-bottom: 36px; }

    .features, .flow, .screens, .advantage, .specs, .stores, .products { padding: 80px 0; }
    .trust__logos { gap: 20px; }
    .flow__steps { grid-template-columns: 1fr; }
    .hero__deco { display: none; }
    .hero__qr { margin-top: 28px; }
    .stores__list { grid-template-columns: 1fr; }
    .product-level__items--grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
    .series-card { width: 120px; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 560px) {
    .container { padding: 0 16px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .hero__qr { flex-direction: column; text-align: center; }
    .features__grid { grid-template-columns: 1fr; }
    .specs__grid { grid-template-columns: 1fr 1fr; }
    .screen-tab { min-width: 100%; justify-content: center; }
    .cta__box { padding: 44px 24px; }
    .cta__qr-img { width: 100px; height: 100px; }
    .stores__list { grid-template-columns: 1fr; }
    .ip-chip { padding: 8px 14px 8px 8px; }
    .ip-chip__avatar { width: 32px; height: 32px; font-size: 13px; }
    .series-card { width: 100%; }
    .product-level__items--grid { grid-template-columns: repeat(2, 1fr); }
    .style-card { padding: 12px 8px; }
    .style-card__cap--big { width: 30px; height: 42px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .hero__stats { gap: 24px; }
}
