:root {
    --ink: #111111;
    --muted: #6b6b6b;
    --bg: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
    padding: 4.5rem 1.5rem 3rem;
}

.page {
    width: min(34rem, 100%);
    margin: 0 auto;
}

.intro {
    margin-bottom: 2.75rem;
}

h1 {
    margin: 0 0 0.45rem;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.lede {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.45;
}

.apps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
}

.app {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    color: inherit;
    text-decoration: none;
}

a.app:hover .app-name,
a.app:focus-visible .app-name {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

a.app:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 6px;
    border-radius: 8px;
}

.app-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 1.1rem;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.06);
}

.app-name {
    margin-top: 0.2rem;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
}

.app-blurb {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
}
