/* VYNK Entry Splash — Claude Design */

[x-cloak] { display: none !important; }

.vynk-splash-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0c0a07;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 2rem;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.vynk-splash-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

/* VYNK brand lockup — hero */
.vynk-splash-brand-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.75rem;
}

.vynk-splash-brand-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.vynk-splash-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.vynk-splash-brand-wordmark {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgb(var(--color-base, 34 197 94));
    line-height: 1;
    display: block;
}

.vynk-splash-brand-tagline-hero {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    font-weight: 400;
    display: block;
}

/* Dividers */
.vynk-splash-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 0.9rem auto;
}

/* Welcome + restaurant name */
.vynk-splash-welcome {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin: 0.5rem 0 0.3rem;
}

.vynk-splash-name {
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.vynk-splash-subtext {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
}

/* Progress bar */
.vynk-splash-progress-wrap {
    width: 100%;
    max-width: 260px;
    margin-bottom: 0.6rem;
}

.vynk-splash-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.vynk-splash-progress-bar {
    height: 100%;
    width: 0%;
    background: rgb(var(--color-base, 34 197 94));
    border-radius: 2px;
}

.vynk-splash-progress-bar.running {
    animation: vynkProgress 4.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes vynkProgress {
    0%   { width: 0%; }
    78%  { width: 88%; }
    100% { width: 90%; }
}

.vynk-splash-opening {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Footer hidden — VYNK already hero */
.vynk-splash-footer { display: none; }