:root {
    --color-primary: #1A436C;
    --color-accent: #FFDE09;
    --color-text: #333333;
    --color-text-muted: #6B7280;
    --color-bg-start: #FAFAF9;
    --color-bg-end: #EDEFF2;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text);
    background: linear-gradient(180deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
}

.public-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 100vh;
    padding: 32px;
    text-align: center;
}

.public-page__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
}

.public-page__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-page__tagline {
    max-width: 32rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.public-page__footer {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.public-page__footer a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.public-page__footer a:hover,
.public-page__footer a:focus-visible {
    text-decoration: underline;
}
