:root {
  --ink: #070a0e;
  --ink-2: #0c1117;
  --surface: rgba(255, 255, 255, .025);
  --surface-2: rgba(255, 255, 255, .05);
  --line: rgba(148, 163, 184, .14);
  --line-strong: rgba(148, 163, 184, .26);
  --text: #e9eff5;
  --text-dim: #9fb1bf;
  --text-faint: #5f7180;
  --emerald: #34d399;
  --cyan: #22d3ee;
  --accent: linear-gradient(118deg, #34d399 0%, #22d3ee 100%);
  --danger: #f87171;
  --amber: #fbbf24;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.page { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.layout { display: grid; grid-template-columns: 1fr; gap: 4px; max-width: 660px; margin: 0 auto; padding-top: 40px; }
@media (min-width: 940px) {
  .layout { grid-template-columns: 380px minmax(0, 1fr); gap: 60px; max-width: none; padding-top: 72px; align-items: start; }
  .hero { position: sticky; top: 56px; }
}
a { color: var(--emerald); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: #f2f7fb; font-weight: 700; }
em { color: var(--cyan); font-style: normal; }
code { font-family: var(--font-mono); font-size: .9em; }

/* ===================== Background layers ===================== */
.bg-grid, .bg-glow, .bg-grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 80%);
}
.bg-glow {
  background:
    radial-gradient(60% 50% at 76% -8%, rgba(34, 211, 238, .16), transparent 60%),
    radial-gradient(55% 45% at 16% 4%, rgba(52, 211, 153, .14), transparent 62%),
    radial-gradient(40% 40% at 50% 110%, rgba(34, 211, 238, .08), transparent 70%);
}
.bg-grain {
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== Hero ===================== */
.hero { padding: 0 0 24px; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  color: var(--text-dim); text-transform: uppercase; margin-bottom: 26px;
  padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface);
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: pulse 2.4s infinite; }
.kicker .muted-mono { color: var(--emerald); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, .5); } 70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.04; letter-spacing: -.025em;
  margin: 0 0 22px; color: #fff;
}
.grad {
  background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.lead { font-size: clamp(16px, 2.1vw, 19px); color: var(--text-dim); max-width: 600px; margin: 0 0 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em;
  padding: 7px 12px; border-radius: 8px; border: 1px solid var(--line-strong);
  color: var(--text-dim); background: var(--surface);
}
.chip.accent { color: #04140d; background: var(--accent); border-color: transparent; font-weight: 700; box-shadow: 0 4px 18px rgba(52, 211, 153, .25); }

/* ===================== Pipeline ===================== */
.pipeline { padding: 18px 0 30px; }
.step {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding-bottom: 22px;
  opacity: 0; transform: translateY(16px);
  animation: rise .6s cubic-bezier(.22, .61, .36, 1) forwards;
}
.step:nth-child(1) { animation-delay: .05s; }
.step:nth-child(2) { animation-delay: .13s; }
.step:nth-child(3) { animation-delay: .21s; }
.step:nth-child(4) { animation-delay: .29s; }
.step:nth-child(5) { animation-delay: .37s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* connector line between nodes */
.step::before {
  content: ""; position: absolute; left: 28px; top: 54px; bottom: -2px; width: 2px;
  transform: translateX(-50%);
  background: var(--line); z-index: 0;
  transition: background .5s ease;
}
.step:last-of-type::before { display: none; }
.step.done::before { background: linear-gradient(180deg, var(--emerald), var(--cyan)); }

.rail { display: flex; justify-content: center; }
.node {
  position: relative; z-index: 1; margin-top: 4px;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  color: var(--text-dim); background: var(--ink-2);
  border: 1px solid var(--line-strong);
  transition: all .4s ease;
}
.step.done .node {
  color: #04140d; background: var(--accent); border-color: transparent;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .12), 0 0 26px rgba(52, 211, 153, .45);
  font-size: 0;
}
.step.done .node::after { content: "✓"; font-size: 19px; }

/* card */
.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 24px 26px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .4s ease, box-shadow .4s ease;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent); }
.step.done .card { border-color: rgba(52, 211, 153, .22); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.card h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2.6vw, 23px); color: #fff; margin: 0; letter-spacing: -.01em; }
.card p { margin: 0 0 16px; color: var(--text-dim); }
.card p:last-child { margin-bottom: 0; }
.micro { font-size: 13px; color: var(--text-faint); }
.micro a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; }
.ok-mono { font-family: var(--font-mono); color: var(--emerald); font-size: .92em; }

/* ===================== Pills ===================== */
.pill {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 7px;
  background: rgba(148, 163, 184, .1); color: var(--text-faint); border: 1px solid var(--line);
  white-space: nowrap;
}
.pill[data-state="ok"]   { background: rgba(52, 211, 153, .12); color: var(--emerald); border-color: rgba(52, 211, 153, .35); }
.pill[data-state="work"] { background: rgba(251, 191, 36, .12); color: var(--amber); border-color: rgba(251, 191, 36, .35); }
.pill[data-state="err"]  { background: rgba(248, 113, 113, .12); color: var(--danger); border-color: rgba(248, 113, 113, .35); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .08s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, opacity .2s;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn .arr { font-family: var(--font-mono); }
.btn.primary { background: var(--surface-2); border-color: var(--line-strong); color: var(--text); }
.btn.primary:hover:not(:disabled) { background: rgba(255, 255, 255, .09); border-color: rgba(52, 211, 153, .5); box-shadow: 0 0 24px rgba(52, 211, 153, .12); }
.btn.accent { background: var(--accent); color: #04140d; font-weight: 700; box-shadow: 0 8px 30px rgba(52, 211, 153, .28); }
.btn.accent:hover:not(:disabled) { box-shadow: 0 12px 42px rgba(52, 211, 153, .45); }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--text-dim); }
.btn.ghost:hover { border-color: var(--line-strong); color: var(--text); }
.btn.tiny { padding: 6px 11px; font-size: 12px; background: var(--surface-2); border-color: var(--line); color: var(--text-dim); }
.btn.big { width: 100%; padding: 16px; font-size: 16px; border-color: rgba(34, 211, 238, .4); }
.btn.big:hover:not(:disabled) { border-color: var(--cyan); box-shadow: 0 0 36px rgba(34, 211, 238, .2); }
/* The hero CTA of step 5 — always pops, even before you reach the step */
.btn.openvote { background: var(--accent); color: #04140d; border-color: transparent; font-weight: 800; font-size: 17px; padding: 18px; animation: votepulse 2.2s ease-in-out infinite; }
.btn.openvote:hover:not(:disabled) { border-color: transparent; box-shadow: 0 14px 50px rgba(52, 211, 153, .6); }
@keyframes votepulse { 0%, 100% { box-shadow: 0 8px 26px rgba(52, 211, 153, .30); } 50% { box-shadow: 0 12px 48px rgba(52, 211, 153, .58); } }

/* ===================== Notes ===================== */
.note { display: flex; gap: 13px; padding: 15px 17px; border-radius: 13px; font-size: 14.5px; margin-top: 4px; }
.note .note-ico { font-size: 16px; line-height: 1.5; flex-shrink: 0; }
.note.danger { background: rgba(248, 113, 113, .07); border: 1px solid rgba(248, 113, 113, .26); color: #fecaca; }
.note.danger strong { color: #fff; }
.note.info { background: rgba(34, 211, 238, .06); border: 1px solid rgba(34, 211, 238, .22); color: var(--text-dim); }
.note.why { margin: 4px 0 34px; }

/* ===================== Learn-more (details) ===================== */
.learn {
  margin: 6px 0 36px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .3s ease;
}
.learn[open] { border-color: rgba(34, 211, 238, .28); }
.learn summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 11px;
  padding: 16px 18px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .02em; color: var(--text-dim);
  transition: color .2s ease, background .2s ease;
}
.learn summary::-webkit-details-marker { display: none; }
.learn summary:hover { color: var(--text); background: rgba(255, 255, 255, .02); }
.learn-ico { color: var(--cyan); font-size: 15px; flex-shrink: 0; }
.learn-title { flex: 1; }
.learn-chevron { color: var(--text-faint); transition: transform .3s ease; }
.learn[open] .learn-chevron { transform: rotate(180deg); color: var(--cyan); }
.learn-body {
  padding: 2px 20px 20px 47px;
  border-top: 1px solid var(--line);
  animation: fadeIn .35s ease;
}
.learn-body p { margin: 14px 0 0; color: var(--text-dim); font-size: 14.5px; }
.learn-body p:first-child { margin-top: 16px; }
.learn-body code { color: var(--cyan); background: rgba(34, 211, 238, .08); padding: 1px 6px; border-radius: 5px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ===================== Address / manual ===================== */
.manual-row { display: flex; gap: 8px; margin-top: 4px; }
.manual-row input {
  flex: 1; min-width: 0; padding: 11px 13px; border-radius: 10px;
  background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--text);
  font-family: var(--font-mono); font-size: 13.5px;
}
.manual-row input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(52, 211, 153, .12); }
.addr-box {
  display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-top: 14px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 11px; padding: 11px 13px;
}
.addr-lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--text-faint); }
.addr-box code { color: var(--cyan); word-break: break-all; flex: 1; min-width: 120px; }

/* ===================== Faucet result ===================== */
.result { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; }
.result.work { background: rgba(251, 191, 36, .08); border: 1px solid rgba(251, 191, 36, .3); color: #fde68a; }
.result.ok { background: rgba(52, 211, 153, .09); border: 1px solid rgba(52, 211, 153, .32); color: #a7f3d0; }
.result.err { background: rgba(248, 113, 113, .08); border: 1px solid rgba(248, 113, 113, .3); color: #fecaca; }
.result a { color: inherit; font-weight: 700; text-decoration: underline; }
.spinner { display: inline-block; width: 13px; height: 13px; vertical-align: -1px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; margin-right: 5px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== Vote step ===================== */
/* Vote step is always full-colour + cyan-highlighted so its CTA stands out from the start */
.step.vote .card { border-color: rgba(34, 211, 238, .4); box-shadow: 0 0 50px rgba(34, 211, 238, .1); }
.step.vote.active .card { border-color: rgba(34, 211, 238, .55); box-shadow: 0 0 60px rgba(34, 211, 238, .16); }

.nominee { position: relative; overflow: hidden; border-radius: 14px; padding: 18px 20px; margin: 4px 0 18px; background: linear-gradient(135deg, #0a1512, #0a1418); border: 1px solid rgba(52, 211, 153, .2); }
.nominee-glow { position: absolute; inset: -40% auto auto -10%; width: 60%; height: 200%; background: radial-gradient(closest-side, rgba(52, 211, 153, .22), transparent); animation: drift 7s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translateX(60%) translateY(10%); } }
.nominee-row { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.nominee-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.nominee-sub { font-size: 12.5px; color: var(--text-dim); margin-top: 3px; }
.upvote-chip { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--emerald); background: rgba(52, 211, 153, .14); border: 1px solid rgba(52, 211, 153, .4); border-radius: 9px; padding: 8px 12px; white-space: nowrap; }

/* ===================== Screenshots (drop-in) ===================== */
.shot { margin: 16px 0 0; }
.shot img { width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--ink-2); }
.shot figcaption { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .02em; color: var(--text-faint); margin-top: 8px; }
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 16px; }
.shots:empty { display: none; }
.shots .shot { margin: 0; }

.howto { margin: 18px 0 10px; padding-left: 20px; color: var(--text-dim); }
.howto li { margin-bottom: 11px; }
.howto li::marker { color: var(--emerald); font-family: var(--font-mono); font-size: .85em; }
.thanks { font-family: var(--font-mono); color: var(--emerald); font-weight: 500; margin: 6px 0 0; }

/* ===================== Footer ===================== */
.foot { border-top: 1px solid var(--line); padding: 38px 0 64px; margin-top: 14px; text-align: center; }
.foot-brand { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; letter-spacing: -.01em; }
.foot-tag { color: var(--text-dim); font-size: 14px; margin: 6px 0 12px; }
.foot .micro { color: var(--text-faint); }

/* ===================== Responsive ===================== */
@media (max-width: 560px) {
  .page { padding: 0 16px; }
  .layout { padding-top: 26px; gap: 2px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .step { grid-template-columns: 42px 1fr; gap: 13px; }
  .step::before { left: 21px; top: 46px; }
  .node { width: 38px; height: 38px; font-size: 11.5px; }
  .card { padding: 18px; border-radius: 15px; }
  .learn-body { padding: 2px 16px 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .step { opacity: 1; transform: none; }
}

/* ===================== Language switch ===================== */
.langswitch {
  position: fixed; top: 14px; right: 14px; z-index: 50;
  display: inline-flex; gap: 2px; padding: 3px;
  border-radius: 10px; background: rgba(12, 17, 23, .72);
  border: 1px solid var(--line-strong); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.langswitch button {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--text-faint); background: transparent; border: none; border-radius: 7px;
  padding: 5px 10px; cursor: pointer; transition: color .2s, background .2s;
}
.langswitch button:hover { color: var(--text); }
.langswitch button.active { color: #04140d; background: var(--accent); }

/* Prominent top explainer + new controls */
.learn.top { margin: 0 0 22px; border-color: rgba(34, 211, 238, .3); }
#share-note { margin-top: 12px; }
#create-done-btn, .done-btn { margin-top: 14px; }
#create-done-btn:disabled, .done-btn:disabled { opacity: 1; border-color: rgba(52, 211, 153, .4); color: var(--emerald); }

/* Intro line + hero ranking link */
.steps-intro { color: var(--text-dim); font-size: 15px; margin: 0 0 18px; padding: 2px 0 2px 13px; border-left: 2px solid rgba(52, 211, 153, .45); }
.rank-link { margin-top: 18px; }

/* Vote sub-steps (interleaved screenshots) */
.vsteps { list-style: none; counter-reset: v; margin: 18px 0 14px; padding: 0; display: grid; gap: 20px; }
.vsteps > li { counter-increment: v; position: relative; padding-left: 40px; }
.vsteps > li::before {
  content: counter(v); position: absolute; left: 0; top: 0;
  width: 27px; height: 27px; border-radius: 50%;
  background: rgba(52, 211, 153, .12); color: var(--emerald); border: 1px solid rgba(52, 211, 153, .35);
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; display: grid; place-items: center;
}
.vsteps > li > p { margin: 3px 0 11px; color: var(--text-dim); }
.vsteps .shot { margin: 0; }
.bigwarn {
  background: rgba(248, 113, 113, .12); border: 2px solid var(--danger); border-radius: 14px;
  padding: 18px 20px; margin: 20px 0 16px; color: #fecaca;
  font-size: 17px; font-weight: 700; line-height: 1.5;
}
.bigwarn strong { color: #fff; }
.site-banner {
  background: rgba(251, 191, 36, .12); border: 2px solid var(--amber); border-radius: 14px;
  padding: 16px 18px; margin: 6px 0 18px; color: #fde68a;
  font-size: 16px; font-weight: 600; line-height: 1.5;
}
.site-banner strong { color: #fff; }
.voted-note {
  background: rgba(251, 191, 36, .08); border: 1px solid rgba(251, 191, 36, .4); border-radius: 11px;
  padding: 11px 14px; margin-top: 10px; font-size: 14px; color: #fde68a; line-height: 1.45;
}
.voted-note strong { color: #fff; }
#voted-btn { margin-top: 4px; }
#voted-hint { margin-top: 10px; }
#voted-result .btn.tiny { margin-left: 8px; }

/* Bonus step */
.step.bonus .node.star { background: rgba(34, 211, 238, .12); color: var(--cyan); border-color: rgba(34, 211, 238, .4); font-size: 18px; }
.pill.tag { background: rgba(34, 211, 238, .12); color: var(--cyan); border-color: rgba(34, 211, 238, .35); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ===== Two modes =====
   default          = "voter" tutorial (already have a wallet) → starts at the vote step, no faucet.
   #42 in the URL   = full tutorial WITH the free-wallet faucet (steps 01–07 + downvote bonus). */
.learn.top,
#step-install, #step-create, #step-connect, #step-faucet, #step-bonus { display: none; }
.lead.full-only { display: none; }
.lead.voter-only { display: block; }
.chip.full-only { display: none; }
#step-github::before { display: none; }

body.mode-full .learn.top { display: block; }
body.mode-full #step-install,
body.mode-full #step-create,
body.mode-full #step-connect,
body.mode-full #step-faucet,
body.mode-full #step-bonus { display: grid; opacity: 1; transform: none; animation: none; }
body.mode-full .lead.full-only { display: block; }
body.mode-full .lead.voter-only { display: none; }
body.mode-full .chip.full-only { display: inline-block; }
body.mode-full #step-github::before { display: block; }

/* ===================== Ranking page ===================== */
.rank-page { padding-top: 62px; padding-bottom: 80px; max-width: 880px; }
.back-link { display: inline-block; font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.back-link:hover { color: var(--text); }
.rank-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 46px); color: #fff; letter-spacing: -.02em; margin: 14px 0 8px; }
.rank-sub { color: var(--text-dim); margin: 0 0 22px; }
.corlens-card { background: linear-gradient(135deg, rgba(52, 211, 153, .12), rgba(34, 211, 238, .08)); border: 1px solid rgba(52, 211, 153, .35); border-radius: 14px; padding: 15px 18px; margin-bottom: 22px; font-size: 17px; color: var(--text); }
.rank-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.rank-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.rank-table th { text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-faint); padding: 14px 16px; border-bottom: 1px solid var(--line); }
.rank-table th.num, .rank-table td.r-votes { text-align: right; }
.rank-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--text-dim); }
.rank-table tr:last-child td { border-bottom: none; }
.rank-table .r-rank { font-family: var(--font-mono); color: var(--text-faint); width: 44px; }
.rank-table .r-name { color: var(--text); font-weight: 600; }
.rank-table .r-proj { font-size: 13.5px; }
.rank-table .r-votes { font-family: var(--font-mono); font-weight: 700; color: var(--text); width: 72px; }
.rank-table .r-votes.neg { color: var(--danger); }
.rank-table tr.is-corlens { background: rgba(52, 211, 153, .09); }
.rank-table tr.is-corlens td { color: var(--text); }
.rank-table tr.is-corlens .r-rank { color: var(--emerald); }
.you-badge { font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: #04140d; background: var(--accent); border-radius: 5px; padding: 2px 6px; margin-left: 7px; vertical-align: 1px; }
.rank-status { color: var(--text-faint); padding: 14px 16px; font-size: 13px; }
.rank-foot { margin-top: 16px; }

@media (max-width: 560px) {
  .rank-page { padding-top: 40px; }
  .rank-table th, .rank-table td { padding: 11px 10px; }
}
