/* hands — the look.
 *
 * White paper, black ink, and exactly one other colour: Robinhood green.
 * hands. There is no third. Every bar, every glyph, the chart and the mark
 * itself are the same two-value comparison at different sizes — black is time
 * the mechanism counted, green marks live chain state and uncounted capacity.
 *
 * That constraint is the design. A holder-rewards site is a document about
 * somebody's money, so it is built like a printed statement: hairline rules,
 * monospace figures, wide margins, and no decoration that is not a number.
 * Interactive states are inversion and underline rather than an accent colour,
 * because introducing a third ink would immediately make the first two mean
 * less.
 *
 * No font is fetched from anywhere. The site tells people it keeps no record
 * of who was looked up, and a page that phones a font CDN on load has quietly
 * told a third party the same thing it just promised not to.
 */

:root {
  --paper:   #ffffff;
  --panel:   #faf9f6;
  --panel-2: #f2f0ea;
  --grid:    #f0eee8;
  --rule:    #e2dfd6;
  --rule-2:  #c9c5b8;

  --ink:     #111014;   /* counted */
  --ink-2:   #55524b;
  --faint:   #8d8981;
  --green:   #c5f732;   /* sampled from the supplied swatch */
  --green-2: #d8ffd9;

  --display: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
             'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, 'DejaVu Sans Mono', Consolas, monospace;

  --wrap: 1180px;
  --bar: 60px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  /* graph paper, barely there. the product is an integral; the ground it is
   * drawn on may as well say so. */
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
b, strong { font-weight: 650; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 99;
        background: var(--ink); color: var(--paper); padding: 10px 16px; font-weight: 700; }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* ------------------------------------------------------------------- header */
.bar {
  position: sticky; top: 0; z-index: 40; height: 64px;
  display: flex; align-items: center; gap: 28px; padding: 0 28px;
  background: #fffffff7; backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none;
         flex: 0 0 auto; }
.brandlogo { display: block; width: 34px; height: 22px; object-fit: contain; }
.mk { position: relative; display: block; width: 30px; height: 26px; overflow: hidden; }
.mk pre {
  position: absolute; left: 0; top: 0; margin: 0;
  font-family: var(--mono); font-size: 8px; line-height: 1; white-space: pre;
  transform-origin: 0 0; transform: scale(.34);
}
.mk .mf { color: var(--ink); }
.mk .mt { color: var(--green); }
.wm { font-family: var(--display); font-weight: 800; font-size: 18px;
      letter-spacing: -.065em; }
.wm b { font-weight: 800; }

.hunt { flex: 1; display: flex; justify-content: center; min-width: 0; }
.hunt input {
  width: 100%; max-width: 510px; height: 38px;
  background: var(--panel); border: 1px solid var(--rule-2); border-radius: 8px;
  color: var(--ink); font-family: var(--mono); font-size: 12px; padding: 0 14px;
}
.hunt input::placeholder { color: var(--faint); }
.go {
  height: 38px; margin-left: 8px; padding: 0 15px; border: 1px solid var(--ink);
  border-radius: 8px; background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-weight: 700; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
}
.go:hover { background: var(--green); color: var(--ink); }
.side { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.icon {
  width: auto; height: 32px; padding: 0 10px; display: inline-flex;
  align-items: center; justify-content: center; border: 1px solid var(--rule);
  border-radius: 7px; background: var(--panel); color: var(--ink-2); cursor: pointer;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
}
.icon:hover { color: var(--ink); background: var(--panel-2); border-color: var(--rule); }
.social { display: inline-flex; align-items: center; justify-content: center;
          text-decoration: none; font-size: 12px; font-weight: 700; }
.social:hover { text-decoration: none; }
html:not(.armed) .hunt { display: none; }

/* --------------------------------------------------------------------- band */
.band { border-bottom: 1px solid var(--rule); background: var(--panel); }
.canvas {
  position: relative; height: 356px; overflow: hidden;
  max-width: var(--wrap); margin: 0 auto; padding: 16px 28px 0;
}
.canvas pre {
  position: absolute; inset: 16px 28px 0; margin: 0;
  /* Small type, deliberately. A hand needs about forty rows before the
     fingers stop merging into a mitten; at fifteen pixels the band only had
     twenty-two and the drawing read as a pistol. */
  font-family: var(--mono); font-size: 8px; line-height: 1.0;
  white-space: pre; pointer-events: none;
}
#ink  { color: var(--ink); }
#pap  {
  color: var(--green);
  -webkit-text-stroke: .42px var(--ink);
  paint-order: stroke fill;
}
#rule { color: var(--rule-2); }
.bandnote {
  max-width: var(--wrap); margin: 0 auto; padding: 12px 28px 18px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
}
.bandnote .sep { color: var(--rule-2); margin: 0 14px; }
.bandnote .pp { color: var(--green); }
.bandnote .cc { font-weight: 650; font-variant-numeric: tabular-nums; }
.bandnote b { color: inherit; font-weight: 600; }

/* ---------------------------------------------------------- launch monitor */
.launchwatch { border-bottom: 1px solid var(--rule); background: var(--paper); }
.launchin { padding-top: 40px; padding-bottom: 42px; }
.launchhead { display: flex; align-items: flex-end; justify-content: space-between;
              gap: 28px; padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.launchhead .eyebrow { margin-bottom: 13px; }
.launchhead h2 { margin: 0 0 9px; font-size: clamp(28px, 4vw, 45px);
                 line-height: 1; letter-spacing: -.045em; }
.launchhead p:not(.eyebrow) { max-width: 58ch; margin: 0; color: var(--ink-2);
                               font-size: 13.5px; }
.launchsignal { display: flex; align-items: center; gap: 9px; flex: 0 0 auto;
                padding-bottom: 3px; font-family: var(--mono); font-size: 10px;
                letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.launchsignal i { width: 9px; height: 9px; border-radius: 50%; background: var(--green);
                  border: 1px solid var(--ink); animation: monitor-pulse 1.7s ease-in-out infinite; }
.launchgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
              border-left: 1px solid var(--rule); }
.launchcell { min-height: 116px; padding: 18px 18px 20px; border-right: 1px solid var(--rule);
              border-bottom: 1px solid var(--rule); }
.launchcell .k { margin-bottom: 9px; }
.launchcell strong { display: block; min-height: 28px; font-family: var(--mono);
                     font-size: 16px; font-weight: 600; overflow-wrap: anywhere; }
.launchcell:first-child strong { font-size: 12px; line-height: 1.35; }
.launchcell:nth-child(3) strong { color: var(--green); -webkit-text-stroke: .25px var(--ink);
                                  paint-order: stroke fill; }
.launchcell small { display: block; margin-top: 7px; color: var(--faint);
                    font-family: var(--mono); font-size: 10.5px; line-height: 1.4; }
.launchfoot { display: flex; align-items: center; justify-content: space-between; gap: 16px;
              padding-top: 14px; color: var(--faint); font-family: var(--mono); font-size: 10.5px; }
.launchfoot a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); }
.launchfoot a:hover { color: var(--green); background: var(--ink); }

/* ------------------------------------------------------------------- hello */
.hello { padding: 84px 0 96px; }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint); margin: 0 0 22px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.eyebrow em { color: var(--ink); font-style: normal; font-weight: 600; }
h1 {
  margin: 0 0 24px; font-size: clamp(42px, 7vw, 82px);
  line-height: .98; letter-spacing: -.05em; font-weight: 800;
  text-wrap: balance; max-width: 14ch;
}
h1 em { font-style: normal; color: var(--green); }
.lede { margin: 0 0 38px; max-width: 60ch; font-size: 17px; color: var(--ink-2); }
.lede b { color: var(--ink); font-weight: 600; }

.scanbox {
  display: flex; align-items: center;
  background: var(--paper); border: 1.5px solid var(--ink);
  padding: 5px 5px 5px 16px; max-width: 760px;
}
.caret { font-family: var(--mono); font-size: 15px; margin-right: 10px; }
.scanbox input {
  flex: 1; min-width: 0; height: 46px; background: 0; border: 0;
  color: var(--ink); font-family: var(--mono); font-size: 14px;
}
.scanbox input:focus { outline: 0; }
.scanbox input::placeholder { color: var(--faint); }
.scanbtn {
  height: 46px; padding: 0 30px; border: 0; border-radius: 7px; background: var(--ink);
  color: var(--paper); cursor: pointer; font-weight: 800; font-size: 13px;
  letter-spacing: .07em; text-transform: uppercase;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.scanbtn:hover { background: var(--green); color: var(--ink); transform: translateY(-1px); }

.tries { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.tries button {
  background: var(--paper); border: 1px solid var(--rule-2); border-radius: 7px;
  color: var(--ink-2); padding: 7px 14px; cursor: pointer; font-family: var(--mono);
  font-size: 11.5px; transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.tries button:hover { border-color: var(--ink); color: var(--ink); background: var(--panel); }
.tries button b { color: var(--ink); font-weight: 600; }

/* ------------------------------------------------------------------ the pot */
.pot {
  margin: 48px 0 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--rule);
  padding: 22px 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px 40px;
}
.pot .cell .k, .k {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 7px;
}
.pot .cell .v {
  font-family: var(--mono); font-size: 23px; font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.ethmain { display: block; }
.usdline {
  display: block; margin-top: 4px; color: var(--faint);
  font-family: var(--mono); font-size: 10.5px; font-weight: 400;
  letter-spacing: 0; font-variant-numeric: tabular-nums;
}
.big .usdline { margin-top: 8px; font-size: 13px; line-height: 1; }
.launchcell strong .usdline { margin-top: 3px; font-size: 10px; }
.pot .cell small { color: var(--faint); font-size: 11px; font-family: var(--mono);
                   display: block; margin-top: 5px; }
.pot.standby { position: relative; overflow: hidden; }
.pot.standby::after {
  content: ''; position: absolute; left: 0; top: 0; width: 22%;
  height: 2px; background: var(--green); animation: scan 3.2s ease-in-out infinite;
}
.pot.standby .cell { min-height: 92px; }
.pot.standby .cell:nth-child(2) .v { color: var(--green); }
.pot.standby .cell:nth-child(3) .v {
  font-size: 15px; overflow-wrap: anywhere; max-width: 26ch;
}
.monitor { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.monitor i {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px var(--green-2);
  animation: monitor-pulse 1.7s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { transform: translateX(-10%); opacity: .4; }
  50% { transform: translateX(440%); opacity: 1; }
}
@keyframes monitor-pulse {
  0%, 100% { opacity: .45; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---------------------------------------------------------------- the gets */
.gets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
  margin: 64px 0 0; border-top: 1px solid var(--rule);
}
.gets > div {
  padding: 24px 24px 28px 0; border-right: 1px solid var(--rule);
  border-top: 3px solid var(--ink); margin-top: -1px;
}
.gets > div:last-child { border-right: 0; }
.gets > div + div { padding-left: 24px; }
.gets b {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  display: block; margin-bottom: 14px; color: var(--faint);
}
.gets h3 { margin: 0 0 8px; font-size: 16px; letter-spacing: -.02em; font-weight: 700; }
.gets span { color: var(--ink-2); font-size: 13.5px; display: block; }

.answers {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0;
  margin: 56px 0 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.answers > div {
  padding: 22px 26px 24px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.answers b { display: block; margin-bottom: 9px; font-size: 14px; }
.answers span { color: var(--ink-2); font-size: 13.5px; }
.answers em { font-style: normal; font-weight: 650; color: var(--ink); }
@media (max-width: 720px) { .answers { grid-template-columns: 1fr; } }

.deep {
  margin: 48px 0 0; background: 0; border: 0; padding: 0 0 4px; cursor: pointer;
  font-family: var(--mono); font-size: 13px; border-bottom: 1.5px solid var(--ink);
}
.deep:hover { background: var(--ink); color: var(--paper); }

/* ------------------------------------------------------------------ the coin */
.coin { margin: 76px 0 0; }
.coinhead { display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.coinhead h2 { margin: 0; font-size: 26px; letter-spacing: -.035em; font-weight: 800; }
.coinhead p { margin: 0; flex: 1; min-width: 280px; color: var(--faint); font-size: 12.5px; }
.coinhead em { color: var(--green); font-style: normal; font-weight: 600; }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  border-top: 2px solid var(--ink); border-left: 1px solid var(--rule);
}
.stats > div {
  padding: 16px 18px 20px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.stats .n {
  font-family: var(--mono); font-size: 19px; font-weight: 600;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.stats .n .usdline { font-size: 10px; }
.stats .n.out { color: var(--green); }              /* read from somewhere else */
.stats .n.na { color: var(--green); font-size: 14px; font-weight: 400; }
.stats .s { display: block; margin-top: 6px; font-size: 11px; color: var(--faint); }

.chart { margin-top: 26px; border: 1px solid var(--rule); background: var(--panel); padding: 20px 22px 18px; }
.charthead { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.charthead .cn { font-family: var(--mono); font-size: 11.5px; color: var(--faint); }
.bars { position: relative; height: 122px; margin: 16px 0 0; }
.bars pre {
  position: absolute; left: 0; top: 0; margin: 0;
  font-family: var(--mono); font-size: 13px; line-height: 1.02; white-space: pre;
}
.bars .bg {
  color: var(--green);
  -webkit-text-stroke: .28px var(--ink);
  paint-order: stroke fill;
}
.bars .bl { color: var(--ink); }
.xaxis {
  margin-top: 6px; font-family: var(--mono); font-size: 13px; line-height: 1;
  white-space: pre; color: var(--faint); overflow-x: auto;
}
.chartfoot { margin: 16px 0 0; font-size: 12.5px; color: var(--faint); }

/* ------------------------------------------------------------------- the app */
.summary { border-bottom: 1px solid var(--rule); background: var(--panel); }
.sumin { padding: 46px 28px 44px; }
.idline {
  display: flex; align-items: center; gap: 12px; margin-bottom: 0; padding-bottom: 17px;
  border-bottom: 1px solid var(--rule);
}
.idline .k { flex: 0 0 auto; }
.who {
  min-width: 0; max-width: min(680px, 72vw); overflow: hidden; text-overflow: ellipsis;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); word-break: break-all;
}
.mini {
  flex: 0 0 auto; padding: 5px 9px; background: var(--paper); border: 1px solid var(--rule-2);
  border-radius: 6px; color: var(--ink-2); cursor: pointer; font-family: var(--mono);
  font-size: 10px; letter-spacing: .04em; text-transform: uppercase; transition: .18s ease;
}
.mini:hover { color: var(--ink); border-color: var(--ink); background: var(--green-2); }

.headline { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-end;
            justify-content: space-between; padding-top: 31px; }
.big {
  font-family: var(--mono); font-size: clamp(52px, 8.5vw, 80px); line-height: .95;
  font-weight: 600; letter-spacing: -.07em; font-variant-numeric: tabular-nums;
}
.big small { font-size: .28em; color: var(--faint); margin-left: .4em; letter-spacing: 0; }
.split { margin-top: 12px; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.acts { display: flex; gap: 8px; }
.btn { padding: 10px 16px; font-size: 12px; cursor: pointer; text-decoration: none;
       display: inline-block; font-weight: 650; border-radius: 7px; transition: .18s ease; }
.ghost { background: var(--paper); border: 1px solid var(--ink); color: var(--ink); }
.ghost:hover { background: var(--ink); color: var(--paper); }
.acts .ghost:first-child { background: var(--ink); color: var(--paper); }
.acts .ghost:first-child:hover { background: var(--green); color: var(--ink); }

/* the bar: ink for what counted, green for live remaining capacity */
.counted { margin-top: 34px; }
.cbar { height: 20px; background: var(--green-2); border: 1px solid var(--ink); }
.cbar i { display: block; height: 100%; background: var(--ink);
          transition: width .6s cubic-bezier(.2,.7,.2,1); }
.clabels { display: flex; justify-content: space-between; margin-top: 10px;
           font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.clabels b { font-weight: 650; }
.clabels .pp { color: var(--green); }

.quads {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  margin-top: 30px; border-top: 2px solid var(--ink); border-left: 1px solid var(--rule);
}
.quads > div { min-height: 100px; padding: 17px 18px 19px; background: var(--paper);
               border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.quads .n { font-family: var(--mono); font-size: 21px; font-weight: 600;
            font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.quads .n .usdline { font-size: 10px; }
.quads .n.tan { color: var(--green); }
.quads .s { display: block; margin-top: 6px; font-size: 11.5px; color: var(--faint); }

/* ----------------------------------------------------------- the multiplier */
.mult { margin-top: 26px; border: 1px solid var(--rule); background: var(--paper); }
.multhead { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
            padding: 20px 22px; border-bottom: 1px solid var(--rule);
            background: var(--panel); }
.multhead .x { font-family: var(--mono); font-size: 32px; font-weight: 600;
               letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.multhead .why { color: var(--ink-2); font-size: 13px; }
.plist .p {
  display: grid; grid-template-columns: 210px minmax(0, 1fr) 58px; gap: 18px;
  align-items: center; padding: 12px 22px; border-bottom: 1px solid var(--rule);
  font-family: var(--mono); font-size: 12px;
}
.plist .p:last-child { border-bottom: 0; }
.plist .m { color: var(--ink-2); word-break: break-all; }
.plist .track { height: 7px; background: var(--green-2); border: 1px solid var(--ink); }
.plist .track i { display: block; height: 100%; background: var(--ink); }
.plist .v { text-align: right; font-variant-numeric: tabular-nums; }
.plist .p.out .m, .plist .p.out .v { color: var(--green); }
.plist .p.out .track i { background: var(--green); }
.rej { padding: 13px 22px; font-family: var(--mono); font-size: 11.5px;
       color: var(--faint); background: var(--panel-2); }
.rej b { color: var(--ink-2); font-weight: 600; }

/* ------------------------------------------------------------------ the table */
.tools { display: flex; align-items: center; gap: 14px; margin: 40px 0 16px; }
.tools input { height: 36px; width: 270px; background: var(--paper);
               border: 1px solid var(--rule-2); color: var(--ink);
               font-family: var(--mono); font-size: 12px; padding: 0 12px; }
.sp { flex: 1; }
.count { font-family: var(--mono); font-size: 11.5px; color: var(--faint); }

.table { border-top: 2px solid var(--ink); padding-bottom: 80px; }
.r {
  display: grid; grid-template-columns: 1fr 300px 158px; gap: 22px;
  align-items: center; padding: 16px 0; border-bottom: 1px solid var(--rule);
}
.r.you { background: var(--panel-2); box-shadow: -14px 0 0 var(--panel-2), 14px 0 0 var(--panel-2); }
.r .addr { font-family: var(--mono); font-size: 12px; color: var(--ink-2); word-break: break-all; }
.r .tag { display: inline-block; margin-left: 10px; padding: 1px 7px;
          background: var(--ink); color: var(--paper);
          font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.r .mid .track { height: 8px; background: var(--green-2); border: 1px solid var(--ink); }
.r .mid .track i { display: block; height: 100%; background: var(--ink); }
.r .mid .sub { margin-top: 7px; font-family: var(--mono); font-size: 11px; color: var(--faint); }
.r .amt { text-align: right; }
.r .amt .n { font-family: var(--mono); font-size: 18px; font-weight: 600;
             font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.r .amt .n small { font-size: .58em; color: var(--faint); margin-left: .35em; }
.r .amt .s { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.r.cold .amt .n, .r.cold .addr { color: var(--green); }
.r.cold .mid .track i { background: var(--green); }

.flagbar {
  margin: 22px 0 0; padding: 14px 16px 14px 18px; border: 1px solid var(--rule);
  border-left: 3px solid var(--green); background: var(--panel-2); font-family: var(--mono);
  font-size: 11px; color: var(--ink-2);
}
.flagbar b { color: var(--ink); }

.loading { display: flex; align-items: center; gap: 12px; padding: 44px 0;
           font-family: var(--mono); font-size: 13px; color: var(--ink-2); }
.loading i { width: 9px; height: 9px; background: var(--ink);
             animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: .2 } 50% { opacity: 1 } }
.none { padding: 54px 0; color: var(--ink-2); font-family: var(--mono); font-size: 13px; }

/* -------------------------------------------------------------- history scan */
.historytable { padding-bottom: 80px; }
.history-position { padding: 22px 0 24px; border-bottom: 1px solid var(--rule); }
.history-top { display: flex; align-items: baseline; justify-content: space-between;
               gap: 18px; }
.history-token { min-width: 0; }
.history-token a { color: var(--ink); font-family: var(--mono); font-size: 13px;
                   overflow-wrap: anywhere; text-decoration: none; }
.history-token a:hover { text-decoration: underline; text-underline-offset: 4px; }
.history-address-label { margin-left: 10px; color: var(--faint); font-family: var(--mono);
                         font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.history-status { flex: 0 0 auto; padding: 3px 7px; border: 1px solid var(--ink);
                  color: var(--ink); font-family: var(--mono); font-size: 10px;
                  letter-spacing: .1em; text-transform: uppercase; }
.history-position.completed .history-status { background: var(--ink); color: var(--paper); }
.history-position.incomplete .history-status,
.history-position.rejected .history-status { color: var(--ink-2); border-color: var(--rule-2); }
.history-facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 15px;
                 color: var(--faint); font-family: var(--mono); font-size: 10.5px; }
.history-evidence { margin: 15px 0 0; color: var(--ink-2); font-size: 13px; }
.history-evidence b { color: var(--ink); }
.history-money { display: inline-block; min-width: 190px; margin-top: 18px;
                 padding: 10px 13px; border-left: 2px solid var(--green);
                 background: var(--panel-2); }
.history-money .k { margin: 0 0 4px; }
.history-money strong { display: block; font-family: var(--mono); font-weight: 500; }
.history-money .ethmain { font-size: 14px; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 0 16px; margin-top: 20px; border-top: 1px solid var(--rule); }
.timeline-item { display: flex; align-items: center; gap: 8px; min-width: 0;
                 padding: 9px 0; border-bottom: 1px solid var(--rule); color: var(--ink-2);
                 font-family: var(--mono); font-size: 10px; }
.timeline-dot { display: inline-grid; place-items: center; width: 16px; height: 16px;
                flex: 0 0 auto; border: 1px solid var(--ink); color: var(--ink);
                font-size: 11px; }
.timeline-item.out .timeline-dot { background: var(--panel-2); }
.timeline-time { color: var(--faint); white-space: nowrap; }
.timeline-balance { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.timeline-tx { margin-left: auto; color: var(--ink); white-space: nowrap; }
.timeline-tx:hover { color: var(--green); background: var(--ink); }
.historyempty {
  display: flex; align-items: center; gap: 20px; padding: 42px 22px 52px;
  background: var(--panel); color: var(--ink-2); font-family: var(--mono); font-size: 12px;
}
.historyempty .emptycode {
  flex: 0 0 auto; color: var(--green); font-size: 38px; line-height: 1;
  font-weight: 700; letter-spacing: -.08em;
}
.historyempty strong {
  display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--display);
  font-size: 18px; letter-spacing: -.02em;
}
.historyempty p { margin: 0; color: var(--ink-2); }

/* --------------------------------------------------------------------- foot */
.foot { border-top: 2px solid var(--ink); background: var(--panel); }
.footin { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap: 38px; padding: 46px 28px 58px; }
.fcol p { color: var(--ink-2); font-size: 12.5px; margin: 14px 0 0; }
.fcol .dim { color: var(--faint); }
.flinks { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.lnk { background: 0; border: 0; padding: 0; color: var(--ink-2); cursor: pointer;
       font-size: 12.5px; text-decoration: none; text-align: left;
       font-family: var(--display); border-bottom: 1px solid var(--rule); width: fit-content; }
.lnk:hover { color: var(--ink); border-color: var(--ink); }
#coin { font-family: var(--mono); font-size: 12px; color: var(--ink-2); word-break: break-all; }

/* -------------------------------------------------------------------- sheet */
.sheet { position: fixed; inset: 0; z-index: 60; background: #1110149e;
         display: flex; justify-content: center; align-items: flex-start;
         padding: 44px 20px; overflow-y: auto; }
.sheetin { width: 100%; max-width: 740px; background: var(--paper);
           border: 1.5px solid var(--ink); }
.sheethead { display: flex; align-items: baseline; gap: 14px; padding: 24px 28px;
             border-bottom: 1px solid var(--rule); }
.sheethead b { font-size: 18px; }
.sheethead span { color: var(--faint); font-size: 12.5px; flex: 1; }
.prose { padding: 10px 28px 34px; }
.prose h4 { margin: 28px 0 9px; font-size: 14.5px; letter-spacing: -.01em; }
.prose p { margin: 0 0 13px; color: var(--ink-2); font-size: 13.5px; }
.prose p.tight { margin-top: -5px; }
.prose b { color: var(--ink); }

/* ------------------------------------------------------------------- reveal */
.rise { opacity: 0; transform: translateY(10px);
        transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.rise.in { opacity: 1; transform: none; }

/* `hidden` is only a hint — any element that sets its own `display` overrides
 * it. The sheet is a fixed, full-viewport flex container, so without this it
 * stays laid out while invisible and eats every click on the page. */
[hidden] { display: none !important; }

@media (max-width: 820px) {
  :root { --bar: 58px; }
  .bar { height: var(--bar); gap: 16px; padding: 0 18px; }
  .brand { gap: 8px; }
  .brandlogo { width: 32px; height: 20px; }
  .wm { font-size: 17px; }
  .side { gap: 14px; }
  /* the hairline after the eyebrow steals the width the label needs, and
     pushes its last two words onto their own line */
  .eyebrow { display: block; }
  .eyebrow::after { display: none; }
  /* at this width the button was landing on top of the placeholder */
  .scanbox { padding: 4px 4px 4px 12px; }
  .scanbox input { font-size: 12.5px; height: 42px; }
  .scanbtn { padding: 0 16px; font-size: 12px; height: 42px; letter-spacing: .04em; }
  .caret { margin-right: 7px; font-size: 13px; }
  .canvas { height: 180px; }
  .lanes { display: none; }
  .brandlogo { width: 32px; height: 20px; }
  .launchin { padding-top: 30px; padding-bottom: 32px; }
  .launchhead { display: block; }
  .launchsignal { margin-top: 18px; }
  .launchgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .launchcell { min-height: 105px; }
  .launchfoot { align-items: flex-start; flex-direction: column; }
  .hello { padding: 52px 0 64px; }
  .gets > div { border-right: 0; padding-left: 0 !important; }
  .r { grid-template-columns: 1fr; gap: 12px; }
  .r .amt { text-align: left; }
  .plist .p { grid-template-columns: 110px minmax(0, 1fr) 46px; gap: 10px; }
  .history-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .history-address-label { display: block; margin: 5px 0 0; }
  .history-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .timeline { grid-template-columns: 1fr; }
  .tools input { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rise { opacity: 1; transform: none; }
}
