/* Homepage */
body.respira-theme {
    background:
        linear-gradient(rgba(18, 21, 16, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 21, 16, .035) 1px, transparent 1px),
        var(--canvas);
    background-size: 64px 64px;
    color: var(--ink);
}

.editorial-main {
    width: min(var(--page-width), calc(100% - 72px));
    margin-inline: auto;
}

.editorial-hero {
    padding: clamp(24px, 3vw, 42px) 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: clamp(22px, 3vw, 38px);
    padding: clamp(30px, 4.2vw, 58px) 0 clamp(12px, 2vw, 26px);
    text-align: center;
}

.hero-heading .eyebrow {
    margin: 0 0 18px;
}

.hero-title-main,
.hero-title-main em,
.next-feature-copy h2,
.section-intro h2,
.route-title-wrap h3,
.route-status strong,
.workflow-heading h2,
.hero-metrics strong {
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.045em;
}

.hero-title-main {
    display: flex;
    max-width: 1280px;
    justify-content: center;
    margin-inline: auto;
    flex-wrap: wrap;
    gap: .12em;
    font-size: clamp(68px, 7vw, 116px);
    line-height: .96;
}

.hero-title-main em {
    font-style: normal;
    letter-spacing: -.035em;
}

.hero-summary {
    display: grid;
    justify-items: center;
    justify-self: center;
    width: min(100%, 900px);
    padding-bottom: 0;
}

.hero-summary > p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.72;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.editorial-search {
    width: min(100%, 860px);
    margin-top: 18px;
}

.editorial-search > label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.editorial-search-control {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 4px;
    min-height: 54px;
    padding: 4px 5px 4px 18px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .42), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 250, .22), rgba(255, 255, 250, .07)),
        color-mix(in srgb, var(--canvas) 36%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .64),
        0 10px 28px rgba(18, 21, 16, .045);
    backdrop-filter: blur(17px) saturate(128%);
    -webkit-backdrop-filter: blur(17px) saturate(128%);
}

.editorial-search-control input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 8px 0 5px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    appearance: none;
    -webkit-appearance: none;
    caret-color: var(--ink);
    position: relative;
    z-index: 1;
    line-height: 44px;
    text-rendering: geometricPrecision;
    font-family: var(--serif);
    font-size: clamp(16px, 1.2vw, 18px);
    letter-spacing: -.012em;
}

.editorial-search-control input::placeholder {
    color: color-mix(in srgb, var(--ink) 38%, transparent);
}

.editorial-search-control input:focus,
.editorial-search-control input:focus-visible {
    outline: none;
}

.editorial-search-control button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    box-shadow: none;
    z-index: 1;
    transition: background-color .2s ease, transform .2s ease;
}

.editorial-search-control button:focus,
.editorial-search-control button:focus-visible {
    outline: none;
}

.editorial-search-control button:hover {
    background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.editorial-search-control button:active {
    transform: scale(.94);
}

.editorial-search-control button::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 1.7px solid color-mix(in srgb, var(--ink) 62%, transparent);
    border-radius: 50%;
    transform: translate(-1px, -1px);
}

.editorial-search-control button::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ink) 62%, transparent);
    transform: translate(8px, 8px) rotate(45deg);
}

.editorial-search-control:focus-within {
    outline: none;
    border-color: color-mix(in srgb, var(--ink) 28%, var(--line));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .64),
        0 12px 32px rgba(18, 21, 16, .06);
}

.editorial-search-status {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.metrics-heading,
.hero-metrics,
.next-feature,
.routes-section,
.workflow-section {
    width: 100%;
    margin-inline: auto;
}

.metrics-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.metrics-heading .eyebrow {
    margin: 0;
}

.metrics-heading > p:last-child {
    justify-self: start;
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
}

.hero-metrics {
    display: grid;
    grid-template-columns: minmax(230px, 1.24fr) repeat(4, minmax(132px, 1fr));
    overflow: hidden;
    border: 1px solid rgba(18, 21, 16, .13);
    border-radius: 22px;
    background: rgba(255, 255, 250, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
    backdrop-filter: blur(8px) saturate(108%);
    -webkit-backdrop-filter: blur(8px) saturate(108%);
}

.hero-metrics > div {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    border-right: 1px solid rgba(18, 21, 16, .10);
}

.hero-metrics > div:last-child {
    border-right: 0;
}

.hero-metrics span {
    color: var(--muted);
    font: 700 10px/1 var(--mono);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-metrics strong {
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 1;
}

.metric-primary strong {
    font-size: clamp(44px, 4.2vw, 66px);
}

.editorial-progress {
    height: 3px;
    border-radius: 999px;
}

.editorial-progress i {
    background: var(--route-accent, var(--accent));
}

@keyframes editorialTicker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0);
    }
}

.editorial-marquee {
    position: relative;
    isolation: isolate;
    width: 100vw;
    max-width: none;
    overflow: hidden;
    margin: 8px 0 0 calc(50% - 50vw);
    border-top: 1px solid rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(18, 21, 16, .10);
    background: rgba(255, 255, 250, .16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 14px 34px rgba(18, 21, 16, .055);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}

.editorial-hero .editorial-marquee {
    margin: clamp(-28px, -2.4vw, -14px) 0 clamp(42px, 4.5vw, 60px) calc(50% - 50vw);
}

.marquee-track {
    --marquee-distance: 0px;
    --marquee-duration: 9s;
    display: flex;
    width: max-content;
    padding: 16px 0;
    animation: editorialTicker var(--marquee-duration) linear infinite;
    will-change: transform;
}

.marquee-track:not([data-marquee-ready="true"]) {
    visibility: hidden;
    animation-play-state: paused;
}

.editorial-marquee.is-chip-hovering .marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-group + .marquee-group {
    margin-left: 8px;
}

.marquee-group[data-marquee-clone="true"] {
    pointer-events: auto;
}

.editorial-marquee button,
.editorial-marquee span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: 999px;
    background: rgba(255, 255, 250, .22);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 8px 18px rgba(18, 21, 16, .06);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.editorial-marquee button:hover,
.editorial-marquee button:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 46%, rgba(255, 255, 255, .46));
    background: color-mix(in srgb, var(--accent-soft) 68%, rgba(255, 255, 250, .22));
    transform: translateY(-2px);
}

.editorial-marquee button.is-selected {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent-soft) 82%, rgba(255, 255, 250, .22));
    animation: marqueeChipSelect .34s cubic-bezier(.2, .8, .2, 1);
}

@keyframes marqueeChipSelect {
    0% { transform: scale(1); }
    45% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        transform: none !important;
    }

    .editorial-marquee button.is-selected {
        animation: none;
    }
}

.next-feature {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(288px, 316px);
    grid-template-areas:
        "top top"
        "copy panel";
    align-items: center;
    gap: 12px clamp(18px, 2.2vw, 32px);
    min-height: 286px;
    margin-top: clamp(30px, 4vw, 54px);
    padding: clamp(24px, 2.8vw, 36px) clamp(24px, 3vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 18%, rgba(201, 255, 56, .075), transparent 22%),
        radial-gradient(ellipse at 32% 44%, rgba(255, 255, 250, .44), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 250, .32), rgba(255, 255, 250, .12) 62%, rgba(18, 21, 16, .025));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .54);
    backdrop-filter: blur(14px) saturate(118%);
    -webkit-backdrop-filter: blur(14px) saturate(118%);
}

.next-feature::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 42px 42% 42px 26px;
    border-radius: 999px;
    background: radial-gradient(ellipse at 22% 34%, rgba(255, 255, 255, .38), rgba(255, 255, 255, .16) 46%, transparent 74%);
    opacity: .72;
    pointer-events: none;
}

.next-feature-copy .eyebrow,
.next-lesson-context {
    display: none;
}

.next-feature-top,
.next-feature-copy,
.next-feature-panel {
    position: relative;
    z-index: 1;
}

.next-feature-top {
    grid-area: top;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
    padding-bottom: 4px;
}

.next-feature-top::after {
    content: "";
    order: 1;
    flex: 0 1 clamp(62px, 9vw, 140px);
    height: 1px;
    background: linear-gradient(90deg, rgba(18, 21, 16, .075), rgba(18, 21, 16, .026) 58%, transparent);
}

.next-feature-top p {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font: 850 12px/1.2 var(--mono);
    letter-spacing: .095em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.next-feature-top a {
    order: 2;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 9px 14px;
    border: 1px solid rgba(18, 21, 16, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
    color: var(--ink);
    font-size: 12px;
    font-weight: 760;
    white-space: nowrap;
}

.next-feature-copy {
    grid-area: copy;
    min-width: 0;
}

.next-feature-copy h2 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(38px, 4vw, 62px);
    line-height: .96;
    text-wrap: balance;
}

.next-feature-copy > p:last-of-type {
    max-width: 60ch;
    margin: 16px 0 0;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    font-size: clamp(14px, 1.12vw, 16px);
    line-height: 1.72;
}

.next-benefits,
.next-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.next-benefits {
    margin-top: 18px;
}

.next-benefits span,
.next-feature-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(18, 21, 16, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
    color: var(--muted);
    font: 760 11px/1.2 var(--mono);
    letter-spacing: .03em;
}

.next-feature-panel {
    grid-area: panel;
    display: flex;
    width: min(100%, 316px);
    min-height: 208px;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 22px;
    background: rgba(255, 255, 250, .24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .54), 0 10px 26px rgba(18, 21, 16, .055);
    backdrop-filter: blur(14px) saturate(118%);
    -webkit-backdrop-filter: blur(14px) saturate(118%);
}

.next-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.next-panel-top span {
    max-width: 13ch;
    color: color-mix(in srgb, var(--ink) 70%, transparent);
    font: 820 11px/1.35 var(--mono);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.next-panel-top strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(42px, 3.75vw, 58px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.046em;
    font-variant-numeric: tabular-nums;
}

.next-panel-bar {
    height: 7px;
    border: 1px solid rgba(18, 21, 16, .08);
}

.next-panel-bar i {
    background: #bfe83c;
}

.next-feature-panel p {
    margin: 0;
    color: color-mix(in srgb, var(--ink) 72%, transparent);
    font-size: 13px;
    line-height: 1.76;
}

.circle-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 50px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(18, 21, 16, .18);
    border-radius: 999px;
    background: rgba(255, 255, 250, .36);
    color: var(--ink);
    font-size: 14px;
    font-weight: 780;
}

.circle-link::after {
    content: ">";
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--canvas);
}

.routes-section {
    padding: clamp(82px, 8vw, 120px) 0 clamp(76px, 7vw, 112px);
    border-bottom: 1px solid rgba(18, 21, 16, .09);
}

.overview-progress-section {
    padding: clamp(76px, 8vw, 118px) 0 clamp(86px, 8vw, 128px);
    border-bottom: 1px solid rgba(18, 21, 16, .09);
}

.progress-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.progress-route {
    display: flex;
    min-height: 186px;
    flex-direction: column;
    padding: 20px;
}

.progress-route header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.progress-route h3 {
    margin: 0;
    color: var(--ink);
    font-size: 21px;
}

.progress-route header strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(34px, 3.4vw, 54px);
    font-weight: 400;
    letter-spacing: -.05em;
}

.progress-route p {
    margin: 14px 0;
    color: var(--muted);
    font-size: 12px;
}

.progress-route .button {
    width: max-content;
    margin-top: auto;
}

.insight {
    margin-block: 16px;
    padding: 20px 22px;
}

.insight h3 {
    margin: 12px 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.insight p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.overview-progress-section .section-intro {
    grid-template-columns: minmax(0, .78fr) minmax(360px, .7fr);
    align-items: end;
    gap: clamp(44px, 6vw, 92px);
    margin-bottom: clamp(38px, 5vw, 64px);
}

.overview-progress-section .section-intro h2 {
    max-width: 620px;
    font-size: clamp(38px, 4.8vw, 62px);
    line-height: 1.02;
}

.overview-progress-section .section-intro > p {
    max-width: 46ch;
    padding-bottom: 10px;
    font-size: 16px;
}

.overview-progress-section .progress-cards {
    gap: clamp(18px, 2vw, 28px);
    margin: 0 0 clamp(22px, 3vw, 36px);
}

.overview-progress-section .insight {
    margin-bottom: clamp(22px, 3vw, 36px);
    padding: clamp(24px, 3vw, 34px);
}

.section-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(280px, .54fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    margin: 0 0 24px;
}

.section-intro h2,
.workflow-heading h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.02;
}

.section-intro > p {
    max-width: 430px;
    margin: 0;
    color: color-mix(in srgb, var(--ink) 62%, transparent);
    font-size: 15px;
    line-height: 1.72;
}

.route-order-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0 0 10px;
    padding: 12px 16px;
    border: 1px solid rgba(18, 21, 16, .08);
    border-radius: 16px;
    background: rgba(255, 255, 250, .34);
    color: color-mix(in srgb, var(--ink) 66%, transparent);
    font-size: 12px;
}

.route-order-note strong {
    color: color-mix(in srgb, var(--ink) 84%, transparent);
}

.editorial-routes {
    overflow: hidden;
    border: 1px solid rgba(18, 21, 16, .10);
    border-radius: 20px;
    background: rgba(255, 255, 250, .32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .54), var(--shadow);
}

.editorial-route {
    display: grid;
    grid-template-columns: minmax(190px, .62fr) minmax(260px, .95fr) minmax(290px, .9fr);
    grid-template-areas:
        "title copy status"
        "title copy progress"
        "title copy footer";
    align-items: center;
    gap: 11px clamp(20px, 2.5vw, 34px);
    padding: clamp(18px, 2vw, 24px) clamp(18px, 2.3vw, 26px);
    border-bottom: 1px solid rgba(18, 21, 16, .09);
}

.editorial-route:last-child {
    border-bottom: 0;
}

.editorial-route:hover {
    background: rgba(255, 255, 250, .42);
}

.route-title-wrap {
    grid-area: title;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.route-index {
    color: color-mix(in srgb, var(--ink) 56%, transparent);
    font: 760 12px/1 var(--mono);
    letter-spacing: .08em;
}

.route-title-main {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.route-title-wrap h3 {
    margin: 0;
    font-size: clamp(23px, 1.9vw, 30px);
    line-height: 1.06;
    white-space: nowrap;
}

.route-requirement {
    color: color-mix(in srgb, var(--ink) 55%, transparent);
    font-size: 12px;
    font-weight: 700;
}

.editorial-route > p {
    grid-area: copy;
    max-width: 48ch;
    margin: 0;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    font-size: 14px;
    line-height: 1.64;
}

.route-status {
    grid-area: status;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

.route-status span {
    min-width: 0;
    color: color-mix(in srgb, var(--ink) 68%, transparent);
    font-size: 15px;
    font-weight: 720;
    line-height: 1.38;
}

.route-status strong {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1;
}

.editorial-route .editorial-progress {
    grid-area: progress;
}

.route-footer {
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    color: color-mix(in srgb, var(--ink) 58%, transparent);
    font-size: 12px;
    font-weight: 700;
}

.route-link-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 13px;
    border: 1px solid color-mix(in srgb, var(--route-accent) 24%, rgba(18, 21, 16, .13));
    border-radius: 999px;
    background: rgba(255, 255, 250, .44);
    color: color-mix(in srgb, var(--ink) 78%, var(--route-accent));
    white-space: nowrap;
}

.workflow-section {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
    gap: clamp(36px, 6vw, 86px);
    padding: clamp(84px, 8vw, 124px) 0;
    border-top: 1px solid var(--line);
}

.section-number {
    color: var(--muted);
    font: 760 10px/1 var(--mono);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.workflow-heading {
    position: sticky;
    top: 104px;
    grid-column: 1;
}

.workflow-list {
    grid-column: 2;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0 0 0 24px;
    border-left: 1px solid var(--line);
    list-style: none;
}

.workflow-list li {
    padding: 8px 0 38px 24px;
}

.workflow-list li:last-child {
    padding-bottom: 0;
}

.workflow-list span {
    color: var(--muted);
    font: 760 11px/1 var(--mono);
}

.workflow-list strong {
    display: block;
    margin-top: 12px;
    color: var(--ink);
    font-size: clamp(22px, 2.2vw, 30px);
}

.workflow-list p {
    max-width: 58ch;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.editorial-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    width: min(var(--page-width), calc(100% - 72px));
    margin-inline: auto;
    padding: 28px 0 64px;
    color: var(--muted);
    font: 700 10px/1 var(--mono);
    letter-spacing: .1em;
    text-transform: uppercase;
}
