/* Stash guest landing — page-scoped composition over the shared auth layout.
   Arrangement only; colors/radius/typography come from --vt-* tokens and
   shared ui-* components. */

.stash-guest {
    display: grid;
    gap: 24px;
}

.stash-guest__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.stash-guest__benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stash-guest__benefit-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vt-r-md);
    border: 1px solid var(--vt-line);
    background: var(--vt-panel-2);
    color: var(--vt-yellow);
}

.stash-guest__benefit-copy {
    min-width: 0;
}

.stash-guest__benefit-copy h3 {
    margin: 0 0 2px;
    font-family: var(--vt-disp), sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--vt-text);
}

.stash-guest__benefit-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--vt-text-2);
}

.stash-guest__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stash-guest__actions .ui-button {
    width: 100%;
}

.stash-guest__note {
    margin: 0;
    font-family: var(--vt-mono), monospace;
    font-size: 12px;
    color: var(--vt-text-3);
    text-align: center;
}

@media (max-width: 480px) {
    .stash-guest__actions {
        grid-template-columns: 1fr;
    }
}
