.hub {
    padding-top: clamp(32px, 7vh, 80px);
}

.hub-greet {
    display: grid;
    justify-items: start;
    gap: clamp(14px, 2.2vh, 22px);
    max-width: 900px;
}

.hub-greet h1 {
    max-width: 100%;
    font-size: var(--step-5);
    font-stretch: 122%;
    line-height: 0.92;
    letter-spacing: -0.028em;
    overflow-wrap: anywhere;
}

.hub-me {
    color: var(--crew);
}

.hub-now {
    max-width: 50ch;
    margin: 0;
    color: var(--ink-2);
    font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
    line-height: 1.5;
}

.hub-now b {
    color: var(--ink);
    font-weight: 600;
}

.hub-now .live-dot {
    margin-right: 12px;
    vertical-align: 0.14em;
}

.hub-now-wait {
    color: var(--ink-3);
}

.hub-go {
    min-height: 52px;
    margin-top: 6px;
    padding: 0 26px;
    font-size: var(--step-1);
}

.hub-body {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 7vw, 112px);
    align-items: start;
    margin-top: clamp(48px, 9vh, 96px);
}

.hub-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--hairline);
}

.hub-head h2 {
    font-family: var(--font-text);
    font-size: var(--step-1);
    font-weight: 700;
    font-stretch: normal;
    letter-spacing: 0;
}

.hub-count {
    margin: 0;
    color: var(--ink-3);
    font-size: var(--step--1);
    font-variant-numeric: tabular-nums;
}

.crew-list {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 14px;
    margin: 0;
    padding: 28px 0 30px;
    list-style: none;
}

.crew-list:empty {
    display: none;
}

.crew-member {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 92px;
}

.hub-crew .crew-mark {
    width: 72px;
    height: 72px;
    font-size: var(--step-2);
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-1);
}

.crew-name {
    max-width: 100%;
    overflow: hidden;
    color: var(--ink);
    font-size: var(--step-0);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.crew-caption {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--hairline);
    color: var(--ink-3);
    font-size: var(--step--1);
}

.crew-away {
    gap: 18px 10px;
    padding: 16px 0 0;
}

.crew-away .crew-member {
    gap: 7px;
    width: 68px;
}

.crew-away .crew-mark {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--crew);
    background: none;
    color: var(--ink-2);
    font-size: var(--step--1);
    box-shadow: none;
}

.crew-away .crew-name {
    color: var(--ink-3);
    font-size: var(--step--1);
    font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
    .crew-member {
        animation: hub-crew-arrive 0.5s var(--ease-out) both;
        animation-delay: calc(var(--i, 0) * 40ms);
    }
}

@keyframes hub-crew-arrive {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
}

.place-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.place {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 72px;
    padding: 12px 0;
    border-bottom: 1px solid var(--hairline);
    color: var(--ink);
    text-decoration: none;
}

.place::before {
    content: '';
    position: absolute;
    inset: 4px -14px;
    z-index: -1;
    border-radius: var(--r-2);
    background: var(--wash);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.place:hover::before {
    opacity: 1;
}

.place-icon {
    display: flex;
    color: var(--ink-3);
    transition: color 0.2s ease;
}

.place:hover .place-icon,
.place.is-live .place-icon {
    color: var(--ink);
}

.place-text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.place-name {
    font-size: var(--step-1);
    font-weight: 600;
    line-height: 1.3;
}

.place-state {
    overflow: hidden;
    color: var(--ink-3);
    font-size: var(--step-0);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.place.is-live .place-state {
    color: var(--ink-2);
}

.place-state .live-dot {
    margin-right: 8px;
    vertical-align: 0.08em;
}

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

.place-go span {
    text-decoration: underline;
    text-decoration-color: rgb(var(--sun-rgb) / 0.55);
    text-underline-offset: 0.24em;
}

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

.place:hover .place-go {
    color: var(--ink);
}

.place:hover .place-go svg {
    transform: translateX(4px);
}

@media (max-width: 860px) {
    .hub {
        padding-top: 28px;
    }

    .hub-greet h1 {
        font-size: clamp(2.375rem, 11.5vw, 3.5rem);
        font-stretch: 116%;
    }

    .hub-body {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
        margin-top: 48px;
    }

    .crew-member {
        width: 80px;
    }

    .hub-crew .crew-mark {
        width: 60px;
        height: 60px;
        font-size: var(--step-1);
    }

    .crew-away .crew-member {
        width: 64px;
    }

    .crew-away .crew-mark {
        width: 40px;
        height: 40px;
    }

    .place::before {
        inset: 4px -8px;
    }
}
