body.home {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.splash {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3.2vh, 30px);
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(24px, 4vh, 44px) 24px 32px;
    text-align: center;
}

.eyebrow {
    margin: 0;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    max-width: 30ch;
    font-size: clamp(1.5rem, 1.15rem + 1.75vw, 2.25rem);
    line-height: 1.16;
    letter-spacing: -.01em;
    text-wrap: balance;
}

.video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--video-bg);
    border: 1px solid var(--video-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desc {
    max-width: 46ch;
    color: var(--text);
    font-size: clamp(.98rem, .94rem + .2vw, 1.08rem);
    line-height: 1.62;
}

.stores {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
}

.store-icon {
    width: 17px;
    height: 17px;
    fill: currentColor;
    flex: none;
}

.site-footer {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 28px 24px calc(20px + env(safe-area-inset-bottom));
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 28%, var(--line) 72%, transparent);
    margin-bottom: 16px;
}

@media (prefers-reduced-motion: no-preference) {
    .splash > * {
        animation: rise .4s var(--ease) both;
    }

    .hero-title {
        animation-delay: .06s;
    }

    .video {
        animation-delay: .18s;
    }

    .desc {
        animation-delay: .24s;
    }

    .stores {
        animation-delay: .3s;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .splash {
        padding-top: 24px;
        gap: 20px;
    }

    .stores {
        font-size: .9rem;
        padding: 10px 18px;
    }
}

@media (max-width: 360px) {
    .header-wrap {
        padding: 8px 14px;
    }
}
