*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    forced-color-adjust: none !important;
    -webkit-force-color-adjust: none !important;
    color-scheme: normal !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    forced-color-adjust: none !important;
    -webkit-force-color-adjust: none !important;
    color-scheme: normal !important;
    filter: none !important;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s var(--ease-out-quart), color 0.5s var(--ease-out-quart);
    filter: none !important;
}

html {
    filter: none !important;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.06), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s var(--ease-out-quart);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.5s var(--ease-out-quart);
}

[data-theme="light"] body::after {
    opacity: 0.04;
}

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

img {
    max-width: 100%;
    display: block;
    filter: none !important;
}

svg {
    filter: none !important;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    forced-color-adjust: none !important;
    -webkit-force-color-adjust: none !important;
    color-scheme: normal !important;
}

a {
    forced-color-adjust: none !important;
    -webkit-force-color-adjust: none !important;
}

input, textarea, select {
    forced-color-adjust: none !important;
    -webkit-force-color-adjust: none !important;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
    forced-color-adjust: none !important;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}