:root {
    color-scheme: dark;
    --page-background: #111310;
    --surface: #191b18;
    --text-primary: #eeeade;
    --text-muted: #8d9088;
    --line: #2a2d29;
    --accent: #d9a85f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--page-background);
    color: var(--text-primary);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

header.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem clamp(1.25rem, 4vw, 3.5rem);
    border-bottom: 1px solid var(--line);
}

header.site-header nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

header.site-header a {
    color: var(--text-muted);
    text-decoration: none;
}

header.site-header a:hover {
    color: var(--text-primary);
}

header.site-header .brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.verify-notice,
.messages {
    margin: 1rem auto;
    width: min(92vw, 60rem);
}

.verify-notice {
    color: var(--text-muted);
}

main.subscriptions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
}

main.subscriptions button {
    padding: 0.75rem 1.5rem;
}
