.lwl-journey-screen {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 3vw, 42px);
    box-sizing: border-box;
}

.lwl-journey-screen > .lwl-journey-screen-inner {
    width: 100%;
    max-width: 1280px;
    box-sizing: border-box;
}

.lwl-journey-screen .lwl-path {
    width: 100%;
}

.lwl-path {
    --path-bg: radial-gradient(120% 120% at 20% 0%, rgba(240, 200, 120, 0.18), rgba(12, 14, 20, 0.92));
    --path-card: rgba(20, 22, 30, 0.92);
    --path-ink: #f7f1e8;
    --path-muted: #b6ada3;
    --path-line: rgba(255, 255, 255, 0.08);
    background: var(--path-bg);
    border: 1px solid var(--path-line);
    border-radius: 20px;
    color: var(--path-ink);
    padding: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lwl-path.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.lwl-path__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lwl-path__tile {
    background: var(--path-card);
    border: 1px solid var(--path-line);
    border-radius: 16px;
    padding: 18px;
    min-height: 120px;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lwl-path__tile.is-unlocked:hover,
.lwl-path__tile.is-unlocked:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
    outline: none;
}

.lwl-path__tile.is-locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.lwl-path__label {
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lwl-path__sub {
    font-size: 13px;
    color: var(--path-muted);
}

.lwl-path__lock {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--path-line);
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--path-muted);
}

.lwl-path__reason {
    font-size: 12px;
    color: var(--path-muted);
}

.lwl-path__message {
    border: 1px solid var(--path-line);
    border-radius: 12px;
    padding: 16px;
    color: var(--path-ink);
    background: rgba(20, 22, 30, 0.9);
}

@media (max-width: 720px) {
    .lwl-path {
        padding: 18px;
    }

    .lwl-path__grid {
        grid-template-columns: 1fr;
    }
}
