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

/* Skip link */
.skip-link {
    position: absolute; top: -100px; left: 16px; z-index: 10000;
    background: var(--accent); color: #fff; padding: 8px 16px;
    font-size: 0.875rem; font-weight: 600; text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* Focus-visible for keyboard accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--bg);
    overflow-x: hidden;
}

/* Headings — source uses uppercase + tracking-wider everywhere */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 500; }

p { color: var(--white-70); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }

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

ul, ol { list-style: none; }

blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

/* Container — matches max-w-7xl mx-auto px-4 */
.container {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--px);
    padding-right: var(--px);
}

/* Sections — matches py-12 md:py-16 */
.section {
    padding: var(--section-py) 0;
}

/* Section labels — live: text-sm font-bold uppercase tracking-wider */
.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--white-70);
    max-width: 600px;
}

/* Border dividers — matches border-t border-white/10 */
.border-top { border-top: 1px solid var(--white-10); }
.border-bottom { border-bottom: 1px solid var(--white-10); }

/* Text utilities */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-muted { color: var(--white-70); }
.text-faint { color: var(--white-50); }
.text-accent { color: var(--accent); }
