:root {
    --color-bg: #000000;
    --color-bg-features: #000000;
    --color-card-bg: #0f0f0f;
    --color-card-border: rgba(255, 255, 255, 0.1);
    --color-text: #ffffff;
    --color-text-muted: #f4f4f4;
    --color-text-secondary: #a3a3a3;
    --color-text-stat: #f9f9f9;
    --color-primary: #f14e13;
    --color-primary-hover: #d94410;
    --color-border: #818181;
    --color-border-hover: #ffffff;

    --font-family: 'Onest', system-ui, -apple-system, sans-serif;

    --container-max: 90rem;
    --container-padding: 1.25rem;
}

@media (min-width: 90rem) {
    :root {
        --container-max: 80rem;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Minimal content fade-in */
@media (prefers-reduced-motion: no-preference) {
    .reveal-ready {
        opacity: 0;
        transform: translateY(0.75rem);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-ready.is-inview {
        opacity: 1;
        transform: translateY(0);
    }

    .hero__content,
    .hero__stats {
        animation: callisto-fade-up 0.8s ease both;
    }

    .hero__stats {
        animation-delay: 0.18s;
    }
}

@keyframes callisto-fade-up {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
