:root {
    --ink: #f4f4f2;
    --muted: rgba(244, 244, 242, 0.82);
    --black: #151616;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--black);
    background-image: url("site-background.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    font-weight: 300;
    color: var(--ink);
    background-color: var(--black);
    background-image: url("site-background.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

a {
    color: inherit;
}

.site-shell {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    min-height: 100svh;
}

.site-header {
    display: flex;
    justify-content: center;
    padding: 58px 24px 20px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: rgba(244, 244, 242, 0.9);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.62);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    opacity: 0.72;
    transform: scaleX(1);
}

.nav-link.is-active::after {
    opacity: 0.86;
    transform: scaleX(1);
}

.nav-link:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(158, 200, 234, 0.9);
    outline-offset: 5px;
}

.page {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 20px 64px 96px;
}

.page-problem {
    align-items: center;
    justify-items: center;
}

.problem-experience {
    width: 100%;
    max-width: 920px;
    margin-top: -8px;
    text-align: center;
}

.title-stage {
    max-width: 880px;
    height: 101px;
    margin: 0 auto 22px;
    position: relative;
}

.hero-title {
    max-width: 880px;
    margin: 0 auto;
    color: var(--ink);
    font-size: 80px;
    line-height: 89px;
    font-weight: 450;
    letter-spacing: 0;
    cursor: pointer;
}

.title-word {
    display: inline-block;
    white-space: nowrap;
}

.title-letter {
    display: inline-block;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transform-origin: center;
    transition-property: transform;
    transition-duration: 820ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--open-delay, 0ms);
    will-change: transform;
}

.title-stage.is-collapsed .title-letter {
    transform: var(--pile-transform, translate3d(0, 0, 0) rotate(0deg));
    transition-duration: 380ms;
    transition-timing-function: cubic-bezier(0.22, 0.78, 0.2, 1);
    transition-delay: var(--pile-delay, 0ms);
}

.title-stage.is-measuring .title-letter {
    transition-duration: 0ms;
    transition-delay: 0ms;
}

.pile-arrow {
    display: block;
    width: 1.5px;
    height: 20px;
    margin: -16px auto 4px;
    background: rgba(244, 244, 242, 0.72);
    position: relative;
    opacity: 1;
    transition: opacity 220ms ease;
}

.pile-arrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.6px solid rgba(244, 244, 242, 0.72);
    border-bottom: 1.6px solid rgba(244, 244, 242, 0.72);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(45deg);
}

.problem-experience.is-on .pile-arrow::after {
    top: 0;
    bottom: auto;
    transform: translateX(-50%) rotate(225deg);
}

.copy {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0;
}

.copy p {
    max-height: 96px;
    margin: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
        max-height 680ms cubic-bezier(0.4, 0, 0.2, 1),
        margin-top 680ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 440ms ease,
        transform 680ms cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0ms linear 0ms;
}

.copy p + p {
    margin-top: 27px;
}

.problem-experience.is-on .copy p:not(.system-state-line) {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition:
        max-height 170ms ease-out,
        margin-top 170ms ease-out,
        opacity 120ms ease-out,
        transform 170ms ease-out,
        visibility 0ms linear 170ms;
}

.system-state-line {
    color: var(--ink);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
}

.system-state-line strong {
    color: var(--ink);
    font-weight: 700;
}

.toggle-row {
    display: inline-flex;
    align-items: center;
    margin: 31px auto 0;
}

.bone-toggle {
    width: 68px;
    height: 38px;
    border: 1px solid rgba(27, 27, 27, 0.16);
    border-radius: 999px;
    background: #e9e9ea;
    box-shadow:
        inset 0 1px 2px rgba(27, 27, 27, 0.1),
        0 8px 22px rgba(27, 27, 27, 0.2);
    display: flex;
    align-items: center;
    padding: 3px;
    cursor: pointer;
    transition:
        background-color 220ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.toggle-thumb {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 2px 7px rgba(27, 27, 27, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: grid;
    place-items: center;
    font-size: 16px;
    line-height: 1;
    transform: translateX(0);
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.problem-experience.is-on .bone-toggle {
    background: #34c759;
}

.problem-experience.is-on .toggle-thumb {
    transform: translateX(30px);
}

.bone-toggle:hover {
    border-color: rgba(27, 27, 27, 0.22);
    box-shadow:
        inset 0 1px 2px rgba(27, 27, 27, 0.1),
        0 9px 24px rgba(27, 27, 27, 0.24);
}

.cta-micro {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    line-height: 18px;
    font-weight: 450;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity 260ms ease,
        max-height 260ms ease,
        visibility 260ms ease,
        margin-bottom 260ms ease,
        transform 260ms ease;
}

.problem-experience.is-on .cta-micro {
    max-height: 18px;
    margin-bottom: 12px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-button {
    display: inline-block;
    max-height: 0;
    padding: 0 22px;
    border: 0 solid var(--ink);
    border-radius: 6px;
    overflow: hidden;
    color: var(--ink);
    background-color: transparent;
    font-size: 14px;
    line-height: 18px;
    font-weight: 450;
    letter-spacing: 0;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--ink);
    color: var(--black);
}

.problem-experience.is-on .contact-button {
    max-height: 34px;
    padding: 7px 22px;
    border-width: 1.5px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.desktop-break {
    display: inline;
}

.mobile-break {
    display: none;
}

.page-team,
.page-projects,
.page-timeline {
    align-items: center;
}

.team-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 80px;
    width: min(100%, 970px);
    margin: 0 auto;
}

.person,
.project {
    display: grid;
    justify-items: center;
    text-align: center;
    color: var(--muted);
}

.avatar-link,
.project-logo-link {
    display: grid;
    place-items: center;
    text-decoration: none;
}

.avatar-link {
    transition: transform 180ms linear, filter 180ms linear;
}

.avatar-link:hover,
.avatar-link:focus-visible {
    transform: translateY(-3px) scale(1.03);
    filter: drop-shadow(0 0 20px rgba(158, 200, 234, 0.28));
}

.person-avatar-svg {
    width: 152px;
    height: auto;
    margin-bottom: 22px;
    overflow: visible;
}

.avatar-shell {
    fill: #fe9000;
    stroke: #000;
    stroke-width: 2.24138;
}

.person-shay .avatar-shell {
    fill: #6ee190;
}

.avatar-eye-slot {
    fill: #000;
}

.avatar-eye-shine {
    fill: #fff;
    transition: transform 120ms ease-out;
}

.avatar-eye-shine-left {
    transform: translate(var(--left-eye-x, 0px), var(--left-eye-y, 0px));
}

.avatar-eye-shine-right {
    transform: translate(var(--right-eye-x, 0px), var(--right-eye-y, 0px));
}

.project-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 31px;
    object-fit: contain;
}

.person h1,
.project h1 {
    margin: 0 0 29px;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.person h1 a,
.project h1 a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 180ms linear, text-underline-offset 180ms linear, text-shadow 180ms linear;
}

.person h1 a:hover,
.person h1 a:focus-visible,
.person:has(.avatar-link:hover) h1 a,
.person:has(.avatar-link:focus-visible) h1 a {
    color: #cfe8ff;
    text-underline-offset: 7px;
    text-shadow: 0 0 16px rgba(158, 200, 234, 0.42);
}

.person p,
.project p {
    max-width: 440px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.project-grid {
    gap: 110px;
}

.project h1 {
    margin-bottom: 3px;
    font-size: 22px;
}

.project p {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.2;
}

.page-timeline {
    padding-right: 48px;
    padding-left: 48px;
}

.timeline {
    --axis-top: 300px;
    --timeline-lift: 0px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(100%, 1320px);
    margin: 0 auto;
    transform: translateY(var(--timeline-lift));
    transition: transform 120ms linear;
}

.timeline::before {
    content: "";
    position: absolute;
    top: var(--axis-top);
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(244, 244, 242, 0.72);
    transform-origin: left center;
}

.timeline-item {
    --stem: 78px;
    --marker-size: 78px;
    --stem-alpha: 0.44;
    --heading-size: 17px;
    --body-size: 16px;
    position: relative;
    display: grid;
    grid-template-rows: var(--axis-top) auto;
    justify-items: center;
    min-width: 0;
    text-align: center;
}

.timeline-item:nth-child(1) {
    --item-index: 0;
    --stem: 14px;
    --marker-size: 72px;
    --heading-size: 17px;
}

.timeline-item:nth-child(2) {
    --item-index: 1;
    --stem: 58px;
    --marker-size: 76px;
    --stem-alpha: 0.44;
}

.timeline-item:nth-child(3) {
    --item-index: 2;
    --stem: 98px;
    --marker-size: 82px;
    --stem-alpha: 0.5;
}

.timeline-item:nth-child(4) {
    --item-index: 3;
    --stem: 136px;
    --marker-size: 88px;
    --stem-alpha: 0.56;
}

.timeline-item:nth-child(5) {
    --item-index: 4;
    --stem: 178px;
    --marker-size: 96px;
    --stem-alpha: 0.64;
    --heading-size: 18px;
    --body-size: 17px;
}

.timeline-item:nth-child(6) {
    --item-index: 5;
    --stem: 286px;
    --marker-size: 0px;
    --heading-size: 20px;
    --body-size: 19px;
    --stem-alpha: 0.72;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: calc(var(--axis-top) - var(--stem));
    left: 50%;
    width: 1px;
    height: var(--stem);
    background: rgba(244, 244, 242, var(--stem-alpha));
    transform: translateX(-50%);
    transform-origin: bottom center;
}

.timeline-final::after {
    display: none;
}

.timeline-date {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0 0 calc(var(--stem) + var(--marker-size) + 11px);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 300;
}

.timeline-marker {
    position: relative;
    z-index: 1;
    display: grid;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    place-items: center;
    width: var(--marker-size);
    height: var(--marker-size);
    margin-bottom: var(--stem);
    border: 0;
    border-radius: 50%;
    overflow: hidden;
    color: var(--ink);
    background-image: url("timeline-circle.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    text-decoration: none;
    transition: transform 180ms linear, filter 180ms linear, opacity 180ms linear;
}

.timeline-marker[href]:hover,
.timeline-marker[href]:focus-visible {
    transform: translateY(-3px) scale(1.04);
    filter: brightness(1.16) drop-shadow(0 0 18px rgba(158, 200, 234, 0.28));
}

.timeline-item:nth-child(2) .timeline-marker,
.timeline-item:nth-child(3) .timeline-marker {
    border: 0;
    background: transparent;
}

.timeline-marker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-marker,
.emoji-marker {
    font-size: 29px;
    line-height: 1;
}

.emoji-marker {
    font-size: 31px;
}

.timeline-copy {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin-top: 13px;
    padding: 0 6px;
    color: var(--ink);
}

.timeline-copy h1 {
    display: inline;
    margin: 0;
    font-size: var(--heading-size);
    line-height: 1.25;
    font-weight: 500;
    white-space: nowrap;
}

.timeline-copy h1 a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 180ms linear, text-underline-offset 180ms linear, text-shadow 180ms linear;
}

.timeline-copy h1 a:hover,
.timeline-copy h1 a:focus-visible,
.timeline-item:has(.timeline-marker[href]:hover) .timeline-copy h1 a,
.timeline-item:has(.timeline-marker[href]:focus-visible) .timeline-copy h1 a {
    color: #cfe8ff;
    text-underline-offset: 7px;
    text-shadow: 0 0 16px rgba(158, 200, 234, 0.42);
}

.timeline-copy p {
    margin: 14px 0 0;
    color: rgba(244, 244, 242, 0.88);
    font-size: var(--body-size);
    line-height: 1.3;
}

.timeline-copy p + p {
    margin-top: 3px;
}

.timeline-copy em {
    font-style: italic;
}

.timeline-final {
    display: grid;
    grid-template-rows: var(--axis-top) auto;
    justify-items: center;
    min-width: 0;
    padding-bottom: 0;
}

.timeline-final-top {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: min(100%, 168px);
    margin-top: -58px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.18;
    font-weight: 300;
    text-align: center;
}

.timeline-final-stem {
    position: absolute;
    top: 34px;
    left: 50%;
    grid-row: 1;
    width: 1px;
    height: calc(var(--axis-top) - 34px);
    background: rgba(244, 244, 242, 0.72);
    transform: translateX(-50%);
    transform-origin: bottom center;
}

.timeline-final-bottom {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    padding-top: 12px;
    color: var(--ink);
    text-align: center;
}

.timeline-final-bottom p {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 300;
}

.timeline-intro .timeline-item::after {
    animation: timeline-stem-in 360ms linear both;
    animation-delay: calc(var(--item-index, 0) * 220ms + 320ms);
}

.timeline-intro .timeline-marker {
    animation: timeline-marker-grow 320ms linear both;
    animation-delay: calc(var(--item-index, 0) * 220ms);
}

.timeline-intro .timeline-final-stem {
    animation: timeline-final-stem-in 420ms linear both;
    animation-delay: calc(var(--item-index, 5) * 220ms + 320ms);
}

@keyframes timeline-stem-in {
    from {
        scale: 1 0;
        opacity: 0;
    }

    to {
        scale: 1 1;
        opacity: 1;
    }
}

@keyframes timeline-final-stem-in {
    from {
        scale: 1 0;
        opacity: 0;
    }

    to {
        scale: 1 1;
        opacity: 1;
    }
}

@keyframes timeline-marker-grow {
    from {
        scale: 0.54;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}

@media (max-width: 820px) {
    body {
        background-position: center bottom;
        background-size: cover;
        background-attachment: scroll;
    }

    .site-header {
        padding: 28px 18px 16px;
    }

    .site-nav {
        gap: 24px;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        min-height: 32px;
        font-size: 14px;
    }

    .page {
        padding: 24px 24px 72px;
    }

    .problem-experience {
        margin-top: 0;
    }

    .hero-title {
        max-width: 520px;
        font-size: 52px;
        line-height: 60px;
    }

    .title-stage {
        max-width: 520px;
        height: 84px;
        margin-bottom: 24px;
    }

    .pile-arrow {
        width: 1.5px;
        height: 19px;
        margin-top: -14px;
        margin-bottom: 4px;
    }

    .system-state-line {
        font-size: 26px;
    }

    .copy {
        width: 100%;
        max-width: 520px;
        font-size: 20px;
    }

    .copy p + p {
        margin-top: 24px;
    }

    .bone-toggle {
        width: 62px;
        height: 36px;
    }

    .toggle-thumb {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .problem-experience.is-on .toggle-thumb {
        transform: translateX(26px);
    }

    .desktop-break {
        display: none;
    }

    .mobile-break {
        display: block;
    }

    .team-grid,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        align-self: start;
        padding-top: 32px;
    }

    .person-avatar-svg {
        width: 132px;
        margin-bottom: 16px;
    }

    .person h1 {
        margin-bottom: 20px;
    }

    .person p {
        max-width: 360px;
        font-size: 15px;
    }

    .project-logo {
        width: 104px;
        height: 104px;
        margin-bottom: 24px;
    }

    .project h1,
    .project p {
        font-size: 20px;
    }

    .page-timeline {
        align-items: start;
        padding: 54px 24px 72px;
    }

    .timeline {
        --timeline-lift: 0px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: min(100%, 560px);
        padding-left: 0;
    }

    .timeline::before {
        top: 82px;
        bottom: 0;
        left: 35px;
        width: 1px;
        height: auto;
        background: rgba(244, 244, 242, 0.32);
    }

    .timeline-item,
    .timeline-item:nth-child(n) {
        --marker-size: 70px;
        --stem: 0px;
        --heading-size: 18px;
        --body-size: 16px;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 18px;
        justify-items: start;
        align-content: center;
        height: 164px;
        text-align: left;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-date {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin: 0 0 6px;
        font-size: 15px;
    }

    .timeline-marker {
        position: absolute;
        top: 50%;
        left: 0;
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
        margin: 0;
        transform: translateY(-50%);
    }

    .timeline-marker[href]:hover,
    .timeline-marker[href]:focus-visible {
        transform: translateY(calc(-50% - 3px)) scale(1.04);
    }

    .timeline-copy {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        margin-top: 0;
        padding: 0;
    }

    .timeline-copy h1 {
        font-size: var(--heading-size);
        white-space: normal;
    }

    .timeline-copy p {
        max-width: 280px;
        margin-top: 10px;
        font-size: var(--body-size);
        line-height: 1.32;
    }

    .timeline-bonez {
        --marker-size: 76px;
        --heading-size: 19px;
        --body-size: 16px;
    }

    .timeline-item.timeline-final {
        grid-template-columns: 70px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 18px;
        justify-items: start;
        align-content: center;
        height: 164px;
        padding-top: 0;
        margin-top: 0;
        text-align: left;
    }

    .timeline-item.timeline-final::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 35px;
        width: 42px;
        height: 1px;
        background: rgba(244, 244, 242, 0.46);
    }

    .timeline-final-top {
        grid-column: 2;
        grid-row: 1;
        width: min(100%, 190px);
        margin: 0;
        font-size: 20px;
        line-height: 1.12;
        text-align: left;
    }

    .timeline-final-stem {
        display: none;
    }

    .timeline-final-bottom {
        position: relative;
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
        width: auto;
        margin-left: 0;
        padding-top: 18px;
        text-align: left;
    }

    .timeline-final-bottom::before {
        display: none;
    }

    .timeline-final-bottom p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .site-nav {
        gap: 22px;
    }

    .nav-link {
        font-size: 13px;
    }

    .page {
        padding-right: 18px;
        padding-left: 18px;
    }

    .system-state-line {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 24px;
    }

    .copy {
        font-size: 18px;
    }

    .toggle-row {
        margin-top: 28px;
    }

    .team-grid,
    .project-grid {
        gap: 50px;
    }

    .project h1,
    .project p {
        font-size: 18px;
    }

    .site-nav {
        gap: 28px;
    }

    .page-timeline {
        padding-right: 18px;
        padding-left: 18px;
    }

    .timeline {
        gap: 0;
    }
}

@media (max-width: 768px) and (max-height: 740px) {
    .page {
        padding-top: 12px;
        padding-bottom: 42px;
    }

    .title-stage {
        height: 72px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 45px;
        line-height: 52px;
    }

    .system-state-line {
        font-size: 23px;
    }

    .copy {
        font-size: 16px;
        line-height: 1.22;
        margin-bottom: 22px;
    }

    .copy p + p {
        margin-top: 16px;
    }

    .toggle-row {
        margin-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline,
    .timeline-intro .timeline::before,
    .timeline-intro .timeline-item,
    .timeline-intro .timeline-item::after,
    .timeline-intro .timeline-marker,
    .timeline-intro .timeline-final-stem {
        animation: none;
        transform: none;
        transition: none;
        scale: 1;
    }

    .title-letter {
        transition: none;
    }

    .title-stage.is-collapsed .title-letter {
        transform: none;
    }
}
