:root {
    --color-bg: #080b12;
    --color-surface: #111827;
    --color-surface-2: #151b29;
    --color-accent: #ffb31f;
    --color-accent-2: #ff6a00;
    --color-white: #ffffff;
    --color-text: rgba(255,255,255,0.96);
    --color-muted: rgba(255,255,255,0.72);
    --color-border: rgba(255,255,255,0.09);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1320px, calc(100% - 36px));
    --body-font: "Inter", sans-serif;
    --heading-font: "Outfit", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 179, 31, 0.12), transparent 24%),
        radial-gradient(circle at 85% 10%, rgba(255, 106, 0, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
        var(--color-bg);
    font-family: var(--body-font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--heading-font);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

p {
    margin: 0;
    color: var(--color-muted);
}

ul,
ol {
    padding-left: 1.2rem;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.reading-width {
    max-width: 780px;
}

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

.screen-reader-text:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 12px;
    background: #fff;
    color: #000;
    z-index: 9999;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4.7rem);
}

.page-shell {
    padding: 110px 0 90px;
}

.page-hero {
    padding: 0 0 36px;
}

.page-hero.compact {
    padding-bottom: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
