:root {
    --ink: #080808;
    --paper: #dfddd6;
    --white: #f7f7f5;
    --gray: #767570;
    --line: #8c8a84;
    --red: #ef3123;
    --shell: 1440px;
    --pad: clamp(1.1rem, 3.2vw, 3.25rem);
    --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
}

.skip-link {
    background: var(--red);
    color: #fff;
    font-weight: 700;
    left: 1rem;
    padding: .75rem 1rem;
    position: fixed;
    top: -5rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 1rem;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -.065em;
    line-height: .88;
}

h2 {
    font-size: clamp(2.6rem, 6.4vw, 6.75rem);
    font-weight: 700;
    margin-bottom: 0;
    max-width: 12ch;
}

h3 {
    font-size: clamp(1.15rem, 1.7vw, 1.65rem);
    font-weight: 700;
    line-height: 1;
}

.site-header,
main,
.site-footer {
    margin-inline: auto;
    max-width: var(--shell);
    width: min(calc(100% - 32px), var(--shell));
}

.site-header {
    align-items: center;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1.5rem;
    grid-template-columns: auto 1fr auto;
    margin-top: 16px;
    min-height: 62px;
    padding: .65rem var(--pad);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    align-items: center;
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.07em;
    text-decoration: none;
}

.logo span {
    border: 3px solid var(--red);
    display: inline-block;
    height: 13px;
    margin-right: .45rem;
    transform: skew(-8deg);
    width: 13px;
}

.site-nav {
    display: flex;
    gap: clamp(.8rem, 2vw, 2rem);
    justify-content: center;
}

.site-nav a,
.header-action {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .045em;
    padding-block: .55rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav a::after {
    background: var(--red);
    bottom: .2rem;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    width: 100%;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.header-action {
    align-items: center;
    display: inline-flex;
    gap: .75rem;
}

.nav-toggle {
    background: transparent;
    border: 1px solid var(--ink);
    cursor: pointer;
    display: none;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .65rem .8rem;
    text-transform: uppercase;
}

.arrow {
    display: inline-block;
    height: 8px;
    min-width: 25px;
    position: relative;
    width: 25px;
}

.arrow::before {
    background: currentColor;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 100%;
}

.arrow::after {
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    content: "";
    height: 6px;
    position: absolute;
    right: 0;
    top: 1px;
    transform: rotate(45deg);
    width: 6px;
}

main {
    background: var(--paper);
}

.hero {
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 94px);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(4.6rem, 13.8vw, 12.5rem);
    font-weight: 700;
    letter-spacing: -.085em;
    line-height: .75;
    margin: 0;
    padding: clamp(3rem, 6vw, 6rem) var(--pad) clamp(2.5rem, 5vw, 5rem);
    text-transform: uppercase;
}

.hero-bar,
.page-hero-bar {
    align-items: center;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr auto;
    padding: 1.2rem var(--pad);
}

.hero-bar p,
.page-hero-bar p {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    font-weight: 500;
    margin: 0;
    max-width: 42ch;
}

.hero-actions {
    display: flex;
}

.button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--ink);
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: 1rem;
    justify-content: space-between;
    letter-spacing: .045em;
    min-height: 50px;
    min-width: 190px;
    padding: .9rem 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease;
}

.button + .button {
    border-left: 0;
}

.button:hover,
.button-dark {
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    background: var(--red);
    border-color: var(--red);
}

.button-red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.button-red:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
}

.hero-grid,
.module-grid {
    border-top: 1px solid var(--line);
    display: grid;
}

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

.hero-grid > div,
.module-grid article {
    border-right: 1px solid var(--line);
    min-height: 150px;
    padding: 1rem var(--pad) 1.25rem;
}

.hero-grid > div:last-child,
.module-grid article:last-child {
    border-right: 0;
}

.hero-grid span,
.module-grid article > span,
.model-grid article > span,
.process-grid li > span {
    color: var(--red);
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin-bottom: 2.4rem;
}

.hero-grid strong,
.hero-grid small {
    display: block;
}

.hero-grid strong {
    font-size: .82rem;
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.hero-grid small {
    color: #464540;
    font-size: .72rem;
}

.content-section {
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.section-header {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(170px, .28fr) 1fr;
    padding: clamp(3.5rem, 7vw, 7rem) var(--pad);
}

.section-header > p,
.cta-section > p {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .055em;
    margin: .35rem 0 0;
    text-transform: uppercase;
}

.section-header h2 {
    max-width: 13ch;
}

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

.five-up {
    grid-template-columns: repeat(5, 1fr);
}

.module-grid article {
    min-height: 225px;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

.module-grid h3 {
    min-height: 2.2rem;
}

.module-grid p {
    color: #464540;
    font-size: .82rem;
    margin-bottom: 0;
    max-width: 24ch;
}

.dark-section {
    --line: #444;
    background: var(--ink);
    color: var(--white);
}

.dark-section .section-header > p {
    color: #8e8e8b;
}

.service-statement {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.service-statement > p {
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 5rem) var(--pad);
}

.service-statement ul {
    border-left: 1px solid var(--line);
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-statement li {
    border-bottom: 1px solid var(--line);
    font-size: clamp(1rem, 1.7vw, 1.4rem);
    font-weight: 700;
    padding: 1.4rem var(--pad);
}

.service-statement li:last-child {
    border-bottom: 0;
}

.model-grid {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.model-grid article {
    min-height: 370px;
    padding: clamp(2rem, 4vw, 4rem) var(--pad);
    position: relative;
}

.model-grid article + article {
    border-left: 1px solid var(--line);
}

.model-grid h3 {
    font-size: clamp(2rem, 4.2vw, 4.3rem);
    line-height: .88;
    max-width: 9ch;
}

.model-grid p {
    color: #464540;
    max-width: 37ch;
}

.model-grid a {
    align-items: center;
    bottom: 2rem;
    display: inline-flex;
    font-size: .68rem;
    font-weight: 700;
    gap: 1rem;
    letter-spacing: .05em;
    position: absolute;
    text-decoration: none;
    text-transform: uppercase;
}

.model-grid a:hover {
    color: var(--red);
}

.process-grid {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.process-grid li {
    border-right: 1px solid var(--line);
    min-height: 245px;
    padding: 1.4rem;
}

.process-grid li:last-child {
    border-right: 0;
}

.process-grid h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.process-grid p {
    color: #464540;
    font-size: .82rem;
    max-width: 25ch;
}

.cta-section {
    align-items: end;
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(170px, .28fr) 1fr auto;
    padding: clamp(4rem, 8vw, 7rem) var(--pad);
}

.cta-section > p {
    color: #8e8e8b;
}

.cta-section h2 {
    max-width: none;
}

.page-hero {
    border-bottom: 1px solid var(--line);
    min-height: 72vh;
}

.page-hero h1 {
    padding-bottom: clamp(3rem, 6vw, 6rem);
}

.page-hero-bar {
    grid-template-columns: 1fr;
}

.statement-pair {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.statement-pair p {
    font-size: clamp(1.3rem, 2.4vw, 2.5rem);
    letter-spacing: -.04em;
    line-height: 1.05;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 5rem) var(--pad);
}

.statement-pair p + p {
    border-left: 1px solid var(--line);
}

.split-section .large-copy {
    border-top: 1px solid var(--line);
    font-size: clamp(1.7rem, 3.8vw, 4rem);
    letter-spacing: -.055em;
    line-height: .98;
    margin: 0;
    padding: clamp(3rem, 6vw, 6rem) var(--pad);
    max-width: none;
}

.boundary-grid {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.boundary-grid > div {
    min-height: 310px;
    padding: clamp(2rem, 4vw, 4rem) var(--pad);
}

.boundary-grid > div + div {
    border-left: 1px solid var(--line);
}

.boundary-grid h3 {
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.boundary-grid ul {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
}

.boundary-grid li {
    border-top: 1px solid var(--line);
    font-size: .78rem;
    font-weight: 700;
    padding: .8rem 0;
    text-transform: uppercase;
}

.faq-section {
    border-bottom: 1px solid var(--line);
}

.faq-index {
    display: grid;
    font-size: .68rem;
    font-weight: 700;
    gap: 2rem;
    grid-template-columns: 80px 1fr;
    letter-spacing: .05em;
    padding: 1.1rem var(--pad);
    text-transform: uppercase;
}

.faq-index span {
    color: var(--red);
}

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

.accordion-item {
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 80px;
}

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 28px;
    min-height: 82px;
    padding: 1rem var(--pad);
    text-align: left;
    width: 100%;
}

.accordion-item button > span:first-child {
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -.035em;
}

.accordion-item button > span:last-child {
    height: 20px;
    position: relative;
    width: 20px;
}

.accordion-item button > span:last-child::before,
.accordion-item button > span:last-child::after {
    background: var(--red);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 10px;
    transition: transform 160ms ease;
    width: 20px;
}

.accordion-item button > span:last-child::after {
    transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] > span:last-child::after {
    transform: rotate(0);
}

.accordion-panel {
    max-width: 68ch;
    padding: 0 var(--pad) 1.7rem;
}

.accordion-panel p {
    color: #464540;
    margin: 0;
}

.site-footer {
    background: var(--ink);
    border-top: 1px solid #444;
    color: var(--white);
    display: grid;
    gap: 3rem;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 4rem var(--pad) 5rem;
    position: relative;
}

.site-footer .logo span {
    border-color: var(--red);
}

.site-footer h2 {
    color: #777;
    font-size: .65rem;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.site-footer a:not(.logo) {
    color: #bbb;
    display: block;
    font-size: .78rem;
    margin-bottom: .55rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-brand p {
    color: #777;
    font-size: .8rem;
    margin-top: 1rem;
}

.copyright {
    bottom: 1.2rem;
    color: #666;
    font-size: .65rem;
    left: var(--pad);
    position: absolute;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-target {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 480ms cubic-bezier(.2, .8, .2, 1), transform 480ms cubic-bezier(.2, .8, .2, 1);
    }

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

    .module-grid,
    .model-grid,
    .process-grid,
    .service-statement,
    .statement-pair,
    .boundary-grid,
    .accordion {
        position: relative;
    }

    .module-grid::before,
    .model-grid::before,
    .process-grid::before,
    .service-statement::before,
    .statement-pair::before,
    .boundary-grid::before,
    .accordion::before {
        background: var(--red);
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        top: -1px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
        width: 100%;
        z-index: 2;
    }

    .line-visible::before {
        transform: scaleX(1);
    }
}

@media (max-width: 1000px) {
    .five-up {
        grid-template-columns: repeat(3, 1fr);
    }

    .five-up article:nth-child(3) {
        border-right: 0;
    }

    .five-up article:nth-child(n + 4) {
        border-top: 1px solid var(--line);
    }

    .cta-section {
        grid-template-columns: 1fr 2fr;
    }

    .cta-section .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .site-header,
    main,
    .site-footer {
        width: 100%;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        margin-top: 0;
        padding: .7rem 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        background: var(--paper);
        border-top: 1px solid var(--line);
        display: none;
        flex-direction: column;
        gap: 0;
        grid-column: 1 / -1;
        margin: .15rem -1rem -.7rem;
        padding: .4rem 1rem .8rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-bottom: 1px solid var(--line);
        padding: .85rem 0;
    }

    .header-action {
        display: none;
    }

    .hero,
    .page-hero {
        min-height: auto;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(4.1rem, 17vw, 8rem);
        padding-top: 4rem;
    }

    .hero-bar {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        flex: 1;
    }

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

    .hero-grid > div:nth-child(2),
    .module-grid.four-up article:nth-child(2),
    .process-grid li:nth-child(2) {
        border-right: 0;
    }

    .hero-grid > div:nth-child(n + 3),
    .module-grid.four-up article:nth-child(n + 3),
    .process-grid li:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .section-header {
        grid-template-columns: 1fr;
    }

    .service-statement,
    .model-grid,
    .statement-pair,
    .boundary-grid {
        grid-template-columns: 1fr;
    }

    .service-statement ul,
    .model-grid article + article,
    .statement-pair p + p,
    .boundary-grid > div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

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

    .five-up article:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .five-up article:nth-child(even) {
        border-right: 0;
    }

    .five-up article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .cta-section {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .cta-section .button {
        grid-column: auto;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .hero h1,
    .page-hero h1 {
        font-size: clamp(3.25rem, 14.5vw, 4.2rem);
        line-height: .78;
        padding: 3.5rem 1rem 2.5rem;
    }

    .hero-bar,
    .page-hero-bar,
    .section-header,
    .cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button + .button {
        border-left: 1px solid var(--ink);
        border-top: 0;
    }

    .hero-grid,
    .four-up,
    .five-up,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid > div,
    .hero-grid > div:nth-child(2),
    .module-grid article,
    .module-grid.four-up article:nth-child(2),
    .five-up article:nth-child(3),
    .process-grid li,
    .process-grid li:nth-child(2) {
        border-right: 0;
    }

    .hero-grid > div + div,
    .module-grid article + article,
    .process-grid li + li {
        border-top: 1px solid var(--line);
    }

    .hero-grid > div,
    .module-grid article {
        min-height: 135px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .model-grid article {
        min-height: 330px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .model-grid h3 {
        font-size: 2.7rem;
    }

    .service-statement > p,
    .service-statement li,
    .statement-pair p,
    .split-section .large-copy,
    .boundary-grid > div {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-index,
    .accordion-item button,
    .accordion-panel {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-footer {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* Guided section hierarchy and technical visual accents */
.logo {
    gap: .55rem;
}

.logo img {
    display: block;
    height: 22px;
    object-fit: contain;
    width: auto;
}

.section-kicker {
    align-items: center;
    align-self: start;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    display: inline-grid;
    grid-template-columns: 50px auto;
    overflow: hidden;
    width: fit-content;
}

.section-kicker strong {
    align-items: center;
    align-self: stretch;
    background: var(--red);
    color: #fff;
    display: flex;
    font-size: .78rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: .05em;
    min-height: 46px;
}

.section-kicker span {
    color: var(--ink);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .075em;
    padding: 0 .9rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.service-layout {
    border-top: 1px solid var(--line-strong);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}

.technical-visual {
    align-items: center;
    background: var(--field);
    border-right: 1px solid var(--line-strong);
    display: flex;
    margin: 0;
    min-height: 490px;
    overflow: hidden;
    position: relative;
}

.technical-visual::after {
    border: 1px solid rgba(21, 21, 21, .18);
    content: "";
    inset: 22px;
    pointer-events: none;
    position: absolute;
}

.technical-visual img {
    display: block;
    height: 100%;
    min-height: 490px;
    object-fit: cover;
    width: 100%;
}

.technical-visual figcaption {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line-strong);
    bottom: 21px;
    color: var(--gray);
    font-size: .58rem;
    font-weight: 700;
    left: 21px;
    letter-spacing: .06em;
    padding: .65rem .75rem;
    position: absolute;
    text-transform: uppercase;
    z-index: 1;
}

.service-layout .service-statement {
    border-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.service-layout .service-statement > p {
    font-size: clamp(1.9rem, 3.4vw, 3.65rem);
    padding: clamp(2rem, 4.5vw, 4.5rem) var(--pad);
}

.service-layout .service-statement ul {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-top: auto;
}

.service-layout .service-statement li {
    font-size: clamp(.95rem, 1.4vw, 1.25rem);
    padding-bottom: 1.15rem;
    padding-top: 1.15rem;
}

.reason-grid {
    background: var(--line-strong);
    border-top: 1px solid var(--line-strong);
    display: grid;
    gap: 1px;
    grid-template-columns: 1.08fr 1fr 1fr;
}

.reason-grid article {
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: clamp(1.25rem, 2.2vw, 2rem);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.reason-grid article:not(.reason-lead):hover {
    background: var(--panel-soft);
}

.reason-grid .reason-lead {
    background: var(--red);
    color: #fff;
    grid-row: span 2;
    min-height: 461px;
}

.reason-grid article > span {
    color: var(--subtle);
    display: block;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .07em;
    margin-bottom: 2.2rem;
}

.reason-grid .reason-lead > span {
    color: rgba(255, 255, 255, .7);
}

.reason-grid svg {
    fill: none;
    height: 46px;
    margin-bottom: auto;
    stroke: var(--red);
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.45;
    width: 46px;
}

.reason-grid .reason-lead svg {
    height: 62px;
    stroke: currentColor;
    width: 62px;
}

.reason-grid h3 {
    font-size: clamp(1.45rem, 2.25vw, 2.25rem);
    letter-spacing: -.045em;
    line-height: .95;
    margin-bottom: .7rem;
    margin-top: 2rem;
}

.reason-grid .reason-lead h3 {
    font-size: clamp(2.5rem, 4.4vw, 4.5rem);
    max-width: 7ch;
}

.reason-grid p {
    color: var(--gray);
    font-size: .8rem;
    margin: 0;
    max-width: 28ch;
}

.reason-grid .reason-lead p {
    color: rgba(255, 255, 255, .82);
}

@media (max-width: 1000px) {
    .service-layout {
        grid-template-columns: 1fr 1fr;
    }

    .reason-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reason-grid .reason-lead {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 330px;
    }
}

@media (max-width: 820px) {
    .section-header {
        grid-template-columns: 1fr;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .technical-visual {
        border-bottom: 1px solid var(--line-strong);
        border-right: 0;
        min-height: 380px;
    }

    .technical-visual img {
        min-height: 380px;
    }
}

@media (max-width: 540px) {
    .section-kicker {
        grid-template-columns: 44px auto;
    }

    .section-kicker strong {
        min-height: 42px;
    }

    .section-kicker span {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .technical-visual,
    .technical-visual img {
        min-height: 300px;
    }

    .technical-visual::after {
        inset: 12px;
    }

    .technical-visual figcaption {
        bottom: 11px;
        left: 11px;
        max-width: calc(100% - 22px);
    }

    .reason-grid {
        grid-template-columns: 1fr;
    }

    .reason-grid .reason-lead {
        grid-column: auto;
        min-height: 360px;
    }

    .reason-grid article {
        min-height: 210px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reason-grid article:nth-child(2) {
        transition-delay: 60ms;
    }

    .reason-grid article:nth-child(3) {
        transition-delay: 110ms;
    }

    .reason-grid article:nth-child(4) {
        transition-delay: 160ms;
    }

    .reason-grid article:nth-child(5) {
        transition-delay: 210ms;
    }
}

/* CORE-aligned modern Swiss surface system */
:root {
    --ink: #151515;
    --paper: #f4f2ef;
    --white: #ffffff;
    --panel-soft: #f0efeb;
    --field: #f7f6f2;
    --gray: #6b6b68;
    --subtle: #9a9892;
    --line: #e0ded8;
    --line-strong: #c8c5bd;
    --red: #e5484d;
    --shadow: 0 24px 70px rgba(22, 22, 18, .09);
}

body {
    background: var(--paper);
}

.site-header,
main,
.site-footer {
    width: min(calc(100% - 36px), var(--shell));
}

.site-header {
    top: 12px;
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: 14px 14px 8px 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-action:hover {
    color: var(--red);
}

main {
    background: transparent;
}

.hero,
.page-hero {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-color: var(--white);
    background-image:
        linear-gradient(rgba(21, 21, 21, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 21, .065) 1px, transparent 1px);
    background-size: 34px 34px;
    box-shadow: 0 18px 50px rgba(22, 22, 18, .055);
    overflow: hidden;
}

.hero {
    min-height: calc(100vh - 110px);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(4.25rem, 10.8vw, 10rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: .79;
}

.hero-bar,
.page-hero-bar {
    background: rgba(255, 255, 255, .88);
}

.button {
    border-color: var(--line-strong);
    border-radius: 7px;
    background: var(--white);
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button + .button {
    margin-left: 8px;
    border-left: 1px solid var(--line-strong);
}

.button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.button-dark,
.button-red {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

.button-dark:hover,
.button-red:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.hero-grid > div,
.module-grid article {
    background: rgba(255, 255, 255, .72);
}

.hero-grid span,
.module-grid article > span,
.model-grid article > span,
.process-grid li > span {
    color: var(--subtle);
}

.content-section,
.faq-section,
.cta-section {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 12px 42px rgba(22, 22, 18, .04);
    color: var(--ink);
    overflow: hidden;
}

.section-header,
.cta-section {
    background-color: var(--white);
    background-image:
        linear-gradient(rgba(21, 21, 21, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 21, .05) 1px, transparent 1px);
    background-size: 34px 34px;
}

.section-header > p,
.cta-section > p,
.dark-section .section-header > p {
    color: var(--red);
}

.module-grid::before,
.model-grid::before,
.process-grid::before,
.service-statement::before,
.statement-pair::before,
.boundary-grid::before,
.accordion::before {
    background: var(--line-strong);
}

.dark-section {
    --line: #e0ded8;
    background: var(--white);
    color: var(--ink);
}

.module-grid article,
.process-grid li,
.service-statement li,
.model-grid article,
.accordion-item button {
    transition: background-color 160ms ease, transform 160ms ease;
}

.module-grid article:hover,
.process-grid li:hover,
.service-statement li:hover,
.model-grid article:hover,
.accordion-item button:hover {
    background: var(--panel-soft);
}

.model-grid article {
    background: var(--white);
}

.cta-section {
    grid-template-columns: minmax(170px, .28fr) 1fr auto;
}

.site-footer {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px 12px 0 0;
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--ink);
}

.site-footer h2,
.copyright {
    color: var(--subtle);
}

.site-footer a:not(.logo),
.footer-brand p {
    color: var(--gray);
}

.site-footer a:hover {
    color: var(--red);
}

@media (max-width: 1000px) {
    .cta-section {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 820px) {
    .site-header,
    main,
    .site-footer {
        width: calc(100% - 24px);
    }

    .site-header {
        top: 6px;
        margin-top: 12px;
    }

    .site-nav {
        background: var(--white);
    }

    .cta-section {
        grid-template-columns: 1fr;
    }

    .cta-section .button {
        grid-column: auto;
    }
}

@media (max-width: 540px) {
    .hero h1,
    .page-hero h1 {
        font-size: clamp(3.15rem, 14vw, 4.05rem);
    }

    .button + .button {
        margin-left: 0;
        border-left: 1px solid var(--line-strong);
    }
}

/* Functional Swiss hierarchy: compact narrative, persistent navigation, dual theme */
:root {
    --grid-line: rgba(21, 21, 21, .055);
}

html {
    color-scheme: light;
}

html[data-theme="dark"] {
    --ink: #f1efe9;
    --paper: #11110f;
    --white: #1a1a17;
    --panel-soft: #24241f;
    --field: #151512;
    --gray: #b9b6af;
    --subtle: #8f8c84;
    --line: #34342f;
    --line-strong: #4d4c45;
    --red: #ff555d;
    --shadow: 0 24px 70px rgba(0, 0, 0, .34);
    --grid-line: rgba(241, 239, 233, .065);
    color-scheme: dark;
}

body,
.site-header,
.hero,
.page-hero,
.content-section,
.faq-section,
.cta-section,
.site-footer,
.model-grid article,
.reason-grid article,
.accordion-item button {
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header {
    gap: clamp(.75rem, 1.4vw, 1.5rem);
    grid-template-columns: 1fr auto 1fr;
    min-height: 58px;
    padding-bottom: .55rem;
    padding-top: .55rem;
}

.site-header .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.site-header .logo img {
    background: transparent;
    border-radius: 3px;
    padding: 0;
}

.site-nav {
    gap: clamp(.55rem, 1.15vw, 1.15rem);
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    min-width: 0;
}

.site-nav a,
.header-action,
.theme-toggle {
    font-size: .6rem;
    letter-spacing: .055em;
    white-space: nowrap;
}

.header-tools {
    align-items: center;
    display: flex;
    gap: .8rem;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.theme-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-weight: 800;
    gap: .5rem;
    min-height: 34px;
    padding: .5rem .65rem;
    text-transform: uppercase;
}

.theme-toggle:hover {
    border-color: var(--ink);
    color: var(--red);
}

.theme-toggle-icon {
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    position: relative;
    width: 12px;
}

.theme-toggle-icon::after {
    background: currentColor;
    border-radius: 50%;
    content: "";
    inset: 3px;
    position: absolute;
}

html[data-theme="dark"] .theme-toggle-icon {
    box-shadow: inset -4px 0 0 var(--white);
}

html[data-theme="dark"] .theme-toggle-icon::after {
    display: none;
}

.hero {
    display: block;
    min-height: auto;
}

.hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
    min-height: 610px;
}

.hero-copy {
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 5vw, 5.4rem) var(--pad) clamp(2.5rem, 4vw, 4rem);
}

.hero h1 {
    font-size: clamp(3.7rem, 6.6vw, 7.25rem);
    letter-spacing: -.068em;
    line-height: 1.08;
    max-width: 10ch;
    overflow: visible;
    padding: 0;
    text-transform: none;
}

.hero h1 span {
    display: block;
    font-size: .52em;
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .98;
    margin-top: .55rem;
    max-width: 16ch;
}

.hero-intro {
    color: var(--gray);
    font-size: clamp(1rem, 1.45vw, 1.3rem);
    line-height: 1.38;
    margin: 1.8rem 0 1.65rem;
    max-width: 47ch;
}

.hero-actions {
    flex-wrap: wrap;
    gap: .55rem;
}

.hero-actions .button + .button {
    margin-left: 0;
}

.software-strip {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    font-size: .62rem;
    gap: .6rem 1rem;
    grid-template-columns: auto auto 1fr;
    letter-spacing: .04em;
    margin-top: 1.9rem;
    padding: .85rem 0;
    text-transform: uppercase;
}

.software-strip > span:first-child {
    color: var(--red);
    font-weight: 800;
}

.software-strip > span:last-child {
    color: var(--gray);
}

.hero-technical {
    align-items: center;
    background: #f7f6f2;
    display: flex;
    margin: 0;
    overflow: hidden;
    padding: clamp(1rem, 2.2vw, 2.25rem);
    position: relative;
}

.hero-technical::after {
    border: 1px solid rgba(21, 21, 21, .16);
    content: "";
    inset: clamp(1rem, 2.2vw, 2.25rem);
    pointer-events: none;
    position: absolute;
}

.hero-technical img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.hero-technical .hero-drawing {
    height: auto;
    inset: clamp(1rem, 2.2vw, 2.25rem);
    max-height: calc(100% - clamp(2rem, 4.4vw, 4.5rem));
    max-width: calc(100% - clamp(2rem, 4.4vw, 4.5rem));
    object-fit: contain;
    position: absolute;
    width: calc(100% - clamp(2rem, 4.4vw, 4.5rem));
}

.hero-drawing-assembled {
    opacity: 0;
}

.assembly-label {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(21, 21, 21, .22);
    bottom: clamp(1rem, 2.2vw, 2.25rem);
    color: #151515;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .07em;
    padding: .65rem .75rem;
    position: absolute;
    right: clamp(1rem, 2.2vw, 2.25rem);
    text-transform: uppercase;
    z-index: 3;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-drawing-exploded {
        animation: exploded-state 9s cubic-bezier(.65, 0, .35, 1) infinite;
    }

    .hero-drawing-assembled {
        animation: assembled-state 9s cubic-bezier(.65, 0, .35, 1) infinite;
    }
}

@keyframes exploded-state {
    0%, 36%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    48%, 88% {
        opacity: 0;
        transform: scale(.95);
    }
}

@keyframes assembled-state {
    0%, 36%, 100% {
        opacity: 0;
        transform: scale(.94);
    }
    48%, 88% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-grid > div {
    min-height: 128px;
    padding-bottom: 1.15rem;
}

.hero-grid span {
    color: var(--red);
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    letter-spacing: -.02em;
    margin-bottom: 1.45rem;
}

.hero-grid strong {
    font-size: .76rem;
}

.hero-grid small {
    color: var(--gray);
}

.compact-section-header {
    background-color: var(--white);
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 34px 34px;
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(150px, .24fr) 1fr;
    padding: clamp(3rem, 5.6vw, 5.5rem) var(--pad);
}

.content-section[id] {
    scroll-margin-top: 125px;
}

.section-label {
    color: var(--red);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .075em;
    margin: .4rem 0 0;
    text-transform: uppercase;
}

.compact-section-header h2 {
    font-size: clamp(2.55rem, 5.2vw, 5.15rem);
    line-height: 1;
    max-width: 14ch;
    overflow: visible;
    padding-block: .06em;
}

.compact-section-header > div > p {
    color: var(--gray);
    font-size: clamp(.95rem, 1.3vw, 1.12rem);
    line-height: 1.5;
    margin: 1.25rem 0 0;
    max-width: 55ch;
}

.problem-list {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    margin: 0;
    padding: 0;
}

.problem-list li {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1rem;
    grid-template-columns: 12px 1fr;
    min-height: 165px;
    padding: clamp(1.5rem, 2.5vw, 2.5rem) var(--pad);
}

.problem-list li:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.signal-dot {
    background: var(--red);
    height: 9px;
    margin-top: .35rem;
    width: 9px;
}

.problem-list h3 {
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .65rem;
}

.problem-list p {
    color: var(--gray);
    font-size: .84rem;
    line-height: 1.45;
    margin: 0;
    max-width: 42ch;
}

.service-focus {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: .82fr 1.18fr;
}

.service-lead {
    align-items: flex-end;
    background: var(--panel-soft);
    display: flex;
    font-size: clamp(1.75rem, 3.35vw, 3.5rem);
    font-weight: 650;
    letter-spacing: -.05em;
    line-height: .96;
    margin: 0;
    min-height: 390px;
    padding: clamp(2rem, 4vw, 4rem) var(--pad);
}

.scope-list {
    border-left: 1px solid var(--line);
    list-style: none;
    margin: 0;
    padding: 0;
}

.scope-list li {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: .65rem 1.5rem;
    grid-template-columns: minmax(160px, .65fr) 1fr;
    padding: 1.35rem var(--pad);
}

.scope-list li:last-child {
    border-bottom: 0;
}

.scope-list strong {
    font-size: .82rem;
    text-transform: uppercase;
}

.scope-list span {
    color: var(--gray);
    font-size: .8rem;
    line-height: 1.45;
}

.models-intro {
    align-items: end;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(150px, .24fr) 1fr;
    padding: 2.4rem var(--pad);
}

.models-intro h3 {
    font-size: clamp(1.65rem, 3vw, 3rem);
    letter-spacing: -.045em;
    line-height: .95;
    max-width: 19ch;
}

.compact-model-grid article {
    min-height: 280px;
    padding-bottom: 4.5rem;
    padding-top: clamp(2rem, 3.2vw, 3.2rem);
}

.compact-model-grid h3 {
    font-size: clamp(2rem, 3.3vw, 3.35rem);
    max-width: 11ch;
}

.reason-grid article {
    min-height: 215px;
}

.reason-grid .reason-lead {
    min-height: 431px;
}

.reason-grid article > svg {
    margin-bottom: auto;
}

.reason-grid h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.reason-grid .reason-lead h3 {
    font-size: clamp(2.45rem, 4vw, 4rem);
}

.process-grid {
    background: var(--field);
}

.process-grid li {
    min-height: 205px;
    position: relative;
}

.process-grid li::after {
    background: var(--red);
    content: "";
    height: 3px;
    left: 1.4rem;
    position: absolute;
    right: 1.4rem;
    top: 0;
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform 220ms ease;
}

.process-grid li:hover::after {
    transform: scaleX(1);
}

.process-grid li > span {
    color: var(--red);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.process-grid h3 {
    font-size: clamp(1.65rem, 2.4vw, 2.5rem);
}

.cta-section {
    padding-bottom: clamp(3.2rem, 5.5vw, 5.5rem);
    padding-top: clamp(3.2rem, 5.5vw, 5.5rem);
}

.cta-section h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .9;
    max-width: 15ch;
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .section-header,
html[data-theme="dark"] .compact-section-header,
html[data-theme="dark"] .cta-section {
    background-color: var(--white);
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
}

html[data-theme="dark"] .hero-grid > div,
html[data-theme="dark"] .module-grid article {
    background: rgba(26, 26, 23, .8);
}

html[data-theme="dark"] .button {
    background: var(--white);
    border-color: var(--line-strong);
    color: var(--ink);
}

html[data-theme="dark"] .button-dark,
html[data-theme="dark"] .button-red {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

html[data-theme="dark"] .button:hover,
html[data-theme="dark"] .button-dark:hover,
html[data-theme="dark"] .button-red:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
}

html[data-theme="dark"] .model-grid p,
html[data-theme="dark"] .module-grid p,
html[data-theme="dark"] .process-grid p,
html[data-theme="dark"] .split-section .large-copy,
html[data-theme="dark"] .accordion-panel p {
    color: var(--gray);
}

html[data-theme="dark"] .reason-grid {
    background: var(--line-strong);
}

html[data-theme="dark"] .reason-grid .reason-lead {
    background: var(--red);
}

html[data-theme="dark"] .accordion-item button:hover,
html[data-theme="dark"] .model-grid article:hover,
html[data-theme="dark"] .process-grid li:hover {
    background: var(--panel-soft);
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: 1fr auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-header .logo {
        grid-column: 1;
        justify-self: start;
    }

    .header-tools {
        grid-column: 2;
    }

    .site-nav {
        border-top: 1px solid var(--line);
        display: flex;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: space-between;
        margin: .1rem 0 -.15rem;
        padding-top: .45rem;
    }

    .hero-main {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        background: transparent;
        border-top: 1px solid var(--line);
        display: grid;
        flex-direction: initial;
        gap: .25rem;
        grid-column: 1 / -1;
        grid-template-columns: repeat(6, 1fr);
        margin: .1rem 0 -.15rem;
        padding: .45rem 0 0;
    }

    .site-nav a {
        border-bottom: 0;
        font-size: .53rem;
        line-height: 1.15;
        padding: .35rem .2rem;
        text-align: center;
        white-space: normal;
    }

    .header-action {
        display: inline-flex;
    }

    .hero-main {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        border-bottom: 1px solid var(--line);
        border-right: 0;
    }

    .hero-technical {
        aspect-ratio: 1.42 / 1;
        min-height: 0;
    }

    .compact-section-header,
    .models-intro {
        gap: 1.25rem;
        grid-template-columns: 1fr;
    }

    .service-focus {
        grid-template-columns: 1fr;
    }

    .service-lead {
        min-height: 230px;
    }

    .scope-list {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 620px) {
    .site-header,
    main,
    .site-footer {
        width: calc(100% - 20px);
    }

    .site-header {
        top: 5px;
    }

    .header-action {
        display: none;
    }

    .hero-copy {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .hero-intro {
        font-size: .98rem;
    }

    .software-strip {
        grid-template-columns: auto 1fr;
    }

    .software-strip > span:last-child {
        grid-column: 1 / -1;
    }

    .hero-grid,
    .problem-list,
    .reason-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid > div {
        min-height: 138px;
    }

    .service-lead {
        min-height: 190px;
    }

    .problem-list li:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .problem-list li {
        grid-template-columns: 9px 1fr;
        min-height: 190px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .problem-list h3 {
        font-size: 1.16rem;
    }

    .scope-list li {
        grid-template-columns: 1fr;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .compact-model-grid {
        grid-template-columns: 1fr;
    }

    .compact-model-grid article + article {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .reason-grid .reason-lead {
        grid-column: 1 / -1;
        min-height: 320px;
    }

    .reason-grid article {
        min-height: 230px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legible drafting detail + animated shop work cell */
.hero-workflow-hybrid .workflow-screen-image {
    object-position: center;
    transform: scale(1.65);
    transform-origin: 48% 54%;
}

.hero-workflow-hybrid .workflow-screen-image:nth-child(2) {
    transform-origin: 54% 58%;
}

.hero-workflow-hybrid .workflow-screen-image:nth-child(3) {
    transform-origin: 61% 52%;
}

.hero-workflow-hybrid .workflow-screen-image:nth-child(4) {
    transform-origin: 49% 57%;
}

.hero-workflow-hybrid .workflow-screen-image.is-active {
    transform: scale(1.65);
}

.hero-workflow-hybrid .hybrid-cursor {
    height: 24px;
    width: 19px;
}

.hybrid-machine {
    max-width: 270px;
    width: 92%;
}

.hybrid-machine svg {
    display: block;
    overflow: visible;
    width: 100%;
}

.hybrid-machine svg path,
.hybrid-machine svg rect,
.hybrid-machine svg circle {
    fill: none;
    stroke: #11110f;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}

.hybrid-machine svg text {
    fill: #11110f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .055em;
}

.hybrid-machine .machine-floor {
    opacity: .7;
}

.hybrid-machine .machine-window {
    fill: rgba(255, 255, 255, .5);
}

.hybrid-machine .machine-bed,
.hybrid-machine .machine-conveyor {
    opacity: .62;
}

.hybrid-machine .machine-light {
    fill: var(--red);
    stroke: var(--red);
}

.hybrid-machine .machine-tool,
.hybrid-machine .machine-data-line {
    fill: var(--red);
    stroke: var(--red);
}

.hybrid-machine .machine-data-line {
    stroke-dasharray: 4 4;
}

.hybrid-machine .machine-output-part {
    opacity: 0;
}

.hybrid-machine .machine-output-part rect {
    fill: #f7f6f2;
    stroke: var(--red);
}

.hybrid-machine .machine-output-part path {
    stroke: var(--red);
}

.hybrid-machine .machine-status {
    fill: var(--red);
    font-size: 7px;
}

.machine-caption {
    align-items: center;
    border-top: 1px solid rgba(17, 17, 15, .3);
    display: grid;
    font-size: .5rem;
    grid-template-columns: auto 1fr auto;
    letter-spacing: .055em;
    margin-top: .35rem;
    padding-top: .6rem;
    text-transform: uppercase;
}

.machine-caption span {
    color: var(--red);
    font-weight: 800;
}

.machine-caption i {
    border-top: 1px solid rgba(17, 17, 15, .42);
    margin-inline: .65rem;
}

.machine-caption strong {
    font-size: .5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hybrid-machine .machine-head {
        animation: machine-head-pass 3.8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .hybrid-machine .machine-input {
        animation: machine-panel-feed 3.8s linear infinite;
    }

    .hybrid-machine .machine-part-one {
        animation: machine-part-out 3.8s linear infinite;
    }

    .hybrid-machine .machine-part-two {
        animation: machine-part-out 3.8s 1.9s linear infinite;
    }
}

@keyframes machine-head-pass {
    0%, 12%, 88%, 100% {
        transform: translateX(0);
    }
    42% {
        transform: translateX(38px);
    }
    68% {
        transform: translateX(17px);
    }
}

@keyframes machine-panel-feed {
    0% {
        opacity: 0;
        transform: translateX(-35px);
    }
    12%, 58% {
        opacity: 1;
    }
    68%, 100% {
        opacity: 0;
        transform: translateX(47px);
    }
}

@keyframes machine-part-out {
    0%, 48% {
        opacity: 0;
        transform: translateX(-10px);
    }
    58%, 86% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(85px);
    }
}

@media (max-width: 620px) {
    .hybrid-machine {
        width: 108%;
    }

    .flow-sheet-two,
    .flow-sheet-three {
        display: none;
    }

    .machine-caption {
        grid-template-columns: 1fr;
        gap: .18rem;
        padding-top: .35rem;
    }

    .machine-caption i {
        display: none;
    }

    .machine-caption strong {
        font-size: .44rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hybrid-machine .machine-output-part:first-of-type {
        opacity: 1;
        transform: translateX(48px);
    }
}

@media (max-width: 420px) {
    .site-nav a {
        font-size: .48rem;
        letter-spacing: .02em;
    }

    .theme-toggle {
        min-height: 32px;
        padding: .45rem .55rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .problem-list,
    .reason-grid {
        grid-template-columns: 1fr;
    }

    .problem-list li:nth-child(odd) {
        border-right: 0;
    }

    .problem-list li {
        min-height: 0;
    }

    .reason-grid .reason-lead {
        grid-column: auto;
    }
}

/* Detail pass: clearer navigation, labels, process, and conversion path */
.site-header {
    grid-template-columns: auto 1fr auto;
}

.site-header .logo {
    grid-column: 1;
    justify-self: start;
}

.site-nav {
    grid-column: 2;
    justify-content: center;
}

.header-tools {
    grid-column: 3;
}

.section-label {
    font-size: .78rem;
    letter-spacing: .065em;
}

.software-strip {
    grid-template-columns: auto repeat(3, auto);
    justify-content: start;
}

.software-strip strong {
    font-size: .7rem;
}

.service-lead {
    align-items: center;
}

.process-grid.process-seven {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr;
}

.process-grid.process-seven li {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: grid;
    gap: 1.25rem 2rem;
    grid-template-columns: 72px minmax(190px, .42fr) 1fr;
    min-height: 112px;
    padding: 1.45rem var(--pad);
}

.process-grid.process-seven li:last-child {
    border-bottom: 0;
}

.process-grid.process-seven li::after {
    bottom: 0;
    height: auto;
    left: 0;
    right: auto;
    top: 0;
    transform: scaleY(.28);
    transform-origin: top;
    width: 3px;
}

.process-grid.process-seven li:hover::after {
    transform: scaleY(1);
}

.process-grid.process-seven li > span {
    font-size: 1.3rem;
    margin: 0;
}

.process-grid.process-seven h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    margin: 0;
}

.process-grid.process-seven p {
    font-size: .86rem;
    line-height: 1.5;
    margin: 0;
    max-width: 66ch;
}

.cta-section .button-wide {
    grid-column: 1 / -1;
    margin-left: 0;
    min-height: 72px;
    width: 100%;
}

.page-hero {
    min-height: 54vh;
}

.page-hero h1 {
    font-size: clamp(3.8rem, 8vw, 8rem);
    line-height: .8;
    padding-bottom: clamp(2.75rem, 4vw, 4.25rem);
    padding-top: clamp(3.5rem, 5vw, 5.5rem);
}

.faq-index-clean {
    min-height: 84px;
}

.faq-index-clean p {
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .065em;
    margin: 0;
    text-transform: uppercase;
}

.site-footer strong {
    display: block;
    font-size: .78rem;
    margin-bottom: .25rem;
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .site-header .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .site-nav {
        border-top: 0;
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
        margin: 0;
        padding-top: 0;
    }

    .header-tools {
        grid-column: 3;
        grid-row: 1;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        border-top: 1px solid var(--line);
        grid-column: 1 / -1;
        grid-row: 2;
        margin: .1rem 0 -.15rem;
        padding-top: .45rem;
    }

    .header-tools {
        grid-column: 2;
    }

    .process-grid.process-seven li {
        grid-template-columns: 60px minmax(150px, .5fr) 1fr;
    }
}

@media (max-width: 620px) {
    .software-strip {
        gap: .65rem;
        grid-template-columns: auto repeat(3, 1fr);
    }

    .process-grid.process-seven {
        grid-template-columns: 1fr;
    }

    .process-grid.process-seven li {
        gap: .45rem 1rem;
        grid-template-columns: 48px 1fr;
        min-height: 0;
        padding-bottom: 1.25rem;
        padding-top: 1.25rem;
    }

    .process-grid.process-seven p {
        grid-column: 2;
    }

    .page-hero {
        min-height: auto;
    }

    .page-hero h1 {
        font-size: clamp(3.05rem, 13vw, 4.35rem);
        padding-bottom: 3rem;
        padding-top: 3.5rem;
    }
}

@media (max-width: 420px) {
    .software-strip {
        grid-template-columns: auto 1fr;
    }
}

/* Homepage workflow intro and technical hero */
.technical-preloader {
    background-color: #f5f4ef;
    background-image:
        linear-gradient(rgba(18, 18, 16, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .08) 1px, transparent 1px);
    background-size: 42px 42px;
    color: #0b0b0a;
    display: none;
    inset: 0;
    opacity: 1;
    position: fixed;
    transition: opacity 340ms cubic-bezier(.2, .8, .2, 1), visibility 340ms;
    visibility: visible;
    z-index: 10000;
}

.js:not([data-intro="seen"]) .technical-preloader {
    display: block;
}

.technical-preloader.is-exiting {
    opacity: 0;
    visibility: hidden;
}

.preloader-grid {
    display: grid;
    grid-template-columns: minmax(240px, .33fr) 1fr;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.preloader-copy {
    border-right: 1px solid rgba(18, 18, 16, .35);
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 3vw, 3rem);
}

.preloader-brand {
    align-items: center;
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 800;
    gap: .55rem;
    letter-spacing: -.06em;
    text-decoration: none;
}

.preloader-brand img {
    height: 22px;
    width: auto;
}

.preloader-readout {
    margin-block: auto;
}

.preloader-readout > span {
    color: var(--red);
    display: block;
    font-size: clamp(5rem, 11vw, 10rem);
    font-weight: 700;
    letter-spacing: -.085em;
    line-height: .75;
}

.preloader-readout p {
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1;
    margin: 1.25rem 0 0;
    max-width: 11ch;
}

.preloader-skip {
    align-self: flex-start;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: inherit;
    cursor: pointer;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    padding: .35rem 0;
    text-transform: uppercase;
}

.preloader-stack {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: clamp(2rem, 6vw, 6rem);
    position: relative;
}

.preloader-stack::before {
    border: 1px solid rgba(18, 18, 16, .3);
    content: "";
    inset: clamp(1.25rem, 3vw, 3rem);
    pointer-events: none;
    position: absolute;
}

.preloader-stack img {
    background: #f7f7f3;
    border: 1px solid rgba(18, 18, 16, .35);
    box-shadow: 12px 12px 0 rgba(18, 18, 16, .08);
    height: auto;
    max-height: calc(100vh - clamp(5rem, 14vw, 11rem));
    max-width: calc(100% - clamp(3rem, 10vw, 8rem));
    object-fit: contain;
    opacity: 0;
    position: absolute;
    transform: translateY(18px) scale(.965);
    width: auto;
}

.preloader-stack img:first-child {
    opacity: 1;
    transform: none;
}

.preloader-track {
    background: rgba(18, 18, 16, .22);
    bottom: 0;
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

.preloader-track span {
    background: var(--red);
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-main {
    grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr);
}

.hero-workflow {
    background-color: #f7f6f2;
    background-image:
        linear-gradient(rgba(18, 18, 16, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .055) 1px, transparent 1px);
    background-size: 32px 32px;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 610px;
    overflow: hidden;
    position: relative;
}

.workflow-stage {
    flex: 1;
    min-height: 0;
    position: relative;
}

.workflow-laptop {
    aspect-ratio: 1376 / 768;
    left: -11%;
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    width: 112%;
}

.workflow-laptop-frame {
    height: 100%;
    inset: 0;
    object-fit: contain;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 3;
}

.workflow-screen {
    background: #f5f4ef;
    height: 60.8%;
    left: 20.25%;
    overflow: hidden;
    position: absolute;
    top: 25.45%;
    width: 59.45%;
    z-index: 2;
}

.workflow-screen-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    transform: scale(1.035);
    transition: opacity 520ms cubic-bezier(.2, .8, .2, 1), transform 700ms cubic-bezier(.2, .8, .2, 1);
    width: 100%;
}

.workflow-screen-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.workflow-redline {
    fill: none;
    height: 100%;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.1;
    width: 100%;
    z-index: 4;
}

.workflow-redline path {
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
}

.workflow-redline circle {
    stroke-dasharray: 32;
    stroke-dashoffset: 32;
}

.workflow-cursor {
    border-left: 7px solid #0b0b0a;
    border-top: 11px solid transparent;
    filter: drop-shadow(0 1px 0 #fff);
    height: 0;
    left: 25%;
    opacity: 0;
    position: absolute;
    top: 74%;
    transform: rotate(-22deg);
    width: 0;
    z-index: 5;
}

.hero-workflow.is-redlining .workflow-redline,
.hero-workflow.is-redlining .workflow-cursor {
    opacity: 1;
}

.workflow-output {
    display: grid;
    gap: .85rem;
    position: absolute;
    right: clamp(.85rem, 2vw, 1.5rem);
    top: clamp(2rem, 5vw, 4rem);
    width: min(39%, 250px);
    z-index: 6;
}

.workflow-output article {
    background: #f7f6f2;
    border: 1px solid rgba(18, 18, 16, .48);
    box-shadow: 8px 8px 0 rgba(18, 18, 16, .09);
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translateX(42px);
    transition: opacity 420ms cubic-bezier(.2, .8, .2, 1), transform 520ms cubic-bezier(.2, .8, .2, 1);
}

.workflow-output article.is-visible {
    opacity: 1;
    transform: none;
}

.workflow-output article span {
    background: var(--red);
    color: #fff;
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    left: 0;
    padding: .35rem .45rem;
    position: absolute;
    top: 0;
    z-index: 2;
}

.workflow-output article img {
    display: block;
    height: 102px;
    object-fit: cover;
    width: 100%;
}

.workflow-output article strong {
    display: block;
    font-size: .62rem;
    letter-spacing: .04em;
    padding: .55rem .65rem;
    text-transform: uppercase;
}

.workflow-status {
    align-items: center;
    background: rgba(247, 246, 242, .94);
    border-top: 1px solid rgba(18, 18, 16, .35);
    color: #0b0b0a;
    display: grid;
    gap: .85rem;
    grid-template-columns: 34px minmax(150px, auto) 1fr;
    min-height: 58px;
    padding: .75rem clamp(1rem, 2.2vw, 1.7rem);
    position: relative;
    z-index: 7;
}

.workflow-status > span:first-child {
    color: var(--red);
    font-size: .75rem;
    font-weight: 800;
}

.workflow-status strong {
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.workflow-progress {
    background: rgba(18, 18, 16, .18);
    display: block;
    height: 2px;
}

.workflow-progress i {
    background: var(--red);
    display: block;
    height: 100%;
    transform: scaleX(.1667);
    transform-origin: left;
    transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="dark"] .hero-workflow {
    background-color: #e8e6df;
    background-image:
        linear-gradient(rgba(18, 18, 16, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .07) 1px, transparent 1px);
}

@media (max-width: 1120px) {
    .hero-main {
        grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    }

    .hero-workflow {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .hero-main {
        grid-template-columns: 1fr;
    }

    .hero-workflow {
        aspect-ratio: auto;
        min-height: 570px;
    }

    .workflow-laptop {
        left: -2%;
        width: 102%;
    }

    .workflow-output {
        width: min(32%, 240px);
    }
}

@media (max-width: 620px) {
    .preloader-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .preloader-copy {
        border-bottom: 1px solid rgba(18, 18, 16, .35);
        border-right: 0;
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr auto;
        padding: 1rem;
    }

    .preloader-readout {
        grid-column: 1 / -1;
        margin: 1rem 0 0;
    }

    .preloader-readout > span {
        font-size: 4.6rem;
    }

    .preloader-readout p {
        font-size: 1.25rem;
        margin-top: .65rem;
        max-width: none;
    }

    .preloader-skip {
        align-self: start;
        justify-self: end;
    }

    .preloader-stack {
        padding: 1.5rem;
    }

    .preloader-stack img {
        max-height: calc(100vh - 255px);
        max-width: calc(100% - 3rem);
    }

    .hero-workflow {
        min-height: 410px;
    }

    .workflow-stage {
        min-height: 350px;
    }

    .workflow-laptop {
        left: -8%;
        top: 50%;
        width: 116%;
    }

    .workflow-output {
        display: none;
    }

    .workflow-status {
        grid-template-columns: 30px minmax(130px, auto) 1fr;
    }
}

@media (max-width: 420px) {
    .hero-workflow {
        min-height: 345px;
    }

    .workflow-stage {
        min-height: 290px;
    }

    .workflow-status {
        gap: .55rem;
        grid-template-columns: 26px 1fr;
    }

    .workflow-progress {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .technical-preloader {
        display: none !important;
    }

    .workflow-screen-image {
        display: none;
        transition: none;
    }

    .workflow-screen-image:nth-child(4) {
        display: block;
        opacity: 1;
        transform: none;
    }

    .workflow-output article:first-child {
        opacity: 1;
        transform: none;
    }

    .workflow-output article:last-child {
        display: none;
    }
}

/* Hero continuity diagram: remote drafting desk to active shop */
.hero-continuity {
    background-color: #f7f6f2;
    background-image:
        linear-gradient(rgba(18, 18, 16, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .055) 1px, transparent 1px);
    background-size: 32px 32px;
    color: #11110f;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 610px;
    overflow: hidden;
}

.continuity-rail {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 15, .28);
    display: grid;
    font-size: .58rem;
    font-weight: 800;
    grid-template-columns: 1fr auto 1fr;
    letter-spacing: .065em;
    min-height: 48px;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
}

.continuity-rail span:nth-child(2) {
    color: var(--red);
    padding-inline: 1rem;
    text-align: center;
}

.continuity-rail span:last-child {
    text-align: right;
}

.continuity-canvas {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    min-height: 0;
    padding: clamp(.75rem, 1.7vw, 1.4rem);
}

.continuity-canvas svg {
    display: block;
    height: auto;
    max-height: 495px;
    overflow: visible;
    width: 100%;
}

.continuity-canvas text {
    fill: #11110f;
    font-family: var(--font);
}

.continuity-canvas path,
.continuity-canvas rect,
.continuity-canvas circle {
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.continuity-canvas .scene-number {
    fill: var(--red);
    font-size: 18px;
    font-weight: 800;
}

.continuity-canvas .scene-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .07em;
}

.continuity-canvas .scene-ground,
.continuity-canvas .drawing-thin {
    opacity: .34;
    stroke-width: 1;
}

.continuity-canvas .monitor-shell,
.continuity-canvas .shop-shell {
    fill: rgba(255, 255, 255, .58);
}

.continuity-canvas .monitor-drawing > *,
.continuity-canvas .monitor-redline {
    stroke-dasharray: 760;
    stroke-dashoffset: 760;
}

.continuity-canvas .monitor-redline,
.continuity-canvas .link-line,
.continuity-canvas .link-arrow {
    stroke: var(--red);
}

.continuity-canvas .monitor-redline {
    stroke-width: 2.8;
}

.continuity-canvas .drafting-cursor {
    fill: var(--red);
    opacity: 0;
    stroke: none;
}

.continuity-canvas .desk-files rect {
    fill: #f7f6f2;
}

.continuity-canvas .link-line {
    stroke-dasharray: 8 7;
}

.continuity-canvas .handoff-sheet rect {
    fill: #f7f6f2;
    stroke: var(--red);
}

.continuity-canvas .handoff-sheet path {
    stroke: var(--red);
    stroke-width: 1;
}

.continuity-canvas .cnc-label {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.continuity-canvas .cnc-wheel {
    stroke: var(--red);
    stroke-width: 3;
    transform-box: fill-box;
    transform-origin: center;
}

.continuity-canvas .rack-lines,
.continuity-canvas .conveyor-lines {
    opacity: .48;
    stroke-width: 1;
}

.continuity-canvas .conveyor-part {
    fill: var(--red);
    opacity: 0;
    stroke: var(--red);
}

.continuity-canvas .part-two {
    fill: #11110f;
    stroke: #11110f;
}

.continuity-status {
    align-items: center;
    background: rgba(247, 246, 242, .92);
    border-top: 1px solid rgba(17, 17, 15, .28);
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    padding: .75rem clamp(1rem, 2vw, 1.5rem);
}

.continuity-status span,
.continuity-status strong {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.continuity-status span {
    color: #62615c;
}

.continuity-status strong {
    color: var(--red);
}

.continuity-status i {
    background: rgba(17, 17, 15, .16);
    height: 2px;
    overflow: hidden;
    position: relative;
}

.continuity-status i::after {
    background: var(--red);
    content: "";
    inset: 0;
    position: absolute;
    transform: scaleX(.16);
    transform-origin: left;
}

@media (prefers-reduced-motion: no-preference) {
    .continuity-canvas .monitor-drawing > * {
        animation: continuity-draw 8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .continuity-canvas .monitor-drawing .drawing-thin {
        animation-delay: .3s;
    }

    .continuity-canvas .monitor-redline {
        animation: continuity-redline 8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .continuity-canvas .drafting-cursor {
        animation: continuity-cursor 8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .continuity-canvas .desk-files {
        animation: continuity-files 8s cubic-bezier(.2, .8, .2, 1) infinite;
        transform-box: fill-box;
        transform-origin: center;
    }

    .continuity-canvas .handoff-sheet {
        animation: continuity-handoff 8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .continuity-canvas .cnc-wheel {
        animation: continuity-spin 2.8s linear infinite;
    }

    .continuity-canvas .part-one {
        animation: continuity-conveyor-one 4.2s linear infinite;
    }

    .continuity-canvas .part-two {
        animation: continuity-conveyor-two 4.2s 2.1s linear infinite;
    }

    .continuity-status i::after {
        animation: continuity-progress 8s cubic-bezier(.45, 0, .2, 1) infinite;
    }
}

@keyframes continuity-draw {
    0%, 8% {
        opacity: .18;
        stroke-dashoffset: 760;
    }
    36%, 88% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: .42;
        stroke-dashoffset: 0;
    }
}

@keyframes continuity-redline {
    0%, 34% {
        opacity: 0;
        stroke-dashoffset: 760;
    }
    56%, 82% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
    100% {
        opacity: 0;
        stroke-dashoffset: 0;
    }
}

@keyframes continuity-cursor {
    0%, 15% {
        opacity: 0;
        transform: translate(170px, 180px);
    }
    26% {
        opacity: 1;
    }
    48% {
        opacity: 1;
        transform: translate(285px, 155px);
    }
    66% {
        opacity: 1;
        transform: translate(200px, 230px);
    }
    86%, 100% {
        opacity: 0;
        transform: translate(305px, 205px);
    }
}

@keyframes continuity-files {
    0%, 50% {
        opacity: .32;
        transform: translateY(8px);
    }
    64%, 88% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: .32;
        transform: translateY(-5px);
    }
}

@keyframes continuity-handoff {
    0%, 48% {
        opacity: 0;
        transform: translate(388px, 241px) scale(.86);
    }
    56% {
        opacity: 1;
    }
    76% {
        opacity: 1;
        transform: translate(486px, 241px) scale(1);
    }
    88%, 100% {
        opacity: 0;
        transform: translate(520px, 241px) scale(.92);
    }
}

@keyframes continuity-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes continuity-conveyor-one {
    0% {
        opacity: 0;
        transform: translate(582px, 354px);
    }
    12%, 78% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(766px, 354px);
    }
}

@keyframes continuity-conveyor-two {
    0% {
        opacity: 0;
        transform: translate(582px, 354px);
    }
    12%, 78% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(774px, 354px);
    }
}

@keyframes continuity-progress {
    0% {
        transform: scaleX(.04);
    }
    78%, 100% {
        transform: scaleX(1);
    }
}

html[data-theme="dark"] .hero-continuity {
    background-color: #e8e6df;
    background-image:
        linear-gradient(rgba(18, 18, 16, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .07) 1px, transparent 1px);
}

@media (max-width: 820px) {
    .hero-continuity {
        min-height: 570px;
    }
}

@media (max-width: 620px) {
    .hero-continuity {
        min-height: 430px;
    }

    .continuity-rail {
        font-size: .5rem;
        grid-template-columns: 1fr auto 1fr;
        min-height: 42px;
        padding-inline: .8rem;
    }

    .continuity-rail span:nth-child(2) {
        padding-inline: .4rem;
    }

    .continuity-canvas {
        min-height: 330px;
        padding: .35rem;
    }

    .continuity-status {
        gap: .55rem;
        grid-template-columns: auto 1fr;
        min-height: 62px;
        padding-inline: .8rem;
    }

    .continuity-status strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    .hero-continuity {
        min-height: 390px;
    }

    .continuity-canvas {
        min-height: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .continuity-canvas .monitor-drawing > *,
    .continuity-canvas .monitor-redline {
        opacity: 1;
        stroke-dashoffset: 0;
    }

    .continuity-canvas .drafting-cursor {
        opacity: 1;
        transform: translate(285px, 155px);
    }

    .continuity-canvas .handoff-sheet {
        opacity: 1;
        transform: translate(454px, 241px);
    }

    .continuity-canvas .part-one {
        opacity: 1;
        transform: translate(700px, 354px);
    }

    .continuity-canvas .part-two {
        display: none;
    }
}

/* Hybrid hero: real drafting assets moving from workstation to production */
.hero-workflow-hybrid {
    background-color: #f7f6f2;
    background-image:
        linear-gradient(rgba(18, 18, 16, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .055) 1px, transparent 1px);
    background-size: 32px 32px;
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 610px;
    overflow: hidden;
    position: relative;
}

.hero-workflow-hybrid > .continuity-rail,
.hero-workflow-hybrid > .continuity-canvas,
.hero-workflow-hybrid > .continuity-status {
    display: none;
}

.hybrid-rail {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 15, .28);
    color: #11110f;
    display: grid;
    font-size: .58rem;
    font-weight: 800;
    grid-template-columns: 1fr auto 1fr;
    letter-spacing: .065em;
    min-height: 48px;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    text-transform: uppercase;
}

.hybrid-rail span:nth-child(2) {
    color: var(--red);
    padding-inline: 1rem;
}

.hybrid-rail span:last-child {
    text-align: right;
}

.hero-workflow-hybrid .hybrid-stage {
    flex: 1;
    min-height: 0;
    position: relative;
}

.hero-workflow-hybrid .workflow-laptop {
    left: -10%;
    top: 53%;
    width: 88%;
    z-index: 2;
}

.hero-workflow-hybrid .workflow-screen {
    box-shadow: inset 0 0 0 1px rgba(17, 17, 15, .12);
}

.hero-workflow-hybrid .workflow-cursor {
    border-left-color: var(--red);
    filter: none;
}

.hybrid-production {
    background: rgba(247, 246, 242, .96);
    border: 1px solid rgba(17, 17, 15, .52);
    position: absolute;
    right: clamp(.8rem, 2vw, 1.35rem);
    top: 22%;
    width: min(39%, 245px);
    z-index: 6;
}

.hybrid-production::after {
    color: rgba(17, 17, 15, .52);
    content: "Awaiting released package";
    font-size: .54rem;
    font-weight: 800;
    left: 50%;
    letter-spacing: .065em;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 61%;
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease;
    width: 80%;
}

.hybrid-production:has(.workflow-output article.is-visible)::after {
    opacity: 0;
}

.hybrid-production-heading {
    border-bottom: 1px solid rgba(17, 17, 15, .35);
    color: #11110f;
    display: flex;
    flex-direction: column;
    padding: .7rem .75rem .65rem;
}

.hybrid-production-heading span {
    color: var(--red);
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hybrid-production-heading strong {
    font-size: .7rem;
    letter-spacing: .025em;
    margin-top: .15rem;
    text-transform: uppercase;
}

.hero-workflow-hybrid .workflow-output {
    display: grid;
    gap: 0;
    inset: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
}

.hero-workflow-hybrid .workflow-output article {
    border: 0;
    box-shadow: none;
    grid-area: 1 / 1;
    position: relative;
    transform: translateY(14px) scale(.98);
}

.hero-workflow-hybrid .workflow-output article.is-visible {
    transform: none;
}

.hero-workflow-hybrid .workflow-output article img {
    background: #f7f6f2;
    height: auto;
    object-fit: contain;
    width: 100%;
}

.hero-workflow-hybrid .workflow-output article strong {
    background: #f7f6f2;
    border-top: 1px solid rgba(17, 17, 15, .24);
}

.hybrid-release {
    height: 80px;
    left: 58%;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 48%;
    width: 92px;
    z-index: 7;
}

.hybrid-release span {
    border-top: 2px dashed var(--red);
    left: -45px;
    position: absolute;
    right: -45px;
    top: 39px;
}

.hybrid-release span::after {
    border-right: 2px solid var(--red);
    border-top: 2px solid var(--red);
    content: "";
    height: 10px;
    position: absolute;
    right: -1px;
    top: -7px;
    transform: rotate(45deg);
    width: 10px;
}

.hybrid-release img {
    background: #f7f6f2;
    border: 1px solid var(--red);
    display: block;
    height: 80px;
    object-fit: cover;
    opacity: 0;
    position: relative;
    width: 92px;
}

.hero-workflow-hybrid .workflow-status {
    border-top-color: rgba(17, 17, 15, .28);
}

@media (prefers-reduced-motion: no-preference) {
    .hybrid-release img {
        animation: hybrid-release-sheet 9s cubic-bezier(.45, 0, .2, 1) infinite;
    }
}

@keyframes hybrid-release-sheet {
    0%, 64% {
        opacity: 0;
        transform: translateX(-58px) scale(.82);
    }
    68% {
        opacity: 1;
    }
    79% {
        opacity: 1;
        transform: translateX(58px) scale(.92);
    }
    83%, 100% {
        opacity: 0;
        transform: translateX(88px) scale(.86);
    }
}

html[data-theme="dark"] .hero-workflow-hybrid {
    background-color: #e8e6df;
    background-image:
        linear-gradient(rgba(18, 18, 16, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 16, .07) 1px, transparent 1px);
}

@media (max-width: 820px) {
    .hero-workflow-hybrid {
        min-height: 570px;
    }

    .hero-workflow-hybrid .workflow-laptop {
        left: -5%;
        width: 82%;
    }

    .hybrid-production {
        width: min(37%, 245px);
    }
}

@media (max-width: 620px) {
    .hero-workflow-hybrid {
        min-height: 500px;
    }

    .hybrid-rail {
        font-size: .5rem;
        min-height: 42px;
        padding-inline: .8rem;
    }

    .hybrid-rail span:nth-child(2) {
        padding-inline: .4rem;
    }

    .hero-workflow-hybrid .workflow-laptop {
        left: -10%;
        top: 31%;
        width: 114%;
    }

    .hybrid-production {
        bottom: 1rem;
        right: .8rem;
        top: auto;
        width: 52%;
    }

    .hybrid-production-heading {
        padding: .5rem .55rem;
    }

    .hybrid-release {
        left: 45%;
        top: 59%;
        transform: scale(.8);
    }

    .hero-workflow-hybrid .workflow-status {
        grid-template-columns: 30px minmax(125px, auto) 1fr;
    }
}

@media (max-width: 420px) {
    .hero-workflow-hybrid {
        min-height: 470px;
    }

    .hybrid-production {
        width: 56%;
    }

    .hero-workflow-hybrid .workflow-status {
        grid-template-columns: 26px 1fr;
    }

    .hero-workflow-hybrid .workflow-progress {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hybrid-release {
        display: none;
    }

    .hero-workflow-hybrid .workflow-output article:first-child {
        opacity: 1;
        transform: none;
    }
}

/* Intermediate hero: active workstation, document flow, neutral production placeholder */
.hero-workflow-hybrid .hybrid-cursor {
    animation: hybrid-cursor-tour 9s cubic-bezier(.45, 0, .2, 1) infinite;
    background: #11110f;
    clip-path: polygon(0 0, 0 100%, 27% 74%, 44% 100%, 61% 90%, 45% 66%, 78% 66%);
    filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, .92));
    height: 30px;
    left: 16%;
    opacity: 1;
    position: absolute;
    top: 22%;
    width: 24px;
    z-index: 9;
}

@keyframes hybrid-cursor-tour {
    0%, 8% {
        transform: translate(0, 0) rotate(-8deg);
    }
    24% {
        transform: translate(175px, 22px) rotate(-2deg);
    }
    42% {
        transform: translate(102px, 105px) rotate(4deg);
    }
    60% {
        transform: translate(230px, 122px) rotate(-3deg);
    }
    78% {
        transform: translate(40px, 142px) rotate(3deg);
    }
    92%, 100% {
        transform: translate(0, 0) rotate(-8deg);
    }
}

.hybrid-production-placeholder::after {
    content: none;
}

.production-placeholder-art {
    align-items: center;
    background-color: rgba(247, 246, 242, .9);
    background-image:
        linear-gradient(rgba(17, 17, 15, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 15, .07) 1px, transparent 1px);
    background-size: 22px 22px;
    color: #11110f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 178px;
    padding: 1rem;
    text-align: center;
}

.production-placeholder-art span {
    color: var(--red);
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.production-placeholder-art strong {
    font-size: .72rem;
    letter-spacing: .035em;
    margin-top: .35rem;
    text-transform: uppercase;
}

.production-placeholder-art i {
    border-bottom: 1px solid rgba(17, 17, 15, .42);
    border-top: 1px solid rgba(17, 17, 15, .42);
    height: 18px;
    margin-top: 1rem;
    width: 58%;
}

.hero-workflow-hybrid[data-step="05"] .hybrid-production-placeholder,
.hero-workflow-hybrid[data-step="06"] .hybrid-production-placeholder {
    border-color: var(--red);
}

.hero-workflow-hybrid[data-step="05"] .production-placeholder-art strong,
.hero-workflow-hybrid[data-step="06"] .production-placeholder-art strong {
    color: var(--red);
}

.hybrid-release {
    opacity: 1;
}

.hybrid-release .hybrid-flow-line {
    border-top: 2px dashed var(--red);
    left: -55px;
    position: absolute;
    right: -55px;
    top: 39px;
}

.hybrid-release .hybrid-flow-line::after {
    border-right: 2px solid var(--red);
    border-top: 2px solid var(--red);
    content: "";
    height: 10px;
    position: absolute;
    right: -1px;
    top: -7px;
    transform: rotate(45deg);
    width: 10px;
}

.flow-sheet {
    background: #f7f6f2;
    border: 1px solid var(--red);
    display: block;
    height: 44px;
    left: -38px;
    opacity: 0;
    position: absolute;
    top: 17px;
    width: 34px;
}

.flow-sheet::before {
    border-bottom: 1px solid rgba(17, 17, 15, .5);
    border-top: 1px solid rgba(17, 17, 15, .5);
    content: "";
    height: 10px;
    left: 6px;
    position: absolute;
    right: 6px;
    top: 9px;
}

.flow-sheet::after {
    border-top: 1px solid rgba(17, 17, 15, .5);
    content: "";
    left: 6px;
    position: absolute;
    right: 10px;
    top: 29px;
}

@media (prefers-reduced-motion: no-preference) {
    .flow-sheet {
        animation: hybrid-sheet-travel 4.8s linear infinite;
    }

    .flow-sheet-two {
        animation-delay: -1.6s;
    }

    .flow-sheet-three {
        animation-delay: -3.2s;
    }
}

@keyframes hybrid-sheet-travel {
    0% {
        opacity: 0;
        transform: translateX(-35px) scale(.88);
    }
    12%, 76% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(190px) scale(.96);
    }
}

/* Equal-height service rows */
.scope-list {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
}

.scope-list li {
    align-items: center;
    min-height: 0;
}

@media (max-width: 620px) {
    .hero-workflow-hybrid .hybrid-cursor {
        animation-name: hybrid-cursor-tour-mobile;
        height: 24px;
        width: 20px;
    }

    .production-placeholder-art {
        min-height: 138px;
    }

    .hybrid-release {
        display: block;
    }

    .hybrid-release .hybrid-flow-line {
        left: -30px;
        right: -30px;
    }
}

@keyframes hybrid-cursor-tour-mobile {
    0%, 8% {
        transform: translate(0, 0) rotate(-8deg);
    }
    25% {
        transform: translate(138px, 18px) rotate(-2deg);
    }
    48% {
        transform: translate(72px, 70px) rotate(4deg);
    }
    72% {
        transform: translate(154px, 92px) rotate(-3deg);
    }
    92%, 100% {
        transform: translate(18px, 102px) rotate(2deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-workflow-hybrid .hybrid-cursor {
        animation: none;
        transform: translate(130px, 70px);
    }

    .hybrid-release {
        display: block;
    }

    .flow-sheet-one {
        opacity: 1;
        transform: translateX(70px);
    }
}

/* Final hero composition: three explicit zones with no overlap */
.hero-main {
    min-height: 550px;
}

.hero-workflow-hybrid {
    min-height: 550px;
}

.hybrid-rail {
    grid-template-columns: minmax(0, 1.45fr) 66px minmax(125px, .75fr);
    min-height: 44px;
    padding-inline: 1.1rem;
}

.hybrid-rail span {
    text-align: center;
}

.hybrid-rail span:nth-child(2) {
    padding-inline: 0;
}

.hybrid-rail span:last-child {
    text-align: center;
}

.hero-workflow-hybrid .hybrid-stage {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.45fr) 66px minmax(125px, .75fr);
    padding: 1rem 1.1rem;
}

.hero-workflow-hybrid .workflow-laptop {
    align-self: center;
    inset: auto;
    justify-self: stretch;
    left: auto;
    max-width: 100%;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    z-index: 2;
}

.hero-workflow-hybrid .workflow-screen-image {
    object-position: center 52%;
}

.hero-workflow-hybrid .workflow-screen-image.is-active {
    transform: scale(1.04);
}

.hybrid-release {
    align-self: center;
    height: 82px;
    inset: auto;
    justify-self: stretch;
    left: auto;
    position: relative;
    top: auto;
    width: 100%;
    z-index: 4;
}

.hybrid-release .hybrid-flow-line {
    left: -1rem;
    right: -1rem;
}

.flow-sheet {
    left: -1rem;
}

.hybrid-production {
    align-self: center;
    inset: auto;
    justify-self: stretch;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    z-index: 3;
}

.production-placeholder-art {
    min-height: 142px;
    padding: .8rem;
}

.hero-workflow-hybrid .hybrid-cursor {
    animation-name: hybrid-cursor-tour-contained;
    height: 27px;
    width: 22px;
}

@keyframes hybrid-cursor-tour-contained {
    0%, 8% {
        transform: translate(0, 0) rotate(-8deg);
    }
    24% {
        transform: translate(82px, 10px) rotate(-2deg);
    }
    42% {
        transform: translate(48px, 42px) rotate(4deg);
    }
    60% {
        transform: translate(105px, 52px) rotate(-3deg);
    }
    78% {
        transform: translate(18px, 62px) rotate(3deg);
    }
    92%, 100% {
        transform: translate(0, 0) rotate(-8deg);
    }
}

.hero-grid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 104px;
    padding-block: 1rem;
}

.hero-grid strong {
    margin-bottom: .45rem;
}

@media (max-width: 820px) {
    .hero-main,
    .hero-workflow-hybrid {
        min-height: 520px;
    }

    .hero-workflow-hybrid .hybrid-stage,
    .hybrid-rail {
        grid-template-columns: minmax(0, 1.35fr) 58px minmax(118px, .8fr);
    }

    .hero-workflow-hybrid .hybrid-stage {
        gap: .75rem;
        padding-inline: .8rem;
    }

    .hybrid-rail {
        padding-inline: .8rem;
    }
}

@media (max-width: 620px) {
    .hero-workflow-hybrid {
        min-height: 610px;
    }

    .hybrid-rail {
        display: none;
    }

    .hero-workflow-hybrid .hybrid-stage {
        gap: .35rem;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr) 58px auto;
        padding: .8rem;
    }

    .hero-workflow-hybrid .workflow-laptop {
        justify-self: center;
        width: min(100%, 390px);
    }

    .hybrid-release {
        height: 58px;
        justify-self: center;
        transform: rotate(90deg);
        width: 76px;
    }

    .hybrid-release .hybrid-flow-line {
        left: -.5rem;
        right: -.5rem;
    }

    .hybrid-production {
        justify-self: center;
        width: min(72%, 250px);
    }

    .production-placeholder-art {
        min-height: 112px;
    }

    .hero-workflow-hybrid .hybrid-cursor {
        animation-name: hybrid-cursor-tour-contained;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-workflow-hybrid .hybrid-cursor {
        transform: translate(48px, 42px);
    }
}

/* Swiss hero board: one scene, two equal cells, one shared axis */
.hybrid-board-head {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 15, .32);
    display: flex;
    font-size: .56rem;
    justify-content: space-between;
    letter-spacing: .065em;
    min-height: 44px;
    padding-inline: 1.1rem;
    text-transform: uppercase;
}

.hybrid-board-head strong {
    font-weight: 800;
}

.hybrid-board-head span {
    color: var(--red);
    font-weight: 800;
}

.hero-workflow-hybrid .hybrid-stage {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    position: relative;
}

.hybrid-cell {
    align-items: center;
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 3.5rem .75rem 1.15rem;
    position: relative;
}

.hybrid-drafting-cell {
    border-right: 1px solid rgba(17, 17, 15, .25);
}

.hybrid-cell-label {
    left: 1.1rem;
    position: absolute;
    right: 1.1rem;
    top: 1rem;
    z-index: 8;
}

.hybrid-cell-label span,
.hybrid-cell-label strong {
    display: block;
    text-transform: uppercase;
}

.hybrid-cell-label span {
    color: var(--red);
    font-size: .5rem;
    font-weight: 800;
    letter-spacing: .075em;
}

.hybrid-cell-label strong {
    font-size: .64rem;
    letter-spacing: .025em;
    margin-top: .2rem;
}

.hero-workflow-hybrid .workflow-laptop {
    max-width: 340px;
    transform: translateY(-5%);
    width: 105%;
}

.hybrid-production {
    align-self: stretch;
    background: rgba(255, 255, 255, .22);
    border: 0;
    width: auto;
}

.hybrid-production::after {
    content: none;
}

.hybrid-production-sheet {
    background: #f7f6f2;
    border: 1px solid rgba(17, 17, 15, .52);
    max-width: 260px;
    overflow: hidden;
    position: relative;
    width: 82%;
}

.hybrid-production-sheet img {
    display: block;
    height: auto;
    width: 100%;
}

.hybrid-production-sheet strong {
    background: rgba(247, 246, 242, .96);
    border-top: 1px solid rgba(17, 17, 15, .3);
    display: block;
    font-size: .56rem;
    letter-spacing: .055em;
    padding: .55rem .65rem;
    text-transform: uppercase;
}

.hybrid-release {
    height: 82px;
    left: 50%;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 84px;
    z-index: 10;
}

.hybrid-release .hybrid-flow-line {
    left: -42px;
    right: -42px;
}

.flow-sheet {
    left: -34px;
}

.hero-workflow-hybrid[data-step="05"] .hybrid-production-sheet,
.hero-workflow-hybrid[data-step="06"] .hybrid-production-sheet {
    border-color: var(--red);
}

@media (max-width: 820px) {
    .hero-workflow-hybrid .hybrid-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hybrid-cell {
        padding-inline: .75rem;
    }

    .hero-workflow-hybrid .workflow-laptop {
        max-width: 290px;
    }

    .hybrid-production-sheet {
        width: 90%;
    }
}

@media (max-width: 620px) {
    .hero-workflow-hybrid {
        min-height: 430px;
    }

    .hybrid-board-head {
        min-height: 40px;
        padding-inline: .8rem;
    }

    .hero-workflow-hybrid .hybrid-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 1fr;
        padding: 0;
    }

    .hybrid-cell {
        padding: 3.25rem .5rem .8rem;
    }

    .hybrid-cell-label {
        left: .65rem;
        right: .65rem;
        top: .75rem;
    }

    .hybrid-cell-label strong {
        font-size: .54rem;
    }

    .hero-workflow-hybrid .workflow-laptop {
        width: 112%;
    }

    .hybrid-production {
        width: auto;
    }

    .hybrid-production-sheet {
        width: 100%;
    }

    .hybrid-release {
        height: 60px;
        left: 50%;
        top: 54%;
        transform: translate(-50%, -50%);
        width: 56px;
    }

    .hybrid-release .hybrid-flow-line {
        left: -20px;
        right: -20px;
    }
}

/* Keep drafting details readable after all responsive hero overrides */
.hero-workflow-hybrid .workflow-screen-image.is-active {
    transform: scale(1.65);
}

@media (prefers-reduced-motion: reduce) {
    .hybrid-machine .machine-part-one {
        opacity: 1;
        transform: translateX(48px);
    }
}

/* Drawing-to-cabinet story: one visual transformation */
.hero-workflow-hybrid .workflow-screen-image {
    display: none;
}

.workflow-cabinet-plan {
    background: #f7f6f2;
    display: block;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.workflow-cabinet-plan path,
.workflow-cabinet-plan rect,
.workflow-cabinet-plan circle {
    fill: none;
    stroke: #11110f;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.35;
    vector-effect: non-scaling-stroke;
}

.workflow-cabinet-plan text {
    fill: #11110f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    font-weight: 700;
}

.workflow-cabinet-plan .plan-dimensions {
    opacity: .48;
}

.workflow-cabinet-plan .plan-redline {
    opacity: 0;
    transition: opacity 220ms ease;
}

.workflow-cabinet-plan .plan-redline path {
    stroke: var(--red);
    stroke-width: 2;
}

.hero-workflow-hybrid[data-step="03"] .plan-redline {
    opacity: 1;
}

.hero-workflow-hybrid[data-step="01"] .plan-elevation {
    opacity: .45;
}

.hero-workflow-hybrid .hybrid-cursor {
    left: 24%;
    top: 25%;
}

.hybrid-release {
    width: 94px;
}

.hybrid-release .hybrid-flow-line {
    border-top-style: solid;
}

.hybrid-cabinet {
    max-width: 282px;
    width: 96%;
}

.hybrid-cabinet svg {
    display: block;
    overflow: visible;
    width: 100%;
}

.hybrid-cabinet svg path,
.hybrid-cabinet svg rect,
.hybrid-cabinet svg circle {
    fill: rgba(247, 246, 242, .96);
    stroke: #11110f;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.45;
    vector-effect: non-scaling-stroke;
}

.hybrid-cabinet .cabinet-floor,
.hybrid-cabinet .cabinet-transfer-guide {
    fill: none;
    opacity: .52;
}

.hybrid-cabinet .cabinet-transfer-guide {
    stroke: var(--red);
    stroke-dasharray: 4 4;
}

.hybrid-cabinet text {
    fill: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
}

.cabinet-part {
    transform-box: fill-box;
    transform-origin: center;
}

.cabinet-back {
    --cabinet-x: -72px;
    --cabinet-y: 0px;
}

.cabinet-side-left {
    --cabinet-x: -90px;
    --cabinet-y: 7px;
}

.cabinet-side-right {
    --cabinet-x: 58px;
    --cabinet-y: 7px;
}

.cabinet-top {
    --cabinet-x: -22px;
    --cabinet-y: -48px;
}

.cabinet-bottom {
    --cabinet-x: -18px;
    --cabinet-y: 42px;
}

.cabinet-shelf {
    --cabinet-x: 58px;
    --cabinet-y: 0px;
}

.cabinet-door-left {
    --cabinet-x: -70px;
    --cabinet-y: 18px;
}

.cabinet-door-right {
    --cabinet-x: 72px;
    --cabinet-y: 18px;
}

.cabinet-plinth {
    --cabinet-x: 22px;
    --cabinet-y: 42px;
}

.cabinet-output-label {
    opacity: 0;
}

.cabinet-caption {
    align-items: center;
    border-top: 1px solid rgba(17, 17, 15, .3);
    display: grid;
    font-size: .5rem;
    grid-template-columns: auto 1fr auto;
    letter-spacing: .055em;
    margin-top: -.15rem;
    padding-top: .55rem;
    text-transform: uppercase;
}

.cabinet-caption span {
    color: var(--red);
    font-weight: 800;
}

.cabinet-caption i {
    border-top: 1px solid rgba(17, 17, 15, .42);
    margin-inline: .65rem;
}

.cabinet-caption strong {
    font-size: .5rem;
}

@media (prefers-reduced-motion: no-preference) {
    .cabinet-part {
        animation: cabinet-assemble 9s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .cabinet-door-left,
    .cabinet-door-right {
        animation-delay: 180ms;
    }

    .cabinet-plinth {
        animation-delay: 320ms;
    }

    .cabinet-output-label {
        animation: cabinet-label-in 9s ease infinite;
    }
}

@keyframes cabinet-assemble {
    0%, 12% {
        opacity: 0;
        transform: translate(var(--cabinet-x), var(--cabinet-y));
    }
    22% {
        opacity: 1;
    }
    58%, 88% {
        opacity: 1;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: translate(0, 0);
    }
}

@keyframes cabinet-label-in {
    0%, 52% {
        opacity: 0;
        transform: translateY(5px);
    }
    62%, 88% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 620px) {
    .hybrid-cabinet {
        width: 110%;
    }

    .cabinet-caption {
        grid-template-columns: 1fr;
        gap: .18rem;
        padding-top: .35rem;
    }

    .cabinet-caption i {
        display: none;
    }

    .cabinet-caption strong {
        font-size: .44rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cabinet-part {
        opacity: 1;
        transform: none;
    }

    .cabinet-output-label {
        opacity: 1;
    }
}

/* Synchronize the cabinet transformation with the six-step timeline */
.cabinet-part {
    animation: none !important;
    opacity: 0;
    transform: translate(var(--cabinet-x), var(--cabinet-y));
    transition:
        opacity 280ms ease,
        transform 850ms cubic-bezier(.45, 0, .2, 1);
}

.cabinet-output-label {
    animation: none !important;
    opacity: 0;
    transform: translateY(5px);
    transition:
        opacity 260ms ease,
        transform 420ms ease;
}

.hero-workflow-hybrid[data-step="02"] .cabinet-part,
.hero-workflow-hybrid[data-step="03"] .cabinet-part {
    opacity: 1;
}

.hero-workflow-hybrid[data-step="04"] .cabinet-part,
.hero-workflow-hybrid[data-step="05"] .cabinet-part,
.hero-workflow-hybrid[data-step="06"] .cabinet-part {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-workflow-hybrid[data-step="05"] .cabinet-output-label,
.hero-workflow-hybrid[data-step="06"] .cabinet-output-label {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .cabinet-part,
    .cabinet-output-label {
        transition: none;
    }
}

/* Redline review: draw the markup, identify the issue, move the cursor */
.plan-redline-note {
    fill: var(--red) !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: .04em;
}

.plan-redline-target {
    stroke-dasharray: 110;
    stroke-dashoffset: 110;
}

.hero-workflow-hybrid[data-step="03"] .plan-redline path,
.hero-workflow-hybrid[data-step="03"] .plan-redline-target {
    animation: plan-redline-draw 900ms cubic-bezier(.45, 0, .2, 1) forwards;
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
}

.hero-workflow-hybrid[data-step="03"] .plan-redline-note {
    animation: plan-redline-note-in 420ms 520ms ease both;
}

.hero-workflow-hybrid[data-step="03"] .hybrid-cursor {
    animation: plan-redline-cursor 1.35s cubic-bezier(.45, 0, .2, 1) both;
    background: var(--red);
}

@keyframes plan-redline-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes plan-redline-note-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes plan-redline-cursor {
    0% {
        transform: translate(0, 0) rotate(-8deg);
    }
    55%, 100% {
        transform: translate(72px, 26px) rotate(-2deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-workflow-hybrid[data-step="03"] .plan-redline path,
    .hero-workflow-hybrid[data-step="03"] .plan-redline-target,
    .hero-workflow-hybrid[data-step="03"] .plan-redline-note,
    .hero-workflow-hybrid[data-step="03"] .hybrid-cursor {
        animation: none;
        stroke-dashoffset: 0;
    }
}

/* Compact production diagram with explicit information-in / parts-out semantics */
.hero-main,
.hero-workflow-hybrid {
    min-height: 500px;
}

.hero-workflow-hybrid .hybrid-stage {
    min-height: 0;
}

.hybrid-cell {
    padding: 2.7rem .75rem .8rem;
}

.hybrid-cell-label {
    top: 50%;
    transform: translateY(-126px);
}

.hybrid-release {
    width: 72px;
}

.hybrid-release .hybrid-flow-line {
    left: 8px;
    right: 25px;
}

.hybrid-machine {
    max-width: 286px;
    width: 98%;
}

.hybrid-machine svg path,
.hybrid-machine svg rect,
.hybrid-machine svg circle {
    stroke-width: 2.05;
}

.hybrid-machine .machine-body > rect:first-child,
.hybrid-machine .machine-window {
    stroke-width: 2.35;
}

.hybrid-machine .machine-document path {
    fill: #f7f6f2;
    stroke: var(--red);
}

.hybrid-machine .machine-document path:first-child {
    stroke: #11110f;
}

.hybrid-machine .machine-document text {
    fill: var(--red);
    font-size: 7px;
}

.hybrid-machine .machine-data-line {
    stroke-dasharray: 3 3;
}

.hybrid-machine .machine-output-part rect {
    fill: rgba(218, 198, 166, .3);
}

.hybrid-machine .machine-part-three {
    opacity: 0;
}

.machine-caption {
    margin-top: .1rem;
}

@media (prefers-reduced-motion: no-preference) {
    .hybrid-machine .machine-document {
        animation: machine-document-in 3.8s ease-in-out infinite;
    }

    .hybrid-machine .machine-part-three {
        animation: machine-part-out 3.8s 1.25s linear infinite;
    }
}

@keyframes machine-document-in {
    0% {
        opacity: .38;
        transform: translateX(-16px);
    }
    15%, 62% {
        opacity: 1;
        transform: translateX(0);
    }
    76%, 100% {
        opacity: .38;
        transform: translateX(18px);
    }
}

@keyframes machine-part-out {
    0%, 48% {
        opacity: .2;
        transform: translateX(-10px);
    }
    58%, 86% {
        opacity: 1;
    }
    100% {
        opacity: .2;
        transform: translateX(85px);
    }
}

.hero-copy {
    padding-bottom: 2.1rem;
    padding-top: 2.5rem;
}

.hero-intro {
    margin-bottom: 1.25rem;
    margin-top: 1.3rem;
}

.software-strip {
    margin-top: 1.3rem;
    padding-bottom: .7rem;
    padding-top: .7rem;
}

@media (max-width: 620px) {
    .hero-main,
    .hero-workflow-hybrid {
        min-height: 430px;
    }

    .hybrid-cell {
        padding-top: 2.45rem;
    }

    .hybrid-cell-label {
        top: 50%;
        transform: translateY(-108px);
    }

    .hybrid-machine {
        width: 112%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hybrid-machine .machine-document,
    .hybrid-machine .machine-part-three {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* User-supplied CNC body with independently animated spindle */
.hybrid-machine-real {
    max-width: 300px;
    width: 100%;
}

.cnc-visual {
    aspect-ratio: 320 / 190;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.cnc-machine-image {
    height: auto;
    left: -27%;
    max-width: none;
    position: absolute;
    top: -30%;
    width: 155%;
    z-index: 1;
}

.cnc-head-image {
    height: auto;
    left: 24%;
    position: absolute;
    top: 15%;
    width: 15%;
    z-index: 3;
}

.cnc-flow-overlay {
    height: 100%;
    inset: 0;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 4;
}

.cnc-flow-overlay path,
.cnc-flow-overlay rect {
    fill: rgba(247, 246, 242, .96);
    stroke: var(--red);
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.cnc-flow-overlay text {
    fill: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .055em;
}

.cnc-document path:first-child {
    stroke: #11110f;
}

.cnc-input-path {
    fill: none !important;
    stroke-dasharray: 4 4;
}

.cnc-output-parts .cnc-part {
    fill: rgba(205, 170, 120, .78);
    stroke: #11110f;
}

.cnc-output-parts path {
    fill: none;
}

@media (prefers-reduced-motion: no-preference) {
    .cnc-head-image {
        animation: cnc-head-travel 3.8s cubic-bezier(.45, 0, .2, 1) infinite;
    }

    .cnc-document {
        animation: cnc-document-feed 3.8s ease-in-out infinite;
    }

    .cnc-output-parts {
        animation: cnc-parts-exit 3.8s ease-in-out infinite;
    }
}

@keyframes cnc-head-travel {
    0%, 12%, 92%, 100% {
        transform: translate(0, 0);
    }
    42% {
        transform: translate(52px, 2px);
    }
    68% {
        transform: translate(24px, 8px);
    }
}

@keyframes cnc-document-feed {
    0% {
        opacity: .35;
        transform: translateX(-13px);
    }
    18%, 62% {
        opacity: 1;
        transform: translateX(0);
    }
    78%, 100% {
        opacity: .35;
        transform: translateX(18px);
    }
}

@keyframes cnc-parts-exit {
    0%, 42% {
        opacity: .3;
        transform: translateX(-22px);
    }
    58%, 86% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: .3;
        transform: translateX(18px);
    }
}

@media (max-width: 620px) {
    .hybrid-production {
        justify-self: stretch;
        width: 100%;
    }

    .hybrid-machine-real {
        max-width: none;
        width: 100%;
    }

    .cnc-head-image {
        width: 16%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cnc-head-image,
    .cnc-document,
    .cnc-output-parts {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Refined hero flow: supplied cabinet study, continuous data packets, real parts */
.hero-main,
.hero-workflow-hybrid {
    min-height: 460px;
}

.hybrid-cell {
    padding: 2.15rem .55rem .45rem;
}

.hybrid-cell-label {
    transform: translateY(-112px);
}

.hero-workflow-hybrid .workflow-laptop {
    max-width: 370px;
    transform: scale(1.16);
    transform-origin: center;
    width: 112%;
}

.workflow-cabinet-image {
    height: 100%;
    inset: 0;
    object-fit: contain;
    padding: 3% 5%;
    position: absolute;
    width: 100%;
}

.workflow-redline-overlay {
    height: 100%;
    inset: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
}

.workflow-redline-overlay .plan-redline {
    opacity: 0;
    transition: opacity 220ms ease;
}

.workflow-redline-overlay .plan-redline path {
    fill: none;
    stroke: var(--red);
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.workflow-redline-overlay .plan-redline-note {
    fill: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .04em;
}

.hero-workflow-hybrid[data-step="03"] .workflow-redline-overlay .plan-redline {
    opacity: 1;
}

.hybrid-release {
    height: 48px;
    width: 104px;
}

.hybrid-release .hybrid-flow-track {
    border: 0;
    border-top: 1px solid rgba(17, 17, 15, .38);
    height: 0;
    left: 8px;
    position: absolute;
    right: 8px;
    top: 24px;
}

.hybrid-release .hybrid-flow-track::after {
    border-right: 2px solid var(--red);
    border-top: 2px solid var(--red);
    content: "";
    height: 8px;
    position: absolute;
    right: 0;
    top: -5px;
    transform: rotate(45deg);
    width: 8px;
}

.hybrid-release .hybrid-data-packet {
    background: var(--red);
    border: 2px solid #f7f6f2;
    box-shadow: 0 0 0 1px var(--red);
    height: 8px;
    left: 5px;
    opacity: 0;
    position: absolute;
    right: auto;
    top: 20px;
    width: 8px;
}

.hybrid-release .hybrid-data-packet::after {
    content: none;
}

.packet-two {
    animation-delay: .58s !important;
}

.packet-three {
    animation-delay: 1.16s !important;
}

.hybrid-machine-real {
    max-width: 330px;
    transform: translateX(-4%) scale(1.08);
    transform-origin: center;
    width: 108%;
}

.cnc-visual {
    aspect-ratio: 350 / 190;
}

.cnc-machine-image {
    left: -21%;
    top: -26%;
    width: 143%;
}

.cnc-output-stream {
    height: 62%;
    left: 77%;
    pointer-events: none;
    position: absolute;
    top: 21%;
    width: 24%;
    z-index: 5;
}

.cnc-output-stream img {
    height: 100%;
    left: 0;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-18px, -50%) scale(.62);
    width: 100%;
}

.cnc-output-stream img:nth-child(2) {
    animation-delay: 1.2s !important;
}

.cnc-output-stream img:nth-child(3) {
    animation-delay: 2.4s !important;
}

.cnc-output-stream img:nth-child(4) {
    animation-delay: 3.6s !important;
}

@media (prefers-reduced-motion: no-preference) {
    .hybrid-data-packet {
        animation: data-packet-flow 1.74s linear infinite;
    }

    .cnc-output-stream img {
        animation: cnc-part-release 4.8s cubic-bezier(.35, 0, .2, 1) infinite;
    }
}

@keyframes data-packet-flow {
    0% {
        opacity: 0;
        transform: translateX(0) scale(.7);
    }
    12%, 78% {
        opacity: 1;
    }
    88%, 100% {
        opacity: 0;
        transform: translateX(84px) scale(1);
    }
}

@keyframes cnc-part-release {
    0%, 4% {
        opacity: 0;
        transform: translate(-18px, -50%) scale(.62);
    }
    10%, 19% {
        opacity: 1;
        transform: translate(0, -50%) scale(.78);
    }
    24%, 100% {
        opacity: 0;
        transform: translate(18px, -50%) scale(.72);
    }
}

@media (max-width: 620px) {
    .hero-main,
    .hero-workflow-hybrid {
        min-height: 400px;
    }

    .hybrid-cell {
        padding-bottom: .35rem;
        padding-top: 1.95rem;
    }

    .hybrid-cell-label {
        transform: translateY(-96px);
    }

    .hero-workflow-hybrid .workflow-laptop {
        transform: scale(1.08);
        width: 118%;
    }

    .hybrid-machine-real {
        transform: translateX(-3%) scale(1.03);
        width: 108%;
    }

    .hybrid-release {
        height: 42px;
        width: 72px;
    }

    .hybrid-release .hybrid-flow-track {
        top: 21px;
    }

    .hybrid-release .hybrid-data-packet {
        top: 17px;
    }

    @keyframes data-packet-flow {
        0% {
            opacity: 0;
            transform: translateX(0) scale(.7);
        }
        12%, 78% {
            opacity: 1;
        }
        88%, 100% {
            opacity: 0;
            transform: translateX(52px) scale(1);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .hybrid-data-packet {
        opacity: 1;
    }

    .packet-one {
        transform: translateX(10px);
    }

    .packet-two {
        transform: translateX(36px);
    }

    .packet-three {
        transform: translateX(62px);
    }

    .cnc-output-stream img:first-child {
        opacity: 1;
        transform: translate(0, -50%) scale(.78);
    }
}

/* Compact the workflow board and keep both material streams continuously active */
.hero-main {
    align-items: center;
}

.hero-workflow-hybrid {
    align-self: center;
    height: 420px;
    min-height: 420px;
}

.packet-one {
    animation-delay: 0s !important;
}

.packet-two {
    animation-delay: -.58s !important;
}

.packet-three {
    animation-delay: -1.16s !important;
}

.cnc-output-stream {
    height: 58%;
    left: 76%;
    overflow: hidden;
    top: 22%;
    width: 25%;
}

.cnc-output-stream::before {
    border-top: 1px solid rgba(17, 17, 15, .42);
    content: "";
    left: 0;
    position: absolute;
    right: 2px;
    top: 50%;
}

.cnc-output-stream::after {
    border-right: 2px solid var(--red);
    border-top: 2px solid var(--red);
    content: "";
    height: 7px;
    position: absolute;
    right: 3px;
    top: calc(50% - 4px);
    transform: rotate(45deg);
    width: 7px;
}

.cnc-output-stream img {
    height: 72%;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%) scale(.68);
    width: 48%;
}

.cnc-output-stream img:nth-child(1) {
    animation-delay: 0s !important;
}

.cnc-output-stream img:nth-child(2) {
    animation-delay: -1.2s !important;
}

.cnc-output-stream img:nth-child(3) {
    animation-delay: -2.4s !important;
}

.cnc-output-stream img:nth-child(4) {
    animation-delay: -3.6s !important;
}

@keyframes cnc-part-release {
    0% {
        opacity: 0;
        transform: translate(-100%, -50%) scale(.68);
    }
    8% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(178%, -50%) scale(.78);
    }
}

@media (max-width: 820px) {
    .hero-workflow-hybrid {
        height: 360px;
        min-height: 360px;
    }
}

@media (max-width: 620px) {
    .hero-workflow-hybrid {
        height: 340px;
        min-height: 340px;
    }

    .cnc-output-stream {
        left: 75%;
        width: 26%;
    }
}

@media (min-width: 821px) {
    .hero-main {
        isolation: isolate;
        position: relative;
    }

    .hero-main::after {
        background-color: #f7f6f2;
        background-image:
            linear-gradient(rgba(18, 18, 16, .055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(18, 18, 16, .055) 1px, transparent 1px);
        background-size: 32px 32px;
        bottom: 0;
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 53%;
        z-index: 0;
    }

    .hero-copy,
    .hero-workflow-hybrid {
        position: relative;
        z-index: 1;
    }

    .hero-workflow-hybrid {
        background-color: transparent;
        background-image: none;
    }
}

/* Internal-page theme correction and a tighter Swiss hero rhythm. */
.page-hero-bar {
    background: color-mix(in srgb, var(--white) 90%, transparent);
    color: var(--ink);
}

html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .page-hero-bar,
html[data-theme="dark"] .compact-section-header,
html[data-theme="dark"] .cta-section {
    background-color: var(--white);
    color: var(--ink);
}

html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .compact-section-header,
html[data-theme="dark"] .cta-section {
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
}

@media (min-width: 621px) {
    .page-hero {
        min-height: clamp(390px, 45vh, 540px);
    }

    .page-hero h1 {
        padding-bottom: clamp(2.25rem, 3.2vw, 3.5rem);
        padding-top: clamp(2.75rem, 4vw, 4.5rem);
    }
}

/* Internal-page entrance: content reveals as a drafting line is drawn. */
.page-hero-bar {
    overflow: hidden;
    position: relative;
}

.page-hero-bar::before {
    background: var(--red);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
}

@media (prefers-reduced-motion: no-preference) {
    body.page-motion .page-hero h1 {
        clip-path: inset(0 100% 0 0);
        opacity: .18;
        transform: translateY(14px);
        transition:
            clip-path 900ms cubic-bezier(.2, .8, .2, 1),
            opacity 600ms ease,
            transform 900ms cubic-bezier(.2, .8, .2, 1);
    }

    body.page-motion .page-hero-bar p {
        opacity: 0;
        transform: translateY(12px);
        transition:
            opacity 480ms ease 420ms,
            transform 620ms cubic-bezier(.2, .8, .2, 1) 420ms;
    }

    body.page-motion .page-hero-bar::before {
        transition: transform 760ms cubic-bezier(.2, .8, .2, 1) 220ms;
    }

    body.page-motion.is-page-ready .page-hero h1 {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
    }

    body.page-motion.is-page-ready .page-hero-bar p {
        opacity: 1;
        transform: translateY(0);
    }

body.page-motion.is-page-ready .page-hero-bar::before {
        transform: scaleX(1);
    }
}

/* Contact conversion section */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.contact-section {
    scroll-margin-top: 90px;
}

.contact-header h2 {
    max-width: 14ch;
}

.contact-layout {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}

.contact-context,
.contact-form {
    padding: clamp(1.5rem, 3vw, 3rem) var(--pad);
}

.contact-context {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.contact-context h3,
.contact-form > h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.6rem);
    letter-spacing: -.045em;
    line-height: .95;
    margin: 0 0 1.35rem;
}

.contact-context ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-context li {
    border-top: 1px solid var(--line);
    font-size: clamp(.82rem, 1vw, 1rem);
    line-height: 1.4;
    padding: .9rem 0;
}

.contact-context li::before {
    color: var(--red);
    content: "—";
    display: inline-block;
    font-weight: 800;
    margin-right: .7rem;
}

.contact-options {
    align-self: end;
}

.contact-options > a {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    font-size: .72rem;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: .04em;
    min-height: 48px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, padding-left 240ms cubic-bezier(.2, .8, .2, 1);
}

.contact-options > a:hover,
.contact-options > a:focus-visible {
    color: var(--red);
    padding-left: .45rem;
}

.contact-options > a[data-placeholder-link] {
    color: var(--gray);
}

.contact-options > p {
    color: var(--gray);
    font-size: .72rem;
    line-height: 1.45;
    margin: 1.2rem 0 0;
}

.contact-form {
    border-left: 1px solid var(--line);
}

.contact-form-grid {
    display: grid;
    gap: 1.1rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: grid;
    gap: .48rem;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.form-field label span {
    color: var(--gray);
    font-size: .56rem;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    appearance: none;
    background: var(--field);
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink);
    font: inherit;
    font-size: .86rem;
    min-height: 48px;
    padding: .8rem .85rem;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    width: 100%;
}

.form-field select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ink) 50%),
        linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    padding-right: 2.5rem;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: var(--ink);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    border-color: var(--red);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 18%, transparent);
    outline: 0;
}

.form-note,
.form-status {
    color: var(--gray);
    font-size: .68rem;
    line-height: 1.45;
    margin: 0;
}

.contact-submit {
    cursor: pointer;
    font-family: inherit;
    justify-content: space-between;
    margin-top: 1.2rem;
    min-height: 58px;
    width: 100%;
}

.form-status {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1rem;
}

.form-status a {
    color: var(--red);
}

.form-status.is-success {
    color: var(--ink);
}

.form-status.is-error {
    color: var(--red);
}

.contact-submit:disabled {
    cursor: wait;
    opacity: .72;
}

.site-footer > div:not(.footer-brand) p {
    color: #777;
    font-size: .68rem;
    line-height: 1.4;
    margin: .8rem 0 0;
    max-width: 24ch;
}

@media (min-width: 821px) {
    .contact-section {
        display: block;
        min-height: 0;
        scroll-margin-top: 78px;
    }

    .contact-header {
        gap: clamp(1.5rem, 3vw, 3rem);
        grid-template-columns: minmax(145px, .2fr) 1fr;
        overflow: visible;
        padding-bottom: clamp(1rem, 1.5vw, 1.35rem);
        padding-top: clamp(1rem, 1.5vw, 1.35rem);
    }

    .contact-header h2 {
        font-size: clamp(2.85rem, 3.7vw, 3.7rem);
        line-height: 1.02;
        max-width: 20ch;
        overflow: visible;
        padding-block: .08em;
        text-wrap: balance;
    }

    .contact-header > div > p {
        font-size: clamp(.88rem, 1vw, 1rem);
        line-height: 1.4;
        margin-top: .6rem;
        max-width: 64ch;
    }

    .contact-layout {
        align-items: stretch;
        grid-template-columns: minmax(250px, .3fr) minmax(0, .7fr);
    }

    .contact-context,
    .contact-form {
        padding-bottom: clamp(1rem, 1.5vw, 1.35rem);
        padding-top: clamp(1rem, 1.5vw, 1.35rem);
    }

    .contact-context {
        align-content: space-between;
        gap: clamp(1.25rem, 2vw, 1.75rem);
    }

    .contact-context h3,
    .contact-form > h3 {
        font-size: clamp(1.55rem, 1.9vw, 2rem);
        margin-bottom: .9rem;
    }

    .contact-context li {
        font-size: clamp(.76rem, .8vw, .88rem);
        line-height: 1.35;
        padding: .58rem 0;
    }

    .contact-options > a {
        font-size: .68rem;
        min-height: 42px;
    }

    .contact-options > p {
        font-size: .68rem;
        line-height: 1.4;
        margin-top: .75rem;
    }

    .contact-form-grid {
        gap: .72rem .82rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .form-field {
        gap: .38rem;
    }

    .form-field label {
        font-size: .62rem;
        line-height: 1.2;
    }

    .form-field label span {
        font-size: .55rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: .8rem;
        line-height: 1.25;
        min-height: 44px;
        padding: .62rem .72rem;
    }

    .form-field textarea {
        height: 112px;
        min-height: 112px;
    }

    .form-note,
    .form-status {
        font-size: .63rem;
        line-height: 1.38;
    }

    .contact-submit {
        margin-top: .85rem;
        min-height: 50px;
    }

    .contact-form {
        display: block;
    }

    .form-field-wide {
        min-height: 0;
    }

}

@media (min-width: 821px) and (max-width: 1120px) {
    .contact-section {
        scroll-margin-top: 112px;
    }
}

@media (min-width: 821px) and (min-height: 960px) {
    .contact-header {
        padding-bottom: clamp(2.75rem, 5vh, 3.35rem);
        padding-top: clamp(2.75rem, 5vh, 3.35rem);
    }

    .contact-header h2 {
        font-size: clamp(3.45rem, 4.1vw, 4.25rem);
    }

    .contact-header > div > p {
        font-size: clamp(.94rem, 1vw, 1.04rem);
        margin-top: .85rem;
    }

    .contact-context,
    .contact-form {
        padding-bottom: clamp(1.8rem, 2.8vh, 2.25rem);
        padding-top: clamp(1.8rem, 2.8vh, 2.25rem);
    }

    .contact-context {
        gap: clamp(2rem, 4vh, 3rem);
    }

    .contact-context h3,
    .contact-form > h3 {
        font-size: clamp(1.75rem, 2.1vw, 2.2rem);
        margin-bottom: 1.15rem;
    }

    .contact-context li {
        font-size: clamp(.8rem, .85vw, .92rem);
        padding: .72rem 0;
    }

    .contact-options > a {
        min-height: 46px;
    }

    .contact-options > p {
        margin-top: .95rem;
    }

    .contact-form-grid {
        gap: .92rem 1rem;
    }

    .form-field {
        gap: .44rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        min-height: 48px;
        padding: .72rem .8rem;
    }

    .form-field textarea {
        height: 146px;
        min-height: 146px;
    }

    .contact-submit {
        margin-top: 1rem;
        min-height: 54px;
    }
}

@media (max-width: 820px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-context {
        gap: 2.5rem;
    }

    .contact-form {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

}

@media (max-width: 620px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-wide {
        grid-column: auto;
    }

    .contact-context,
    .contact-form {
        padding: 1.4rem 1rem;
    }
}
