body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--slate-700);
    background: var(--paper);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--navy-900);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 600;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
}

p {
    max-width: 62ch;
    /* text-align: justify; */
    text-justify: inter-word;
    hyphens: auto;
}

p.lede {
    font-size: 1.15rem;
    color: var(--slate-500);
}

.mono {
    font-family: var(--font-mono);
    letter-spacing: 0.01em;
    /* margin-top: var(--space-2); */
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--red-600);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-3);
}

.container-2 {
    max-width: var(--container-wide-max);
    margin-inline: auto;
    padding-inline: var(--space-3);
}

.section {
    padding-block: var(--space-6);
}

.section--tight {
    padding-block: var(--space-5);
}

.section--dark {
    background: var(--navy-900);
    color: var(--white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

.section--tint {
    background: var(--steel-100);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red-600);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: var(--space-1);
    position: relative;
}

/* Technical marker */
.eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    display: inline-block;
}

/* Engineering reference marker */
.eyebrow::after {
    content: "";
    width: 4px;
    height: 4px;
    border: 1px solid currentColor;
    display: inline-block;
    margin-left: -0.35rem;
}

.section-head {
    max-width: 640px;
    margin-bottom: var(--space-4);
}

.grid {
    display: grid;
    gap: var(--space-2);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.hairline {
    border: none;
    border-top: 1px solid var(--line);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--red-600);
    color: var(--white);
    padding: var(--space-1) var(--space-2);
    z-index: 200;
}

.skip-link:focus {
    left: var(--space-2);
    top: var(--space-2);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    /* min-width: 0; */
}

.brand svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.brand .name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.05;
}

.brand .tag {
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--brass);
    text-transform: uppercase;
    font-weight: 600;
}

.logo {
    width: 75px;
    /* width: 100%; */
    /* height: 43px; */
}

.service-detail__spacer {
    height: var(--space-3, 2rem);
}

@media (max-width: 768px) {

    /* Investor Relations */
    .ir-hero {
        padding: 2rem 1.25rem !important;
    }

    .ir-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.2rem) !important;
    }

    /* Business Architecture */
    .ir-hero + .grid {
        grid-template-columns: 1fr !important;
    }

    /* Main two-column sections */
    .section.container > div[style*="grid-template-columns:1fr 1.5fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 3rem !important;
    }

    /* Operations matrix */
    .section.container > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .section.container > div[style*="grid-template-columns:1fr 1fr"] > div {
        border-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    /* Capacity rows */
    .section.container div[style*="grid-template-columns:100px 1fr 220px"] {
        grid-template-columns: 90px 1fr !important;
        gap: .75rem !important;
    }

    .section.container div[style*="grid-template-columns:100px 1fr 220px"] span:last-child {
        display: none;
    }

    /* Growth / Governance */
    .section.container .grid--2 {
        grid-template-columns: 1fr !important;
    }

    /* Partnership CTA */
    .section.container div[style*="justify-content:space-between"] {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .section.container div[style*="justify-content:space-between"] .button {
        width: 100%;
        text-align: center;
    }

}

.section[style*="height: 600px"] {
    align-items: center !important;
}

.section[style*="height: 600px"] {
    align-items: center;
}

.section[style*="height: 600px"] .container {
    align-items: center;
}