:root {
    --bg: #050a08;
    --bg-soft: #09110d;
    --bg-card: #0d1812;

    --text: #f5f7f6;
    --muted: #9ca9a2;

    --green: #8ee000;
    --green-soft: #68ad00;
    --green-dark: #477b00;

    --border: rgba(142, 224, 0, 0.18);

    --max-width: 1320px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

img {
    max-width: 100%;
    display: block;
}

.section-label,
.public-section-label,
.public-kicker {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 2.2px;
}

.status-badge {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 20px;
    border: 1px solid rgba(142, 224, 0, 0.25);
    background: rgba(142, 224, 0, 0.10);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}