/* ============================================================
   NOTEPAD — stylesheet
   Built to the crumbs.family design language: soft green quilted
   ground, big rounded white surfaces, dark pill buttons, drifting
   organic discs, soft staggered motion and a live wallet card.
   ============================================================ */

:root{
  color-scheme: light;

  /* ground — the exact wash, blooms and tile from the reference */
  --ground-base:#EDF6EB;
  --ground-1:#F6FBF5;
  --ground-2:#E9F6E7;
  --ground-3:#D5EED2;

  /* ink */
  --ink:#16241A;
  --ink-2:#4B5D4E;
  /* 4.6:1 on the ground — disclaimer and eyebrows use this, so it
     has to clear WCAG AA rather than just look muted. */
  --ink-3:#5F7262;

  /* structure */
  --line:rgba(22,36,26,.12);
  --line-2:rgba(22,36,26,.22);
  --card:rgba(255,255,255,.72);
  --card-solid:#FFFFFF;
  --edge:rgba(255,255,255,.85);
  /* layered, low-alpha shadows read softer than one heavy blur */
  --shadow:0 1px 2px rgba(28,64,34,.04), 0 8px 24px rgba(28,64,34,.07);
  --shadow-lg:0 2px 6px rgba(28,64,34,.05), 0 20px 44px rgba(28,64,34,.12);

  /* one motion system for the whole page */
  --ease:cubic-bezier(.22,1,.36,1);
  --t-fast:.16s;
  --t:.28s;

  /* one spacing rhythm */
  --gap:16px;
  --pad:24px;

  /* accent + semantics */
  --green:#2C8340;
  --green-deep:#1C6229;
  --up:#1F7A3D;
  --down:#BE3A2B;

  /* the reference leans on big soft radii */
  --r:26px;
  --r-sm:16px;

  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

*{box-sizing:border-box}
html,body{background-color:var(--ground-base)}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}}
main[id],section[id]{scroll-margin-top:100px}

body{
  margin:0;
  color:var(--ink);
  background-color:var(--ground-base);
  font-family:"Manrope",ui-sans-serif,system-ui,"Helvetica Neue",Arial,sans-serif;
  font-size:15px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* The ground: quilted tile relief over two corner blooms over a radial
   wash, stacked in ONE fixed layer. Deliberately not `background-attachment:
   fixed` — Safari on iOS handles that badly, and this composites cleanly. */
body::before{
  content:"";
  position:fixed;inset:0;z-index:-1;pointer-events:none;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='84' height='84'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='rgb(255,255,255)' stop-opacity='.60'/><stop offset='.5' stop-color='rgb(255,255,255)' stop-opacity='.085'/><stop offset='1' stop-color='rgb(120,200,115)' stop-opacity='.17'/></linearGradient></defs><rect x='2' y='2' width='80' height='80' rx='25' fill='url(%23g)'/></svg>"),
    radial-gradient(58% 42% at 84% 8%, rgba(146,244,132,.60), rgba(0,0,0,0) 68%),
    radial-gradient(64% 48% at 10% 96%, rgba(190,246,184,.55), rgba(0,0,0,0) 72%),
    radial-gradient(140% 115% at 50% 64%,
      var(--ground-1) 0%,
      var(--ground-2) 52%,
      var(--ground-3) 100%);
  background-repeat:repeat, no-repeat, no-repeat, no-repeat;
  background-size:84px 84px, cover, cover, cover;
}

h1,h2,h3{margin:0;font-weight:700;letter-spacing:-.03em;text-wrap:balance;line-height:1.06}
p{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%}
[hidden]{display:none !important}
button,input,select{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--ink);outline-offset:3px}
a,button{-webkit-tap-highlight-color:transparent}
.mono{font-family:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,monospace;font-variant-numeric:tabular-nums}
.eyebrow{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-3)}
.wrap{width:100%;max-width:1180px;margin:0 auto;padding-inline:20px}

/* ---------------- nav ---------------- */
.navwrap{position:sticky;top:calc(env(safe-area-inset-top, 0px) + 14px);z-index:60;padding-inline:16px}
.nav{
  max-width:1040px;margin:0 auto;
  display:flex;align-items:center;gap:8px;
  padding:9px 9px 9px 20px;
  border:1px solid var(--edge);border-radius:999px;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(16px) saturate(1.3);-webkit-backdrop-filter:blur(16px) saturate(1.3);
  box-shadow:var(--shadow);
  transition:background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.is-scrolled{background:rgba(255,255,255,.86);box-shadow:var(--shadow-lg)}
.logo{display:flex;align-items:center;gap:9px;font-weight:800;letter-spacing:-.025em;font-size:17px;margin-right:6px}
/* the logo: the pixel mark on the brand green, reused wherever it appears */
.logo .dot,
.wallet-mark .dot{
  width:24px;height:24px;flex:none;border-radius:7px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 12 12'%3E%3Crect x='-2' y='-2' width='12' height='12' rx='2.6' fill='%232C8340'/%3E%3Cpath d='M1 2 L2 2 L2 1 L3 1 L3 0 L6 0 L6 1 L4 1 L4 2 L3 2 L3 5 L2 5 L2 7 L0 7 L0 6 L1 6 Z M7 6 L6 6 L6 7 L4 7 L4 8 L2 8 L2 7 L3 7 L3 6 L5 6 L5 2 L6 2 L6 1 L8 1 L8 2 L7 2 Z' fill='%23FFFFFF' stroke='%23FFFFFF' stroke-width='0.14' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size:contain;background-repeat:no-repeat;background-position:center;
  box-shadow:0 1px 2px rgba(22,36,26,.12);
}
.nav-links{display:flex;gap:4px;flex:1;min-width:0}
.nav-links a{
  font-size:13.5px;font-weight:600;color:var(--ink-2);padding:8px 14px;border-radius:999px;white-space:nowrap;
  transition:color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-links a:hover{color:var(--ink);background:rgba(255,255,255,.9)}
.nav-links a.is-active{color:var(--ink);background:rgba(22,36,26,.06)}

/* ---------------- buttons ---------------- */
.pill{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:40px;padding:0 18px;line-height:1;
  border:1px solid var(--line-2);background:rgba(255,255,255,.78);color:var(--ink);
  border-radius:999px;font-size:13.5px;font-weight:600;cursor:pointer;white-space:nowrap;
  user-select:none;
  transition:
    background var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    box-shadow var(--t) var(--ease),
    transform var(--t) var(--ease),
    opacity var(--t-fast) var(--ease);
}
.pill:hover{background:var(--card-solid);border-color:var(--ink-3)}
.pill:active{transform:scale(.97);transition-duration:.08s}
.pill:disabled{opacity:.42;cursor:not-allowed}
/* Buttons stay black and white — on this ground that means a near-black
   fill for primary, outlined for everything else. */
.pill.solid,
.pill.primary{background:var(--ink);color:#F6FBF5;border-color:var(--ink);font-weight:700}
.pill.solid:hover,
.pill.primary:hover{background:#0C1710;border-color:#0C1710;box-shadow:0 6px 16px rgba(22,36,26,.18)}
.pill.primary:disabled:hover{background:var(--ink);border-color:var(--ink);box-shadow:none}
@media (hover:hover){
  .pill:hover{transform:translateY(-1px)}
  .pill:active{transform:scale(.97)}
}
/* "off" = the action exists but has nothing to point at yet. It stays
   clickable and says why, rather than failing silently. */
.pill.off{opacity:.45;cursor:help}
.pill.off:hover{opacity:.7;background:rgba(255,255,255,.78);border-color:var(--line-2);transform:none;box-shadow:none}
.pill.lg{min-height:52px;padding:0 28px;font-size:15px}

/* ---------------- hero ---------------- */
.hero{
  position:relative;overflow:hidden;
  padding-block:clamp(52px,8vw,96px) clamp(40px,6vw,68px);
}

/* Soft organic discs drifting behind the type — the reference's own
   motif. Each one carries its own slow, offset drift so they never
   look like a synchronised set. */
.blob{position:absolute;border-radius:50%;pointer-events:none;z-index:0;filter:blur(3px)}
.b1{
  width:340px;height:236px;left:-88px;top:8%;
  background:radial-gradient(60% 60% at 38% 32%, rgba(255,255,255,.92), rgba(168,232,170,.55) 55%, rgba(120,200,120,.26));
  animation:drift-a 26s ease-in-out infinite;
}
.b2{
  width:230px;height:164px;right:-58px;top:16%;
  background:radial-gradient(60% 60% at 40% 30%, rgba(255,255,255,.88), rgba(176,236,178,.5) 58%, rgba(120,200,120,.2));
  animation:drift-b 31s ease-in-out infinite;
}
.b3{
  width:270px;height:120px;left:9%;bottom:-38px;
  background:radial-gradient(60% 60% at 42% 34%, rgba(255,255,255,.82), rgba(184,240,186,.45) 60%, rgba(120,200,120,.16));
  animation:drift-c 35s ease-in-out infinite;
}
.b4{
  width:180px;height:180px;right:8%;bottom:2%;
  background:radial-gradient(60% 60% at 40% 32%, rgba(255,255,255,.8), rgba(190,246,184,.42) 58%, rgba(120,200,120,.14));
  animation:drift-d 29s ease-in-out infinite;
}
@keyframes drift-a{
  0%,100%{transform:translate3d(0,0,0) rotate(-18deg) scale(1)}
  50%{transform:translate3d(26px,-22px,0) rotate(-11deg) scale(1.05)}
}
@keyframes drift-b{
  0%,100%{transform:translate3d(0,0,0) rotate(14deg) scale(1)}
  50%{transform:translate3d(-22px,26px,0) rotate(7deg) scale(1.07)}
}
@keyframes drift-c{
  0%,100%{transform:translate3d(0,0,0) rotate(-7deg) scale(1)}
  50%{transform:translate3d(30px,-14px,0) rotate(-1deg) scale(1.04)}
}
@keyframes drift-d{
  0%,100%{transform:translate3d(0,0,0) rotate(6deg) scale(1)}
  50%{transform:translate3d(-18px,-24px,0) rotate(-5deg) scale(1.08)}
}
@media (max-width:820px){.b1,.b2{display:none}}

.hero-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.05fr .95fr;
  gap:clamp(28px,5vw,72px);align-items:center;
}
.hero-copy{display:flex;flex-direction:column;align-items:flex-start}
.hero h1{font-size:clamp(44px,6.2vw,80px);font-weight:800;max-width:12ch}
.grad{
  background:linear-gradient(96deg,#3FA255 0%,#2C8340 52%,#1C6229 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.lede{margin-top:22px;font-size:clamp(15px,1.5vw,18px);color:var(--ink-2);max-width:42ch}
.hero-cta{display:flex;gap:11px;flex-wrap:wrap;margin-top:30px}
.fineprint{font-size:12px;color:var(--ink-3);max-width:42ch;margin-top:18px}

/* Load-in: each element settles from just below, staggered.
   Fill-mode `backwards` holds the start frame during the delay so nothing
   flashes first — and then lets go. `both` held the end transform forever,
   which silently cancelled every hover lift on the number boxes. */
.rise{animation:rise .8s var(--ease) backwards}
.r1{animation-delay:.02s} .r2{animation-delay:.10s} .r3{animation-delay:.18s}
.r4{animation-delay:.26s} .r5{animation-delay:.34s}
@keyframes rise{
  from{opacity:0;transform:translate3d(0,16px,0)}
  to{opacity:1;transform:translate3d(0,0,0)}
}

/* Motion is decoration here — none of it carries meaning, so it all
   switches off cleanly rather than degrading. */
@media (prefers-reduced-motion: reduce){
  .wallet{animation:none}
  .bump-up,.bump-down{animation:none}
  .wallet-row:hover .tile{transform:none}
  .wallet-badge.is-live::before{animation:none}
  .lore > div{transition:none}
  .blob{animation:none}
  .rise{animation:none;opacity:1;transform:none}
  .feed.live .led{animation:none}
}

/* ---------------- wallet ----------------
   The live market read like a wallet balance: one big figure, the change
   under it, then the supporting numbers as a row list. */
/* width:100% — a centred grid item otherwise shrinks to its content */
.wallet-wrap{display:flex;justify-content:center;width:100%}
.wallet{
  width:100%;max-width:420px;
  /* the stacked hero centres its text — the wallet UI must not inherit it */
  text-align:left;
  background:rgba(255,255,255,.80);
  border:1px solid var(--edge);border-radius:34px;
  padding:24px 22px 20px;
  backdrop-filter:blur(18px) saturate(1.2);-webkit-backdrop-filter:blur(18px) saturate(1.2);
  box-shadow:var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.9);
  animation:hover-float 7s ease-in-out 1.2s infinite;
}
@keyframes hover-float{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-9px,0)}
}

.wallet-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:26px}
.wallet-mark{display:flex;align-items:center;gap:8px;font-weight:800;font-size:15px;letter-spacing:-.025em}
.wallet-badge{
  font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--ink-3);background:rgba(22,36,26,.07);
  border-radius:999px;padding:3px 8px;margin-left:2px;
}
.wallet-badge.is-live{color:var(--green-deep);background:rgba(44,131,64,.14)}
.wallet-badge.is-live::before{
  content:"";display:inline-block;width:5px;height:5px;border-radius:50%;
  background:var(--up);margin-right:5px;vertical-align:1px;
  animation:pulse 2.4s ease-in-out infinite;
}
.wallet-badge.is-err{color:#8A5A12;background:rgba(200,134,43,.14)}

.wallet-chip{
  display:flex;align-items:center;gap:6px;min-width:0;
  background:rgba(255,255,255,.92);border:1px solid var(--edge);
  border-radius:999px;padding:4px 4px 4px 10px;box-shadow:0 3px 10px rgba(28,64,34,.10);
}
.wallet-chip-ico{color:var(--ink-3);flex:none}
.wallet-chip code{
  font-family:"JetBrains Mono",monospace;font-size:10.5px;color:var(--ink-2);
  max-width:108px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.wallet-copy{
  border:0;background:var(--ink);color:#F6FBF5;border-radius:999px;
  font-size:10px;font-weight:800;padding:5px 10px;cursor:pointer;flex:none;letter-spacing:.02em;
  transition:transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.wallet-copy:hover{background:#0C1710}
.wallet-copy:active{transform:scale(.92)}

.wallet-label{font-size:13px;color:var(--ink-3);font-weight:600}
.wallet-big{
  display:block;min-height:1.05em;
  font-size:clamp(40px,4.4vw,54px);font-weight:800;letter-spacing:-.045em;line-height:1.04;margin-top:4px;
  font-variant-numeric:tabular-nums;
}
.wallet-meta{display:flex;align-items:baseline;gap:8px;font-size:13px;font-weight:700;margin-top:5px;font-variant-numeric:tabular-nums}
.wallet-meta-dim{color:var(--ink-3);font-weight:600;font-size:12px}

.wallet-rows{
  margin-top:24px;
  background:rgba(255,255,255,.9);border:1px solid var(--edge);
  border-radius:22px;overflow:hidden;
  box-shadow:0 6px 18px rgba(28,64,34,.08);
}
.wallet-row{
  display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:12px;
  padding:13px 15px;border-top:1px solid rgba(22,36,26,.07);
  transition:background var(--t-fast) var(--ease);
}
.wallet-row:first-child{border-top:0}
.wallet-row:hover{background:rgba(44,131,64,.05)}
.row-id{display:flex;flex-direction:column;min-width:0;line-height:1.26}
.row-id b{font-size:13.5px;font-weight:700;letter-spacing:-.01em}
.row-id i{font-style:normal;font-size:11px;color:var(--ink-3)}
.row-val{
  display:inline-block;text-align:right;white-space:nowrap;
  font-size:14px;font-weight:800;letter-spacing:-.02em;
  font-family:"JetBrains Mono",monospace;font-variant-numeric:tabular-nums;
}

.tile{
  width:34px;height:34px;border-radius:11px;flex:none;
  display:grid;place-items:center;font-size:13px;font-weight:800;color:#FFFFFF;
  box-shadow:inset 0 -1px 2px rgba(0,0,0,.16);
  transition:transform var(--t) var(--ease);
}
.tile-a{background:linear-gradient(160deg,#3FA255,#1C6229)}
.tile-b{background:linear-gradient(160deg,#5EB3C9,#1F6F86)}
.tile-c{background:linear-gradient(160deg,#C8A24A,#8A6516)}

.feed{display:flex;align-items:center;gap:8px;margin-top:16px;font-size:11.5px;color:var(--ink-3)}
.feed .led{width:7px;height:7px;border-radius:50%;background:var(--ink-3);flex:none}
.feed.live .led{background:var(--up);animation:pulse 2.4s ease-in-out infinite}
.feed.err .led{background:#C8862B}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(31,122,61,.45)}
  50%{box-shadow:0 0 0 6px rgba(31,122,61,0)}
}

/* A figure that moved flashes in the direction it moved, then settles.
   Green up, red down — the one place colour still carries meaning. */
@keyframes bump-up{
  0%{transform:translateY(0)}
  28%{transform:translateY(-5px);color:var(--up)}
  100%{transform:translateY(0)}
}
@keyframes bump-down{
  0%{transform:translateY(0)}
  28%{transform:translateY(5px);color:var(--down)}
  100%{transform:translateY(0)}
}
.bump-up{animation:bump-up .75s var(--ease)}
.bump-down{animation:bump-down .75s var(--ease)}

@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;justify-items:center;text-align:center}
  .hero-copy{align-items:center}
  .hero h1{max-width:14ch}
  .hero-cta{justify-content:center}
}

/* ---------------- the four number boxes ---------------- */
.market-wrap{position:relative;z-index:1}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gap)}
.stat{
  display:grid;grid-template-columns:auto 1fr;grid-template-areas:"tile id" "val val";
  align-items:center;gap:11px;
  background:var(--card);border:1px solid var(--edge);border-radius:var(--r);
  padding:var(--pad);box-shadow:var(--shadow);
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), translate .7s var(--ease);
  animation:rise .8s var(--ease) backwards;
}
.stat:nth-child(1){animation-delay:.30s}
.stat:nth-child(2){animation-delay:.38s}
.stat:nth-child(3){animation-delay:.46s}
.stat:nth-child(4){animation-delay:.54s}

.stat .tile{grid-area:tile}
.stat-id{grid-area:id;display:flex;flex-direction:column;min-width:0;line-height:1.28}
.stat-id b{font-size:13.5px;font-weight:700;letter-spacing:-.01em}
.stat-id i{font-style:normal;font-size:11px;color:var(--ink-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.stat-v{
  grid-area:val;display:block;min-height:1.1em;margin-top:14px;
  font-size:26px;font-weight:800;letter-spacing:-.04em;
  font-family:"JetBrains Mono",monospace;font-variant-numeric:tabular-nums;
}
.tile-d{background:linear-gradient(160deg,#9B7FD4,#5B3A8F)}
@media (max-width:980px){.stats{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.stats{grid-template-columns:1fr}}
@media (prefers-reduced-motion: reduce){
  .stat,.step,.lore > div{animation:none;transition:none}
  .stat:hover,.step:hover,.lore > div:hover,.stat:hover .tile,.wallet-row:hover .tile{transform:none}
  .js-reveal .reveal{translate:none;transition:none}
  .pill,.pill:hover,.pill:active{transform:none}
  #toast{transition:none}
  .nav{transition:none}
}

/* ---------------- sections ---------------- */
section{padding-block:clamp(48px,7vw,80px)}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-bottom:32px}
.sec-head h2{font-size:clamp(28px,3.6vw,42px);margin-top:10px}
.sec-head .sub{color:var(--ink-2);max-width:42ch;font-size:14.5px}

/* lore strip */
.lore{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:var(--gap)}
/* direct children only — the label/sub inside are divs too, and a bare
   `.lore div` was styling those as cards as well */
.lore > div{
  border:1px solid var(--edge);border-radius:var(--r);padding:var(--pad);
  background:var(--card);box-shadow:var(--shadow);
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), translate .7s var(--ease);
}
.lore .a{font-size:16px;font-weight:700;letter-spacing:-.02em}
.lore .b{font-size:11px;color:var(--green);letter-spacing:.1em;text-transform:uppercase;margin-top:5px;font-weight:700}

/* ---------------- steps ---------------- */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:var(--gap)}
.step{
  border:1px solid var(--edge);border-radius:var(--r);padding:var(--pad);
  background:var(--card);box-shadow:var(--shadow);
  display:flex;flex-direction:column;gap:10px;
  transition:transform var(--t) var(--ease), box-shadow var(--t) var(--ease), translate .7s var(--ease);
}
/* one lift for every card, and only where a pointer can actually hover —
   on touch screens hover states stick after a tap */
@media (hover:hover){
  .stat:hover,.step:hover,.lore > div:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
  .stat:hover .tile,.wallet-row:hover .tile{transform:scale(1.06) rotate(-3deg)}
}
.step .n{
  width:30px;height:30px;border-radius:50%;display:grid;place-items:center;
  border:1px solid rgba(44,131,64,.28);background:rgba(44,131,64,.11);
  color:var(--green-deep);font-size:12px;font-weight:800;font-family:"JetBrains Mono",monospace;
}
.step h3{font-size:17px}
.step p{font-size:13.5px;color:var(--ink-2)}
.step a.inline{
  color:var(--green-deep);font-weight:600;
  text-decoration:underline;text-decoration-color:rgba(28,98,41,.35);text-underline-offset:3px;
  transition:text-decoration-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.step a.inline:hover{color:var(--ink);text-decoration-color:currentColor}

/* ---------------- facts table ---------------- */
.facts{
  border:1px solid var(--edge);border-radius:var(--r);overflow:hidden;
  background:var(--card);box-shadow:var(--shadow);
}
.fact{
  display:grid;grid-template-columns:1fr auto auto;gap:14px;align-items:center;
  padding:16px 22px;border-top:1px solid var(--line);
}
.fact:first-child{border-top:0}
.fact .k{font-size:14px;color:var(--ink-2)}
.fact .val{font-family:"JetBrains Mono",monospace;font-variant-numeric:tabular-nums;font-size:14px;font-weight:500;text-align:right}
/* Status pills are monochrome. Without colour, the hierarchy is carried
   by fill: solid ink = verified, outlined = attention, faint = unchecked. */
.status{
  font-size:10.5px;font-weight:800;letter-spacing:.1em;padding:4px 11px;border-radius:999px;
  border:1px solid var(--line-2);color:var(--ink-3);white-space:nowrap;
}
.status.ok{background:var(--ink);border-color:var(--ink);color:#F6FBF5}
.status.no{background:transparent;border-color:var(--ink);color:var(--ink)}
.status.pending{background:transparent;border-color:var(--line-2);color:var(--ink-3)}
.proof{font-size:11.5px;color:var(--ink);text-decoration:underline;text-underline-offset:2px;white-space:nowrap;font-weight:600}

/* ---------------- verify ---------------- */
.verify{
  border:1px solid var(--edge);border-radius:var(--r);padding:calc(var(--pad) + 4px);
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(146,244,132,.32) 0%, rgba(255,255,255,0) 58%),
    var(--card);
  box-shadow:var(--shadow);
}
.verify h3{font-size:22px;margin-bottom:10px}
.verify p{font-size:14px;color:var(--ink-2);max-width:62ch}
.verify ul{margin:14px 0 0;padding-left:18px;color:var(--ink-2);font-size:13.5px}
.verify li{margin-bottom:7px}
.linkrow{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}

/* ---------------- scroll reveal ----------------
   Sections settle up into place as they enter. Only `translate` moves —
   opacity stays 1, so nothing is ever hidden while it waits. `translate`
   is a separate property from `transform`, so it never fights the hover
   lift on the cards. Applied only once app.js adds .js-reveal. */
.js-reveal .reveal{translate:0 22px;transition:translate .8s var(--ease)}
.js-reveal .reveal.in{translate:0 0}
.js-reveal .reveal:nth-child(2){transition-delay:.06s}
.js-reveal .reveal:nth-child(3){transition-delay:.12s}
.js-reveal .reveal:nth-child(4){transition-delay:.18s}
.js-reveal .reveal:nth-child(5){transition-delay:.24s}

/* ---------------- footer ---------------- */
footer{
  border-top:1px solid var(--line);padding-block:36px 46px;
  background:rgba(255,255,255,.55);
}
.foot-grid{display:flex;gap:26px;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}
.foot-links{display:flex;gap:20px;flex-wrap:wrap;font-size:13px;color:var(--ink-2)}
.foot-links a{transition:color var(--t-fast) var(--ease)}
.foot-links a:hover{color:var(--ink)}
.disclaimer{max-width:70ch;font-size:11.5px;line-height:1.65;color:var(--ink-3);margin-top:26px}

/* ---------------- toast ---------------- */
#toast{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:calc(env(safe-area-inset-bottom,0px) + 22px);z-index:90;
  border:1px solid var(--edge);background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  color:var(--ink);border-radius:999px;padding:12px 22px;font-size:13px;font-weight:600;
  box-shadow:var(--shadow-lg);
  opacity:0;translate:0 10px;pointer-events:none;
  transition:opacity var(--t) var(--ease), translate var(--t) var(--ease);
}
#toast.show{opacity:1;translate:0 0}

/* ---------------- responsive ---------------- */
@media (max-width:900px){.nav-links{display:none}}
@media (max-width:560px){
  .wrap{padding-inline:16px}
  .hide-sm{display:none}
  .nav{padding-left:16px}
  .fact{grid-template-columns:1fr auto;row-gap:8px}
  .fact .proof{grid-column:1/-1;text-align:right}
  .wallet{padding:20px 16px 18px;border-radius:28px}
  .wallet-chip code{max-width:84px}
}
