/* Editorial layout for the about page */

.about-body {
    background: #f7f7f6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-page {
    width: min(100%, 78rem);
    margin: 0 auto;
    padding: 0 1.5rem 7rem;
}

.about-page h1,
.about-page h2,
.about-page h3 {
    text-wrap: balance;
}

.about-page p,
.about-page li {
    text-wrap: pretty;
}

.about-page h1,
.about-page h2,
.about-page h3 {
    overflow-wrap: normal;
    word-break: normal;
}

.about-page p,
.about-page a,
.about-page span {
    overflow-wrap: anywhere;
}

/* Hero */
.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.75fr);
    column-gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5rem, 9vw, 7.5rem);
    position: relative;
    z-index: 10;
}

.hero-heading {
    align-self: end;
}

.hero-badge,
.partners-title {
    color: var(--magenta);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-badge::before {
    width: 2.75rem;
    height: 1px;
    background: var(--magenta);
    content: "";
}

.about-hero .page-title {
    max-width: 50rem;
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 300;
    letter-spacing: -0.065em;
    line-height: 0.82;
    text-transform: none;
}

.about-hero .page-title span {
    display: block;
    color: var(--magenta);
    font-weight: 300;
}

.hero-subtitle {
    color: var(--text-main);
    font-size: clamp(1.12rem, 1.7vw, 1.4rem);
    font-weight: 400;
    line-height: 1.65;
}

.hero-subtitle-lead {
    align-self: end;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(var(--brand-dark-rgb), 0.24);
}

.about-stats-container {
    grid-column: 1 / -1;
    margin-top: clamp(4rem, 8vw, 7rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--brand-dark);
    border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.24);
}

.stat-card {
    min-width: 0;
    padding: 1.4rem clamp(1rem, 2.5vw, 2rem) 1.6rem 0;
    text-align: left;
}

.stat-card + .stat-card {
    padding-left: clamp(1rem, 2.5vw, 2rem);
    border-left: 1px solid rgba(var(--brand-dark-rgb), 0.18);
}

.stat-num {
    margin-bottom: 0.45rem;
    color: var(--brand-dark);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.035em;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-subtitle-closing {
    grid-column: 1 / -1;
    width: min(100%, 48rem);
    margin: clamp(3rem, 6vw, 5.5rem) 0 0 auto;
}

/* Shared section headings */
.section-heading,
.careers-header {
    display: grid;
    grid-template-columns: minmax(15rem, 0.78fr) minmax(20rem, 1.22fr);
    gap: clamp(2rem, 8vw, 7rem);
    align-items: start;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-dark);
}

.section-title,
.careers-header h2 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(2.3rem, 5vw, 4.75rem);
    font-weight: 300;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-transform: none;
}

.section-heading p,
.careers-subtitle {
    max-width: 38rem;
    margin: 0;
    color: var(--text-main);
    font-size: 1.18rem;
    line-height: 1.65;
}

.about-kicker {
    margin: 0 0 1rem;
    color: var(--magenta);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Company ecosystem */
.about-ecosystem,
.about-history {
    margin-bottom: clamp(6rem, 12vw, 10rem);
}

.about-ecosystem-heading .section-title,
.about-history .section-title {
    max-width: 12ch;
}

.about-orbit-map {
    position: relative;
    width: min(100%, 74rem);
    min-height: clamp(34rem, 52vw, 39rem);
    margin: clamp(3.5rem, 7vw, 6rem) auto 0;
    isolation: isolate;
}

.about-orbit-map::before {
    position: absolute;
    z-index: -3;
    top: 50%;
    left: 50%;
    width: min(64vw, 46rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(var(--shadow-rgb-magenta), 0.025);
    box-shadow: 0 0 8rem rgba(var(--shadow-rgb-magenta), 0.08);
    content: "";
    translate: -50% -50%;
}

.about-orbit {
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(var(--brand-dark-rgb), 0.18);
    border-radius: 50%;
    pointer-events: none;
    translate: -50% -50%;
    transition-property: opacity, scale;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.2, 0, 0.2, 1);
}

.about-orbit-main {
    width: 80%;
    height: 82%;
}

.about-orbit-inner {
    width: 58%;
    height: 64%;
    border-color: rgba(var(--shadow-rgb-magenta), 0.24);
    border-style: dashed;
}

.about-orbit-card {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: grid;
    width: 14.5rem;
    min-height: 6.75rem;
    padding: 1.15rem 1.1rem;
    grid-template-columns: 1.75rem minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
    border: 0;
    border-radius: 2px;
    background: var(--white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 12px 32px rgba(0, 0, 0, 0.055);
    color: var(--brand-dark);
    offset-path: ellipse(39% 41% at 50% 50%);
    offset-distance: var(--orbit-offset);
    offset-rotate: 0deg;
    text-decoration: none;
    transition-property: background-color, box-shadow, color, opacity, scale;
    transition-duration: 150ms, 150ms, 150ms, 420ms, 150ms;
    transition-timing-function: ease-out;
}

.about-orbit-card > span {
    display: grid;
    min-width: 0;
    gap: 0.35rem;
}

.about-orbit-card i {
    display: block;
    width: 1.55rem;
    height: 1.55rem;
    background: currentColor;
    color: var(--magenta);
    -webkit-mask: center / contain no-repeat;
    mask: center / contain no-repeat;
}

.about-orbit-card strong {
    color: inherit;
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.about-orbit-card small {
    color: #626875;
    font-size: 0.72rem;
    line-height: 1.35;
}

.about-orbit-card:hover,
.about-orbit-card:focus-visible {
    z-index: 4;
    outline: 0;
    background: var(--brand-dark);
    box-shadow: 0 0 0 2px var(--magenta), 0 18px 44px rgba(var(--brand-dark-rgb), 0.14);
    color: var(--white);
    scale: 1.025;
}

.about-orbit-card:hover small,
.about-orbit-card:focus-visible small {
    color: rgba(var(--white-rgb), 0.7);
}

.about-orbit-synthesis { --orbit-offset: 0%; }
.about-orbit-assembly { --orbit-offset: 25%; }
.about-orbit-sequencing { --orbit-offset: 50%; }
.about-orbit-amplification { --orbit-offset: 75%; }
.about-orbit-enzymes {
    --orbit-offset: 87.5%;
    width: 14rem;
    offset-path: ellipse(28% 32% at 50% 50%);
}

.about-orbit-synthesis i { -webkit-mask-image: url('../assets/symbols/cds.svg'); mask-image: url('../assets/symbols/cds.svg'); }
.about-orbit-assembly i { -webkit-mask-image: url('../assets/symbols/promoter.svg'); mask-image: url('../assets/symbols/promoter.svg'); }
.about-orbit-sequencing i { -webkit-mask-image: url('../assets/symbols/rbs.svg'); mask-image: url('../assets/symbols/rbs.svg'); }
.about-orbit-amplification i { -webkit-mask-image: url('../assets/symbols/primer.svg'); mask-image: url('../assets/symbols/primer.svg'); }

.about-orbit-enzymes i {
    position: relative;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: transparent;
    -webkit-mask: none;
    mask: none;
}

.about-orbit-enzymes i::before,
.about-orbit-enzymes i::after {
    position: absolute;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.about-orbit-enzymes i::before { top: -0.18rem; right: -0.08rem; }
.about-orbit-enzymes i::after { bottom: -0.12rem; left: -0.15rem; }

.about-orbit-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(9.5rem, 13vw, 11rem);
    aspect-ratio: 1;
    padding: 1.25rem;
    place-content: center;
    border-radius: 50%;
    background: var(--brand-dark);
    box-shadow: 0 0 0 1.2rem rgba(var(--brand-dark-rgb), 0.04), 0 22px 50px rgba(var(--brand-dark-rgb), 0.16);
    color: var(--white);
    text-align: center;
    translate: -50% -50%;
    transition-property: opacity, scale;
    transition-duration: 520ms;
    transition-timing-function: ease-out;
}

.about-orbit-core b {
    color: var(--white);
    font-family: 'LogoFont', var(--font-main);
    font-size: clamp(3.2rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.78;
}

.about-orbit-core small {
    margin-top: 0.8rem;
    color: rgba(var(--white-rgb), 0.68);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit,
.about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-card,
.about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-core {
    opacity: 0;
    scale: 0.94;
}

.about-orbit-map.is-revealed .about-orbit-card:nth-of-type(1) { transition-delay: 100ms; }
.about-orbit-map.is-revealed .about-orbit-card:nth-of-type(2) { transition-delay: 180ms; }
.about-orbit-map.is-revealed .about-orbit-card:nth-of-type(3) { transition-delay: 260ms; }
.about-orbit-map.is-revealed .about-orbit-card:nth-of-type(4) { transition-delay: 340ms; }
.about-orbit-map.is-revealed .about-orbit-card:nth-of-type(5) { transition-delay: 420ms; }

/* Company timeline */
.about-history-line {
    display: grid;
    margin: clamp(3rem, 6vw, 5rem) 0 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--brand-dark);
    border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.2);
    list-style: none;
}

.about-history-line li {
    min-width: 0;
    min-height: 17rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.about-history-line li + li {
    border-left: 1px solid rgba(var(--brand-dark-rgb), 0.18);
}

.about-history-line time {
    display: block;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: var(--magenta);
    font-size: 0.72rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-history-line h3 {
    margin: 0;
    color: var(--brand-dark);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.about-history-line p {
    margin: 1rem 0 0;
    color: #525864;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Industrial R&D */
.about-b2b {
    margin-bottom: clamp(6rem, 12vw, 10rem);
}

.b2b-container {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.75fr);
    gap: clamp(3rem, 8vw, 7rem);
    padding: clamp(2rem, 5vw, 4rem) 0;
    border-top: 1px solid var(--brand-dark);
    border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.24);
}

.b2b-content {
    min-width: 0;
}

.b2b-content h2 {
    max-width: 50rem;
    margin-bottom: 2rem;
    color: var(--brand-dark);
    font-size: clamp(2.7rem, 5.6vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.052em;
    line-height: 0.96;
    text-transform: none;
}

.b2b-content h2 span {
    color: var(--magenta);
}

.b2b-desc {
    width: min(100%, 47rem);
    margin-bottom: 2.5rem;
    color: var(--text-main);
    font-size: clamp(1.15rem, 1.85vw, 1.42rem);
    line-height: 1.65;
}

.b2b-feature-box {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(var(--brand-dark-rgb), 0.16);
}

.feature-icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: flex-start;
    color: var(--magenta);
}

.feature-icon svg {
    stroke: currentColor;
}

.feature-text h4 {
    margin-bottom: 0.35rem;
    color: var(--brand-dark);
    font-size: 1.22rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-main);
    font-size: 1.07rem;
    line-height: 1.6;
}

.b2b-cta.btn-primary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
    padding: 0 0 0.55rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--magenta);
    border-radius: 0;
    box-shadow: none;
    color: var(--brand-dark);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition-property: color, border-color;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.b2b-cta.btn-primary:not(:disabled):hover {
    background: transparent;
    border-color: var(--brand-dark);
    box-shadow: none;
    color: var(--magenta);
    transform: none;
}

.b2b-partners {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(2rem, 4vw, 4rem);
    border-left: 1px solid rgba(var(--brand-dark-rgb), 0.18);
}

.partners-icon {
    margin-bottom: 1.5rem;
    color: var(--magenta);
}

.partners-title {
    margin-bottom: 1.4rem;
}

.partners-description {
    margin-bottom: 1.75rem;
    color: var(--text-main);
    font-size: 1.06rem;
    line-height: 1.65;
}

.b2b-list {
    border-top: 1px solid rgba(var(--brand-dark-rgb), 0.16);
}

.b2b-list-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.12);
    color: var(--brand-dark);
    font-size: 1.04rem;
}

.b2b-list-item span {
    color: var(--magenta);
}

/* Careers */
.about-careers {
    margin-bottom: 2rem;
}

.careers-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.careers-grid {
    border-top: 1px solid rgba(var(--brand-dark-rgb), 0.22);
}

.job-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    width: 100%;
    min-height: 8.5rem;
    padding: 1.75rem 0;
    border: 0;
    border-bottom: 1px solid rgba(var(--brand-dark-rgb), 0.22);
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.job-title {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--brand-dark);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 400;
    transition: color 150ms ease-out;
}

.job-card > span:first-child {
    display: block;
    max-width: 46rem;
}

.job-summary {
    display: -webkit-box;
    margin-bottom: 1rem;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
}

.job-tags span {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-tags span + span::before {
    margin-right: 1rem;
    color: var(--magenta);
    content: "•";
}

.job-arrow {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: flex-end;
    color: var(--magenta);
    transition-property: color, transform;
    transition-duration: 150ms;
    transition-timing-function: ease-out;
}

.job-arrow svg {
    width: 1.65rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.job-card:hover .job-title,
.job-card:focus-visible .job-title {
    color: var(--magenta);
}

.job-card:hover .job-arrow,
.job-card:focus-visible .job-arrow {
    color: var(--brand-dark);
    transform: translateX(0.35rem);
}

.job-card:focus-visible {
    box-shadow: inset 0 0 0 2px var(--magenta);
}

/* Job modal */
.about-body .cf-modal-content {
    border-radius: 2px;
}

.about-body .cf-modal-header {
    border-bottom-color: rgba(var(--brand-dark-rgb), 0.18);
}

.about-body .cf-modal-header h3 {
    margin-bottom: 0.65rem;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    letter-spacing: -0.025em;
    text-transform: none !important;
}

.modal-job-desc {
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-body .cf-close-btn {
    min-width: 44px;
    min-height: 44px;
}

.about-body.modal-open {
    overflow: hidden;
}

.job-section {
    margin-bottom: 1.5rem;
}

.job-section h4 {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.job-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.job-section li {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    color: var(--brand-dark);
    font-size: 0.95rem;
    line-height: 1.55;
}

.job-section li::before {
    position: absolute;
    left: 0;
    color: var(--magenta);
    content: "•";
}

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

    .hero-subtitle-lead {
        width: min(100%, 38rem);
        margin: 3rem 0 0 auto;
    }

    .b2b-container {
        grid-template-columns: 1fr;
    }

    .b2b-partners {
        padding: 2.5rem 0 0;
        border-top: 1px solid rgba(var(--brand-dark-rgb), 0.18);
        border-left: 0;
    }

    .about-orbit-map {
        display: grid;
        width: min(100%, 42rem);
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-orbit {
        display: none;
    }

    .about-orbit-map::before {
        display: block;
        top: 9.5rem;
        bottom: 3.5rem;
        left: 50%;
        width: 1px;
        height: auto;
        aspect-ratio: auto;
        border-radius: 0;
        background: rgba(var(--shadow-rgb-magenta), 0.3);
        box-shadow: none;
        translate: 0 0;
    }

    .about-orbit-core {
        position: relative;
        top: auto;
        left: auto;
        width: 9.5rem;
        margin: 0 auto 1.5rem;
        grid-column: 1 / -1;
        grid-row: 1;
        translate: 0 0;
    }

    .about-orbit-card,
    .about-orbit-enzymes {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-height: 7.25rem;
        offset-path: none;
        offset-distance: 0;
    }

    .about-orbit-card::after {
        position: absolute;
        top: 50%;
        width: 0.5rem;
        height: 1px;
        background: rgba(var(--shadow-rgb-magenta), 0.36);
        content: "";
    }

    .about-orbit-synthesis::after,
    .about-orbit-sequencing::after {
        right: -0.5rem;
    }

    .about-orbit-assembly::after,
    .about-orbit-amplification::after {
        left: -0.5rem;
    }

    .about-orbit-enzymes {
        width: calc(50% - 0.5rem);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .about-orbit-enzymes::after {
        top: -1rem;
        left: 50%;
        width: 1px;
        height: 1rem;
    }

    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-card,
    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-core {
        scale: 0.98;
    }
}

@media (max-width: 700px) {
    .about-page {
        padding-right: 1.25rem;
        padding-bottom: 5rem;
        padding-left: 1.25rem;
    }

    .about-hero {
        padding-top: 3.5rem;
    }

    .about-hero .page-title {
        font-size: clamp(3.65rem, 18vw, 6.2rem);
        line-height: 0.86;
    }

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

    .stat-card:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .stat-card:nth-child(n + 3) {
        border-top: 1px solid rgba(var(--brand-dark-rgb), 0.18);
    }

    .section-heading,
    .careers-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-ecosystem-heading .section-title,
    .about-history .section-title {
        max-width: 14ch;
    }

    .about-history-line {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-history-line li {
        min-height: 0;
        padding: 2rem 0;
    }

    .about-history-line li + li {
        border-top: 1px solid rgba(var(--brand-dark-rgb), 0.18);
        border-left: 0;
    }

    .about-history-line time {
        margin-bottom: 1.25rem;
    }

    .job-card {
        gap: 1rem;
    }
}

@media (max-width: 430px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-orbit-map {
        margin-top: 2.5rem;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
    }

    .about-orbit-map::before {
        top: 8.75rem;
        bottom: 3rem;
    }

    .about-orbit-core,
    .about-orbit-enzymes {
        width: 100%;
        grid-column: 1;
    }

    .about-orbit-core {
        width: 8.75rem;
        margin-bottom: 0.75rem;
    }

    .about-orbit-card,
    .about-orbit-enzymes {
        min-height: 6rem;
        padding: 0.95rem 1rem;
    }

    .about-orbit-card::after,
    .about-orbit-synthesis::after,
    .about-orbit-assembly::after,
    .about-orbit-sequencing::after,
    .about-orbit-amplification::after,
    .about-orbit-enzymes::after {
        top: -0.75rem;
        right: auto;
        left: 50%;
        width: 1px;
        height: 0.75rem;
    }

    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-card,
    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-core {
        opacity: 1;
        scale: 1;
    }

    .stat-card,
    .stat-card + .stat-card,
    .stat-card:nth-child(3) {
        padding: 1.1rem 0;
        border-top: 1px solid rgba(var(--brand-dark-rgb), 0.18);
        border-left: 0;
    }

    .stat-card:first-child {
        border-top: 0;
    }

    .job-card {
        grid-template-columns: minmax(0, 1fr) 2.75rem;
    }

    .job-tags span + span::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-page *,
    .about-page *::before,
    .about-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit,
    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-card,
    .about-orbit-map.is-motion-ready:not(.is-revealed) .about-orbit-core {
        opacity: 1;
        scale: 1;
    }
}
