body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gray-300);
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.375rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-lead {
    font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: var(--color-gray-400);
}

.text-small {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.text-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.section-header {
    margin-bottom: 2.25rem;
}

.section-header__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin-bottom: 1rem;
}

.section-header__label::before {
    content: '';
    width: 32px;
    height: 1px;
    background-color: var(--color-gray-600);
}

.section-header__title {
    margin-bottom: 0;
}

.prose {
    font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
    line-height: 1.9;
    color: var(--color-gray-400);
    letter-spacing: 0.01em;
}

.prose p + p {
    margin-top: 1.25rem;
}

.prose strong,
.prose .prose__highlight {
    color: var(--color-white);
    font-weight: 700;
}
