:root {
    /* =====================================================
       ETHERION — IDENTIDADE GLOBAL
       ===================================================== */

    --etherion-bg: #09090b;
    --etherion-bg-soft: #0f0f12;

    --etherion-surface: #151518;
    --etherion-surface-2: #1b1a1d;
    --etherion-surface-3: #242126;

    --etherion-text: #eee9de;
    --etherion-text-soft: #bbb2a4;
    --etherion-text-muted: #80786f;

    --etherion-gold: #b99555;
    --etherion-gold-light: #d1b171;
    --etherion-gold-dark: #6c542f;

    --etherion-border:
        rgba(205, 171, 105, 0.18);

    --etherion-border-strong:
        rgba(205, 171, 105, 0.36);

    --etherion-shadow:
        0 16px 50px rgba(0, 0, 0, 0.32);

    --etherion-radius-small: 8px;
    --etherion-radius: 12px;
    --etherion-radius-large: 18px;

    --etherion-header-height: 68px;
    --etherion-sidebar-width: 250px;

    --etherion-transition:
        160ms ease;

    --etherion-font:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* =====================================================
   RESET
   ===================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

html {
    background: var(--etherion-bg);
}

body {
    color: var(--etherion-text);
    background:
        radial-gradient(
            circle at top,
            rgba(185, 149, 85, 0.06),
            transparent 32rem
        ),
        var(--etherion-bg);

    font-family: var(--etherion-font);
    font-size: 15px;
    line-height: 1.5;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

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