* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--cir-bg);
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--cir-text);
    background:
        radial-gradient(circle at 75% 10%, rgba(214, 168, 92, 0.12), transparent 34%),
        radial-gradient(circle at 20% 0%, rgba(91, 143, 191, 0.10), transparent 30%),
        linear-gradient(180deg, #07101c 0%, #05070b 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    color: var(--cir-muted);
    line-height: 1.65;
}

.site-shell {
    width: 100%;
    max-width: none;
    margin: 0;
}

