.section-label {
    font-family: var(--mono), sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text);
    margin-bottom: 2.5rem;
}

.section-title span {
    color: var(--accent-lt);
}

section {
    padding: 100px 0;
}

.section-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-line), transparent);
    margin: 0 auto;
    max-width: 1000px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}