:root {
    --bg-color: #050505;
    --text-main: #e5e5e5;
    --text-muted: #737373;
    --border-color: #171717;
    --accent: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.mono { font-family: 'JetBrains Mono', monospace; }

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 8rem;
}

header {
    margin-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3rem;
}

.legal-section {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: sticky;
    top: 6rem;
    height: fit-content;
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.legal-highlight {
    padding: 2.5rem;
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

.stop-list-box {
    border: 1px solid #262626;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 1rem;
}

.footer-line {
    margin-top: 8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 850px) {
    .legal-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .section-label {
        position: static;
        margin-bottom: 1rem;
    }
    h1 { font-size: 2.5rem; }
    .content-wrapper { padding: 2rem 1.5rem 4rem; }
}

::selection {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.reveal {
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
}

.reveal-ready .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
