:root {
  --bg: #f7f6f0;
  --paper: #fcfbf5;
  --fg: #293f33;
  --muted-fg: #74806b;
  --border: #dddfd3;
  --soft: #edf0e5;
  --peach: #bd754e;
  --destructive: #a44937;
  --serif: "Lora", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 14px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #d7dfc8;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
  border: 0;
}
a,
button {
  touch-action: manipulation;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
:focus-visible {
  outline: 2px solid #59784c;
  outline-offset: 5px;
}
svg {
  flex: none;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 90;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--fg);
  color: white;
}
.page {
  overflow: clip;
}
.site-header,
.content,
.site-footer {
  width: min(1216px, calc(100% - 112px));
  margin-inline: auto;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  white-space: nowrap;
}
.mascot {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.wordmark {
  font: 600 24px/1 var(--sans);
  letter-spacing: -1.2px;
}
.site-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.site-nav a {
  color: #626f5d;
  transition: color 0.2s;
}
.site-nav a:hover,
.footer-links a:hover {
  color: var(--peach);
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 27px;
  border: 1px solid #afb7a6;
  padding: 10px 19px;
  border-radius: 7px;
  font-size: 12px;
  margin-left: 29px;
  transition: background 0.2s;
}
.header-action:hover {
  background: #e6ebde;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}
.quiet-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #819b70;
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: 2px;
}
.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.12fr;
  align-items: center;
  gap: 8px;
  min-height: 646px;
  padding: 83px 0 66px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy > .eyebrow {
  margin-bottom: 25px;
  font-size: 9px;
  letter-spacing: 1.75px;
}
.hero h1 {
  font: 400 clamp(58px, 5.5vw, 80px) / 1.075 var(--serif);
  letter-spacing: -4.4px;
}
.hero h1 em {
  font-weight: 400;
  color: var(--peach);
}
.hero-description {
  max-width: 355px;
  margin-top: 24px;
  color: #687162;
  font-size: 14px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 31px;
}
.hero-note {
  font-size: 10px;
  color: #78816e;
  margin-top: 21px;
}
.hero-art {
  min-width: 0;
  padding-top: 30px;
}
.hero-art img {
  width: calc(100% + 78px);
  max-width: none;
  margin-left: -36px;
  mix-blend-mode: multiply;
}
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 13px 12px 0;
  font: italic 11px/1.5 var(--serif);
  color: #78836c;
}
.edition {
  font: 9px/1.7 var(--sans);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 47px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary {
  color: #fbfbf3;
  background: var(--fg);
}
.btn-primary:hover {
  background: #405b46;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--soft);
}
.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 11px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 4px;
  background: transparent;
  border-bottom: 1px solid #b2bbaa;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover {
  color: var(--peach);
  border-color: var(--peach);
}
.network-band {
  border-block: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 44px;
  min-height: 100px;
  padding: 20px 0;
}
.network-band > p {
  font-size: 10px;
  line-height: 1.65;
  color: #78836d;
  flex: none;
  padding-right: 34px;
  border-right: 1px solid var(--border);
}
.network-band strong {
  font-weight: 500;
  color: #616d5f;
}
.chain-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 22px;
}
.chain-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
}
.chain-chip small,
.chain-chip .pads {
  display: none;
}
.chain-chip .status-dot {
  width: 4px;
  height: 4px;
  margin-left: 3px;
}
.chain-logo {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  flex: none;
}
.chain-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.chain-strip .chain-logo {
  filter: grayscale(1);
  opacity: 0.8;
}
.chain-logo.solana img {
  background: #000;
  padding: 15%;
}
.chain-logo.robinhood img,
.chain-logo.arc img {
  background: #10130f;
  padding: 13%;
}
.chain-logo.bnb img {
  background: #f3ba2f;
  padding: 13%;
}
.card {
  min-width: 0;
}
.card-pulse {
  padding: 31px 0 20px;
  border-bottom: 1px solid var(--border);
}
.pulse-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.pulse-heading .eyebrow {
  color: #74806a;
  font-size: 9px;
}
.tabs {
  display: flex;
  align-items: center;
  gap: 22px;
}
.tab {
  background: transparent;
  color: #7b856f;
  padding: 12px 0;
  font-size: 12px;
  line-height: 1.5;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tab:hover {
  color: var(--fg);
}
.tab.is-active {
  color: var(--fg);
  border-color: var(--fg);
}
.tabs-inline {
  gap: 15px;
}
.tabs-inline .tab {
  padding: 4px 0;
  font-size: 10px;
  border-bottom-width: 1px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 22px 0 11px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0 25px;
  border-left: 1px solid var(--border);
}
.stat:first-child {
  padding-left: 0;
  border: 0;
}
.stat:last-child {
  padding-right: 0;
}
.stat-value {
  font: 400 33px/1.1 var(--serif);
  letter-spacing: -1.2px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 10px;
  color: #727e68;
}
.pulse-updated {
  font-size: 9px !important;
  color: #7f8875 !important;
  margin-top: 14px !important;
}
.section-space {
  margin-top: 92px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  color: #748168;
  margin-bottom: 12px;
  font-size: 9px;
}
.section-heading h2 {
  font: 400 39px/1.2 var(--serif);
  letter-spacing: -1.5px;
}
.section-heading > p {
  font-size: 11px;
  line-height: 1.8;
  color: #727f66;
}
.section-description {
  color: var(--muted-fg);
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 32px;
}
.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.directory-toolbar .tabs {
  gap: 29px;
}
.directory-toolbar .tab {
  padding: 15px 0;
  font-size: 12px;
}
.token-search {
  width: 243px;
  max-width: 100%;
}
.token-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  font-size: 11px;
}
input::placeholder,
textarea::placeholder {
  color: #89957d;
  opacity: 1;
}
.filter-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 17px 0;
}
.filter-caption {
  font-size: 10px;
  color: #7a876d;
}
.filter-menus {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 0;
  background: transparent;
  font-size: 10px;
  color: #64705e;
}
.filter-btn > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chev {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.menu-wrap {
  position: relative;
}
.menu {
  position: absolute;
  right: 0;
  top: calc(100% + 11px);
  z-index: 20;
  width: 230px;
  max-width: calc(100vw - 40px);
  background: var(--paper);
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 35px #293f3315;
}
.menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px;
  background: transparent;
  font-size: 12px;
  border-radius: 4px;
  text-align: left;
}
.menu button:hover,
.menu button[aria-checked="true"] {
  background: var(--soft);
}
.menu img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.count {
  margin-left: auto;
  font-size: 10px;
  color: var(--muted-fg);
}
.empty-state {
  min-height: 305px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 34px 25px;
  background: #eef0e570;
  border: 1px solid #e5e7dc;
  border-radius: 10px;
}
.empty-muse {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.86;
}
.empty-kicker {
  font-size: 9px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #748568;
  margin-bottom: 8px;
}
.empty-state h3 {
  font: 400 25px/1.3 var(--serif);
  letter-spacing: -0.65px;
  margin-bottom: 8px;
}
.empty-state > p:not(.empty-kicker) {
  font-size: 11px;
  max-width: 325px;
  color: #728365;
  line-height: 1.8;
}
.empty-state .text-link {
  margin-top: 16px;
  font-size: 11px;
}
.fresh-section {
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.fresh-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.fresh-heading h3 {
  font: 23px var(--serif);
}
.fresh-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.face-avatar {
  width: 55px;
  height: 55px;
  background: #e5e8d9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  font: 24px var(--serif);
}
.face-avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.face-symbol {
  margin-top: 8px;
  font-size: 11px;
}
.face-time,
.face-mcap {
  font-size: 9px;
  color: #738567;
}
.face-for {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border-radius: 4px;
}
.story-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  padding: 64px;
  border-radius: 12px;
  background: #2e4436;
  color: #f3f4e9;
}
.story-intro .eyebrow {
  font-size: 9px;
  color: #b6c3a7;
  margin-bottom: 23px;
}
.story-intro h2 {
  font: 400 40px/1.16 var(--serif);
  letter-spacing: -1.4px;
}
.story-intro > p:not(.eyebrow) {
  max-width: 290px;
  margin-top: 21px;
  font-size: 12px;
  color: #c1cdbb;
  line-height: 1.85;
}
.story-intro .text-link {
  color: #e5cdac;
  border-color: #82967b;
  margin-top: 25px;
  font-size: 11px;
}
.steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  border-bottom: 1px solid #596e5360;
  padding: 24px 0;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li:last-child {
  border: 0;
  padding-bottom: 0;
}
.step-number {
  color: #b4c0a1;
  font: italic 16px/1.6 var(--serif);
}
.steps h3 {
  font: 21px/1.4 var(--serif);
  letter-spacing: -0.4px;
}
.steps p {
  color: #c1cdbb;
  font-size: 11px;
  line-height: 1.85;
  margin-top: 9px;
}
.writing-desk {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--border);
  padding-top: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field-wide {
  grid-column: 1/-1;
}
.field > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #63705b;
}
.field em {
  font-style: normal;
  font-size: 10px;
  font-weight: 400;
  color: #7d8c6f;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9dece;
  background: #fcfcf680;
  padding: 11px 13px;
  min-height: 43px;
  border-radius: 5px;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #829576;
  background: #fffef8;
  outline: 2px solid #bdcbaa55;
  outline-offset: 0;
}
.field textarea {
  min-height: 76px;
  resize: vertical;
}
.post-paper {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 30px 22px;
  background: #efe9d9;
  border: 1px solid #e5ddca;
  border-radius: 2px 16px 2px 2px;
  transform: rotate(1.1deg);
  box-shadow: 5px 7px 0 #e6e6d84a;
  min-width: 0;
}
.paper-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d8d0be;
  padding-bottom: 19px;
  color: #75735a;
}
.paper-heading .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
}
.paper-number {
  font-size: 8px;
  letter-spacing: 1px;
}
.post-example {
  font: 12px/1.95 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
  color: #62694f;
  padding: 25px 0;
}
.post-paper .post-example {
  flex: 1;
}
.paper-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #d8d0be;
}
.paper-foot > span {
  font: italic 12px/1.7 var(--serif);
  color: #7b7c62;
}
.paper-foot img {
  opacity: 0.8;
  transform: rotate(-7deg);
  object-fit: contain;
}
.builder-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
}
.builder-foot .btn {
  min-width: 174px;
}
.fine {
  font-size: 11px;
  line-height: 1.8;
  color: #748468;
  overflow-wrap: anywhere;
}
.fine a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.protocol-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}
.network-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #738566;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: none;
  background: #c5c9bc;
}
.status-dot.ok {
  background: #799460;
}
.status-dot.bad {
  background: #b77059;
}
.status-dot.warn {
  background: #c49e58;
}
.pad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}
.pad-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  text-align: left;
  position: relative;
  min-width: 0;
  transition: border-color 0.2s, background 0.2s;
}
.pad-tile:hover {
  border-color: #9aa78c;
}
.pad-tile[aria-checked="true"] {
  background: #e9eedf;
  border-color: #acb99c;
}
.pad-tile > .logo-sm {
  width: 29px;
  height: 29px;
  filter: saturate(0.65);
}
.pad-tile > span:not(.logo-sm):not(.pad-status):not(.status-dot) {
  flex: 1;
  min-width: 0;
}
.pad-tile b {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.pad-tile small {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: #788969;
  margin-top: 2px;
}
.pad-tile small .chain-logo {
  display: none;
}
.pad-status {
  font-size: 8px;
  color: #627f52;
  white-space: nowrap;
}
.pad-status.needs {
  color: #8c753f;
}
.pad-tile .status-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 3px;
  height: 3px;
}
.pad-note {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.8;
  color: #76886a;
}
.pad-note b {
  font-weight: 500;
  color: #596f50;
}
.pad-note .chain-logo {
  display: none;
}
.muted-note {
  font-size: 10px;
  color: #7d8a70;
}
#fee-note {
  margin-top: 10px;
  font-size: 10px;
}
.wallet-note {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.wallet-note .eyebrow {
  font-size: 8px;
  color: #7d8c70;
  margin-bottom: 17px;
}
.wallet-note h3 {
  font: 30px/1.25 var(--serif);
  letter-spacing: -0.8px;
}
.wallet-note > p:not(.eyebrow) {
  font-size: 12px;
  color: #718268;
  line-height: 1.85;
  margin: 18px 0 24px;
}
.wallet-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.wallet-note .wallet-actions {
  align-items: flex-start;
  flex-direction: column;
}
.wallet-note .text-link {
  font-size: 11px;
}
.technical-detail {
  border-top: 1px solid var(--border);
  margin-top: 29px;
  padding-top: 18px;
}
.technical-detail summary {
  cursor: pointer;
  font-size: 10px;
  color: #79896c;
}
.technical-detail p {
  margin-top: 15px;
}
.closing-note {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 104px 20px 90px;
}
.closing-note > p {
  font: 400 33px/1.4 var(--serif);
  letter-spacing: -0.8px;
}
.closing-note > p em {
  color: #a27552;
}
.closing-note img {
  opacity: 0.82;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-wordmark {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -1px;
}
.footer-top > p {
  font-size: 10px;
  color: #738367;
}
.footer-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 11px;
  color: #687e5c;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid #e7e9de;
  padding-top: 22px;
  margin-top: 29px;
  font-size: 9px;
  color: #78886a;
}
.tip {
  position: fixed;
  z-index: 80;
  background: var(--fg);
  color: var(--paper);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 11px;
  transform: translate(-50%, -120%);
  pointer-events: none;
}
.mono {
  font-family: Consolas, monospace;
  overflow-wrap: anywhere;
}
.error {
  color: var(--destructive);
  font-size: 12px;
  padding: 20px;
}
.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.card-head {
  margin-bottom: 26px;
}
.card-title {
  font: 30px/1.3 var(--serif);
  letter-spacing: -0.8px;
}
.card-desc {
  color: var(--muted-fg);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 8px;
}
.examples-page .content {
  max-width: 1000px;
}
.examples-hero {
  padding: 80px 0 58px;
  max-width: 600px;
}
.examples-hero .eyebrow {
  color: #788a6b;
  margin-bottom: 20px;
}
.examples-hero h1 {
  font: 52px/1.2 var(--serif);
  letter-spacing: -2px;
}
.examples-hero > p:last-child {
  max-width: 470px;
  color: #748468;
  font-size: 14px;
  margin-top: 20px;
}
.examples-page .prompt-card {
  border-top: 1px solid var(--border);
  padding-top: 35px;
}
.examples-page .post-example {
  background: #ede9da;
  border: 1px solid #e3ddcc;
  border-radius: 5px;
  padding: 25px;
  margin-top: 14px;
}
.examples-page .eyebrow {
  margin-bottom: 10px;
}
.examples-intro {
  margin: 65px 0 26px;
}
.examples-intro h2 {
  font: 32px var(--serif);
  margin-bottom: 12px;
}
.examples-intro p {
  color: var(--muted-fg);
  font-size: 13px;
}
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.example-card {
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.example-card .card-title {
  font-size: 25px;
}
.example-card .row-between {
  align-items: flex-start;
}
.example-card .btn {
  min-width: 65px;
}
.preview-label {
  margin-top: 25px;
}
.field-guide {
  padding-top: 35px;
  margin-top: 55px;
  border-top: 1px solid var(--border);
}
.field-list {
  padding-left: 16px;
  color: #687f5c;
  display: grid;
  gap: 12px;
  font-size: 13px;
}
.examples-page .site-footer {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}
.examples-page .site-footer p,
.examples-page .site-footer a:not(.footer-wordmark) {
  font-size: 11px;
  color: var(--muted-fg);
}
/* Market rows and connected wallets */
.token-list {
  display: flex;
  flex-direction: column;
}
.token {
  display: flex;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--border);
}
.avatar-wrap {
  position: relative;
  flex: none;
  align-self: flex-start;
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #e0e6d7;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  font: 28px var(--serif);
}
.avatar img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-sm,
.trade-logo {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.logo-sm img,
.trade-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stamp {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: grid;
  place-items: center;
  padding: 3px;
  background: var(--bg);
  border-radius: 5px;
  width: 23px;
  height: 23px;
}
.stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.token-main {
  flex: 1;
  min-width: 0;
}
.token-top,
.token-name-row,
.token-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.symbol {
  font-size: 16px;
  font-weight: 600;
  margin-right: 5px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  padding: 2px 6px;
  background: #edf0e4;
  border-radius: 3px;
  color: #6c7f5e;
}
.badge.up {
  color: #49794f;
}
.badge.down {
  color: #a45d4a;
}
.badge.chain .chain-logo {
  width: 13px;
  height: 13px;
}
.badge img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}
.token-name-row {
  justify-content: space-between;
  margin: 8px 0;
}
.token-name {
  font: 20px var(--serif);
}
.metrics {
  display: flex;
  gap: 16px;
  color: #697e5e;
  font-size: 10px;
}
.addr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  padding: 0;
  font-size: 10px;
  color: #708960;
}
.addr svg,
.copy-btn svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.desc {
  margin-top: 8px;
  font-size: 12px;
  color: #687f5c;
  max-width: 700px;
  overflow-wrap: anywhere;
}
.token-foot {
  justify-content: space-between;
  margin-top: 14px;
}
.byline {
  font-size: 10px;
  color: #7a8b6e;
}
.byline b {
  font-weight: 500;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tiny {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}
.tiny svg {
  width: 12px;
  height: 12px;
}
.tiny.trade {
  color: #466342;
}
.pager ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 25px 0 0;
}
.page-link,
.page-ellipsis {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font-size: 11px;
}
.page-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.page-link[aria-current="page"] {
  color: white;
  background: var(--fg);
}
.page-link[aria-disabled="true"] {
  opacity: 0.35;
  pointer-events: none;
}
.skeleton {
  height: 90px;
  background: #e9ecdf;
  margin: 8px 0;
  border-radius: 7px;
  animation: breathe 1.6s infinite;
}
.stock-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 5px 9px;
  font-size: 10px;
  border-radius: 4px;
}
.stock-chip small {
  color: var(--muted-fg);
}
.stock-chip[aria-pressed="true"] {
  background: var(--soft);
}
.stock-logo {
  display: inline-flex;
  width: 17px;
  height: 17px;
}
.stock-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.purpose-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.wallet-panel {
  margin-top: 25px;
}
.wallet-panel h3 {
  font: 500 13px var(--sans);
  margin: 16px 0 10px;
}
.key-box,
.secret {
  padding: 15px;
  background: #f1e9d5;
  border: 1px solid var(--border);
  font-size: 11px;
  border-radius: 5px;
}
.secret {
  border-color: #bd7a61;
}
.addr-list,
.fees,
.launches {
  display: grid;
  gap: 10px;
}
.addr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.who {
  min-width: 0;
  flex: 1;
}
.who b {
  display: block;
  font-size: 10px;
}
.chains {
  display: flex;
  gap: 3px;
}
.chains .chain-logo {
  width: 12px;
  height: 12px;
}
.copy-btn {
  background: transparent;
  padding: 5px;
}
.fee-row,
.launch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}
.amt,
.launch-row .st {
  margin-left: auto;
}
.danger {
  margin-top: 15px;
  font-size: 11px;
}
.danger label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.btn-danger {
  color: var(--destructive);
  background: #f4eee3;
}
.secret .row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wallet-form {
  display: grid;
  gap: 12px;
}
@keyframes breathe {
  50% {
    opacity: 0.45;
  }
}
/* Responsive composition */
@media (min-width: 1600px) {
  .hero {
    padding-block: 96px;
  }
  .hero h1 {
    font-size: 84px;
  }
}
@media (max-width: 1150px) {
  .site-header,
  .content,
  .site-footer {
    width: calc(100% - 72px);
  }
  .hero {
    grid-template-columns: 1fr 1.05fr;
    padding: 64px 0 52px;
    min-height: 560px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -3px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-description {
    max-width: 310px;
    font-size: 13px;
  }
  .hero-art img {
    width: calc(100% + 38px);
    margin-left: -20px;
  }
  .hero-art figcaption {
    margin-inline: 0;
    font-size: 9px;
  }
  .hero-art .edition {
    display: none;
  }
  .network-band {
    gap: 27px;
  }
  .network-band > p {
    padding-right: 25px;
  }
  .chain-strip {
    gap: 15px;
  }
  .chain-chip {
    font-size: 10px;
    gap: 6px;
  }
  .chain-logo {
    width: 17px;
    height: 17px;
  }
  .story-section {
    padding: 48px;
    gap: 45px;
  }
  .writing-desk {
    gap: 35px;
  }
  .protocol-layout {
    gap: 35px;
  }
  .wallet-note {
    padding-left: 30px;
  }
  .pad-tile {
    padding-inline: 11px;
  }
  .pad-tile .pad-status {
    display: none;
  }
}
@media (max-width: 850px) {
  .site-header,
  .content,
  .site-footer {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 84px;
  }
  .wordmark {
    font-size: 22px;
  }
  .site-nav {
    gap: 22px;
    font-size: 12px;
  }
  .header-action {
    margin-left: 0;
    padding: 9px 12px;
    gap: 12px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 55px;
    letter-spacing: -2.8px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-description {
    max-width: 280px;
    font-size: 12px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .btn {
    padding: 12px 15px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-art img {
    width: calc(100% + 55px);
    margin-left: -20px;
  }
  .hero-art figcaption {
    font-size: 8px;
  }
  .network-band {
    gap: 20px;
  }
  .network-band > p {
    display: none;
  }
  .chain-chip {
    font-size: 11px;
  }
  .chain-strip {
    justify-content: space-between;
  }
  .stat {
    padding-inline: 16px;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-label {
    font-size: 9px;
  }
  .section-space {
    margin-top: 66px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .section-heading > p {
    font-size: 10px;
  }
  .story-section {
    gap: 34px;
    padding: 38px;
  }
  .story-intro h2 {
    font-size: 34px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .steps li {
    gap: 15px;
  }
  .steps p {
    font-size: 10px;
  }
  .writing-desk {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .form-grid {
    gap: 18px 14px;
  }
  .post-paper {
    padding: 23px;
  }
  .protocol-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 25px;
  }
  .pad-grid {
    grid-template-columns: 1fr;
  }
  .wallet-note {
    padding-left: 25px;
  }
  .wallet-note h3 {
    font-size: 27px;
  }
  .footer-top > p {
    display: none;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 20px;
  }
  .site-header,
  .content,
  .site-footer {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 76px;
    gap: 12px;
  }
  .brand {
    gap: 7px;
  }
  .mascot {
    width: 31px;
    height: 31px;
  }
  .wordmark {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  .site-nav {
    display: none;
  }
  .header-action {
    font-size: 10px;
    padding: 8px 12px;
    gap: 12px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 48px 0 29px;
    min-height: 0;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 21px;
  }
  .hero h1 {
    font-size: clamp(52px, 11.5vw, 71px);
    letter-spacing: -2.5px;
    line-height: 1.075;
  }
  .hero-description {
    max-width: 335px;
    font-size: 13px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 25px;
  }
  .hero-actions .btn {
    font-size: 11px;
    padding-inline: 18px;
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    margin-top: 17px;
  }
  .hero-art {
    padding-top: 0;
    margin-top: -6px;
  }
  .hero-art img {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero-art figcaption {
    margin: 5px 5px 0;
    font-size: 9px;
  }
  .hero-art .edition {
    display: inline;
    font-size: 8px;
  }
  .network-band {
    min-height: auto;
    padding-block: 24px;
  }
  .chain-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
  }
  .chain-chip {
    font-size: 11px;
  }
  .chain-chip .chain-logo {
    width: 18px;
    height: 18px;
  }
  .card-pulse {
    padding-top: 23px;
  }
  .pulse-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .tabs-inline {
    gap: 12px;
  }
  .tabs-inline .tab {
    font-size: 9px;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 23px;
    padding-top: 26px;
  }
  .stat {
    padding: 0 14px;
  }
  .stat:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-label {
    font-size: 9px;
  }
  .pulse-updated {
    font-size: 8px !important;
    margin-top: 17px !important;
  }
  .section-space {
    margin-top: 53px;
  }
  .section-heading {
    gap: 15px;
    margin-bottom: 23px;
    flex-wrap: wrap;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .section-heading h2 {
    font-size: 31px;
    letter-spacing: -1.2px;
  }
  .section-heading > p {
    display: none;
  }
  .section-description {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .section-heading > .text-link {
    font-size: 10px;
  }
  .directory-toolbar {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  .directory-toolbar .tabs {
    justify-content: space-between;
    gap: 12px;
  }
  .directory-toolbar .tab {
    padding: 11px 0;
    font-size: 11px;
  }
  .token-search {
    width: 100%;
  }
  .token-search input {
    min-height: 43px;
    font-size: 12px;
  }
  .filter-caption {
    display: none;
  }
  .filter-row {
    padding: 14px 0;
  }
  .filter-menus {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .filter-btn {
    font-size: 9px;
    gap: 5px;
  }
  .filter-menus .menu-wrap:first-child .menu {
    left: 0;
    right: auto;
  }
  .empty-state {
    padding: 28px 20px;
    min-height: 300px;
  }
  .empty-state h3 {
    font-size: 23px;
    max-width: 245px;
  }
  .empty-state > p:not(.empty-kicker) {
    font-size: 11px;
  }
  .empty-kicker {
    font-size: 8px !important;
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 39px;
    padding: 34px 27px;
  }
  .story-intro h2 {
    font-size: 36px;
  }
  .story-intro > p:not(.eyebrow) {
    font-size: 12px;
  }
  .story-intro .eyebrow {
    font-size: 8px;
  }
  .steps h3 {
    font-size: 20px;
  }
  .steps p {
    font-size: 11px;
  }
  .steps li {
    padding-block: 20px;
    gap: 20px;
  }
  .writing-desk {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 25px;
  }
  .form-grid {
    gap: 20px 16px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 47px;
    padding: 11px 10px;
  }
  .field > span {
    font-size: 11px;
  }
  .field em {
    font-size: 9px;
  }
  .post-paper {
    padding: 25px;
    min-height: 295px;
    margin-inline: 3px;
  }
  .post-example {
    font-size: 12px;
  }
  .paper-foot {
    padding-top: 15px;
  }
  .paper-foot img {
    width: 52px;
    height: 52px;
  }
  .builder-foot {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 17px;
  }
  .builder-foot .btn {
    width: 100%;
    min-height: 48px;
  }
  .builder-foot .fine {
    font-size: 10px;
  }
  .protocol-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 23px;
  }
  .pad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .pad-tile {
    padding: 15px 10px;
    gap: 8px;
  }
  .pad-tile > .logo-sm {
    width: 23px;
    height: 23px;
  }
  .pad-tile b {
    font-size: 11px;
  }
  .pad-tile small {
    font-size: 8px;
  }
  .wallet-note {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 27px 0 0;
  }
  .wallet-note h3 {
    font-size: 30px;
  }
  .wallet-note h3 br {
    display: none;
  }
  .wallet-note > p:not(.eyebrow) {
    max-width: 350px;
  }
  .network-status {
    font-size: 9px;
  }
  .technical-detail {
    padding-top: 16px;
  }
  .closing-note {
    padding: 64px 0 57px;
    gap: 22px;
  }
  .closing-note > p {
    font-size: 27px;
  }
  .site-footer {
    padding-top: 27px;
  }
  .footer-top {
    justify-content: space-between;
    gap: 22px;
  }
  .footer-links {
    margin-left: 0;
    gap: 23px;
    font-size: 10px;
  }
  .footer-wordmark {
    font-size: 20px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 11px;
    margin-top: 23px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .token {
    gap: 14px;
  }
  .avatar {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .symbol {
    font-size: 14px;
  }
  .badge {
    font-size: 8px;
  }
  .token-name {
    font-size: 19px;
  }
  .metrics {
    gap: 10px;
    font-size: 9px;
  }
  .desc {
    font-size: 11px;
  }
  .fresh-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .examples-hero {
    padding: 48px 0 39px;
  }
  .examples-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .examples-hero > p:last-child {
    font-size: 13px;
  }
  .examples-page .card-title {
    font-size: 27px;
  }
  .examples-page .row-between {
    flex-wrap: wrap;
  }
  .example-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .examples-intro {
    margin-top: 44px;
  }
  .examples-page .post-example {
    font-size: 11px;
    padding: 20px;
  }
  .examples-page .site-footer {
    margin-top: 45px;
  }
  .examples-page .header-action {
    font-size: 9px;
    padding: 8px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Feather the illustration into the paper instead of framing it as a card. */
.hero-art img {
  mask-image: linear-gradient(
      90deg,
      transparent,
      #000 7%,
      #000 93%,
      transparent
    ),
    linear-gradient(0deg, transparent, #000 12%, #000 80%, transparent);
  mask-composite: intersect;
}
@media (max-width: 640px) {
  .field:has(select) {
    grid-column: 1 / -1;
  }
}

/* Summer world — colors, linework and spacing drawn from the illustrated scene. */
:root {
  --bg: #fff8e7;
  --paper: #fffbed;
  --fg: #344a50;
  --muted-fg: #657b7d;
  --border: #b8c4b3;
  --soft: #eaf0d9;
  --peach: #ba493c;
  --destructive: #ae3d32;
  --serif: "Outfit", "Segoe UI", sans-serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --sky: #81d0e4;
  --red: #d95749;
  --grass: #76a641;
}
body {
  font-size: 14px;
  line-height: 1.7;
}
::selection {
  background: #b8deeb;
}
:focus-visible {
  outline: 3px solid #307f9b;
  outline-offset: 5px;
}
h1,
h2,
h3 {
  font-weight: 600;
}
.ui-icon {
  width: 22px;
  height: 22px;
  flex: none;
  display: block;
  object-fit: contain;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.15px;
  color: var(--fg);
}
.quiet-dot {
  background: #668e39;
  margin-right: 0;
  width: 6px;
  height: 6px;
}
.fine,
.muted-note,
.card-desc,
.section-description {
  color: var(--muted-fg);
}
.site-header {
  width: 100%;
  height: 88px;
  padding-inline: max(36px, calc((100vw - 1216px) / 2));
  background: var(--bg);
  border-bottom: 1.5px solid var(--fg);
  gap: 30px;
}
.brand {
  gap: 9px;
}
.mascot {
  width: 41px;
  height: 41px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: -1.3px;
  font-weight: 650;
}
.site-nav {
  gap: 29px;
  font-size: 12px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}
.site-nav a:hover {
  color: var(--peach);
}
.site-nav .ui-icon {
  width: 20px;
  height: 20px;
}
.header-action {
  background: var(--paper);
  border: 1.5px solid var(--fg);
  border-radius: 5px;
  box-shadow: 2px 2px 0 var(--fg);
  padding: 9px 17px;
  gap: 9px;
  margin-left: 17px;
  font-size: 12px;
  font-weight: 500;
}
.header-action:hover {
  background: #f5e8bc;
}
.hero {
  position: relative;
  isolation: isolate;
  display: block;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  min-height: 650px;
  padding: 0;
  background: #81d0e4;
  border-bottom: 1.5px solid var(--fg);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1216px, calc(100% - 112px));
  margin-inline: auto;
  padding: 49px 0 123px;
}
.hero-copy > .eyebrow {
  margin-bottom: 20px;
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #344f57;
}
.hero h1 {
  font: 650 clamp(61px, 5.3vw, 77px) / 1.025 var(--serif);
  letter-spacing: -3.3px;
  color: #2b4854;
  max-width: 540px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 650;
  color: #2b4854;
}
.hero-description {
  max-width: 368px;
  margin-top: 22px;
  color: #365965;
  font-size: 13px;
  line-height: 1.85;
}
.hero-actions {
  gap: 24px;
  margin-top: 24px;
}
.hero-actions .text-link {
  border-color: #456770;
  color: #2b4854;
}
.hero-note {
  margin-top: 18px;
  font: 10px/1.5 var(--mono);
  color: #344f57;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-width: 0;
  padding: 0;
  margin: 0;
}
.hero-art img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 50% 50%;
  mix-blend-mode: normal;
  mask-image: none;
  -webkit-mask-image: none;
}
.hero-art figcaption {
  position: absolute;
  bottom: 19px;
  left: max(56px, calc((100vw - 1216px) / 2));
  right: max(56px, calc((100vw - 1216px) / 2));
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #fff5d9;
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.35px;
}
.hero-art .edition {
  display: inline;
  font: 9px/1.5 var(--mono);
  letter-spacing: 1px;
}
.btn {
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  min-height: 47px;
  padding: 11px 20px;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: var(--red);
  color: #fffbed;
  border: 1.5px solid var(--fg);
  box-shadow: 3px 3px 0 var(--fg);
}
.btn-primary:hover {
  background: #c94f41;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--fg);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--fg);
}
.btn-ghost {
  background: var(--paper);
  border: 1.5px solid var(--fg);
  box-shadow: 2px 2px 0 #b7bea8;
}
.btn-ghost:hover {
  background: #eef0d5;
}
.btn-sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 11px;
}
.text-link {
  gap: 9px;
  border-color: #809392;
  color: var(--fg);
  font-size: 12px;
}
.text-link:hover {
  color: var(--peach);
  border-color: var(--peach);
}
.network-band {
  border-top: 0;
  border-bottom: 1px solid var(--border);
  min-height: 102px;
  gap: 42px;
}
.network-band > p {
  color: var(--muted-fg);
  font-size: 11px;
}
.network-band strong {
  font-weight: 600;
  color: var(--fg);
}
.chain-strip .chain-logo {
  filter: none;
  opacity: 1;
  width: 23px;
  height: 23px;
}
.chain-chip {
  font-size: 12px;
  gap: 10px;
}
.chain-chip .status-dot {
  width: 5px;
  height: 5px;
}
.card-pulse {
  margin-top: 30px;
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  background: var(--paper);
  padding: 24px 30px 20px;
  box-shadow: 3px 3px 0 #d7d8b7;
}
.pulse-heading .eyebrow {
  color: var(--fg);
  font-size: 10px;
}
.stats {
  padding-top: 24px;
}
.stat {
  padding-inline: 25px;
  border-color: #d0d7c1;
}
.stat-value {
  font: 550 35px/1.1 var(--serif);
  letter-spacing: -1.2px;
}
.stat-label {
  font: 10px/1.5 var(--mono);
  color: var(--muted-fg);
}
.pulse-updated {
  color: var(--muted-fg) !important;
  font: 9px/1.5 var(--mono) !important;
}
.tabs-inline .tab {
  font: 10px/1.5 var(--mono);
  padding-bottom: 6px;
}
.tab {
  color: #627d7b;
}
.tab.is-active {
  border-color: var(--red);
  color: var(--fg);
}
.section-space {
  margin-top: 88px;
}
.section-heading {
  margin-bottom: 28px;
}
.section-heading .eyebrow {
  font-size: 10px;
  color: #586e6a;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-heading .eyebrow .ui-icon {
  width: 25px;
  height: 25px;
}
.section-heading h2 {
  font: 600 42px/1.18 var(--serif);
  letter-spacing: -1.6px;
}
.section-heading > p {
  font-size: 12px;
  color: var(--muted-fg);
}
.directory-toolbar {
  border-bottom: 1px solid #aab8a7;
}
.directory-toolbar .tab {
  font-size: 12px;
  padding-block: 14px;
}
.token-search input {
  border: 1.5px solid #80958f;
  background: var(--paper);
  border-radius: 4px;
  font-size: 12px;
  min-height: 41px;
}
input::placeholder,
textarea::placeholder {
  color: #7a8a83;
}
.filter-caption {
  font: 10px/1.5 var(--mono);
  color: var(--muted-fg);
}
.filter-btn {
  font-size: 11px;
  color: var(--fg);
  min-height: 30px;
}
.filter-row {
  padding-block: 15px;
}
.menu {
  background: var(--paper);
  border: 1.5px solid var(--fg);
  border-radius: 5px;
  box-shadow: 3px 3px 0 #657b7d45;
}
.menu button:hover,
.menu button[aria-checked="true"] {
  background: #e3eccd;
}
.chev {
  stroke-width: 1.8;
}
.empty-state {
  background: #e0eef0;
  border: 1.5px solid #829f9d;
  border-radius: 6px;
  min-height: 292px;
  padding: 31px 25px;
}
.empty-muse {
  width: 66px;
  height: 66px;
  margin-bottom: 13px;
  opacity: 1;
}
.empty-kicker {
  color: #5e7a77;
  font: 9px/1.5 var(--mono) !important;
  letter-spacing: 1px;
}
.empty-state h3 {
  font: 550 28px/1.25 var(--serif);
  letter-spacing: -0.7px;
}
.empty-state > p:not(.empty-kicker) {
  font-size: 12px;
  color: #627e7c;
  max-width: 370px;
}
.empty-state .text-link {
  font-size: 12px;
  margin-top: 16px;
}
.face-avatar {
  background: #e9edcc;
  border: 1px solid #9fac93;
}
.face-time,
.face-mcap {
  color: var(--muted-fg);
}
.story-section {
  background: #c3e2e7;
  color: var(--fg);
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  box-shadow: 4px 4px 0 #d3d7b6;
  gap: 76px;
  padding: 56px 60px;
}
.story-intro .eyebrow {
  font: 10px/1.5 var(--mono);
  color: #527078;
  margin-bottom: 23px;
}
.story-intro h2 {
  font: 600 41px/1.12 var(--serif);
  letter-spacing: -1.4px;
}
.story-intro > p:not(.eyebrow) {
  color: #506e75;
  font-size: 13px;
  max-width: 320px;
  line-height: 1.85;
}
.story-intro .text-link {
  color: #344a50;
  border-color: #718c8b;
  font-size: 12px;
}
.steps li {
  border-color: #8daeb080;
  padding: 22px 0;
  gap: 20px;
}
.step-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  background: var(--paper);
  border: 1.5px solid var(--fg);
  border-radius: 50%;
  color: #b5483d;
  font: 500 12px/1 var(--mono);
}
.steps h3 {
  font: 550 23px/1.3 var(--serif);
  letter-spacing: -0.5px;
}
.steps p {
  color: #506e75;
  font-size: 12px;
  line-height: 1.85;
  margin-top: 7px;
}
.writing-desk {
  gap: 58px;
  border-color: #aabbab;
  padding-top: 32px;
}
.form-grid {
  gap: 22px;
}
.field > span {
  font-weight: 550;
  font-size: 12px;
  color: var(--fg);
}
.field em {
  color: var(--muted-fg);
  font-size: 10px;
}
.field input,
.field select,
.field textarea {
  border: 1.5px solid #91a393;
  background: var(--paper);
  border-radius: 4px;
  min-height: 46px;
  font-size: 13px;
  padding: 10px 12px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fffdf4;
  border-color: #477d91;
  outline: 3px solid #aed8e388;
  outline-offset: 0;
}
.post-paper {
  background: #ffedba;
  border: 1.5px solid var(--fg);
  border-radius: 5px;
  transform: rotate(0.7deg);
  box-shadow: 4px 4px 0 #d5d5ac;
  padding: 28px 30px 23px;
}
.paper-heading {
  border-color: #b6aa7c;
  color: #786b42;
  padding-bottom: 19px;
}
.paper-heading .eyebrow,
.paper-number {
  font: 9px/1.5 var(--mono);
  letter-spacing: 1px;
}
.post-example {
  font: 12px/1.95 var(--mono);
  color: #566150;
}
.paper-foot {
  border-color: #b6aa7c;
}
.paper-foot > span {
  font: 500 12px/1.6 var(--serif);
  color: #786b42;
}
.paper-foot img {
  width: 58px;
  height: 58px;
  opacity: 1;
  transform: rotate(-7deg);
}
.builder-foot {
  margin-top: 27px;
}
.builder-foot .fine {
  font-size: 11px;
}
.protocol-layout {
  grid-template-columns: 1.6fr 1fr;
  gap: 55px;
  border-color: #aabbab;
  padding-top: 32px;
}
.network-status {
  font: 10px/1.5 var(--mono);
  color: #5d786a;
}
.status-dot.ok {
  background: #6b983f;
}
.status-dot.warn {
  background: #ca9c37;
}
.status-dot.bad {
  background: #c95848;
}
.pad-tile {
  background: var(--paper);
  border: 1.5px solid #9cab98;
  border-radius: 5px;
  padding: 18px 15px;
  gap: 12px;
}
.pad-tile:hover {
  border-color: var(--fg);
  background: #f0f2d9;
}
.pad-tile[aria-checked="true"] {
  background: #e2ecc5;
  border-color: #668349;
  box-shadow: 2px 2px 0 #aabc86;
}
.pad-tile > .logo-sm {
  filter: none;
  width: 31px;
  height: 31px;
}
.pad-tile b {
  font-weight: 600;
  font-size: 12px;
}
.pad-tile small {
  color: #6e816b;
  font-size: 10px;
}
.pad-status {
  color: #537445;
}
.pad-status.needs {
  color: #97722b;
}
.pad-note,
.muted-note {
  color: var(--muted-fg);
}
.pad-note b {
  color: #536b5b;
  font-weight: 600;
}
.wallet-note {
  border: 1.5px solid #7b989b;
  background: #e0eef0;
  padding: 27px 28px;
  border-radius: 5px;
}
.wallet-note .eyebrow {
  font: 9px/1.5 var(--mono);
  color: #55767b;
  margin-bottom: 15px;
}
.wallet-note h3 {
  font: 550 31px/1.15 var(--serif);
  letter-spacing: -0.7px;
}
.wallet-note > p:not(.eyebrow) {
  font-size: 12px;
  color: #60797a;
  line-height: 1.85;
}
.wallet-note .wallet-actions {
  gap: 20px;
}
.wallet-note .text-link {
  font-size: 11px;
}
.technical-detail {
  border-color: #b4c4b1;
}
.technical-detail summary {
  font-size: 11px;
  color: #6b8074;
}
.key-box,
.secret {
  background: #ffedba;
  border: 1.5px solid #a9a37e;
}
.secret {
  border-color: var(--red);
}
.badge {
  background: #e9efcd;
  color: #657753;
}
.badge.up {
  color: #507233;
}
.badge.down {
  color: #b94b3d;
}
.metrics,
.addr,
.desc,
.byline {
  color: #617c77;
}
.tiny.trade {
  color: #557a3e;
}
.avatar {
  background: #e6edca;
  border: 1px solid #b2c294;
}
.skeleton {
  background: #e7ecd4;
}
.closing-note {
  padding: 95px 20px 83px;
  gap: 22px;
}
.closing-note > p {
  font: 500 36px/1.3 var(--serif);
  letter-spacing: -1px;
}
.closing-note > p em {
  font-style: normal;
  color: #b54c40;
}
.closing-note img {
  opacity: 1;
  width: 68px;
  height: 68px;
}
.site-footer {
  width: 100%;
  border-top: 1.5px solid var(--fg);
  background: #d4e8e5;
  padding: 36px max(36px, calc((100vw - 1216px) / 2)) 22px;
}
.footer-wordmark {
  font: 600 25px/1.2 var(--serif);
  letter-spacing: -1px;
}
.footer-top > p {
  font-size: 11px;
  color: #5e7c75;
}
.footer-links {
  color: #3f6465;
  font-size: 11px;
}
.footer-bottom {
  border-color: #aac2b8;
  font: 9px/1.6 var(--mono);
  color: #607e78;
  margin-top: 26px;
  padding-top: 20px;
}
.tip {
  background: var(--fg);
  color: var(--paper);
  font-size: 11px;
}
.mono {
  font-family: var(--mono);
}
.examples-hero {
  max-width: none;
  padding: 42px 44px;
  margin: 43px 0 47px;
  background: #c3e5e9;
  border: 1.5px solid var(--fg);
  border-radius: 6px;
  box-shadow: 4px 4px 0 #d2d5ad;
}
.examples-hero .eyebrow {
  color: #4d7379;
  margin-bottom: 18px;
}
.examples-hero h1 {
  font: 600 54px/1.12 var(--serif);
  letter-spacing: -1.8px;
}
.examples-hero > p:last-child {
  color: #56747a;
  font-size: 14px;
  max-width: 490px;
}
.examples-page .card-title {
  font-weight: 550;
}
.examples-page .prompt-card {
  padding-top: 29px;
}
.examples-page .post-example {
  background: #ffedba;
  border: 1.5px solid #adad84;
  border-radius: 5px;
  font-family: var(--mono);
  color: #566150;
}
.examples-intro h2 {
  font-weight: 550;
}
.example-card {
  border-color: #a8b99f;
}
.example-card .card-title {
  font-weight: 550;
}
.field-list {
  color: #5c7771;
}
.field-guide {
  border-color: #a8b99f;
}
.examples-page .site-footer {
  padding: 30px max(36px, calc((100vw - 1216px) / 2));
  margin-top: 70px;
}
.examples-page .site-footer p,
.examples-page .site-footer a:not(.footer-wordmark) {
  color: #5c7974;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 720px;
  }
  .hero-copy {
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 85px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 390px;
  }
  .hero-actions {
    margin-top: 27px;
  }
}
@media (max-width: 1150px) {
  .site-header {
    width: 100%;
    padding-inline: 36px;
    gap: 22px;
  }
  .site-nav {
    gap: 20px;
  }
  .header-action {
    margin-left: 0;
  }
  .hero {
    min-height: 630px;
    padding: 0;
  }
  .hero-copy {
    width: calc(100% - 72px);
    padding: 46px 0 120px;
  }
  .hero h1 {
    font-size: 66px;
    max-width: 410px;
  }
  .hero-description {
    max-width: 330px;
    font-size: 12px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-art img {
    width: 100%;
    margin: 0;
    object-position: 54% 50%;
  }
  .hero-art figcaption {
    left: 36px;
    right: 36px;
  }
  .hero-art .edition {
    display: inline;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .btn {
    font-size: 11px;
    padding-inline: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .story-section {
    gap: 45px;
    padding: 45px;
  }
  .story-intro h2 {
    font-size: 36px;
  }
  .writing-desk {
    gap: 35px;
  }
  .protocol-layout {
    gap: 32px;
    grid-template-columns: 1.55fr 1fr;
  }
  .wallet-note {
    padding: 24px;
  }
  .site-footer {
    width: 100%;
    padding-inline: 36px;
  }
}
@media (max-width: 950px) and (min-width: 761px) {
  .site-nav {
    gap: 18px;
  }
  .site-nav .ui-icon {
    display: none;
  }
  .hero {
    min-height: 610px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-description {
    max-width: 298px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-note {
    font-size: 9px;
  }
  .hero-art img {
    object-position: 49% 50%;
  }
  .hero-art .edition {
    font-size: 8px;
  }
  .stat {
    padding-inline: 17px;
  }
  .stat-value {
    font-size: 30px;
  }
  .story-section {
    padding: 35px;
    gap: 35px;
  }
  .story-intro h2 {
    font-size: 33px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 11px;
  }
  .protocol-layout {
    gap: 25px;
    grid-template-columns: 1.3fr 1fr;
  }
  .pad-grid {
    grid-template-columns: 1fr;
  }
  .wallet-note {
    padding: 25px;
  }
  .wallet-note h3 {
    font-size: 29px;
  }
  .wallet-note .btn {
    font-size: 10px;
    padding-inline: 12px;
  }
}
@media (max-width: 760px) {
  .content {
    width: calc(100% - 40px);
  }
  .site-header {
    width: 100%;
    height: 77px;
    padding-inline: 20px;
    gap: 12px;
  }
  .site-nav {
    display: none;
  }
  .brand {
    gap: 7px;
  }
  .mascot {
    width: 35px;
    height: 35px;
  }
  .wordmark {
    font-size: 23px;
    letter-spacing: -1px;
  }
  .header-action {
    padding: 8px 12px;
    font-size: 11px;
    gap: 7px;
    margin-left: 0;
  }
  .header-action .ui-icon {
    width: 20px;
    height: 20px;
  }
  .hero {
    width: 100vw;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    background: #85d0e2;
  }
  .hero-copy {
    width: 100%;
    padding: 37px 20px 22px;
    z-index: 1;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 19px;
  }
  .hero h1 {
    font-size: clamp(57px, 9.5vw, 76px);
    line-height: 1.03;
    letter-spacing: -2.6px;
    max-width: 570px;
  }
  .hero-description {
    max-width: 440px;
    font-size: 13px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 24px;
    flex-direction: row;
    align-items: center;
  }
  .hero-actions .btn {
    padding: 11px 16px;
    font-size: 11px;
    gap: 8px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 20px;
  }
  .hero-art {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 290px;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: 65% 87%;
    mask-image: none;
  }
  .hero-art figcaption {
    bottom: 12px;
    left: 20px;
    right: 20px;
    font-size: 8px;
  }
  .hero-art .edition {
    font-size: 7px;
    display: inline;
  }
  .network-band {
    padding: 23px 0;
    min-height: 0;
  }
  .network-band > p {
    display: none;
  }
  .chain-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .chain-chip {
    font-size: 12px;
  }
  .chain-strip .chain-logo {
    width: 21px;
    height: 21px;
  }
  .card-pulse {
    margin-top: 23px;
    padding: 21px 20px 19px;
  }
  .pulse-heading .eyebrow {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .tabs-inline {
    gap: 12px;
  }
  .tabs-inline .tab {
    font-size: 9px;
  }
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
    padding-top: 23px;
  }
  .stat {
    padding: 0 12px;
  }
  .stat:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }
  .stat-value {
    font-size: 30px;
  }
  .stat-label {
    font-size: 9px;
  }
  .pulse-updated {
    font-size: 8px !important;
    margin-top: 16px !important;
  }
  .section-space {
    margin-top: 61px;
  }
  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    letter-spacing: 0.75px;
  }
  .section-heading .eyebrow .ui-icon {
    width: 23px;
    height: 23px;
  }
  .section-heading > p {
    display: none;
  }
  .section-heading {
    margin-bottom: 23px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .section-description {
    font-size: 12px;
    line-height: 1.8;
  }
  .directory-toolbar {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  .directory-toolbar .tabs {
    justify-content: space-between;
    gap: 12px;
  }
  .directory-toolbar .tab {
    font-size: 11px;
    padding-block: 12px;
    min-height: 43px;
  }
  .token-search {
    width: 100%;
  }
  .token-search input {
    min-height: 44px;
    font-size: 13px;
  }
  .filter-caption {
    display: none;
  }
  .filter-menus {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .filter-btn {
    font-size: 10px;
    gap: 5px;
    min-height: 36px;
  }
  .filter-menus .menu-wrap:first-child .menu {
    left: 0;
    right: auto;
  }
  .empty-state {
    min-height: 290px;
    padding: 28px 20px;
  }
  .empty-state h3 {
    font-size: 26px;
    max-width: 340px;
  }
  .empty-state > p:not(.empty-kicker) {
    font-size: 12px;
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px 27px;
  }
  .story-intro h2 {
    font-size: 37px;
  }
  .story-intro > p:not(.eyebrow) {
    max-width: 430px;
    font-size: 13px;
  }
  .story-intro .eyebrow {
    font-size: 9px;
  }
  .steps li {
    gap: 17px;
    padding-block: 21px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .steps p {
    font-size: 12px;
  }
  .writing-desk {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 25px;
  }
  .form-grid {
    gap: 20px 16px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    min-height: 47px;
  }
  .field > span {
    font-size: 12px;
  }
  .field:has(select) {
    grid-column: 1/-1;
  }
  .post-paper {
    padding: 26px;
    min-height: 296px;
    margin-inline: 2px;
    transform: rotate(0.6deg);
  }
  .paper-foot img {
    width: 52px;
    height: 52px;
  }
  .builder-foot {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
  }
  .builder-foot .btn {
    width: 100%;
    min-height: 48px;
  }
  .builder-foot .fine {
    font-size: 11px;
  }
  .protocol-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 24px;
  }
  .pad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .pad-tile {
    padding: 17px 12px;
    gap: 9px;
  }
  .pad-tile > .logo-sm {
    width: 26px;
    height: 26px;
  }
  .pad-tile b {
    font-size: 12px;
  }
  .pad-tile small {
    font-size: 9px;
  }
  .wallet-note {
    border: 1.5px solid #7b989b;
    padding: 27px 25px;
  }
  .wallet-note h3 {
    font-size: 32px;
  }
  .wallet-note h3 br {
    display: none;
  }
  .wallet-note > p:not(.eyebrow) {
    max-width: 450px;
  }
  .wallet-note .wallet-actions {
    flex-direction: row;
    align-items: center;
  }
  .closing-note {
    padding: 66px 0 60px;
    gap: 20px;
  }
  .closing-note > p {
    font-size: 30px;
  }
  .closing-note img {
    width: 60px;
    height: 60px;
  }
  .site-footer {
    width: 100%;
    padding: 29px 20px 22px;
  }
  .footer-top {
    gap: 23px;
    justify-content: space-between;
  }
  .footer-top > p {
    display: none;
  }
  .footer-links {
    font-size: 10px;
    gap: 22px;
  }
  .footer-wordmark {
    font-size: 24px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 11px;
    margin-top: 23px;
  }
  .examples-hero {
    margin: 30px 0 36px;
    padding: 29px 27px;
  }
  .examples-hero h1 {
    font-size: 43px;
    letter-spacing: -1.3px;
  }
  .examples-hero > p:last-child {
    font-size: 13px;
  }
  .examples-hero .eyebrow {
    font-size: 9px;
  }
  .example-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .examples-page .site-footer {
    padding: 28px 20px;
    margin-top: 45px;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 58px;
  }
  .hero-art {
    height: 255px;
  }
  .hero-art img {
    object-position: 67% 87%;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .btn {
    padding-inline: 13px;
  }
  .hero-copy > .eyebrow {
    letter-spacing: 0.7px;
  }
  .hero-art .edition {
    display: none;
  }
  .header-action {
    padding: 8px 10px;
  }
  .header-action .ui-icon {
    display: none;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-label {
    font-size: 8px;
  }
  .pulse-heading .eyebrow {
    font-size: 8px;
  }
  .tabs-inline {
    gap: 10px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .pad-tile {
    padding-inline: 10px;
  }
  .pad-tile b {
    font-size: 11px;
  }
  .pad-tile small {
    font-size: 8px;
  }
  .wallet-note .wallet-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.closing-note .ui-icon {
  width: 22px;
  height: 22px;
}
@media (min-width: 761px) {
  .hero h1 {
    max-width: 800px;
  }
  .hero h1 em {
    white-space: nowrap;
  }
  .hero-description {
    max-width: 355px;
  }
  .hero-art img {
    object-position: 50% 50%;
  }
}
@media (min-width: 761px) and (max-width: 950px) {
  .hero h1 {
    font-size: 58px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 19px;
  }
  .hero-note {
    display: none;
  }
  .hero-description {
    max-width: 330px;
  }
}
@media (min-width: 761px) {
  .hero-note {
    display: none;
  }
}
/* Keep small text legible while retaining the scene's sunny palette. */
:root {
  --muted-fg: #5c7274;
}
.btn-primary {
  background: #c7473a;
}
.btn-primary:hover {
  background: #b83f34;
}
.hero-description {
  color: #304f59;
}
.empty-state > p:not(.empty-kicker) {
  color: #506d70;
}
.section-heading > p,
.stat-label,
.fine,
.pad-note,
.card-desc,
.section-description {
  color: var(--muted-fg);
}

/* Lead with the launchpad, then let the illustrated world carry the atmosphere. */
.hero-copy > .eyebrow {
  font-size: 10px;
  letter-spacing: 1.2px;
}
.hero-description {
  font-size: 15px;
  line-height: 1.75;
  max-width: 415px;
}
.hero-actions .btn,
.hero-actions .text-link {
  font-size: 13px;
}
.hero-note {
  display: block;
  font-size: 10px;
  margin-top: 21px;
}
@media (min-width: 761px) {
  .hero-copy {
    padding-top: 45px;
  }
  .hero h1 {
    font-size: clamp(58px, 5.1vw, 76px);
  }
}
@media (max-width: 1150px) and (min-width: 761px) {
  .hero-description {
    font-size: 14px;
    max-width: 375px;
  }
  .hero-note {
    font-size: 9px;
  }
}
@media (max-width: 760px) {
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 430px;
  }
  .hero-actions .btn,
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    font-size: 9px;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .hero-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .hero-copy {
    padding-top: 31px;
  }
  .hero-description {
    margin-top: 19px;
  }
  .hero-actions {
    margin-top: 21px;
  }
  .hero-note {
    margin-top: 18px;
  }
}

/* Golden seaside palette from the new illustration. */
:root {
  --bg: #faf6e9;
  --paper: #fffbf0;
  --fg: #3c493d;
  --muted-fg: #606f62;
  --border: #bec6ac;
  --soft: #e9edd8;
}
.hero {
  background-color: #f3edd6;
}
.hero h1,
.hero h1 em {
  color: #35493e;
}
.hero-copy > .eyebrow,
.hero-description,
.hero-note {
  color: #3c5145;
}
.hero-actions .text-link {
  color: #35493e;
  border-color: #7b8977;
}
.hero-art figcaption {
  color: #fff5dc;
}
.hero-art figcaption > span:first-child {
  color: #384336;
}
.empty-state {
  background: #edf0dc;
  border-color: #9eac91;
}
.empty-state > p:not(.empty-kicker) {
  color: #5b705d;
}
.empty-kicker {
  color: #5d735e;
}
.story-section {
  background: #e4e9d3;
  border-color: #63745d;
  box-shadow: 4px 4px 0 #d5d5b5;
}
.story-intro .eyebrow,
.story-intro > p:not(.eyebrow),
.steps p {
  color: #556b57;
}
.story-intro .text-link {
  color: #3c493d;
  border-color: #89967b;
}
.steps li {
  border-color: #b1bca1;
}
.post-paper,
.examples-page .post-example {
  background: #f7e9c3;
}
.wallet-note {
  background: #e9eddb;
  border-color: #9aaa8c;
}
.wallet-note .eyebrow,
.wallet-note > p:not(.eyebrow) {
  color: #5c715d;
}
.examples-hero {
  background: #e6ead6;
}
.examples-hero .eyebrow,
.examples-hero > p:last-child {
  color: #536b57;
}
.site-footer {
  background: #e2e8d2;
}
.footer-top > p,
.footer-links,
.footer-bottom {
  color: #596f59;
}
.footer-bottom {
  border-color: #b4c0a2;
}
@media (max-width: 760px) {
  .hero {
    background-color: #f3edd6;
  }
  .hero-art {
    height: 305px;
  }
  .hero-art img {
    object-position: 70% 50%;
  }
  .hero-art figcaption {
    bottom: 13px;
  }
  .hero-art figcaption > span:first-child {
    color: #fff5dc;
    text-shadow: 0 1px 3px #443b28;
  }
}
@media (max-width: 420px) {
  .hero-art {
    height: 285px;
  }
}
/* Break the scene out to the page edges without counting the scrollbar. */
.page {
  container-type: inline-size;
}
.hero {
  width: 100cqw;
  margin-left: -50cqw;
}

/* The brand is an illustrated token; network marks retain their original art. */
.brand-mark {
  display: block;
  flex: none;
  object-fit: contain;
  width: 44px;
  height: 44px;
}
.brand {
  gap: 10px;
}
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-wordmark .brand-mark {
  width: 34px;
  height: 34px;
}
.chain-strip .network-mark {
  display: block;
  flex: none;
  object-fit: contain;
  width: 31px;
  height: 31px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
}
.chain-strip .chain-chip {
  gap: 12px;
  font-size: 13px;
}
.network-band {
  min-height: 112px;
}
.header-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: none;
}
.header-x img {
  width: 22px;
  height: 22px;
  display: block;
}
.header-action .ui-icon[src$="coin.svg"] {
  display: block;
}
@media (max-width: 760px) {
  .brand {
    gap: 7px;
  }
  .brand-mark {
    width: 37px;
    height: 37px;
  }
  .footer-wordmark .brand-mark {
    width: 32px;
    height: 32px;
  }
  .chain-strip {
    gap: 23px 20px;
  }
  .chain-strip .network-mark {
    width: 27px;
    height: 27px;
  }
  .chain-strip .chain-chip {
    font-size: 11px;
    gap: 10px;
  }
  .network-band {
    min-height: 0;
    padding-block: 26px;
  }
  .header-action {
    gap: 6px;
    padding-inline: 9px;
  }
  .header-action .ui-icon[src$="coin.svg"] {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 380px) {
  .wordmark {
    font-size: 21px;
  }
  .header-action {
    font-size: 10px;
    padding-inline: 8px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .chain-strip .chain-chip {
    font-size: 10px;
  }
}

/* Give each network the same rhythm while balancing the marks by eye. */
.network-band {
  gap: 32px;
  min-height: 110px;
  padding: 24px 0;
  align-items: center;
}
.network-band > p {
  flex: 0 0 166px;
  padding-right: 26px;
  font-size: 11px;
  line-height: 1.65;
}
.chain-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  min-width: 0;
}
.chain-strip .chain-chip {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  font-size: 13px;
  line-height: 1.35;
  min-width: 0;
}
.chain-strip .network-mark {
  width: 28px;
  height: 28px;
  justify-self: center;
}
.chain-strip .network-mark[src$="solana-transparent.png"] {
  width: 30px;
  height: 30px;
}
.chain-strip .network-mark[src$="robinhood-transparent.png"] {
  width: 29px;
  height: 29px;
}
.chain-strip .network-mark[src$="bnb-transparent.png"],
.chain-strip .network-mark[src$="arc-transparent.png"] {
  width: 27px;
  height: 27px;
}
@media (min-width: 761px) and (max-width: 1050px) {
  .network-band > p {
    display: none;
  }
  .chain-strip {
    gap: 20px;
  }
  .chain-strip .chain-chip {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .network-band {
    min-height: 0;
    padding: 24px 0;
  }
  .chain-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }
  .chain-strip .chain-chip {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 10px;
    font-size: 11.5px;
  }
  .chain-strip .network-mark {
    width: 25px;
    height: 25px;
  }
  .chain-strip .network-mark[src$="solana-transparent.png"] {
    width: 28px;
    height: 28px;
  }
  .chain-strip .network-mark[src$="robinhood-transparent.png"] {
    width: 27px;
    height: 27px;
  }
  .chain-strip .network-mark[src$="bnb-transparent.png"],
  .chain-strip .network-mark[src$="arc-transparent.png"] {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 380px) {
  .chain-strip {
    column-gap: 15px;
  }
  .chain-strip .chain-chip {
    gap: 8px;
    font-size: 10.5px;
  }
}

/* A full-frame illustrated Muse face is the brand; token actions keep the coin. */
.brand-mark {
  border-radius: 5px;
  object-fit: cover;
}
.closing-note > img[src$="logo.jpg"] {
  border-radius: 9px;
}

/* Cream sampled from the Muse PFP's outer background: #f9e9bf. */
:root {
  --bg: #f9e9bf;
  --paper: #fff2d4;
  --soft: #f1dcae;
  --border: #cbb58d;
  --muted-fg: #71634d;
  --cream-panel: #f4e2b6;
  --cream-shadow: #dcc595;
}
.hero {
  background-color: var(--bg);
}
.site-header,
.site-footer {
  background: var(--bg);
}
.empty-state,
.story-section,
.wallet-note,
.examples-hero {
  background: var(--cream-panel);
  border-color: #bda77f;
}
.card-pulse,
.story-section,
.examples-hero {
  box-shadow: 3px 3px 0 var(--cream-shadow);
}
.post-paper,
.examples-page .post-example,
.key-box,
.secret {
  background: #f7e5b8;
  border-color: #baa177;
}
.post-paper {
  box-shadow: 4px 4px 0 var(--cream-shadow);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff4dc;
  border-color: #9c8058;
  outline-color: #d9bc8570;
}
.token-search input,
.field input,
.field select,
.field textarea {
  border-color: #bda982;
}
.header-action:hover,
.btn-ghost:hover,
.menu button:hover,
.menu button[aria-checked="true"],
.pad-tile:hover {
  background: var(--soft);
}
.btn-ghost {
  box-shadow: 2px 2px 0 var(--cream-shadow);
}
.pad-tile {
  border-color: #bda982;
}
.pad-tile[aria-checked="true"] {
  background: #eed49c;
  border-color: #9c8058;
  box-shadow: 2px 2px 0 #d2b67d;
}
.skeleton,
.avatar,
.face-avatar,
.badge {
  background: #efddaf;
}
.avatar,
.face-avatar {
  border-color: #ccb381;
}
.stat,
.directory-toolbar,
.writing-desk,
.protocol-layout,
.technical-detail,
.example-card,
.field-guide,
.footer-bottom {
  border-color: var(--border);
}
.steps li {
  border-color: #c6b087;
}
.paper-heading,
.paper-foot {
  border-color: #c9ae7a;
}
.story-intro .eyebrow,
.story-intro > p:not(.eyebrow),
.steps p,
.empty-kicker,
.empty-state > p:not(.empty-kicker),
.wallet-note .eyebrow,
.wallet-note > p:not(.eyebrow),
.examples-hero .eyebrow,
.examples-hero > p:last-child,
.footer-top > p,
.footer-links,
.footer-bottom,
.field-list,
.examples-page .site-footer p,
.examples-page .site-footer a:not(.footer-wordmark) {
  color: var(--muted-fg);
}
.story-intro .text-link {
  border-color: #a8926b;
}
.pad-tile small {
  color: #74674d;
}
.paper-heading,
.paper-foot > span {
  color: #7b6640;
}
::selection {
  background: #e8c685;
}

/* Illustrated chapters extend the Muse world beyond the opening scene. */
.directory .empty-state {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 390px;
  padding: 36px 5% 36px 55%;
  background: var(--cream-panel);
  border-color: #bda77f;
}
.directory .empty-state::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 63%;
  background: linear-gradient(
      to right,
      transparent 64%,
      var(--cream-panel) 100%
    ),
    url("assets/muse-market-garden-4k.webp") center/cover no-repeat;
  pointer-events: none;
}
.directory .empty-muse {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 8px;
  opacity: 1;
}
.directory .empty-state h3 {
  max-width: 365px;
  font-size: 29px;
  line-height: 1.2;
}
.directory .empty-state > p:not(.empty-kicker) {
  max-width: 335px;
  font-size: 12px;
}
.directory .empty-state .text-link {
  margin-top: 20px;
  font-size: 12px;
}
.story-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 38px 42px;
  padding: 46px;
  align-items: center;
  overflow: hidden;
}
.story-art {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-panel);
}
.story-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 26px 10px var(--cream-panel);
  pointer-events: none;
}
.story-section .steps {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
  border-top: 1px solid #c6b087;
  padding-top: 30px;
}
.story-section .steps li {
  display: flex;
  gap: 14px;
  padding: 0;
  border: 0;
}
.story-section .steps h3 {
  font-size: 21px;
  line-height: 1.25;
}
.story-section .steps p {
  font-size: 12px;
  line-height: 1.8;
}
.story-section .step-number {
  width: 29px;
  height: 29px;
  font-size: 11px;
}
.launchpad-art {
  position: relative;
  aspect-ratio: 2.6/1;
  overflow: hidden;
  margin: 24px 0 0;
  border: 1px solid #bda77f;
  border-radius: 5px;
  background: var(--cream-panel);
}
.launchpad-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.launchpad-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 18px 4px #f4e2b699;
  pointer-events: none;
}
.protocol-layout > .wallet-note {
  align-self: start;
}
@media (min-width: 761px) and (max-width: 1050px) {
  .directory .empty-state {
    padding-right: 4%;
    padding-left: 53%;
  }
  .directory .empty-state h3 {
    font-size: 27px;
  }
  .story-section {
    padding: 35px;
    gap: 30px;
  }
  .story-section .steps {
    gap: 20px;
  }
  .story-section .steps li {
    flex-direction: column;
    gap: 12px;
  }
  .story-section .steps h3 {
    font-size: 20px;
  }
}
@media (max-width: 760px) {
  .directory .empty-state {
    min-height: 0;
    padding: 250px 24px 34px;
  }
  .directory .empty-state::before {
    inset: 0 0 auto;
    width: 100%;
    height: 250px;
    background: linear-gradient(
        to bottom,
        transparent 55%,
        var(--cream-panel) 100%
      ),
      url("assets/muse-market-garden-4k.webp") center/cover no-repeat;
  }
  .directory .empty-muse {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  .directory .empty-state h3 {
    font-size: 27px;
  }
  .story-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 29px 25px;
  }
  .story-art {
    aspect-ratio: 16/9;
  }
  .story-art::after {
    box-shadow: inset 0 0 16px 6px var(--cream-panel);
  }
  .story-section .steps {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 9px;
  }
  .story-section .steps li {
    gap: 15px;
    padding: 21px 0;
    border-bottom: 1px solid #c6b087;
  }
  .story-section .steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .story-section .steps h3 {
    font-size: 22px;
  }
  .story-section .steps p {
    font-size: 12px;
  }
  .launchpad-art {
    aspect-ratio: 2.25/1;
    margin-top: 20px;
  }
  .protocol-layout > .wallet-note {
    width: 100%;
  }
}

/* Motion is an optional layer; the illustrated poster always stays in place. */
.hero-art {
  overflow: hidden;
  contain: paint;
}
.hero-art > img {
  position: absolute;
  inset: 0;
}
.hero-art .hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 52%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  mask-image: none;
  -webkit-mask-image: none;
}
.hero-art.is-animated .hero-video {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-art .hero-video {
    display: none !important;
  }
  .hero-art .hero-video {
    transition: none;
  }
}

/* Keep the 4K scene crisp and the entire launch station inside the frame. */
.hero {
  background: var(--bg);
}
.hero-art img,
.hero-art .hero-video {
  object-position: 50% 52%;
  mask-image: none;
  -webkit-mask-image: none;
}
@media (min-width: 761px) {
  .hero {
    min-height: max(650px, 34cqw);
  }
}
@media (min-width: 761px) and (max-width: 1150px) {
  .hero-art img,
  .hero-art .hero-video {
    object-position: 75% 52%;
  }
}
@media (max-width: 760px) {
  .hero-copy {
    background: var(--bg);
  }
  .hero-art {
    height: auto;
    aspect-ratio: 4/3;
    flex: none;
  }
  .hero-art img,
  .hero-art .hero-video {
    object-position: 75% 50%;
  }
}

/* The token builder has its own quiet space, away from the market homepage. */
.launch-page .builder-section {
  margin: 62px 0 82px;
}
.launch-page .section-heading {
  align-items: flex-end;
  margin-bottom: 22px;
}
.launch-page .section-heading h1 {
  font: 600 56px/1.12 var(--serif);
  letter-spacing: -2px;
  color: var(--fg);
}
.launch-page .section-description {
  max-width: 700px;
  font-size: 14px;
  line-height: 1.85;
  margin-top: 0;
  margin-bottom: 36px;
}
.launch-page .writing-desk {
  align-items: start;
}
.launch-page .post-paper {
  min-height: 396px;
}
@media (max-width: 760px) {
  .launch-page .builder-section {
    margin: 36px 0 58px;
  }
  .launch-page .section-heading {
    align-items: flex-start;
    gap: 20px;
  }
  .launch-page .section-heading h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
  .launch-page .section-description {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .launch-page .post-paper {
    min-height: 305px;
  }
}

/* An open-air atelier surrounds the form; only the writing surfaces are solid. */
.launch-page .launch-world {
  --launch-stage-height: clamp(700px, 56.25cqw, 1100px);
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: var(--launch-stage-height);
  margin: 0;
  background: var(--bg);
}
.launch-page .launch-scenery {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
  overflow: clip;
}
.launch-page .launch-scenery-frame {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--launch-stage-height);
}
.launch-page .launch-scenery img,
.launch-page .launch-scenery video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 55%;
}
.launch-page .launch-scenery video {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.launch-page .launch-scenery.is-animated video {
  opacity: 1;
}
.launch-page .launch-scenery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg),
    #f9e9bf22 100px,
    transparent 210px,
    transparent calc(100% - 180px),
    #f9e9bf55 calc(100% - 90px),
    var(--bg)
  );
  pointer-events: none;
}
.launch-page .builder-section {
  position: relative;
  z-index: 1;
  width: min(1216px, calc(100% - 112px));
  margin: 0 auto;
  padding: 62px 0 128px;
}
.launch-page .section-heading h1 {
  color: #34483c;
  text-shadow: 0 1px 0 #fff3d8, 0 0 24px #fff2d4cc;
}
.launch-page .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  margin-left: 0;
  background: #344e40;
  border: 1px solid #243c30;
  border-radius: 3px;
  color: #fff2d4;
  font-weight: 600;
}
.launch-page .section-heading > .text-link {
  padding: 7px 10px;
  background: #344e40;
  border: 1px solid #243c30;
  border-radius: 3px;
  color: #fff2d4;
  box-shadow: 2px 2px 0 #253b3033;
}
.launch-page .section-description {
  width: fit-content;
  max-width: 700px;
  padding: 10px 13px;
  margin-left: 0;
  background: #f3cba5;
  border-left: 4px solid #ad4b32;
  border-radius: 3px;
  color: #344e40;
  font-weight: 500;
  box-shadow: 0 2px 0 #253b3026;
}
.launch-page .writing-desk {
  border-top-color: #9c987580;
  gap: 56px;
}
.launch-page .field {
  gap: 7px;
}
.launch-page .field > span {
  align-self: flex-start;
  align-items: center;
  gap: 14px;
  padding: 5px 8px;
  margin-left: 0;
  background: #344e40;
  border: 1px solid #243c30;
  border-radius: 3px;
  color: #fff2d4;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 650;
}
.launch-page .field em {
  color: #eed5b0;
  font-size: 10px;
  font-weight: 450;
}
.launch-page .field input,
.launch-page .field select,
.launch-page .field textarea {
  min-height: 47px;
  background: #f3cba5;
  border: 2px solid #344e40;
  border-radius: 5px;
  color: #253b30;
  font-size: 14px;
  box-shadow: 3px 3px 0 #344e4033;
}
.launch-page .field input::placeholder,
.launch-page .field textarea::placeholder {
  color: #68503d;
}
.launch-page .field input:focus,
.launch-page .field select:focus,
.launch-page .field textarea:focus {
  background: #fff2d4;
  border-color: #ad4b32;
  outline: 3px solid #ad4b32;
  outline-offset: 2px;
  box-shadow: none;
}
.launch-page .post-paper {
  background: #2f4b3c;
  border: 2px solid #21382c;
  box-shadow: 6px 6px 0 #ce8b60;
  color: #fff2d4;
}
.launch-page .post-example {
  color: #fff2d4;
  font-size: 13px;
  line-height: 1.9;
}
.launch-page .paper-heading,
.launch-page .paper-foot {
  border-color: #b9b48880;
}
.launch-page .paper-heading,
.launch-page .paper-foot > span {
  color: #f2d6ae;
}
.launch-page .paper-heading .eyebrow {
  color: #fff2d4;
  font-size: 10px;
  font-weight: 600;
}
.launch-page .paper-number {
  color: #f2d6ae;
}
.launch-page .post-paper ::selection,
.launch-page .field > span::selection,
.launch-page .field > span ::selection {
  background: #f3cba5;
  color: #253b30;
}
.launch-page .builder-foot {
  gap: 26px;
}
.launch-page .builder-foot .fine {
  padding: 8px 10px;
  margin-left: 0;
  background: #f3cba5;
  border-left: 3px solid #ad4b32;
  border-radius: 3px;
  color: #344e40;
  font-size: 11px;
}
.launch-page .builder-foot .btn {
  min-height: 48px;
  background: #ad402e;
  border: 2px solid #713626;
  color: #fff8e8;
  box-shadow: 3px 3px 0 #344e40;
}
.launch-page .builder-foot .btn:hover {
  background: #923525;
}
.launch-page .section-heading > .text-link:hover {
  background: #263e31;
  border-color: #1b3025;
}
.launch-page .header-action {
  background: #f3cba5;
  border-color: #344e40;
  box-shadow: 2px 2px 0 #344e40;
}
.launch-page .header-action:hover {
  background: #eab889;
}
@media (max-width: 1150px) and (min-width: 761px) {
  .launch-page .builder-section {
    width: calc(100% - 72px);
  }
  .launch-page .writing-desk {
    gap: 35px;
  }
}
@media (max-width: 760px) {
  .launch-page .launch-world {
    --launch-stage-height: max(620px, 100svh);
    min-height: 0;
  }
  .launch-page .builder-section {
    width: calc(100% - 40px);
    padding: 36px 0 112px;
  }
  .launch-page .launch-scenery img,
  .launch-page .launch-scenery video {
    object-position: 100% 50%;
  }
  .launch-page .launch-scenery-frame::after {
    background: linear-gradient(
      to bottom,
      var(--bg),
      #f9e9bf44 110px,
      transparent 240px,
      transparent calc(100% - 160px),
      var(--bg)
    );
  }
  .launch-page .section-heading {
    gap: 16px;
  }
  .launch-page .section-description {
    padding: 8px 9px;
    margin-left: -9px;
    line-height: 1.8;
  }
  .launch-page .writing-desk {
    gap: 36px;
    border-top-color: #9c987566;
  }
  .launch-page .field > span {
    font-size: 13px;
  }
  .launch-page .field input,
  .launch-page .field select,
  .launch-page .field textarea {
    font-size: 16px;
    min-height: 49px;
  }
  .launch-page .post-paper {
    margin-inline: 2px;
  }
  .launch-page .post-example {
    font-size: 12px;
  }
  .launch-page .builder-foot {
    gap: 20px;
    margin-top: 25px;
  }
  .launch-page .builder-foot .fine {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .launch-page .launch-scenery video {
    display: none !important;
  }
  .launch-page .launch-scenery video {
    transition: none;
  }
}

.purpose-search {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-hits {
  position: absolute;
  z-index: 40;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 1.5px solid #9cab98;
  background: var(--paper);
  border-radius: 6px;
  max-height: 320px;
  overflow: auto;
}
.search-hit {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--fg);
}
.search-hit:hover,
.search-hit:focus-visible {
  background: var(--soft);
}
.hit-photo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  background: #e0e6d7;
  flex: none;
}
.hit-fallback {
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #536b5b;
}
.search-hit b,
.person-tile b,
.profile-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.hit-verified {
  color: #1d6ea3;
  font-size: 12px;
}
.search-hit small,
.person-tile small {
  display: block;
  color: var(--muted-fg);
  font-size: 12px;
}
.profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 14px;
  border: 1.5px solid #9cab98;
  background: #eef3e4;
  border-radius: 6px;
}
.profile-card-large {
  margin-top: 22px;
  padding: 18px 20px;
}
.profile-photo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  background: #d7decc;
  flex: none;
}
.profile-copy {
  min-width: 0;
}
.profile-name {
  font: 500 16px/1.3 var(--sans);
  margin: 0;
}
.profile-handle {
  margin: 4px 0 0;
  font-size: 13px;
}
.profile-handle a {
  border-bottom: 1px solid #b2bbaa;
}
.profile-wallets {
  margin: 8px 0 0;
  font-size: 11px;
  color: #5d7158;
}
.wallet-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wallet-inline input {
  flex: 1 1 140px;
  min-width: 0;
  border: 1px solid #d9dece;
  background: #fcfcf680;
  padding: 11px 13px;
  min-height: 43px;
  border-radius: 5px;
}
.muse-wallet-box {
  margin-top: 4px;
}
.people-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  flex-wrap: wrap;
}
.people-search {
  width: min(280px, 100%);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  padding: 22px 0;
}
.person-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1.5px solid #c5cdba;
  background: var(--paper);
  border-radius: 6px;
  text-align: left;
}
.person-tile:hover {
  border-color: #7d9270;
  background: #eef3e4;
}
.purpose-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 8px;
}
.purpose-chip {
  padding: 6px 10px;
  border: 1.5px solid #c5cdba;
  background: var(--paper);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}
.purpose-chip:hover {
  border-color: #7d9270;
}
.purpose-chip.is-active {
  background: #2e4436;
  border-color: #2e4436;
  color: #f3f4e9;
}
.search-hit.is-active,
.search-hit:focus-visible {
  background: #e2ecc5;
}
.muse-invite {
  margin-top: 28px;
  padding: 22px 22px 20px;
  border: 1.5px solid #7b989b;
  background: #e0eef0;
  border-radius: 6px;
}
.muse-invite h3 {
  font: 28px/1.25 var(--serif);
  letter-spacing: -0.6px;
  margin: 8px 0 12px;
}
.muse-invite > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.75;
  color: #5c715d;
  margin-bottom: 14px;
}
.invite-note {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #fcfcf6;
  border: 1px solid #c5cdba;
  border-radius: 5px;
  font: 12px/1.7 Consolas, "Courier New", monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #3d5344;
}
.wallet-note .invite-note {
  margin-top: 4px;
}
.treasury-funds {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.fund-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #c5cdba;
  border-radius: 6px;
  background: var(--paper);
  font-size: 12px;
}
.fund-row.needs {
  border-color: #c49e58;
}
.fund-row.is-ready {
  border-color: #7d9270;
}
.fund-row small {
  display: block;
  color: var(--muted-fg);
  font-size: 11px;
}
.fund-row .mono {
  flex: 1 1 180px;
}
.fund-row .have {
  font-size: 11px;
  color: #5d7158;
}
@media (max-width: 760px) {
  .people-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .people-search {
    width: 100%;
  }
  .profile-card {
    align-items: flex-start;
  }
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 12px;
  border: 1.5px solid var(--fg);
  background: var(--paper);
  border-radius: 5px;
  box-shadow: 2px 2px 0 var(--fg);
  font: 600 12px/1 var(--sans);
  cursor: pointer;
}
.header-x,
.tab,
.filter-btn,
.pad-tile,
.person-tile,
.chain-chip,
.header-action {
  cursor: pointer;
}
.header-x,
.pad-tile,
.person-tile,
.chain-chip {
  transition: transform 0.15s ease, background 0.15s ease;
}
.header-x:hover,
.pad-tile:hover,
.person-tile:hover,
.chain-chip:hover {
  transform: translateY(-2px);
}
.person-tile.is-active,
.pad-tile[aria-checked="true"] {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}
.chain-chip {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
}
.pad-note .text-link {
  display: inline-flex;
  margin-left: 8px;
}
@media (max-width: 760px) {
  .site-header {
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    z-index: 30;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 6px 20px 14px;
    background: var(--bg);
    border-bottom: 1.5px solid var(--fg);
  }
  .site-nav.is-open a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
}

.token .actions .tiny {
  color: #2c4a32;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.token .actions .tiny:hover {
  color: #17331c;
}
.token .actions .tiny::after {
  content: "↗";
  margin-left: 3px;
  font-size: 9px;
  text-decoration: none;
}
.hero-ca,
.footer-ca {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: #2c4a32;
}
.hero-ca .addr,
.footer-ca .addr,
.token .addr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: #2c4a32;
  cursor: pointer;
  text-align: left;
}
.hero-ca .mono,
.footer-ca .mono,
.token .addr .mono {
  font-size: 11px;
  word-break: break-all;
}
.footer-ca {
  margin: 10px 0 0;
}
