
:root {
  --bg: #09090B; --card: #18181B; --border: #2A2A2E;
  --text: #F5F5F7; --muted: #A1A1AA; --accent: #FF7A1A; --accent-deep: #FF4D00;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
}
.wrap { max-width: 860px; margin: 0 auto; padding: 64px 20px 96px; }
header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; }
.logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.logo-text { font-weight: 800; letter-spacing: .14em; font-size: 13px; }
h1 { font-size: clamp(32px, 6vw, 46px); line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.02em; }
.lede { color: var(--muted); font-size: 19px; margin: 0 0 56px; max-width: 60ch; }
.app {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 24px; margin-bottom: 18px; scroll-margin-top: 24px;
}
.app-icon {
  width: 64px; height: 64px; border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; font-size: 30px;
}
.app h2 { margin: 0 0 4px; font-size: 21px; letter-spacing: -0.01em; }
.app p { margin: 0 0 14px; color: var(--muted); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.badge {
  font-size: 12px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 11px;
}
/* Status reads before the name does: a dot carries it at a glance, the word
   carries it for anyone who cannot separate these two colours. */
.badge.status { display: inline-flex; align-items: center; gap: 7px; }
.badge.status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
}
.badge.live { color: #4ADE80; border-color: rgba(74, 222, 128, .35); }
.badge.in_progress { color: #FBBF24; border-color: rgba(251, 191, 36, .35); }
.badge.soon { color: var(--muted); }
/* Unreleased cards step back rather than disappear — the point of listing them
   is the roadmap, not the sell. */
.app.is-in_progress { opacity: .92; }
.app.is-soon { opacity: .66; }
.app.is-soon .app-icon { filter: saturate(.5); }
a.store {
  display: inline-block; margin-top: 12px; font-weight: 700; font-size: 14px;
  color: var(--accent); text-decoration: none;
}
a.store:hover { text-decoration: underline; }
h2.section {
  font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 56px 0 18px;
}
h2.section:first-of-type { margin-top: 0; }
.cta {
  display: inline-block; margin-top: 6px; padding: 11px 20px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; text-decoration: none; font-weight: 700; font-size: 15px;
}
nav.families { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
nav.families a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 15px;
}
nav.families a:hover { color: var(--text); border-color: var(--accent); }
footer { margin-top: 72px; padding-top: 28px; border-top: 1px solid var(--border);
         color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }
@media (max-width: 520px) {
  .app { grid-template-columns: 1fr; }
}
