@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes bar-up {
    from {
        transform: scaleY(0);
    }

    to {
        transform: none;
    }
}

/* the display face belongs to the page h1 and the instrument numbers only */
:is(.projects, .pd, .vault) :is(h2, h3, h4) {
    font-family: var(--font-text);
    font-weight: 700;
    font-stretch: 100%;
    line-height: 1.2;
    letter-spacing: 0;
}

.seps > * + *::before {
    content: "\00b7";
    content: "\00b7" / "";
    margin: 0 0.5em;
    color: var(--ink-3);
}

.repo-lang {
    color: hsl(var(--hue, 214) 62% 83%);
    font-weight: 600;
}

:is(.projects, .pd, .vault) [data-tip]::after {
    border-radius: var(--r-1);
    font-size: var(--step--1);
    letter-spacing: 0;
    box-shadow: var(--shadow-2);
}

.ci-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-2);
    font-size: var(--step--1);
    font-weight: 600;
    white-space: nowrap;
}

.ci-mark {
    flex: none;
    width: 1.1em;
    height: 1.1em;
}

.ci-mark-dot {
    width: 8px;
    height: 8px;
    margin: 0 0.2em;
    border-radius: 50%;
    background: var(--live);
}

.ci-storm {
    color: var(--alert-soft);
}

.ci-storm .ci-mark {
    color: var(--alert);
}

.ci-drifting {
    color: var(--ink);
}

.ci-haze,
.ci-quiet {
    color: var(--ink-2);
    font-weight: 400;
}

.proj-spark {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.proj-spark .spark-line {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.proj-spark .spark-fill {
    fill: currentColor;
    stroke: none;
    opacity: 0.14;
}

.repo-tools,
.vault-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 32px;
    margin: 0 0 16px;
}

.tool-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 260px;
    max-width: 400px;
    color: var(--ink-3);
}

.tool-search svg {
    position: absolute;
    left: 2px;
    pointer-events: none;
}

.tool-search .input {
    padding-left: 28px;
    font-size: var(--step-0);
}

.tool-select {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-2);
    font-size: var(--step--1);
    font-weight: 600;
}

.tool-select select {
    min-height: 44px;
    padding: 8px 28px 8px 2px;
    border: 0;
    border-bottom: 1px solid var(--hairline-strong);
    border-radius: 0;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff6ec' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6.2 4 4 4-4'/%3E%3C/svg%3E") no-repeat right 4px center / 14px;
    color: var(--ink);
    font-size: var(--step-0);
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.2s ease;
}

.tool-select select:hover {
    border-bottom-color: rgb(var(--sun-rgb) / 0.75);
}

.tool-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--ink-2);
    font-size: var(--step-0);
    cursor: pointer;
    transition: color 0.2s ease;
}

.tool-check input {
    margin: 0;
}

.tool-check:hover {
    color: var(--ink);
}

.tool-view {
    display: inline-flex;
    gap: 4px;
    margin-left: auto;
}

.disc > summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    color: var(--ink-2);
    font-size: var(--step-0);
    font-weight: 600;
    list-style: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.disc > summary::-webkit-details-marker {
    display: none;
}

.disc > summary:hover {
    color: var(--ink);
}

.disc-chevron {
    flex: none;
    color: var(--ink-3);
    transition: transform 0.25s var(--ease-out);
}

.disc[open] > summary .disc-chevron {
    transform: rotate(90deg);
}

.pd-tabs,
.vault-tabs {
    display: flex;
    gap: clamp(22px, 3vw, 40px);
    margin: 0 0 clamp(24px, 4vh, 36px);
    border-bottom: 1px solid var(--hairline);
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-tab,
.vault-tab {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-height: 50px;
    padding: 12px 0;
    border: 0;
    background: none;
    color: var(--ink-2);
    font-size: var(--step-1);
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.pd-tab::after,
.vault-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: rgb(var(--sun-rgb));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.pd-tab:hover,
.vault-tab:hover,
.pd-tab[aria-selected="true"],
.vault-tab[aria-selected="true"] {
    color: var(--ink);
}

.pd-tab[aria-selected="true"]::after,
.vault-tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.pd-tab:focus-visible,
.vault-tab:focus-visible {
    outline-offset: -2px;
}

.pd-tab-count,
.vault-tab-count {
    color: var(--ink-2);
    font-size: var(--step--1);
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 32px 0 0;
}

.pager-btn {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: var(--r-2);
    background: none;
    color: var(--ink-2);
    font-size: var(--step-0);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.pager-btn:hover {
    border-color: var(--hairline);
    background: var(--wash);
    color: var(--ink);
}

.pager-btn.active {
    border-color: var(--hairline-strong);
    background: var(--wash-strong);
    color: var(--ink);
}

.pager-gap {
    color: var(--ink-3);
}

.projects .page-head {
    margin-bottom: clamp(20px, 3vh, 28px);
}

.instruments {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 20px clamp(32px, 4vw, 64px);
    margin: 0 0 clamp(28px, 4vh, 40px);
    padding: clamp(22px, 3vh, 30px) 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.instr-me {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
}

.instr-me img {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.instr-me-text {
    display: grid;
    gap: 2px;
}

.instr-me-name {
    font-size: var(--step-1);
    font-weight: 700;
    line-height: 1.2;
}

.instr-me-sub {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ink-2);
    font-size: var(--step--1);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 0.2em;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.instr-me:hover .instr-me-sub {
    color: var(--ink-2);
    text-decoration-color: rgb(var(--sun-rgb) / 0.8);
}

.instr-nums {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: end;
    gap: 16px clamp(28px, 3.5vw, 56px);
    margin: 0;
}

.instr {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.instr dt {
    order: 2;
    color: var(--ink-2);
    font-size: var(--step--1);
    font-weight: 600;
    white-space: nowrap;
}

.instr dd {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: var(--step-4);
    font-weight: 800;
    font-stretch: 112%;
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.instr-of {
    color: var(--ink-3);
    font-size: 0.5em;
    font-weight: 700;
    letter-spacing: 0;
}

.instr-alert dd {
    color: var(--alert-soft);
}

.instr-live dd {
    color: var(--live);
}

.instruments.is-in :is(.instr-me, .instr) {
    animation: rise-in 0.7s var(--ease-out) both;
    animation-delay: calc(var(--i) * 70ms);
}

.repo-list,
.repo-grid {
    margin: 0;
    padding: 0;
    list-style: none;
}

.repo-list {
    border-top: 1px solid var(--hairline);
}

.repo-item {
    border-bottom: 1px solid var(--hairline);
}

.repo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 32px;
}

.tile-item {
    min-width: 0;
    border-top: 1px solid var(--hairline);
}

.tile {
    display: grid;
    grid-template-rows: 56px 1.45em 32px auto auto;
    align-content: start;
    row-gap: 12px;
    height: calc(100% - 4px);
    margin: 4px -12px 0;
    padding: 18px 12px 20px;
    border-radius: var(--r-2);
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.tile:hover,
.repo:hover {
    background: var(--wash);
}

.tile:focus-visible,
.repo:focus-visible {
    outline-offset: 0;
    border-radius: var(--r-2);
}

.tile-head {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.tile .repo-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-2);
}

.tile-id {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.tile .repo-name {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tile-sub {
    display: flex;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
    font-size: var(--step--1);
    white-space: nowrap;
}

.tile-desc {
    overflow: hidden;
    color: var(--ink-2);
    font-size: var(--step-0);
    line-height: 1.45;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tile-spark {
    height: 32px;
    padding: 2px 0;
    color: hsl(var(--hue) 70% 76%);
    opacity: 0.78;
    transition: opacity 0.2s ease;
}

.tile-spark-none {
    border-bottom: 1px dashed var(--hairline-strong);
    margin-bottom: 2px;
    height: 30px;
}

.tile:hover .tile-spark {
    opacity: 1;
}

.tile-nums {
    color: var(--ink-2);
    font-size: var(--step--1);
    line-height: 1.45;
    font-variant-numeric: tabular-nums;
}

.tile-ci .ci-pill {
    font-size: var(--step-0);
}

.repo {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 112px 176px 128px;
    grid-template-areas: "icon main spark nums ci";
    align-items: center;
    column-gap: 24px;
    margin: 0 -12px;
    padding: 14px 12px;
    border-radius: var(--r-2);
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.repo-icon {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r-1);
    overflow: hidden;
}

.repo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.repo-icon-letter {
    border: 1px solid var(--hairline-strong);
    color: var(--ink-2);
    font-size: var(--step-1);
    font-weight: 700;
}

.repo-main {
    grid-area: main;
    display: grid;
    gap: 3px;
    min-width: 0;
}

.repo-title {
    display: flex;
    align-items: baseline;
    gap: 4px 14px;
    min-width: 0;
}

.repo-name {
    flex: none;
    font-size: var(--step-1);
    font-weight: 700;
    line-height: 1.25;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: text-decoration-color 0.2s ease;
}

.repo:hover .repo-name,
.tile:hover .repo-name {
    text-decoration-color: rgb(var(--sun-rgb) / 0.8);
}

.repo-title .repo-lang {
    flex: none;
    font-size: var(--step--1);
}

.repo-topics {
    min-width: 0;
    overflow: hidden;
    color: var(--ink-2);
    font-size: var(--step--1);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.repo-desc {
    display: -webkit-box;
    max-width: 72ch;
    overflow: hidden;
    color: var(--ink-2);
    font-size: var(--step-0);
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.repo-desc-none {
    color: var(--ink-2);
}

.repo-spark {
    grid-area: spark;
    height: 28px;
    color: hsl(var(--hue) 70% 76%);
    opacity: 0.78;
    transition: opacity 0.2s ease;
}

.repo:hover .repo-spark {
    opacity: 1;
}

.repo-nums {
    grid-area: nums;
    display: grid;
    gap: 2px;
    color: var(--ink-2);
    font-size: var(--step--1);
    line-height: 1.45;
    font-variant-numeric: tabular-nums;
}

.repo-nums > :first-child {
    color: var(--ink-2);
}

.repo-ver {
    color: var(--ink);
    font-family: var(--font-mono);
}

.repo-ci {
    grid-area: ci;
    display: grid;
    justify-items: start;
    gap: 2px;
    font-size: var(--step--1);
    line-height: 1.45;
}

.repo-ci .ci-pill {
    font-size: var(--step-0);
}

.repo-when {
    color: var(--ink-2);
}

.repo-empty {
    margin: 32px 0;
    color: var(--ink-2);
}

.pd {
    padding-top: clamp(20px, 3vh, 36px);
}

.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: var(--ink-2);
    font-size: var(--step-0);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pd-back svg {
    transition: transform 0.3s var(--ease-out);
}

.pd-back:hover {
    color: var(--ink);
}

.pd-back:hover svg {
    transform: translateX(-3px);
}

.pd .page-head.pd-head {
    gap: 14px;
    max-width: 900px;
    margin: clamp(16px, 3vh, 28px) 0 clamp(36px, 6vh, 56px);
}

.pd-title {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.pd-title h1 {
    min-width: 0;
    font-stretch: 116%;
    overflow-wrap: break-word;
}

.pd-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: var(--r-2);
    overflow: hidden;
}

.pd-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-icon-letter {
    border: 1px solid var(--hairline-strong);
    color: var(--ink-2);
    font-size: var(--step-2);
    font-weight: 700;
}

.pd-desc {
    max-width: 62ch;
}

.pd-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
    margin: 0;
    padding: 0;
    color: var(--ink-2);
    font-size: var(--step-0);
    font-variant-numeric: tabular-nums;
    list-style: none;
}

.pd-facts .ci-pill {
    font-size: var(--step-0);
}

.pd .pd-topics {
    max-width: 72ch;
    margin: 0;
    color: var(--ink-2);
    font-size: var(--step--1);
}

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.pd-section {
    margin: 0 0 clamp(44px, 7vh, 72px);
}

.pd-section h2 {
    margin: 0 0 10px;
    font-size: var(--step-3);
}

.pd-lede {
    max-width: 68ch;
    margin: 0 0 22px;
    color: var(--ink-2);
    font-size: var(--step-1);
    line-height: 1.55;
}

.pd-chart {
    display: grid;
    gap: 8px;
}

.pd-bars,
.pd-axis {
    display: grid;
    grid-template-columns: repeat(52, minmax(0, 1fr));
    column-gap: 3px;
}

.pd-bars {
    align-items: end;
    height: clamp(120px, 18vh, 168px);
    border-bottom: 1px solid var(--hairline-strong);
}

.pd-bars i {
    display: block;
    height: var(--h);
    min-height: 2px;
    border-radius: 2px 2px 0 0;
    background: hsl(var(--hue) 62% 74% / 0.72);
    transform-origin: bottom;
    transition: background-color 0.2s ease;
}

.pd-chart.is-in .pd-bars i {
    animation: bar-up 0.7s var(--ease-out) both;
    animation-delay: calc(var(--i) * 12ms);
}

.pd-bars i:hover {
    background: hsl(var(--hue) 72% 86%);
}

.pd-bars i.pd-bar-peak {
    background: hsl(var(--hue) 70% 82%);
}

.pd-bars i.pd-bar-zero {
    height: 2px;
    background: var(--hairline);
}

.pd-axis {
    color: var(--ink-2);
    font-size: var(--step--1);
    line-height: 1.2;
}

.pd-axis span {
    grid-row: 1;
    padding: 2px 0 0 6px;
    border-left: 1px solid var(--hairline-strong);
    white-space: nowrap;
}

.pd-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px clamp(28px, 5vw, 72px);
    padding-top: clamp(28px, 4vh, 40px);
    border-top: 1px solid var(--hairline);
}

.pd-brief {
    margin: 0;
}

.pd-brief h2 {
    font-size: var(--step-2);
}

.pd-brief p {
    max-width: 52ch;
    margin: 0 0 8px;
    color: var(--ink-2);
    font-size: var(--step-1);
    line-height: 1.55;
}

.pd-brief .ci-pill {
    margin-right: 4px;
    font-size: var(--step-1);
}

.pd-ver {
    font-family: var(--font-mono);
    font-size: 0.94em;
}

.pd-brief .link-btn {
    font-size: var(--step-0);
    font-weight: 600;
}

.pd-dl {
    max-width: 760px;
    margin: 0 0 clamp(32px, 5vh, 48px);
}

.pd-dl figcaption {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: var(--step-0);
    font-weight: 600;
}

.pd-dl-rows {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-dl-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 124px;
    align-items: center;
    gap: 14px;
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
}

.pd-dl-tag {
    color: var(--ink-2);
    font-family: var(--font-mono);
}

.pd-dl-bar i {
    display: block;
    height: 8px;
    border-radius: 2px;
    background: hsl(var(--hue) 62% 74% / 0.72);
}

.pd-dl-val {
    color: var(--ink-2);
    text-align: right;
}

.pd-rels {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--hairline);
    list-style: none;
}

.pd-rel {
    padding: 22px 0 16px;
    border-bottom: 1px solid var(--hairline);
}

.pd-rel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 14px;
}

.pd-rel-head h3 {
    font-size: var(--step-2);
}

.pd-rel-head h3 a {
    text-decoration-color: transparent;
}

.pd-rel-head h3 a:hover {
    text-decoration-color: rgb(var(--sun-rgb));
}

.pd-rel-name {
    color: var(--ink-2);
    font-size: var(--step-0);
}

.pd-rel-flag {
    color: rgb(var(--sun-rgb));
    font-size: var(--step--1);
    font-weight: 700;
}

.pd-rel-meta {
    margin: 4px 0 6px;
    color: var(--ink-2);
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
}

.pd-rel-none {
    margin: 0;
    color: var(--ink-2);
    font-size: var(--step-0);
}

.pd-rel .build-list {
    margin-bottom: 8px;
}

.pd-log {
    padding: 6px 0 14px 22px;
}

:is(.pd-log, .rel-log) .md {
    max-width: 70ch;
    color: var(--ink-2);
    font-size: var(--step-0);
    line-height: 1.65;
}

:is(.pd-log, .rel-log) .md :is(h1, h2, h3, h4, h5, h6) {
    margin: 1.5em 0 0.5em;
    padding: 0;
    border: 0;
    color: var(--ink);
    font-family: var(--font-text);
    font-weight: 700;
    letter-spacing: 0;
}

:is(.pd-log, .rel-log) .md .md-h1 {
    font-size: var(--step-2);
}

:is(.pd-log, .rel-log) .md .md-h2 {
    font-size: var(--step-1);
}

:is(.pd-log, .rel-log) .md :is(.md-h3, .md-h4, .md-h5, .md-h6) {
    font-size: var(--step-0);
}

:is(.pd-log, .rel-log) .md a {
    color: var(--ink);
}

:is(.pd-log, .rel-log) .md :is(code, pre code) {
    font-family: var(--font-mono);
}

:is(.pd-log, .rel-log) .md code {
    border-radius: var(--r-1);
    background: rgb(var(--deep-rgb) / 0.4);
}

:is(.pd-log, .rel-log) .md pre {
    border-radius: var(--r-2);
}

:is(.pd-log, .rel-log) .md pre code {
    font-size: var(--step--1);
}

.pd-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pd-seg {
    display: block;
    width: 20px;
    height: 32px;
    border-radius: 3px;
    background: rgb(var(--ink-rgb) / 0.55);
    transition: transform 0.2s var(--ease-out), background-color 0.2s ease;
}

.pd-strip-lg .pd-seg {
    width: 24px;
    height: 48px;
}

.pd-seg:hover {
    background: var(--ink);
    transform: translateY(-2px);
}

.pd-seg:focus-visible {
    outline-offset: 2px;
}

.pd-seg.ci-storm {
    background: var(--alert);
}

.pd-seg.ci-drifting {
    background: var(--live);
}

.pd-seg.ci-haze,
.pd-seg.ci-quiet {
    background: var(--hairline-strong);
}

.pd-strip-note {
    margin: 12px 0 0;
    color: var(--ink-2);
    font-size: var(--step--1);
}

.pd-wfs {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--hairline);
    list-style: none;
}

.pd-wf {
    display: grid;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid var(--hairline);
}

.pd-wf-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px 16px;
}

.pd-wf-head h3 {
    font-size: var(--step-1);
}

.pd-wf-head h3 a {
    text-decoration-color: transparent;
}

.pd-wf-head h3 a:hover {
    text-decoration-color: rgb(var(--sun-rgb));
}

.pd-wf-head .ci-pill {
    font-size: var(--step-0);
}

.pd-wf-meta {
    margin: 0;
    color: var(--ink-2);
    font-size: var(--step--1);
}

@media (max-width: 1100px) {
    .repo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repo {
        grid-template-columns: 36px minmax(0, 1fr) 168px 124px;
        grid-template-areas: "icon main nums ci";
    }

    .repo-spark {
        display: none;
    }
}

@media (max-width: 760px) {
    .instruments {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .instr-nums {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: start;
        gap: 18px 20px;
    }

    .repo-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tile {
        grid-template-rows: 48px auto 32px auto auto;
    }

    .tile .repo-icon {
        width: 48px;
        height: 48px;
    }

    .tile-desc {
        display: -webkit-box;
        height: 2.9em;
        white-space: normal;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .repo {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        grid-template-areas:
            "icon main ci"
            "icon nums nums";
        align-items: start;
        column-gap: 14px;
        row-gap: 6px;
    }

    .repo-title {
        flex-wrap: wrap;
    }

    .repo-name {
        flex: 0 1 auto;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .repo-topics {
        display: none;
    }

    .repo-desc {
        -webkit-line-clamp: 3;
    }

    .repo-nums {
        display: flex;
        flex-wrap: wrap;
        gap: 0 14px;
    }

    .repo-ci {
        justify-items: end;
        text-align: right;
    }

    .tool-view {
        margin-left: 0;
    }

    .pd-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pd-title h1 {
        font-stretch: 108%;
    }

    .pd-icon {
        width: 48px;
        height: 48px;
    }

    .pd-facts {
        column-gap: 14px;
    }

    .pd-facts > * + *::before {
        content: none;
    }

    .pd-pair {
        grid-template-columns: 1fr;
    }

    .pd-axis span:nth-child(even) {
        visibility: hidden;
    }

    .pd-bars,
    .pd-axis {
        column-gap: 2px;
    }

    .pd-dl-row {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .pd-log {
        padding-left: 0;
    }
}
