/* ============================================================
   Made For Humans — one page, one column.
   Black ground, white type, system font, everything one size.
   ============================================================ */
:root {
  --bg: #000;
  --text: #fff;
  --muted: rgb(255 255 255 / 0.4);
  --ring: rgb(255 255 255 / 0.12);
  --tile: rgb(255 255 255 / 0.06);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;          /* phone size everywhere — never scales up */
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

h1, p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.muted {
  color: var(--muted);
}

/* The page: a phone-width column, centered on wider screens.
   Text inside stays left-aligned; the column itself sits in the middle. */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  max-width: 28em;
  margin: 0 auto;
  padding: 80px 24px 32px;
}

main {
  flex: 1 0 auto;
}

.intro p {
  max-width: 24em;
  margin-top: 1.5em;
}

/* ---- App list ---- */
.apps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2em;
  margin-top: 5em;
}

.app {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}

.app-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 22%;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px var(--ring);
}

/* The icon PNGs carry transparent padding around the tile — zoom past it */
.app-icon img {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.26);
  position: relative;
  z-index: -1;
}

.app-icon-letter {
  background: var(--tile);
  font-weight: 500;
}

.app-text {
  display: flex;
  flex-direction: column;
}

.app-oneliner,
.app-meta {
  color: var(--muted);
  transition: color 0.3s ease;
}

.app:hover .app-oneliner {
  color: var(--text);
}

/* ---- Footer — the one smaller line, pinned to the bottom of the screen ---- */
.foot {
  margin-top: 5em;
  font-size: 13px;
  color: var(--muted);
}

.foot a {
  transition: color 0.3s ease;
}

.foot a:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .page {
    padding-top: 120px;
  }
}
