/*
 * Swits Caretaker — public landing page.
 * Standalone styles; not loaded inside the Unfold admin shell.
 */
:root {
    --c-ink:     #142235;
    --c-muted:   #5c6b7a;
    --c-blue:    #1377b9;
    --c-teal:    #0f8d86;
    --c-surface: #f7fafb;
    --c-white:   #ffffff;
    --c-border:  #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    background: var(--c-surface);
    color: var(--c-ink);
    -webkit-font-smoothing: antialiased;
}

.l-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ───────────────────────────────────────────────── */
.l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
}

.l-wordmark {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.l-wordmark__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-blue);
    flex-shrink: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-ghost {
    color: var(--c-ink);
    background: transparent;
    border-color: var(--c-border);
}

.btn-ghost:hover {
    background: #eef2f6;
}

.btn-primary {
    background: var(--c-blue);
    color: var(--c-white);
}

.btn-primary:hover {
    background: var(--c-teal);
}

.btn-primary--lg {
    padding: 0.75rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
}

/* ── Main ─────────────────────────────────────────────────── */
.l-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 4rem;
}

.l-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
}

.l-icon {
    width: 56px;
    height: 56px;
    color: var(--c-blue);
    margin-bottom: 1.5rem;
}

.l-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 0.625rem;
}

.l-title {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--c-ink);
    line-height: 1.05;
    margin-bottom: 0.875rem;
}

.l-subtitle {
    font-size: 0.9375rem;
    color: var(--c-muted);
    line-height: 1.65;
    margin-bottom: 2.25rem;
}

.l-micro {
    margin-top: 1.25rem;
    font-size: 0.6875rem;
    color: #94a3b8;
    letter-spacing: 0.03em;
}

.l-micro__sep {
    margin: 0 0.375em;
    opacity: 0.6;
}

/* ── Footer ───────────────────────────────────────────────── */
.l-footer {
    text-align: center;
    padding: 1.125rem;
    font-size: 0.6875rem;
    color: #94a3b8;
    border-top: 1px solid var(--c-border);
    background: var(--c-white);
    letter-spacing: 0.02em;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
    .l-header   { padding: 1rem 1.25rem; }
    .l-title    { font-size: 2.125rem; }
    .l-main     { padding: 3rem 1.25rem 3rem; }
}
