:root {
  --bg: #FFFDF8;
  --fg: #1C1B18;
  --muted: #7A766E;
  --faint: #B5B0A6;
  --line: rgba(28,27,24,.1);
  --hover: rgba(28,27,24,.035);
  color-scheme: light;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv11", "ss01";
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}
main { max-width: 440px; margin: 0 auto; padding: 88px 24px 64px; }
a { color: inherit; text-decoration: none; }

.r { opacity: 0; transform: translateY(6px); animation: in .5s cubic-bezier(.2,.7,.2,1) forwards; }
@media (prefers-reduced-motion: reduce) { .r { animation: none; opacity: 1; transform: none; } }
@keyframes in { to { opacity: 1; transform: none; } }

h1 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #FF6B6B; }

section { margin-bottom: 32px; }
h2 { font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }

.list { border-top: 1px solid var(--line); }
.row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 8px; margin: 0 -8px; border-radius: 8px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.row:hover { background: var(--hover); }
.chip {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--c); color: var(--fg);
  display: grid; place-items: center;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.chip svg { width: 20px; height: 20px; }
.row:hover .chip { transform: rotate(-8deg) scale(1.08); }
.row .t { flex: 1; min-width: 0; }
.row .t b { font-weight: 500; }
.row .side { color: var(--faint); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 50%; }
.row .arr { color: var(--faint); font-size: 13px; transition: transform .15s, color .15s; }
.row:hover .arr { transform: translate(2px,-2px); color: var(--fg); }

footer { margin-top: 48px; font-size: 12px; color: var(--faint); }

.back { display: inline-block; font-size: 13px; color: var(--muted); margin-bottom: 20px; transition: color .15s; }
.back:hover { color: var(--fg); }
.note { font-size: 13px; color: var(--muted); margin: -26px 0 32px; }
footer p { margin-bottom: 6px; }
