*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
    margin: 0;
    font-family: "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--reinvent-text);
    background: var(--reinvent-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--reinvent-yellow); color: var(--reinvent-navy-deep); }
:focus-visible { outline: 3px solid var(--reinvent-yellow); outline-offset: 4px; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.0; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.85rem, 5.7vw, 5.7rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4.eyebrow { font-size: clamp(1.05rem, 1.55vw, 1.45rem); font-weight: 700; line-height: 1.25; letter-spacing: .10em; }
p { color: var(--reinvent-muted); }
ul, ol { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.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; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--reinvent-yellow); color: var(--reinvent-navy-deep); padding: 12px 18px; border-radius: 8px; font-weight: 800; transition: top var(--transition); }
.skip-link:focus { top: 16px; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@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; }
    [data-reveal] { opacity: 1; transform: none; }
}
