/* ===================================================================
   FRIXY — landing styles
   Light editorial look: Fraunces display serif over a Figtree UI,
   near-white page, one dark ink for buttons, violet as the only
   accent. Everything else is grayscale so the pets carry the
   colour.
   =================================================================== */

:root{
  --ink:#0f1728;          /* headings, primary text */
  --ink-btn:#101828;      /* solid buttons */
  --ink-btn-hover:#172033;
  --muted:#667085;        /* body copy */
  --faint:#98a1b2;        /* captions, meta */
  --line:#eaecf0;         /* hairlines, card borders */
  --surface:#f2f3f6;      /* chips, inset panels */
  --page:#fafbfc;
  --white:#fff;

  --violet:#7e56d8;
  --violet-tint:#f4ebff;
  --green:#12b76a;
  --green-tint:#e7f8f0;
  --red:#f04438;
  --amber:#fdb022;
  --amber-tint:#fff5e6;
  --blue:#2e90fa;
  --blue-tint:#eaf3ff;

  --r-sm:8px; --r-md:12px; --r-lg:16px; --r-xl:24px; --r-pill:99px;

  --shadow-sm:0 1px 2px rgba(16,24,40,.05);
  --shadow-md:0 4px 16px -4px rgba(16,24,40,.08), 0 1px 3px rgba(16,24,40,.04);
  --shadow-lg:0 24px 48px -12px rgba(16,24,40,.14);

  --display:"Fraunces",Georgia,"Times New Roman",serif;
  --body:"Figtree",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  --gutter:24px;
  --maxw:1120px;
}

*,*::before,*::after{box-sizing:border-box}

/* An author `display` rule outranks the UA rule for [hidden], so a
   hidden flex element stays visible. Make the attribute authoritative. */
[hidden]{display:none !important}

html{-webkit-text-size-adjust:100%;text-size-adjust:100%;scroll-behavior:smooth}

body{
  margin:0;
  background:var(--page);
  color:var(--ink);
  font-family:var(--body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

img,canvas{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;border:0;background:none;cursor:pointer}

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

/* ---------- typography ---------- */
h1,h2,h3{font-family:var(--display);font-weight:600;color:var(--ink);letter-spacing:-.015em;margin:0}
h1{font-size:clamp(34px,5.4vw,56px);line-height:1.12}
h2{font-size:clamp(28px,4vw,40px);line-height:1.18}
h3{font-size:18px;line-height:1.35;letter-spacing:-.01em}
.lede{color:var(--muted);font-size:17px;line-height:1.6;margin:16px 0 0}
.section-head{text-align:center;max-width:640px;margin:0 auto}
.section-head .lede{font-size:16px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:44px;padding:0 22px;border-radius:var(--r-pill);
  font-weight:600;font-size:15px;
  transition:background-color .18s ease,transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.btn-dark{background:var(--ink-btn);color:#fff;box-shadow:var(--shadow-md)}
.btn-dark:hover{background:var(--ink-btn-hover);transform:translateY(-1px);box-shadow:var(--shadow-lg)}
.btn-ghost{background:var(--white);color:var(--ink);border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.btn-ghost:hover{background:var(--surface);transform:translateY(-1px)}
.btn-sm{height:36px;padding:0 16px;font-size:14px}
.btn:disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}

/* ---------- badges & chips ---------- */
.badge{
  display:inline-flex;align-items:center;gap:7px;
  height:30px;padding:0 14px;border-radius:var(--r-pill);
  background:var(--violet-tint);color:var(--violet);
  font-size:13px;font-weight:700;
}
.badge svg{width:14px;height:14px}
.chip{
  display:inline-flex;align-items:center;gap:6px;
  height:28px;padding:0 11px;border-radius:var(--r-sm);
  background:var(--surface);color:var(--muted);
  font-size:12px;font-weight:700;
}
.chip svg{width:14px;height:14px;flex:none}
.chip-rarity{color:#fff;padding:0 10px;height:24px;font-size:11px;letter-spacing:.02em;border-radius:6px}

/* ---------- header ---------- */
.site-head{
  position:sticky;top:0;z-index:40;
  background:rgba(250,251,252,.72);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
.site-head.scrolled{border-bottom-color:var(--line)}
.head-row{display:flex;align-items:center;justify-content:space-between;height:64px;position:relative}
.brand{display:flex;align-items:center;gap:9px;font-family:var(--display);font-size:21px;font-weight:600;letter-spacing:-.02em}
.brand svg{width:28px;height:28px}
.head-actions{display:flex;align-items:center;gap:10px}
/* the launch strip: ticker, contract address, launch time, countdown.
   Absolutely centred so it stays in the middle of the bar no matter
   how wide the brand or the buttons on either side get. */
.nav-ca{
  position:absolute;left:50%;transform:translateX(-50%);
  display:inline-flex;align-items:center;gap:10px;height:36px;padding:0 14px;
  border-radius:var(--r-pill);background:var(--surface);
  font-size:13px;font-weight:600;color:var(--muted);
  transition:background-color .18s ease;white-space:nowrap;
  max-width:calc(100% - 380px);
}
.nav-ca:hover{background:#e6e8ee}
.nav-ca b{color:var(--ink);font-weight:700;font-size:13.5px}
.nav-ca code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:12.5px;font-weight:600;color:var(--ink);
}
.nav-sep{width:1px;height:16px;background:var(--line);flex:none}
.nav-date{font-weight:700;color:var(--ink)}
.nav-cd{font-variant-numeric:tabular-nums;font-weight:700;color:var(--violet)}
.nav-cd.late{color:#b54708}
.nav-cd.live{color:var(--green)}
.icon-btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:var(--r-pill);
  color:var(--ink);transition:background-color .18s ease;
}
.icon-btn:hover{background:var(--surface)}
.icon-btn svg{width:16px;height:16px}
.icon-btn.soon{opacity:.38}
.icon-btn.soon:hover{opacity:.62;background:var(--surface)}

/* ---------- hero ---------- */
.hero{padding:76px 0 24px;text-align:center}
.hero h1{margin:20px auto 0;max-width:760px}
.hero .lede{max-width:520px;margin-left:auto;margin-right:auto}
.hero-cta{margin-top:34px;display:flex;flex-direction:column;align-items:center;gap:12px}
.hero-note{color:var(--faint);font-size:14px}

/* the pet parade under the hero */
.parade{
  margin-top:26px;
  display:flex;align-items:flex-end;justify-content:center;
  gap:clamp(4px,2.4vw,34px);
  padding-bottom:8px;
}
.parade-pet{width:clamp(88px,13vw,168px);height:clamp(88px,13vw,168px)}
.parade-pet.lift{margin-bottom:clamp(14px,3vw,38px)}

/* ---------- generic section ---------- */
.section{padding:84px 0;border-top:1px solid var(--line);background:var(--white)}
.section.alt{background:var(--page)}

/* ---------- versus block ---------- */
.versus{
  margin-top:52px;
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;gap:clamp(12px,3vw,36px);
}
.fighter{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  box-shadow:var(--shadow-md);overflow:hidden;
}
.fighter-name{
  text-align:center;font-weight:700;font-size:15px;
  padding:14px 12px 10px;
}
.fighter-stage{
  position:relative;margin:0 14px;border:1px solid var(--line);border-radius:var(--r-md);
  background:linear-gradient(180deg,#fff 0%,var(--surface) 100%);
  height:176px;
}
.fighter-stage canvas{position:absolute;inset:10px;width:calc(100% - 20px);height:calc(100% - 20px)}
.stage-tag{position:absolute;top:9px;left:9px;z-index:2}
.stage-rarity{position:absolute;top:9px;right:9px;z-index:2}
.fighter-xp{padding:14px 14px 0}
.xp-row{display:flex;justify-content:space-between;font-size:12px;font-weight:700;color:var(--ink)}
.xp-bar{height:5px;border-radius:var(--r-pill);background:var(--surface);margin-top:7px;overflow:hidden}
.xp-bar span{display:block;height:100%;border-radius:var(--r-pill);background:var(--ink)}
.fighter-stats{display:flex;justify-content:space-between;gap:4px;padding:14px}
.stat{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;color:var(--ink)}
.stat svg{width:15px;height:15px}
.fighter-move{
  display:flex;align-items:center;gap:8px;
  margin:0 14px;padding:10px 12px;border-radius:var(--r-md);
  background:var(--violet-tint);color:#53389e;
  font-size:12.5px;font-weight:600;line-height:1.35;
}
.fighter-move svg{width:14px;height:14px;flex:none}
.fighter-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px}
.value b{display:block;font-size:15px;font-weight:700;line-height:1.2}
.value span{font-size:11.5px;color:var(--faint)}

.versus-mid{display:flex;flex-direction:column;align-items:center;gap:12px;min-width:104px}
.vs-pill{
  background:var(--surface);border-radius:var(--r-md);
  padding:9px 18px;text-align:center;
}
.vs-pill b{display:block;font-size:17px;font-weight:700;line-height:1.1}
.vs-pill span{font-size:11.5px;color:var(--faint)}
.vs-mark{
  font-family:var(--display);font-size:26px;font-weight:600;
  background:var(--amber-tint);color:#b54708;
  border-radius:var(--r-md);padding:8px 20px;
}
.vs-reward{background:var(--green-tint);border-radius:var(--r-md);padding:9px 18px;text-align:center}
.vs-reward b{display:block;font-size:16px;font-weight:700;color:#027a48;line-height:1.1}
.vs-reward span{font-size:11.5px;color:#12b76a}

/* ---------- split section ---------- */
.split{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(28px,5vw,64px);align-items:center}
.bullets{list-style:none;margin:28px 0 0;padding:0;display:grid;gap:16px}
.bullets li{display:flex;align-items:center;gap:12px;font-size:15px;font-weight:500}
.bullet-ico{
  flex:none;width:34px;height:34px;border-radius:var(--r-sm);
  display:grid;place-items:center;background:var(--surface);color:var(--ink);
}
.bullet-ico svg{width:17px;height:17px}

/* stacked battle-log cards */
.log-stack{position:relative;display:grid;gap:14px}
.log-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  box-shadow:var(--shadow-md);overflow:hidden;
}
.log-card:nth-child(1){margin-right:clamp(0px,4vw,52px)}
.log-card:nth-child(3){margin-left:clamp(0px,4vw,52px)}
.log-body{display:flex;align-items:center;gap:10px;padding:12px}
.log-pet{flex:none;width:58px;height:58px;border-radius:var(--r-md);background:var(--surface)}
.log-pet canvas{width:100%;height:100%}
.log-side{flex:1;min-width:0}
.log-side b{display:block;font-size:13.5px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.log-nums{display:flex;flex-wrap:wrap;gap:8px;margin-top:5px;font-size:11.5px;font-weight:700}
.num{display:inline-flex;align-items:center;gap:3px}
.num svg{width:12px;height:12px}
.num.hp{color:var(--red)}
.num.dmg{color:var(--amber)}
.num.exp{color:var(--green)}
.num.lvl{color:var(--violet);background:var(--violet-tint);border-radius:5px;padding:1px 6px}
.log-foot{
  display:flex;align-items:center;justify-content:space-between;
  padding:9px 12px;background:var(--green-tint);
  font-size:12px;font-weight:700;color:#027a48;
}
.log-foot .left{display:inline-flex;align-items:center;gap:6px}
.log-foot svg{width:14px;height:14px}

/* ---------- feature grid ---------- */
.features{margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.feature{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .2s ease,box-shadow .2s ease;
}
.feature:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.feature-art{
  height:170px;position:relative;
  background:linear-gradient(180deg,var(--white) 0%,var(--surface) 100%);
  border-bottom:1px solid var(--line);
}
.feature-art canvas{position:absolute;inset:14px;width:calc(100% - 28px);height:calc(100% - 28px)}
.feature-art .float{
  position:absolute;right:12px;top:12px;z-index:2;
  width:34px;height:34px;padding:0;
  display:grid;place-items:center;
  background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-sm);color:var(--violet);
  box-shadow:var(--shadow-sm);
}
.feature-art .float svg{width:17px;height:17px}
.feature-text{padding:18px 20px 22px}
.feature-text p{margin:7px 0 0;color:var(--muted);font-size:14px;line-height:1.55}

/* ---------- token panel ---------- */
.token-panel{
  margin-top:44px;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r-xl);box-shadow:var(--shadow-md);
  padding:clamp(24px,4vw,40px);
}
.token-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:26px}
.token-cell{background:var(--surface);border-radius:var(--r-md);padding:16px}
.token-cell span{display:block;font-size:12px;font-weight:700;color:var(--faint);letter-spacing:.03em;text-transform:uppercase}
.token-cell b{display:block;margin-top:5px;font-size:19px;font-weight:700;letter-spacing:-.01em}
.token-cell em{display:block;margin-top:3px;font-size:12px;font-style:normal;font-weight:600;color:var(--violet)}
.token-cell em[hidden]{display:none}
.ca-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.ca-box{
  flex:1;min-width:240px;display:flex;align-items:center;gap:10px;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);
  padding:13px 16px;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:13.5px;font-weight:600;overflow:hidden;
}
.ca-box code{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.countdown{display:flex;gap:10px;margin-top:22px}
.cd-cell{background:var(--surface);border-radius:var(--r-md);padding:12px 0;text-align:center;flex:1}
.cd-cell b{display:block;font-size:24px;font-weight:700;font-variant-numeric:tabular-nums;line-height:1.05}
.cd-cell span{font-size:11px;font-weight:700;color:var(--faint);text-transform:uppercase;letter-spacing:.05em}

/* ---------- mobile CTA ---------- */
.pocket{
  background:var(--ink);color:#fff;border-radius:var(--r-xl);
  padding:clamp(30px,5vw,56px);text-align:center;
  box-shadow:var(--shadow-lg);
}
.pocket h2{color:#fff}
.pocket .lede{color:#cdd2db;max-width:440px;margin-left:auto;margin-right:auto}
.waitlist{display:flex;gap:10px;justify-content:center;margin:26px auto 0;max-width:420px}
.waitlist input{
  flex:1;height:46px;padding:0 16px;border-radius:var(--r-pill);
  border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);
  color:#fff;font:inherit;font-size:15px;
}
.waitlist input::placeholder{color:#98a1b2}
.waitlist input:focus{outline:2px solid var(--violet);outline-offset:1px}
.waitlist .btn{background:#fff;color:var(--ink);flex:none}
.waitlist .btn:hover{background:#eaecf0}
.pocket-note{margin-top:14px;font-size:13px;color:#98a1b2;min-height:20px}

/* ---------- footer ---------- */
.site-foot{border-top:1px solid var(--line);background:var(--page);padding:36px 0}
.foot-row{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.foot-links{display:flex;align-items:center;gap:8px}
.foot-note{color:var(--faint);font-size:13px;max-width:560px;line-height:1.5}

/* ---------- wallet modal ---------- */
.overlay{
  position:fixed;inset:0;z-index:80;display:none;
  align-items:center;justify-content:center;padding:20px;
  background:rgba(16,24,40,.45);
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
}
.overlay.open{display:flex}
.modal{
  width:100%;max-width:404px;background:var(--white);
  border-radius:var(--r-xl);box-shadow:var(--shadow-lg);
  padding:26px;position:relative;
}
.modal h2{font-size:22px;text-align:center}
.modal-sub{text-align:center;color:var(--muted);font-size:14px;margin:8px 0 22px}
.modal-close{
  position:absolute;top:14px;right:14px;width:32px;height:32px;
  border-radius:var(--r-pill);display:grid;place-items:center;color:var(--faint);
}
.modal-close:hover{background:var(--surface);color:var(--ink)}
.modal-close svg{width:14px;height:14px}
.wallet-item{
  width:100%;display:flex;align-items:center;gap:12px;
  padding:14px;border:1px solid var(--line);border-radius:var(--r-md);
  background:var(--white);margin-bottom:10px;text-align:left;
  transition:border-color .18s ease,background-color .18s ease,transform .18s ease;
}
.wallet-item:hover{border-color:#d0d5dd;background:var(--surface);transform:translateY(-1px)}
.wallet-item img,.wallet-item svg{width:30px;height:30px;flex:none}
.wallet-item b{display:block;font-size:14.5px;font-weight:700}
.wallet-item small{color:var(--faint);font-size:12.5px}
.wallet-item .detected{margin-left:auto;color:var(--green);font-size:11.5px;font-weight:700}
.wallet-status{
  margin-top:14px;min-height:20px;text-align:center;
  font-size:13px;color:var(--muted);
}
.wallet-status.err{color:var(--red)}
.wallet-status.ok{color:var(--green)}
.modal-foot{margin-top:16px;text-align:center;font-size:12px;color:var(--faint);line-height:1.5}

/* ---------- toast ---------- */
.toast{
  position:fixed;left:50%;bottom:28px;transform:translate(-50%,16px);
  background:var(--ink);color:#fff;padding:12px 20px;border-radius:var(--r-pill);
  font-size:14px;font-weight:600;box-shadow:var(--shadow-lg);
  opacity:0;pointer-events:none;transition:opacity .2s ease,transform .2s ease;z-index:90;
}
.toast.show{opacity:1;transform:translate(-50%,0)}

/* ---------- responsive ---------- */
@media (max-width:960px){
  .features{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .versus{grid-template-columns:1fr;gap:18px}
  .versus-mid{flex-direction:row;flex-wrap:wrap;justify-content:center}
  .token-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  :root{--gutter:16px}
  .section{padding:60px 0}
  .hero{padding:52px 0 16px}
  .features{grid-template-columns:1fr}
  .parade-pet:nth-child(n+4){display:none}
  .waitlist{flex-direction:column}
  .waitlist .btn{width:100%}
  .head-row{height:56px}
  .brand{font-size:19px}
  .nav-ca{gap:7px;padding:0 10px;font-size:11.5px}
}

/* ---------- valley band ---------- */
.valley-band{
  display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(24px,5vw,56px);align-items:center;
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-xl);
  box-shadow:var(--shadow-md);padding:clamp(24px,4vw,44px);
}
.valley-copy h2{margin-top:16px}
.valley-art{
  position:relative;display:flex;align-items:flex-end;justify-content:center;gap:4px;
  background:linear-gradient(160deg,#e8f1ea 0%,#cfe6f5 100%);
  border:1px solid var(--line);border-radius:var(--r-lg);
  min-height:230px;padding:18px;overflow:hidden;
}
.valley-art::after{
  content:"";position:absolute;left:8%;right:8%;bottom:16%;height:42%;
  background:radial-gradient(ellipse at center,rgba(16,24,40,.12),transparent 70%);
}
.valley-art canvas{width:clamp(78px,11vw,124px);height:clamp(78px,11vw,124px);position:relative;z-index:1}
.valley-art canvas[data-valley="1"]{margin-bottom:22px}
@media (max-width:960px){
  .valley-band{grid-template-columns:1fr}
}

/* ---------- launch line ---------- */
.launch-line{
  margin:22px 0 0;font-size:13.5px;font-weight:700;
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
}
.launch-line[hidden]{display:none}
.launch-line .dot{width:8px;height:8px;border-radius:50%;background:var(--green);flex:none}
.launch-line.soon{color:var(--muted)}
.launch-line.live{color:#027a48}
.launch-line.late{color:#b54708}
.launch-line.late .dot{background:var(--amber)}
.countdown.late .cd-cell b{color:var(--faint)}

/* Below this the brand, the launch strip and the buttons cannot share
   one line, so the header becomes two rows and the strip keeps its own. */
@media (max-width:1080px){
  .head-row{height:auto;flex-wrap:wrap;padding:10px 0;row-gap:8px}
  .nav-ca{
    position:static;transform:none;order:3;
    width:100%;max-width:none;justify-content:center;overflow:hidden;
  }
  .nav-ca .nav-hide-sm{display:inline-flex}
  .nav-ca code{overflow:hidden;text-overflow:ellipsis}
}
@media (max-width:560px){
  .nav-ca{gap:7px;padding:0 10px;font-size:11.5px}
  .nav-ca .nav-hide-sm{display:none}
}
@media (max-width:420px){
  .nav-ca .nav-ca-val{overflow:hidden;text-overflow:ellipsis}
  .nav-ca{gap:6px}
}

.foot-domain{
  font-size:13.5px;font-weight:700;color:var(--faint);
  letter-spacing:.01em;
}

/* wallet rows are built from whatever the visitor has installed */
.wallet-item img.w-icon{width:30px;height:30px;border-radius:7px;object-fit:contain;background:var(--surface)}
.wallet-fallback{
  margin-top:4px;padding:14px;border:1px dashed var(--line);border-radius:var(--r-md);
  color:var(--muted);font-size:13px;line-height:1.5;text-align:center;
}
.wallet-fallback a{color:var(--violet);font-weight:700}

/* ---------- coming-soon store row ----------
   Deliberately NOT Apple's or Google's official badge artwork: those are
   licensed assets that may only be used for an app already live on the
   store. These are our own buttons that name the stores instead. */
.stores{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:26px 0 0}
.store{
  display:inline-flex;align-items:center;gap:11px;
  padding:10px 20px 10px 16px;border-radius:12px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.store svg{width:24px;height:24px;flex:none;opacity:.92}
.store-txt{display:flex;flex-direction:column;line-height:1.15;text-align:left}
.store-txt small{font-size:10.5px;font-weight:600;color:#98a1b2;letter-spacing:.02em}
.store-txt b{font-size:16px;font-weight:700;letter-spacing:-.01em}
@media (max-width:520px){
  .stores{gap:10px}
  .store{flex:1;min-width:0;justify-content:center;padding:10px 12px}
  .store-txt b{font-size:14.5px}
}

/* a wallet row that is not installed links to its download page */
.wallet-item.install{opacity:.72}
.wallet-item.install:hover{opacity:1}
.w-letter{
  display:grid;place-items:center;width:30px;height:30px;border-radius:7px;
  color:#fff;font-weight:800;font-size:15px;flex:none;
}
.tag-install{
  margin-left:auto;font-size:11.5px;font-weight:700;color:var(--violet);
  background:var(--violet-tint);padding:4px 9px;border-radius:var(--r-pill);
}

/* a wallet row that is not installed links to its download page instead */
.wallet-item.install{opacity:.7;text-decoration:none}
.wallet-item.install:hover{opacity:1}
.w-letter{
  display:grid;place-items:center;width:30px;height:30px;border-radius:7px;
  color:#fff;font-weight:800;font-size:15px;flex:none;letter-spacing:-.02em;
}
.tag-install{
  margin-left:auto;font-size:11.5px;font-weight:700;color:var(--violet);
  background:var(--violet-tint);padding:4px 10px;border-radius:var(--r-pill);
}
