/**
 * Public landing (/) — standalone stylesheet so layout does not depend on inline
 * styles or the Vite build (reliable across proxies and future CSP tightening).
 */
:root {
    color-scheme: light;
}

body.welcome {
    font-family: ui-sans-serif, system-ui, sans-serif;
    margin: 0;
    line-height: 1.5;
    min-height: 100vh;
    background: #f4f4f5;
    color: #18181b;
    -webkit-font-smoothing: antialiased;
}

.welcome a {
    color: inherit;
}

.welcome-header {
    background: #fff;
    border-bottom: 1px solid #e4e4e7;
}

.welcome-inner {
    max-width: 48rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.welcome-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.welcome-brand {
    font-weight: 600;
    color: #27272a;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
}

.welcome-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.welcome-nav a:not(.welcome-btn) {
    font-size: 0.875rem;
    color: #52525b;
    text-decoration: none;
}

.welcome-nav a:not(.welcome-btn):hover {
    color: #18181b;
}

.welcome-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 0.375rem;
    background: #18181b;
    color: #fff !important;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.welcome-btn:hover {
    background: #27272a;
}

.welcome-btn:focus-visible {
    outline: 2px solid #3f3f46;
    outline-offset: 2px;
}

.welcome-btn.welcome-btn--ghost {
    background: transparent;
    color: #52525b !important;
    padding: 0;
    font-weight: 400;
}

.welcome-btn.welcome-btn--ghost:hover {
    background: transparent;
    color: #18181b !important;
}

.welcome-btn.welcome-btn--secondary {
    background: #fff;
    color: #18181b !important;
    border: 1px solid #e4e4e7;
}

.welcome-btn.welcome-btn--secondary:hover {
    background: #f4f4f5;
}

.welcome-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.welcome-main {
    padding: 3rem 1.5rem;
}

.welcome-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}

@media (min-width: 48rem) {
    .welcome-card {
        padding: 2.5rem;
    }
}

.welcome-eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    color: #15803d;
    margin: 0 0 0.5rem;
}

.welcome-title {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
    line-height: 1.2;
}

@media (min-width: 48rem) {
    .welcome-title {
        font-size: 1.875rem;
    }
}

.welcome-lead {
    color: #52525b;
    margin: 0 0 2rem;
    font-size: 1rem;
    max-width: 42rem;
}

.welcome-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.welcome-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #3f3f46;
}

.welcome-list strong {
    color: #18181b;
}

.welcome-step {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: #d1fae5;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.welcome code {
    font-size: 0.75rem;
    background: #f4f4f5;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.welcome-note {
    font-size: 0.875rem;
    color: #52525b;
    margin: 0;
}

.welcome-inline-logout {
    display: inline;
    margin: 0;
    padding: 0;
}

.welcome-capitalize {
    text-transform: capitalize;
}
