/* Hub — lotion.synechristics.skin. Deliberately unbranded: a lobby board listing
   two tenants, not a parent company with a look of its own. */

:root {
    --ground: #ffffff;
    --ink: #101010;
    --muted: #6e6e6e;
    --hair: #d9d9d9;
    --hover: #f4f4f2;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0 1.5rem 5rem;
    background: var(--ground);
    color: var(--ink);
    font-family: ui-sans-serif, -apple-system, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

main,
.colophon {
    max-width: 52rem;
    margin: 0 auto;
}

.hero {
    padding: 6rem 0 3rem;
}

.eyebrow {
    margin: 0 0 1.5rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero h1 {
    margin: 0 0 1.75rem;
    font-size: clamp(3.5rem, 13vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.lede {
    margin: 0;
    max-width: 34rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.ventures {
    margin: 4rem 0 0;
    border-top: 1px solid var(--hair);
}

.venture-card {
    display: grid;
    grid-template-columns: 12rem 1fr;
    gap: 0 2.5rem;
    padding: 2.25rem 1rem 2.25rem 0;
    border-bottom: 1px solid var(--hair);
    color: inherit;
    text-decoration: none;
    transition: background-color 140ms ease, padding-left 140ms ease;
}

.venture-card:hover,
.venture-card:focus-visible {
    background: var(--hover);
    padding-left: 1rem;
}

.venture-kicker {
    grid-column: 1;
    grid-row: 1 / span 4;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 0.5rem;
}

.venture-name {
    grid-column: 2;
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-weight: 500;
}

.venture-tagline {
    grid-column: 2;
    margin-top: 0.3rem;
    font-size: 1rem;
    font-style: italic;
    color: var(--muted);
}

.venture-blurb {
    grid-column: 2;
    margin-top: 1rem;
    max-width: 30rem;
    color: #3a3a3a;
}

.venture-go {
    grid-column: 2;
    margin-top: 1.25rem;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    color: var(--muted);
}

.venture-card:hover .venture-go,
.venture-card:focus-visible .venture-go {
    color: var(--ink);
}

.venture-go::after {
    content: " \2192";
}

.note {
    margin-top: 5rem;
    max-width: 34rem;
}

.note h2 {
    margin: 0 0 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.note p {
    margin: 0 0 1rem;
    color: #3a3a3a;
}

.note p:last-child {
    margin-bottom: 0;
}

.colophon {
    margin-top: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hair);
    color: var(--muted);
    font-size: 0.8rem;
}

.colophon p {
    margin: 0 0 0.3rem;
}

@media (max-width: 40rem) {
    .venture-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .venture-kicker {
        grid-column: 1;
        grid-row: auto;
        padding-top: 0;
        margin-bottom: 0.75rem;
    }

    .venture-name,
    .venture-tagline,
    .venture-blurb,
    .venture-go {
        grid-column: 1;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --ground: #0c0c0c;
        --ink: #f2f2f0;
        --muted: #8b8b88;
        --hair: #262626;
        --hover: #151515;
    }

    .lede,
    .venture-blurb,
    .note p {
        color: #c6c6c2;
    }
}
