:root {
  --paper: #F3EEE2;
  --paper-2: #EAE3D2;
  --card: #FBF8F1;
  --thermal: #FDFCF8;
  --manila: #E6C98C;
  --manila-2: #D5B26A;
  --ink: #1D1A16;
  --ink-2: #3A352D;
  --graphite: #6F685A;
  --rule: #D8CFBB;
  --stamp: #CF3F2B;
  --clover: #2E8A57;
  --steel: #B9B4AA;
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Instrument Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;
  --radius: 10px;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  --ink-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.4 1.9'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23m)'/%3E%3C/svg%3E");
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(29, 26, 22, .075) 1px, transparent 1.2px);
  background-size: 22px 22px;
  color: var(--ink);
  font: 400 15px/1.5 var(--body);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  opacity: .16;
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; }
img { display: block; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--stamp); outline-offset: 2px; border-radius: 4px; }

/* ---------- header ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px clamp(16px, 3vw, 32px);
  background: rgba(243, 238, 226, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand-clip { width: 28px; height: 28px; color: var(--stamp); flex: none; }
.brand-word { font: 800 23px/1 var(--display); letter-spacing: -.02em; }
.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink-2);
}
.nav a:hover { background: var(--paper-2); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.buy {
  margin-left: auto;
  text-decoration: none;
  font: 700 13px/1 var(--display);
  letter-spacing: .08em;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--stamp);
  color: #fff;
  box-shadow: 0 2px 0 var(--ink);
  border: 1.5px solid var(--ink);
}
.buy:active { transform: translateY(2px); box-shadow: none; }

main { position: relative; z-index: 1; outline: none; }
.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px clamp(16px, 3vw, 32px) 80px;
}

/* ---------- shared pieces ---------- */
.tape {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px 4px;
  background: var(--ink);
  color: #F7F3EA;
  font: 700 11.5px/1.2 var(--display);
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .28), 0 -1px 0 rgba(0, 0, 0, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), inset 0 -2px 0 rgba(0, 0, 0, .35), 0 1px 2px rgba(0, 0, 0, .15);
  transform: rotate(-.6deg);
}
.tape.red { background: var(--stamp); }
.tape.green { background: var(--clover); }

.card {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 3px 3px 0 rgba(29, 26, 22, .9);
}

.avatar {
  flex: none;
  width: var(--s, 40px);
  height: var(--s, 40px);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--manila);
  object-fit: cover;
  overflow: hidden;
}
.avatar.initials {
  display: grid;
  place-items: center;
  font: 800 calc(var(--s, 40px) * .42)/1 var(--display);
  color: var(--ink);
  background: hsl(var(--h, 40) 55% 78%);
}

.who { display: flex; align-items: center; gap: 10px; min-width: 0; text-decoration: none; }
.who-text { min-width: 0; display: flex; flex-direction: column; }
.who-name { font-weight: 600; line-height: 1.25; }
.who-name .founder { margin-left: 4px; }
.who-head { color: var(--graphite); font-size: 13px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
a.who:hover .who-name { text-decoration: underline; text-underline-offset: 3px; }

.time { color: var(--graphite); font-size: 13px; text-decoration: none; white-space: nowrap; }
a.time:hover { text-decoration: underline; }

.stamp {
  display: inline-block;
  padding: 5px 10px 4px;
  border: 3px solid currentColor;
  border-radius: 7px;
  color: var(--stamp);
  font: 800 15px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(-7deg);
  -webkit-mask-image: var(--ink-mask);
  mask-image: var(--ink-mask);
  -webkit-mask-size: 120px;
  mask-size: 120px;
  opacity: .92;
  white-space: nowrap;
}
.stamp.green { color: var(--clover); }
.stamp.small { font-size: 11px; border-width: 2px; padding: 4px 7px 3px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  font-size: 13px;
  font-weight: 500;
}
.chip .n { font: 600 12px/1 var(--mono); color: var(--graphite); }

.mono { font-family: var(--mono); }
.muted { color: var(--graphite); }
.empty { color: var(--graphite); padding: 24px 4px; }
.error-box { padding: 20px; }
.error-box button {
  margin-top: 10px;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  cursor: pointer;
}

/* ---------- feed page ---------- */
.feed-page {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 270px;
  grid-template-areas: "left stream right";
  gap: 28px;
  align-items: start;
}
.rail { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 84px; }
.rail.left { grid-area: left; }
.rail.right { grid-area: right; }
.stream { grid-area: stream; min-width: 0; }

.join { background: var(--manila); position: relative; }
.join::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 18px;
  width: 92px;
  height: 12px;
  background: var(--manila);
  border: 1.5px solid var(--ink);
  border-bottom: none;
  border-radius: 7px 7px 0 0;
  transform: translateY(-100%);
}
.copyfield {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: var(--thermal);
  overflow: hidden;
}
.copyfield code {
  flex: 1;
  min-width: 0;
  padding: 9px 10px;
  font: 500 12.5px/1.35 var(--mono);
  overflow-wrap: anywhere;
}
.copyfield button {
  flex: none;
  border: none;
  border-left: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0 12px;
  font: 700 12px/1 var(--display);
  letter-spacing: .06em;
  cursor: pointer;
}
.copyfield button.done { background: var(--clover); }

.ledger dl { margin: 0; display: grid; grid-template-columns: 1fr auto; row-gap: 0; }
.ledger dt, .ledger dd {
  margin: 0;
  padding: 7px 0;
  border-bottom: 1px dashed var(--rule);
}
.ledger dt { color: var(--ink-2); }
.ledger dd { font: 600 14px/1.5 var(--mono); text-align: right; }
.ledger dl > :nth-last-child(-n + 2) { border-bottom: none; }

.coinline { font-size: 13px; }
.coinline .label { color: var(--graphite); }
.coinline button {
  margin-top: 4px;
  display: block;
  width: 100%;
  text-align: left;
  font: 500 12.5px/1.35 var(--mono);
  overflow-wrap: anywhere;
  padding: 8px 10px;
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  background: var(--thermal);
  cursor: pointer;
}

.tabs { display: flex; gap: 6px; margin: 0 0 16px; }
.tabs a {
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  background: var(--card);
}
.tabs a[aria-current="true"] { background: var(--ink); color: var(--paper); }

.items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.item { animation: drop .45s cubic-bezier(.2, .9, .3, 1.2) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes drop { from { opacity: 0; transform: translateY(10px) rotate(-.4deg); } }

.post { padding: 16px 18px; }
.post-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.post-text { margin: 12px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 15.5px; }
.post-foot { margin-top: 10px; font-size: 13px; }
.post-foot a { color: var(--graphite); }

.line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px dashed var(--ink-2);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, .6);
}
.line .what { flex: 1; min-width: 0; font-size: 14px; }
.line .what a { font-weight: 600; }

.hire {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  overflow: hidden;
}
.hire .role-title { font: 800 19px/1.15 var(--display); text-decoration: none; }
.hire .role-title:hover { text-decoration: underline; }

/* thermal receipt */
.slip {
  position: relative;
  width: min(100%, 420px);
  padding: 16px 18px 22px;
  background: var(--thermal);
  font: 400 13px/1.55 var(--mono);
  color: #2b2823;
  filter: drop-shadow(2px 3px 0 rgba(29, 26, 22, .18));
  --zig: 7px;
  -webkit-mask:
    conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / calc(2 * var(--zig)) var(--zig) repeat-x,
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--zig) + 1px) no-repeat;
  mask:
    conic-gradient(from -45deg at bottom, #0000, #000 1deg 89deg, #0000 90deg) bottom / calc(2 * var(--zig)) var(--zig) repeat-x,
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--zig) + 1px) no-repeat;
}
.slip-top { display: flex; justify-content: space-between; letter-spacing: .08em; font-weight: 600; }
.slip-amount { margin: 8px 0 2px; font: 600 26px/1.1 var(--mono); letter-spacing: -.02em; color: var(--ink); }
.slip-amount small { font-size: 13px; letter-spacing: .06em; color: var(--graphite); }
.slip-title { margin: 6px 0 10px; overflow-wrap: anywhere; color: var(--ink); }
.slip-rule { border: none; border-top: 1.5px dashed #b9b1a0; margin: 10px 0; }
.slip-row { display: flex; justify-content: space-between; gap: 12px; }
.slip-row span:first-child { color: var(--graphite); }
.slip-row a, .slip-row span:last-child { text-align: right; overflow-wrap: anywhere; }
.slip .paid { color: var(--clover); }
.slip-wrap { display: flex; justify-content: flex-start; }
.stream .slip-wrap { padding-left: 2px; }

.sentinel { height: 1px; }
.loading-more { text-align: center; color: var(--graphite); font-size: 13px; padding: 12px; }

.roles-mini ul { list-style: none; margin: 0; padding: 0; }
.roles-mini li { border-bottom: 1px dashed var(--rule); }
.roles-mini li:last-child { border-bottom: none; }
.roles-mini a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; text-decoration: none; }
.roles-mini a:hover .t { text-decoration: underline; }
.roles-mini .t { font-weight: 600; }
.roles-mini .n { font: 500 12.5px/1.6 var(--mono); color: var(--graphite); white-space: nowrap; }

/* ---------- profile ---------- */
.profile-page {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.lanyard-stage { position: sticky; top: 70px; height: 640px; display: flex; justify-content: center; }
.lanyard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0;
  touch-action: none;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.lanyard.dragging { cursor: grabbing; }
.strap {
  width: 26px;
  height: 150px;
  margin-top: -20px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .12) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, #a92f1f, var(--stamp) 30%, #e0553f 55%, var(--stamp) 75%, #a92f1f);
  border-left: 1.5px solid var(--ink);
  border-right: 1.5px solid var(--ink);
  position: relative;
}
.strap::after {
  content: "MUSEDIN · MUSEDIN · MUSEDIN";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  font: 700 9px/1 var(--display);
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .8);
  white-space: nowrap;
}
.clip {
  width: 40px;
  height: 34px;
  margin-top: -4px;
  border: 1.5px solid var(--ink);
  border-radius: 8px 8px 14px 14px;
  background: linear-gradient(180deg, #e9e6df, var(--steel) 55%, #8f8a80);
  position: relative;
  z-index: 2;
}
.clip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 16px;
  height: 20px;
  transform: translateX(-50%);
  border: 3px solid #7c776d;
  border-top: none;
  border-radius: 0 0 9px 9px;
}
.badge {
  position: relative;
  width: 300px;
  margin-top: 8px;
  padding: 0 0 22px;
  background: var(--thermal);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 18px 30px -12px rgba(29, 26, 22, .45), 0 2px 0 rgba(29, 26, 22, .9);
  overflow: hidden;
  text-align: center;
}
.badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 45%, transparent 58%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.badge-band {
  position: relative;
  padding: 26px 16px 12px;
  background: var(--manila);
  border-bottom: 1.5px solid var(--ink);
  font: 800 15px/1 var(--display);
  letter-spacing: .02em;
}
.badge-band.visitor { background: var(--paper-2); color: var(--graphite); }
.badge-band::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 46px;
  height: 9px;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
}
.badge-photo { margin: 18px auto 12px; --s: 132px; border-width: 2px; border-radius: 14px; }
.badge-photo.initials { border-radius: 14px; }
.badge-name { margin: 0 16px; font: 800 30px/1.05 var(--display); letter-spacing: -.02em; overflow-wrap: anywhere; }
.badge-title { margin: 8px 18px 0; color: var(--ink-2); font-size: 14px; line-height: 1.35; }
.badge-meta {
  margin: 16px 18px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  text-align: left;
  font: 400 12px/1.5 var(--mono);
}
.badge-meta dt { color: var(--graphite); }
.badge-meta dd { margin: 0; overflow-wrap: anywhere; }
.badge .stamp-slot { position: absolute; right: 10px; top: 150px; z-index: 1; }

.profile-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.profile-main section > .card, .profile-main section > .items { margin-top: 0; }
.about-text { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.skills { display: flex; flex-direction: column; gap: 10px; }
.skill-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.skill-row .chip { font-size: 14px; }
.endorsers { display: flex; }
.endorsers a { margin-left: -8px; }
.endorsers a:first-child { margin-left: 0; }
.earned { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.earned .chip { font-family: var(--mono); background: var(--thermal); }
.positions { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.positions li { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.positions .t { font: 800 18px/1.2 var(--display); text-decoration: none; }
.slips { display: flex; flex-wrap: wrap; gap: 14px; }
.slips .slip { width: min(100%, 300px); }

/* ---------- people ---------- */
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 0 0 18px; }
.search {
  flex: 1 1 240px;
  max-width: 420px;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  font: 500 15px/1.2 var(--body);
}
.toggle {
  padding: 9px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  font-weight: 600;
  cursor: pointer;
}
.toggle[aria-pressed="true"] { background: var(--clover); color: #fff; }
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.person {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.person:hover { transform: translate(-2px, -2px) rotate(-.6deg); box-shadow: 5px 5px 0 rgba(29, 26, 22, .9); }
.person .band { align-self: stretch; margin: 0 -14px; height: 22px; background: var(--manila); border-bottom: 1.5px solid var(--ink); }
.person .avatar { margin-top: 14px; --s: 72px; border-radius: 12px; }
.person .avatar.initials { border-radius: 12px; }
.person .name { margin-top: 10px; font: 800 19px/1.15 var(--display); }
.person .head { margin-top: 4px; font-size: 13.5px; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.person .sk { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
.person .sk .chip { font-size: 12px; padding: 2px 8px; }
.person .counts { margin-top: 10px; font: 500 12px/1.4 var(--mono); color: var(--graphite); }
.person .stamp { position: absolute; top: 32px; right: 8px; }

/* ---------- roles ---------- */
.head-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.page-title { margin: 0; font: 800 clamp(30px, 5vw, 44px)/1 var(--display); letter-spacing: -.03em; }
.roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.role-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px 16px;
  text-decoration: none;
  background:
    repeating-linear-gradient(180deg, transparent 0 27px, rgba(111, 104, 90, .18) 27px 28px) 0 58px / 100% calc(100% - 58px) no-repeat,
    var(--card);
  transition: transform .18s ease;
}
.role-card:nth-child(odd) { transform: rotate(-.7deg); }
.role-card:nth-child(even) { transform: rotate(.6deg); }
.role-card:hover { transform: rotate(0) translateY(-3px); }
.role-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f07a66, var(--stamp) 60%, #8e2718);
  border: 1.5px solid var(--ink);
}
.role-card .t { font: 800 24px/1.1 var(--display); letter-spacing: -.02em; }
.role-card .s { color: var(--ink-2); }
.role-card .meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 6px; }
.role-card .n { font: 500 12.5px/1.4 var(--mono); color: var(--graphite); }
.role-card.closed { opacity: .6; }

.role-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; margin-bottom: 22px; }
.role-head .s { margin: 10px 0 0; font-size: 17px; max-width: 60ch; }
.role-id { font-size: 13px; color: var(--graphite); }
.role-id code { font: 600 13px/1 var(--mono); color: var(--ink); background: var(--thermal); padding: 3px 6px; border: 1px solid var(--rule); border-radius: 4px; }
.apps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.app { position: relative; padding: 16px 18px; }
.app .note { margin: 12px 0 0; white-space: pre-wrap; overflow-wrap: anywhere; font-size: 14.5px; }
.app .stamp { position: absolute; right: 14px; top: 14px; }

/* ---------- thread ---------- */
.thread { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.replies { list-style: none; margin: 0 0 0 26px; padding: 0 0 0 18px; border-left: 2px dashed var(--rule); display: flex; flex-direction: column; gap: 12px; }
.back { display: inline-block; margin-bottom: 14px; color: var(--graphite); font-size: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .feed-page { grid-template-columns: 260px minmax(0, 1fr); grid-template-areas: "left stream" "right stream"; }
  .rail { position: static; }
  .rail.right { align-self: start; }
}
@media (max-width: 860px) {
  .profile-page { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .lanyard-stage { position: relative; top: 0; height: 600px; }
}
@media (max-width: 760px) {
  .feed-page { display: flex; flex-direction: column; gap: 20px; }
  .feed-page .rail { display: contents; }
  .feed-page .join { order: 0; margin-top: 10px; }
  .feed-page .coin-slot { order: 1; }
  .feed-page .stream { order: 2; }
  .feed-page .roles-mini { order: 3; }
  .feed-page .ledger { order: 4; }
  .top { gap: 10px; }
  .nav { margin-left: 0; }
  .nav a { padding: 7px 9px; }
  .buy { padding: 10px 12px; font-size: 12px; }
  .role-head { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 420px) {
  .brand-word { display: none; }
  .badge { width: 280px; }
  .hire { grid-template-columns: auto 1fr; }
  .hire .stamp { grid-column: 1 / -1; justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  .item { animation: none; }
  .person, .role-card { transition: none; }
}
