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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 90% -10%, var(--accent-muted), transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 100%, var(--accent-muted), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

main,
.navbar,
.footer {
    position: relative;
    z-index: 1;
}

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

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

/* .container gutters — see shared/css/spacing.css */

.section {
    padding-top: var(--section-pad-y);
    padding-bottom: var(--section-pad-y);
}

.hero.container {
    padding-top: var(--space-xl);
    padding-bottom: var(--section-pad-y-lg);
}

.section-head {
    margin-bottom: var(--space-xl);
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.section-head.center .section-eyebrow {
    justify-content: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-desc {
    margin-top: var(--space-md);
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
