:root {
  color-scheme: dark;
  --bg: #090a0f;
  --panel: #12151d;
  --panel-2: #171b25;
  --line: #242a36;
  --text: #f4f7fb;
  --muted: #8d96a8;
  --green: #3de09b;
  --red: #ff5f73;
  --amber: #ffd166;
  --signal-mid: var(--amber);
  --blue: #58a6ff;
  --brand-turquoise: #1dd5d8;
  --brand-turquoise-rgb: 29, 213, 216;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #090a0f 0%, #0e1118 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-touch-callout: none;
  user-select: none;
}

button,
input,
select {
  font: inherit;
}

input,
textarea {
  -webkit-touch-callout: default;
  user-select: text;
}

button,
a {
  cursor: pointer;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.app {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 9px 14px calc(104px + env(safe-area-inset-bottom));
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 0 9px;
}

.header-socials {
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.social-btn {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: #08111f;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.social-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.eyebrow,
h1,
h2,
p {
  margin: 0;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-stack {
  min-width: 0;
  display: grid;
  place-items: center;
}

.brand-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-link {
  display: block;
  width: 100%;
}

.footer-link {
  position: relative;
  z-index: 2;
  display: block;
  width: min(196px, 58vw);
}

.brand-logo {
  width: 72%;
  max-width: 274px;
  margin: 0 auto;
}

.app-footer {
  display: grid;
  place-items: center;
  padding: 28px 0 8px;
}

.footer-logo {
  position: relative;
  z-index: 2;
  max-width: 196px;
  opacity: 1;
}

h1 {
  margin-top: 3px;
  font-size: 32px;
  line-height: 1.02;
}

h2 {
  font-size: 15px;
  line-height: 1.2;
}

.icon-button {
  justify-self: end;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font-weight: 900;
}

.profile-button {
  align-self: center;
  justify-self: end;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  overflow: hidden;
}

.profile-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.metrics article,
.signal-strip,
.category-pulse,
.account-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 21, 29, 0.94);
}

.metrics article {
  min-height: 92px;
  padding: 12px 10px;
}

.metrics span,
.metrics small,
.strip-head span,
.section-title span,
.meta,
.account-card p,
.search span {
  color: var(--muted);
}

.metrics span,
.metrics small {
  display: block;
  font-size: 11px;
  line-height: 1.25;
}

.metrics strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 24px;
  line-height: 1;
}

.total-accounts {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(var(--brand-turquoise-rgb), 0.12), transparent 54%),
    rgba(5, 10, 17, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 40px rgba(0, 0, 0, 0.18);
}

.total-accounts span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  padding-left: 6px;
  text-transform: uppercase;
}

.total-accounts strong {
  color: var(--brand-turquoise);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.controls {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
}

.segmented button {
  min-width: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.segmented button.active {
  background: var(--panel-2);
  color: var(--text);
}

.source-logo-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc(100% - 8px);
  justify-self: center;
  gap: 8px;
}

.source-logo-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(7, 12, 19, 0.92);
  outline: none;
  text-decoration: none;
}

.source-logo-grid img {
  display: block;
  width: 52px;
  flex: 0 0 52px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 7px;
  background: #0d1017;
  object-fit: cover;
}

.source-logo-grid span {
  min-width: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.search {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
}

.search span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.signal-strip {
  padding: 14px;
}

.category-pulse {
  padding: 14px;
}

.strip-head,
.section-title,
.account-head,
.account-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.strip-head span,
.section-title span {
  font-size: 12px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-control span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sort-control select {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
  color: var(--text);
  padding: 0 8px;
  outline: none;
}

.bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 5px;
  height: 94px;
  margin-top: 14px;
}

.bars i {
  display: block;
  min-height: 10px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.pulse-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.category-pulse .pulse-list {
  margin-top: 0;
}

.pulse-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
}

.pulse-item::after {
  content: none;
}

.pulse-item span {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-turquoise);
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-item strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  min-height: 26px;
  border-radius: 999px;
  background: rgba(61, 224, 155, 0.11);
  color: var(--green);
  font-size: 13px;
  margin-right: 12px;
}

.feed {
  margin-top: 18px;
}

.account-feed {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.load-more-button {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  border: 1px solid rgba(244, 202, 87, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 202, 87, 0.16), rgba(244, 202, 87, 0.06)),
    rgba(5, 10, 17, 0.82);
  color: var(--text);
  box-shadow: 0 0 28px rgba(244, 202, 87, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.load-more-button:hover {
  border-color: rgba(244, 202, 87, 0.62);
  box-shadow: 0 0 34px rgba(244, 202, 87, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.load-more-button:focus-visible {
  outline: none;
  border-color: rgba(97, 184, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(97, 184, 255, 0.14), 0 0 34px rgba(244, 202, 87, 0.12);
}

.empty-feed {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(5, 10, 17, 0.54);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.account-card {
  padding: 14px;
}

.account-title {
  min-width: 0;
}

.account-title strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.2;
}

.meta {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.found-on {
  color: var(--text);
}

.score {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.score-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
}

.score-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-wrap > .watchlist-button {
  display: none;
}

.score-wrap span {
  width: 54px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.score.good,
.signal-value.good {
  color: var(--green);
}

.score.warn,
.signal-value.warn {
  color: var(--ice);
}

.score.bad,
.signal-value.bad {
  color: var(--red);
}

.score.good {
  background: rgba(61, 224, 155, 0.1);
}

.score.warn {
  background: rgba(255, 209, 102, 0.12);
}

.score.bad {
  background: rgba(255, 95, 115, 0.12);
}

.account-x-button {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
  transform: none;
}

.account-x-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.account-card p {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.42;
}

.account-foot {
  margin-top: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(88, 166, 255, 0.12);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.badge.good {
  background: rgba(61, 224, 155, 0.12);
  color: var(--green);
}

.badge.warn {
  background: rgba(255, 209, 102, 0.14);
  color: var(--ice);
}

.badge.bad {
  background: rgba(255, 95, 115, 0.14);
  color: var(--red);
}

.bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(9, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  transform: none;
}

.bottom-nav a {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.bottom-nav a.active {
  background: var(--panel-2);
  color: var(--text);
}

.filter-grid {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.filter-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  width: calc(100% - 8px);
  justify-self: center;
}

.filter-action-row .filter-menu {
  min-width: 0;
}

.filter-action-row .sort-control {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  justify-items: center;
  gap: 6px;
  min-height: 44px;
  min-width: 126px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
}

.filter-action-row .sort-control::after {
  content: "⌄";
  position: absolute;
  right: 11px;
  top: 50%;
  color: var(--brand-turquoise);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-54%);
}

.filter-action-row .sort-control span {
  color: rgba(174, 188, 210, 0.82);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  justify-self: center;
  text-align: center;
}

.filter-action-row .sort-control select {
  min-height: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  outline: none;
  appearance: none;
  text-align: center;
  text-align-last: center;
}

.filter-action-row .sort-control::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--brand-turquoise);
  pointer-events: none;
  transform: translateY(-50%);
}

.filter-menu {
  position: relative;
}

.filter-menu summary {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  list-style: none;
}

.filter-menu summary::-webkit-details-marker {
  display: none;
}

.filter-panel {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 21, 29, 0.98);
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1017;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.account-row {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 21, 29, 0.94);
}

.risk-ribbon {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(255, 95, 115, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.2), rgba(255, 95, 115, 0.06)),
    rgba(16, 6, 10, 0.9);
  color: var(--red);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 95, 115, 0.16);
}

.row-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.account-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.account-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.2), rgba(61, 224, 155, 0.12));
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  overflow: visible;
}

.account-avatar::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(110, 231, 255, 0.18);
  border-radius: 50%;
  opacity: 0.82;
  pointer-events: none;
}

.account-row.signal-good .account-avatar::after {
  border-color: rgba(92, 241, 195, 0.48);
  box-shadow:
    0 0 0 5px rgba(92, 241, 195, 0.045),
    0 0 22px rgba(92, 241, 195, 0.22),
    0 0 46px rgba(92, 241, 195, 0.08);
}

.account-row.top-signal-account .account-avatar::after {
  inset: -8px;
  border-width: 4px;
  border-color: rgba(92, 241, 195, 0.62) !important;
  box-shadow:
    0 0 0 6px rgba(92, 241, 195, 0.06),
    0 0 26px rgba(92, 241, 195, 0.3),
    0 0 54px rgba(92, 241, 195, 0.12) !important;
}

.account-row.signal-warn .account-avatar::after {
  border-color: rgba(255, 209, 102, 0.48);
  box-shadow:
    0 0 0 5px rgba(255, 209, 102, 0.045),
    0 0 22px rgba(255, 209, 102, 0.22),
    0 0 46px rgba(255, 209, 102, 0.08);
}

.account-row.signal-bad .account-avatar::after,
.account-row.low-liquidity .account-avatar::after {
  border-color: rgba(255, 95, 115, 0.5);
  box-shadow:
    0 0 0 5px rgba(255, 95, 115, 0.045),
    0 0 22px rgba(255, 95, 115, 0.22),
    0 0 46px rgba(255, 95, 115, 0.08);
}

.account-row.is-watchlisted .account-avatar::after {
  inset: -7px;
  border-width: 2px;
  border-color: rgba(var(--brand-turquoise-rgb), 0.86) !important;
  opacity: 0.94;
  box-shadow:
    0 0 0 5px rgba(var(--brand-turquoise-rgb), 0.07),
    0 0 24px rgba(var(--brand-turquoise-rgb), 0.36),
    0 0 52px rgba(var(--brand-turquoise-rgb), 0.14);
}

.account-row.top-signal-account.is-watchlisted .account-avatar::after {
  inset: -8px;
  border-width: 4px;
  border-color: rgba(92, 241, 195, 0.62) !important;
  box-shadow:
    0 0 0 6px rgba(92, 241, 195, 0.06),
    0 0 26px rgba(92, 241, 195, 0.3),
    0 0 54px rgba(92, 241, 195, 0.12) !important;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  object-fit: cover;
  object-position: center;
  clip-path: circle(50% at 50% 50%);
}

.account-avatar > img:not(.avatar-verified-badge) {
  border-radius: 50% !important;
}

.verified-badge {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: inline-block;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
  filter: drop-shadow(0 0 7px rgba(62, 162, 255, 0.45));
}

.account-name-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
}

.account-line {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: nowrap;
  font-size: 14px;
  line-height: 1.15;
}

.row-main strong {
  display: block;
  overflow-wrap: anywhere;
}

.handle-link {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: anywhere;
  color: var(--blue);
  font-weight: 850;
}

.handle-link:visited {
  color: var(--blue);
}

.handle-link:hover,
.handle-link:active {
  color: var(--blue);
}

.cashtag-link,
.cashtag-link:visited,
.cashtag-link:hover,
.cashtag-link:active,
.coin-symbol-link,
.coin-symbol-link:visited,
.coin-symbol-link:hover,
.coin-symbol-link:active {
  color: var(--blue);
}

.coin-symbol-link {
  flex: 0 0 auto;
  font-weight: 900;
}

.account-divider {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.row-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.account-summary {
  display: grid;
  gap: 7px;
  margin-bottom: 5px;
}

.account-summary p {
  display: block;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.38;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.account-summary span {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.project-watch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 8px;
}

.project-watch-row .project-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid rgba(110, 231, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.055), transparent),
    rgba(5, 10, 17, 0.72);
}

.project-watch-row .project-metric b {
  display: block;
  margin-top: 4px;
  color: #edf6ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.project-watch-row .signal-summary-panel {
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  min-width: 108px;
  min-height: 54px;
  padding: 8px 10px;
  gap: 5px;
}

.project-watch-row .signal-summary-panel span {
  font-size: 9px;
}

.project-watch-row .signal-summary-panel b {
  font-size: 27px;
}

.project-watch-row .watchlist-button {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 54px;
  padding: 0 12px;
  border-color: rgba(92, 241, 195, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.2), rgba(92, 241, 195, 0.055)),
    rgba(5, 10, 17, 0.92);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(92, 241, 195, 0.08),
    0 0 24px rgba(92, 241, 195, 0.14);
}

.project-watch-row .watchlist-button.is-watched {
  border-color: rgba(92, 241, 195, 0.5);
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.18), rgba(92, 241, 195, 0.055)),
    rgba(5, 10, 17, 0.92);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(92, 241, 195, 0.14);
}

.project-watch-row .watchlist-button:hover,
.project-watch-row .watchlist-button:focus-visible {
  border-color: rgba(92, 241, 195, 0.78);
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.28), rgba(92, 241, 195, 0.08)),
    rgba(5, 10, 17, 0.96);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 32px rgba(92, 241, 195, 0.22);
}

.account-summary > .watchlist-button {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(92, 241, 195, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.18), rgba(92, 241, 195, 0.055)),
    rgba(5, 10, 17, 0.88);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 22px rgba(92, 241, 195, 0.13);
}

.account-summary > .watchlist-button.is-watched,
.account-summary > .watchlist-button.is-watched:hover,
.account-summary > .watchlist-button.is-watched:focus-visible {
  border-color: rgba(255, 95, 115, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.18), rgba(255, 95, 115, 0.055)),
    rgba(5, 10, 17, 0.9);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 22px rgba(255, 95, 115, 0.13);
}

.market-cap-value {
  color: var(--green);
}

.followers-value {
  color: var(--blue);
}

.account-age-value {
  color: var(--green);
}

.row-detail span {
  min-width: 0;
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.row-detail b {
  display: block;
  min-width: 0;
  margin-top: 3px;
  color: var(--text);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 26px;
  max-width: 100%;
  padding: 0 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(88, 166, 255, 0.08);
  color: var(--brand-turquoise);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.category-list a:visited,
.category-list a:hover,
.category-list a:active {
  color: var(--brand-turquoise);
}

.settings-stack {
  display: grid;
  gap: 10px;
}

.settings-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 21, 29, 0.94);
}

.settings-panel p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.profile-panel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-panel img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.setting-row,
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  border-top: 1px solid var(--line);
}

.setting-row:first-of-type,
.toggle-row:first-of-type {
  margin-top: 10px;
}

.setting-row span,
.toggle-row span {
  color: var(--muted);
  font-size: 13px;
}

.setting-row strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

.upgrade-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(92, 241, 195, 0.24);
  background:
    linear-gradient(135deg, rgba(92, 241, 195, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(5, 10, 17, 0.86);
}

.upgrade-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.upgrade-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(92, 241, 195, 0.22);
  border-radius: 8px;
  background: rgba(92, 241, 195, 0.08);
}

.upgrade-card span,
.upgrade-card strong {
  display: block;
}

.upgrade-card span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.upgrade-card strong {
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.1;
}

.upgrade-card button {
  min-height: 38px;
  border: 1px solid rgba(92, 241, 195, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(92, 241, 195, 0.24), rgba(92, 241, 195, 0.12));
  color: var(--text);
  padding: 0 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(92, 241, 195, 0.12);
}

.checkout-shell {
  display: grid;
  min-height: calc(100vh - 210px);
  align-items: center;
}

.checkout-panel {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(92, 241, 195, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 241, 195, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(5, 10, 17, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.checkout-panel .section-title h1 {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}

.checkout-price {
  display: grid;
  gap: 5px;
  min-height: 86px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(92, 241, 195, 0.22);
  border-radius: 8px;
  background: rgba(92, 241, 195, 0.08);
}

.checkout-price span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-price strong {
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.checkout-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-plan {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-align: left;
}

.checkout-plan span,
.checkout-plan small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-plan strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.checkout-plan.featured strong,
.checkout-plan.active strong {
  color: var(--green);
}

.checkout-plan.active {
  border-color: rgba(92, 241, 195, 0.62);
  background: rgba(92, 241, 195, 0.1);
  box-shadow: inset 0 0 0 1px rgba(92, 241, 195, 0.12);
}

.checkout-plan:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.checkout-includes {
  display: grid;
}

.checkout-button {
  min-height: 48px;
  border: 1px solid rgba(92, 241, 195, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(92, 241, 195, 0.28), rgba(92, 241, 195, 0.14));
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(92, 241, 195, 0.14);
}

.checkout-button:disabled,
.upgrade-card button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.checkout-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.checkout-back-link {
  justify-self: center;
  color: var(--brand-turquoise);
  font-size: 13px;
  font-weight: 800;
}

.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

@media (min-width: 720px) {
  .app {
    padding-top: 9px;
  }

  .controls {
    grid-template-columns: 1fr;
  }

  .account-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: 1fr 132px;
    align-items: end;
  }

  .filter-panel {
    position: absolute;
    right: 0;
    z-index: 5;
    width: min(520px, calc(100vw - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 980px) {
  .social-btn {
    width: 36px;
    height: 36px;
  }
}

/* Visual pass */
:root {
  --bg: #05070b;
  --panel: #0b0f16;
  --panel-2: #101722;
  --panel-3: #131b28;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(92, 241, 195, 0.28);
  --text: #f7fbff;
  --muted: #91a0b8;
  --green: #5cf1c3;
  --red: #ff667d;
  --amber: #ffd166;
  --blue: #61b8ff;
  --violet: #a78bfa;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

body {
  background:
    linear-gradient(90deg, rgba(97, 184, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(92, 241, 195, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #05070b 0%, #091018 48%, #05070b 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: screen;
  opacity: 0.26;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue), #ffffff);
  box-shadow: 0 0 18px rgba(97, 184, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.app {
  padding: 0 12px calc(108px + env(safe-area-inset-bottom));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 0 -12px 12px;
  padding: 8px 12px 10px;
  border-bottom: 1px solid rgba(92, 241, 195, 0.14);
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand-stack {
  width: 100%;
}

.brand-link {
  width: min(66%, 270px);
}

.brand-logo {
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 10px 28px rgba(92, 241, 195, 0.18));
}

main {
  display: grid;
  gap: 10px;
}

.controls,
.filter-grid {
  margin: 0;
}

.controls {
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(92, 241, 195, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 50%),
    rgba(5, 10, 17, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.segmented,
.search input,
.field input,
.field select,
.filter-menu summary {
  border-color: rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(7, 12, 19, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.segmented {
  min-height: 44px;
  padding: 3px;
}

.segmented button {
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 0;
}

.segmented button.active,
.bottom-nav a.active {
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.16), rgba(97, 184, 255, 0.08)),
    rgba(16, 23, 34, 0.9);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(92, 241, 195, 0.18);
}

.source-logo-grid {
  gap: 9px;
}

.search {
  width: calc(100% - 8px);
  justify-self: center;
}

.source-logo-grid a {
  border-color: rgba(148, 163, 184, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(7, 12, 19, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.source-logo-grid a:hover {
  border-color: rgba(92, 241, 195, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 32px rgba(92, 241, 195, 0.08);
  transform: translateY(-1px);
}

.source-logo-grid a:focus-visible {
  border-color: rgba(97, 184, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 4px rgba(97, 184, 255, 0.12), 0 14px 32px rgba(97, 184, 255, 0.08);
}

.search input,
.field input,
.field select {
  min-height: 46px;
  color: var(--text);
}

.search input::placeholder,
.field input::placeholder {
  color: rgba(247, 251, 255, 0.52);
}

.search input:focus,
.field input:focus,
.field select:focus {
  border-color: rgba(92, 241, 195, 0.42);
  box-shadow: 0 0 0 3px rgba(92, 241, 195, 0.08);
}

.category-pulse,
.account-row,
.settings-panel,
.filter-panel {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.07), transparent 38%),
    rgba(8, 12, 19, 0.94);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-pulse::before,
.account-row::before,
.settings-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.035);
}

.strip-head h2,
.section-title h2 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

main > .feed .section-title,
main > .category-pulse-title {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 251, 255, 0.2);
  text-align: center;
}

main > .feed .section-title h2,
main > .category-pulse-title h2 {
  flex: 1 1 100%;
  margin: 0;
  font-size: 25px;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.section-subtitle {
  flex: 1 1 100%;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

main > .category-pulse-title span {
  flex: 1 1 100%;
  margin: 2px 0 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-pulse-title {
  margin-top: 6px;
}

.strip-head span,
.section-title span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.pulse-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.category-pulse .leaderboard-item strong {
  color: #ffffff;
}

.pulse-item {
  min-height: 54px;
  padding: 10px;
  border-color: rgba(148, 163, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(97, 184, 255, 0.08), transparent),
    rgba(5, 10, 17, 0.92);
}

.pulse-item span {
  color: #ffffff;
  font-size: 12px;
}

.leaderboard-item strong {
  color: #ffffff;
}

.pulse-item strong {
  min-width: 48px;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 7px;
  border: 1px solid rgba(156, 183, 214, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), transparent 44%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.055), transparent 40%),
    rgba(13, 19, 29, 0.94);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: var(--brand-turquoise);
  font-weight: 900;
  margin-right: 0;
}

.feed {
  margin-top: 0;
}

.account-feed {
  gap: 12px;
  margin-top: 8px;
}

.account-row {
  gap: 12px;
  padding: 12px;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.account-row:hover {
  border-color: rgba(92, 241, 195, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.account-row-collapsible {
  cursor: pointer;
}

.account-row-collapsible:focus-visible {
  border-color: rgba(97, 184, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(97, 184, 255, 0.12), var(--shadow);
  outline: none;
}

.account-row-collapsible:not(.is-expanded) {
  min-height: 92px;
  align-content: center;
}

.account-row-collapsible:not(.is-expanded) .row-main {
  align-items: center;
}

.account-row-collapsible .account-identity {
  padding-left: 8px;
}

.account-row-collapsible .account-avatar {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.account-row-collapsible .account-name-block {
  min-height: 52px;
  margin-left: 9px;
  gap: 6px;
}

.account-row-collapsible:not(.is-expanded) .account-summary,
.account-row-collapsible:not(.is-expanded) .row-detail,
.account-row-collapsible:not(.is-expanded) .category-list {
  display: none;
}

.account-row-collapsible:not(.is-expanded),
.account-row-collapsible:not(.is-expanded) * {
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}

.account-row-collapsible:not(.is-expanded) a:not(.account-x-button) {
  pointer-events: none;
}

.account-row-collapsible.is-expanded {
  cursor: default;
}

.account-row-collapsible:not(.is-expanded) .score-block {
  display: none;
}

.account-row-collapsible.is-expanded .score-block {
  display: none;
}

.account-row-collapsible.is-expanded .score-wrap > .watchlist-button {
  display: flex;
  width: 59px;
  min-width: 59px;
  min-height: 52px;
  padding: 0 6px;
  border-radius: 8px;
  white-space: normal;
  text-align: center;
}

.account-row-collapsible:not(.is-expanded) .account-x-button {
  display: flex;
}

.account-row-collapsible .score-wrap {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 64px;
}

.account-row-collapsible:not(.is-expanded) .account-line,
.account-row-collapsible:not(.is-expanded) .coin-symbol-link,
.account-row-collapsible:not(.is-expanded) .coin-symbol-link:visited {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(237, 246, 255, 0.08);
}

.account-row-collapsible:not(.is-expanded) .handle-link,
.account-row-collapsible:not(.is-expanded) .handle-link:visited {
  color: var(--username-blue);
  text-shadow: 0 0 16px rgba(97, 184, 255, 0.16);
}

.account-row-collapsible:not(.is-expanded) .account-line {
  gap: 7px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.05;
}

.account-row-collapsible:not(.is-expanded) .meta {
  display: none;
}

.account-row-collapsible .collapsed-statline,
.account-row-collapsible .meta {
  font-size: 13px;
  line-height: 1.15;
}

.account-row-collapsible.is-expanded .collapsed-statline {
  display: none;
}

.account-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  opacity: 0.9;
}

.account-row.low-liquidity {
  border-color: rgba(255, 95, 115, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.13), rgba(255, 95, 115, 0.035)),
    rgba(8, 9, 14, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(255, 95, 115, 0.08),
    0 18px 45px rgba(255, 95, 115, 0.08);
}

.account-row.low-liquidity::after {
  background: linear-gradient(180deg, var(--red), rgba(255, 95, 115, 0.38));
}

.account-row.watchlist-feedback-active {
  transform: none !important;
}

.account-row.watchlist-feedback-added,
.account-row.watchlist-feedback-removed {
  border-color: rgba(148, 163, 184, 0.15);
}

.account-row.watchlist-feedback-active::before {
  content: attr(data-watchlist-feedback);
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  width: auto;
  min-width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    rgba(5, 10, 17, 0.92);
  color: #f7fbff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(36, 224, 255, 0.18);
  pointer-events: none;
}

.account-row.watchlist-feedback-added::before {
  border-color: rgba(92, 241, 195, 0.42);
}

.account-row.watchlist-feedback-removed::before {
  border-color: rgba(255, 95, 115, 0.36);
}

@keyframes watchlistCardFlare {
  0% {
    border-color: rgba(36, 224, 255, 0.26);
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(36, 224, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
  22% {
    border-color: rgba(36, 224, 255, 0.9);
    box-shadow:
      0 0 0 2px rgba(36, 224, 255, 0.38),
      0 0 34px rgba(36, 224, 255, 0.38),
      0 0 92px rgba(36, 224, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      inset 0 0 34px rgba(36, 224, 255, 0.085);
  }
  56% {
    border-color: rgba(36, 224, 255, 0.62);
    box-shadow:
      0 0 0 4px rgba(36, 224, 255, 0.22),
      0 0 46px rgba(36, 224, 255, 0.24),
      0 0 110px rgba(36, 224, 255, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 0 24px rgba(36, 224, 255, 0.065);
  }
  100% {
    border-color: rgba(148, 163, 184, 0.15);
    box-shadow:
      var(--shadow),
      0 0 0 0 rgba(36, 224, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}

.row-main,
.account-summary,
.row-detail,
.category-list {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}

.account-avatar {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-color: rgba(92, 241, 195, 0.28);
  background: #060b12;
  box-shadow: 0 0 0 4px rgba(92, 241, 195, 0.045), 0 10px 26px rgba(0, 0, 0, 0.3);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-avatar:hover,
.account-avatar:focus-visible {
  border-color: rgba(97, 184, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(97, 184, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.34);
  outline: none;
  transform: translateY(-1px);
}

.account-name-block {
  min-height: 46px;
}

.account-line {
  font-size: 13px;
}

.coin-symbol-link {
  color: var(--green);
}

.account-divider {
  color: rgba(145, 160, 184, 0.62);
}

.meta {
  color: #7d8da6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.score-wrap {
  gap: 6px;
}

.watchlist-button {
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(5, 10, 17, 0.72);
  color: #96a9c4;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.watchlist-button.is-watched {
  border-color: rgba(255, 209, 102, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.18), rgba(255, 209, 102, 0.05)),
    rgba(5, 10, 17, 0.82);
  color: var(--ice);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.12);
}

.watchlist-button:hover,
.watchlist-button:focus-visible {
  border-color: rgba(110, 231, 255, 0.46);
  color: #d8f7ff;
  outline: none;
  transform: translateY(-1px);
}

.score-wrap span {
  color: #96a9c4;
  font-size: 9px;
}

.score {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  border-color: rgba(92, 241, 195, 0.2);
  border-radius: 50%;
  font-size: 18px;
  box-shadow: inset 0 0 0 4px rgba(5, 7, 11, 0.68), 0 0 28px rgba(92, 241, 195, 0.1);
}

.score.good {
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.18), rgba(92, 241, 195, 0.04));
}

.account-row.low-liquidity .score.bad {
  border-color: rgba(255, 95, 115, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.24), rgba(255, 95, 115, 0.06));
  box-shadow: inset 0 0 0 4px rgba(5, 7, 11, 0.68), 0 0 28px rgba(255, 95, 115, 0.16);
}

.account-summary {
  gap: 8px;
}

.low-liquidity-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 95, 115, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.18), rgba(255, 95, 115, 0.05)),
    rgba(16, 6, 10, 0.82);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 95, 115, 0.11);
}

.account-summary p {
  min-height: 0;
  padding: 10px;
  border-color: rgba(148, 163, 184, 0.13);
  background: rgba(5, 10, 17, 0.72);
  color: #dce7f5;
}

.account-summary span {
  color: #8190a7;
  font-size: 13px;
  line-height: 1.35;
  padding-left: 10px;
}

.market-cap-value {
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 241, 195, 0.14);
}

.followers-value {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(97, 184, 255, 0.12);
}

.current-followers-value {
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 241, 195, 0.14);
}

.followed-by-panel {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.09), rgba(97, 184, 255, 0.035)),
    rgba(5, 10, 17, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px rgba(var(--brand-turquoise-rgb), 0.08);
}

.followed-by-panel > span {
  min-width: 0;
  padding-left: 0;
  color: #8190a7;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-transform: none;
}

.followed-by-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding-left: 0;
}

.followed-by-avatar,
.followed-by-extra {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  overflow: hidden;
  border: 2px solid #050a11;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 60%),
    #0b111a;
  box-shadow: 0 0 0 1px rgba(var(--brand-turquoise-rgb), 0.34), 0 10px 20px rgba(0, 0, 0, 0.32);
  color: rgba(227, 245, 255, 0.9);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.followed-by-avatar:first-child {
  margin-left: 0;
}

.followed-by-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.followed-by-avatar span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, rgb(16, 70, 80), rgb(31, 58, 86));
}

.followed-by-extra {
  background: #111c2a;
  color: rgba(237, 246, 255, 0.84);
}

.followed-by-avatar:hover,
.followed-by-avatar:focus-visible {
  z-index: 2;
  outline: none;
  box-shadow: 0 0 0 1px rgba(var(--brand-turquoise-rgb), 0.54), 0 12px 24px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.followed-by-summary {
  min-width: 0;
  overflow: hidden;
  color: rgba(225, 242, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-age-value {
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 241, 195, 0.14);
}

.last-updated-value {
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 241, 195, 0.14);
}

.follower-growth-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.07), transparent 58%),
    rgba(5, 10, 17, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.follower-growth-head,
.follower-growth-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.follower-growth-head span,
.follower-growth-foot span {
  min-width: 0;
  padding-left: 0;
  color: #8ea0ba;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.follower-growth-head strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.follower-growth-head em {
  color: currentColor;
  font-style: normal;
}

.follower-growth-card.down .follower-growth-head strong {
  color: var(--red);
}

.follower-growth-card.flat .follower-growth-head strong {
  color: var(--ice);
}

.follower-chart-box {
  position: relative;
  padding: 22px 9px 9px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(110, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.045) 1px, transparent 1px),
    rgba(2, 7, 13, 0.62);
  background-size: 100% 14px, 28px 100%, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -18px 28px rgba(0, 0, 0, 0.16);
}

.follower-chart-box::before {
  content: "Followers";
  position: absolute;
  top: 8px;
  left: 9px;
  color: rgba(225, 242, 255, 0.82);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
}

.follower-sparkline {
  width: 100%;
  height: 58px;
  display: block;
  overflow: visible;
}

.follower-sparkline polyline {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 8px rgba(92, 241, 195, 0.32));
}

.follower-sparkline circle {
  fill: var(--panel-strong);
  stroke: var(--green);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 5px rgba(92, 241, 195, 0.36));
}

.follower-sparkline text {
  fill: rgba(225, 242, 255, 0.82);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.follower-growth-card.down .follower-sparkline polyline {
  stroke: var(--red);
  filter: drop-shadow(0 0 8px rgba(255, 95, 115, 0.28));
}

.follower-growth-card.down .follower-sparkline circle {
  stroke: var(--red);
  filter: drop-shadow(0 0 5px rgba(255, 95, 115, 0.3));
}

.follower-growth-card.flat .follower-sparkline polyline,
.follower-growth-empty-line {
  stroke: var(--ice);
  color: var(--ice);
}

.follower-growth-card.flat .follower-sparkline circle {
  stroke: var(--ice);
  filter: drop-shadow(0 0 5px rgba(155, 221, 255, 0.24));
}

.follower-growth-empty-line {
  min-height: 32px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(155, 221, 255, 0.18);
  border-radius: 8px;
  color: #8ea0ba;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tweet-about-button,
.research-source-button,
.card-screenshot-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(92, 241, 195, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.13), rgba(92, 241, 195, 0.04)),
    rgba(5, 10, 17, 0.78);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(92, 241, 195, 0.1);
}

.research-source-button {
  border-color: rgba(97, 184, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(97, 184, 255, 0.16), rgba(92, 241, 195, 0.08)),
    rgba(5, 10, 17, 0.78);
  color: var(--blue);
}

.card-screenshot-button {
  width: 100%;
  margin-top: 2px;
  border-color: rgba(var(--brand-turquoise-rgb), 0.36);
  background:
    linear-gradient(135deg, rgba(var(--brand-turquoise-rgb), 0.16), rgba(97, 184, 255, 0.05)),
    rgba(5, 10, 17, 0.78);
  color: var(--brand-turquoise);
}

.tweet-about-button:hover,
.tweet-about-button:focus-visible,
.research-source-button:hover,
.research-source-button:focus-visible,
.card-screenshot-button:hover,
.card-screenshot-button:focus-visible {
  border-color: rgba(92, 241, 195, 0.62);
  color: #d8fff3;
  outline: none;
  transform: translateY(-1px);
}

.row-detail span {
  min-height: 50px;
  border-color: rgba(148, 163, 184, 0.13);
  background: rgba(5, 10, 17, 0.72);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.row-detail .found-on-link {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.row-detail .found-on-link span {
  display: block;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.row-detail .found-on-link:hover span,
.row-detail .found-on-link:focus-visible span {
  border-color: rgba(97, 184, 255, 0.44);
  background: rgba(14, 24, 38, 0.92);
  outline: none;
  transform: translateY(-1px);
}

.row-detail b {
  color: #edf6ff;
  font-size: 11px;
  text-transform: none;
}

.category-list {
  gap: 5px;
}

.category-list a {
  min-height: 28px;
  border-color: rgba(97, 184, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(97, 184, 255, 0.11), rgba(97, 184, 255, 0.035));
  color: var(--brand-turquoise);
  font-size: 11.2px;
}

.bottom-nav {
  gap: 6px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  border-color: rgba(92, 241, 195, 0.14);
  background: rgba(5, 7, 11, 0.9);
  box-shadow: 0 -12px 42px rgba(0, 0, 0, 0.42);
}

.bottom-nav a {
  min-height: 40px;
  border-radius: 8px;
  font-size: 11px;
}

.app-footer {
  padding-top: 32px;
}

.footer-logo {
  opacity: 1;
  filter: none;
}

.settings-stack {
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (min-width: 720px) {
  .app {
    padding-top: 0;
  }

  .category-pulse {
    padding: 16px;
  }
}

/* Executive terminal polish */
:root {
  --cyan: #6ee7ff;
  --pink: #ff6bd6;
  --ice: #9bddff;
  --username-blue: #61b8ff;
  --glass: rgba(6, 11, 18, 0.72);
}

body {
  background:
    linear-gradient(90deg, rgba(110, 231, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(92, 241, 195, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 209, 102, 0.035), transparent 28%),
    linear-gradient(180deg, #05070b 0%, #07111b 46%, #05070b 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 6px);
  opacity: 0.22;
}

.topbar {
  border-bottom-color: rgba(110, 231, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(4, 7, 12, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), inset 0 -1px 0 rgba(92, 241, 195, 0.08);
}

.brand-logo {
  filter: drop-shadow(0 14px 34px rgba(92, 241, 195, 0.2)) drop-shadow(0 0 18px rgba(110, 231, 255, 0.12));
}

.controls,
.total-accounts,
.category-pulse {
  backdrop-filter: blur(18px);
}

.controls {
  border-color: rgba(110, 231, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 46%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.08), transparent 36%),
    var(--glass);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.source-logo-grid a {
  position: relative;
}

.source-logo-grid a::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(92, 241, 195, 0.74);
  opacity: 0.82;
}

.source-logo-grid a {
  border-color: rgba(110, 231, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 34px rgba(0, 0, 0, 0.3);
}

.search input,
.field input,
.field select,
.filter-menu summary {
  border-color: rgba(110, 231, 255, 0.2);
}

.filter-menu summary {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.total-accounts {
  min-height: 54px;
  border-color: rgba(var(--brand-turquoise-rgb), 0.28);
  background:
    linear-gradient(90deg, rgba(var(--brand-turquoise-rgb), 0.14), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(5, 10, 17, 0.78);
}

.total-accounts strong {
  color: var(--brand-turquoise);
  text-shadow: 0 0 24px rgba(var(--brand-turquoise-rgb), 0.22);
}

main > .feed .section-title,
main > .category-pulse-title {
  position: relative;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 251, 255, 0.2);
}

main > .feed .section-title::before,
main > .category-pulse-title::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(132px, 38%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92, 241, 195, 0.86), rgba(110, 231, 255, 0.72), transparent);
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.24);
  transform: translateX(-50%);
}

main > .feed .section-title h2,
main > .category-pulse-title h2 {
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 0 28px rgba(110, 231, 255, 0.12);
}

.account-row,
.category-pulse {
  border-color: rgba(110, 231, 255, 0.17);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 40%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.07), transparent 32%),
    linear-gradient(315deg, rgba(255, 107, 214, 0.035), transparent 34%),
    rgba(7, 12, 19, 0.94);
}

.account-row {
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.account-row::after {
  width: 3px;
  background: linear-gradient(180deg, var(--red), rgba(255, 95, 115, 0.38));
}

.account-row.signal-good::after {
  width: 3px;
  background: linear-gradient(180deg, var(--green), rgba(92, 241, 195, 0.42));
  box-shadow: 0 0 16px rgba(92, 241, 195, 0.28);
}

.account-row.signal-warn::after {
  width: 3px;
  background: linear-gradient(180deg, var(--signal-mid), rgba(255, 209, 102, 0.38));
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.22);
}

.account-row.signal-bad::after,
.account-row.low-liquidity::after {
  width: 3px;
  background: linear-gradient(180deg, var(--red), rgba(255, 95, 115, 0.38));
  box-shadow: 0 0 16px rgba(255, 95, 115, 0.24);
}

.account-row:hover {
  border-color: rgba(110, 231, 255, 0.34);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(92, 241, 195, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-avatar {
  border-color: rgba(110, 231, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.045), 0 12px 28px rgba(0, 0, 0, 0.34);
}

.account-line {
  letter-spacing: 0.01em;
}

.coin-symbol-link {
  color: var(--ice);
}

.handle-link,
.handle-link:visited,
.handle-link:hover,
.handle-link:active {
  color: var(--username-blue);
  text-shadow: 0 0 16px rgba(97, 184, 255, 0.14);
}

.meta {
  color: #8ea0ba;
}

.collapsed-statline {
  display: inline-grid;
  grid-template-columns: minmax(0, max-content);
  align-items: start;
  justify-items: start;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  color: var(--text);
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.collapsed-statline .collapsed-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
  padding: 4px 6px;
  border: 1px solid rgba(110, 231, 255, 0.11);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.055), transparent),
    rgba(5, 10, 17, 0.48);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collapsed-statline b,
.collapsed-statline strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collapsed-statline b {
  color: #8ea0ba;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.collapsed-statline strong {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.collapsed-statline .collapsed-stat-followers strong {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
}

.collapsed-statline .collapsed-stat-market strong {
  color: var(--green);
  text-shadow: 0 0 14px rgba(92, 241, 195, 0.12);
}

.account-x-button {
  filter: drop-shadow(0 8px 18px rgba(97, 184, 255, 0.14));
  transition: transform 160ms ease, filter 160ms ease;
}

.account-x-button:hover,
.account-x-button:focus-visible {
  filter: drop-shadow(0 10px 24px rgba(97, 184, 255, 0.26));
  transform: translateY(-1px);
}

.account-summary p,
.row-detail span {
  border-color: rgba(110, 231, 255, 0.14);
}

.category-list a,
.pulse-item {
  border-color: rgba(110, 231, 255, 0.18);
}

.pulse-item {
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.09), transparent),
    rgba(5, 10, 17, 0.92);
}

.pulse-item strong {
  color: var(--ice);
  border-color: rgba(255, 209, 102, 0.22);
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.18), rgba(255, 209, 102, 0.055));
}

.bottom-nav {
  border-color: rgba(110, 231, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(4, 7, 12, 0.92);
}

.bottom-nav a.active {
  box-shadow: inset 0 0 0 1px rgba(110, 231, 255, 0.18), 0 0 26px rgba(92, 241, 195, 0.06);
}

@media (hover: hover) {
  .pulse-item,
  .filter-menu summary,
  .bottom-nav a {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
  }

  .pulse-item:hover,
  .filter-menu summary:hover,
  .bottom-nav a:hover {
    border-color: rgba(110, 231, 255, 0.34);
    transform: translateY(-1px);
  }
}

/* Selected visual upgrades */
@keyframes account-card-enter {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-row {
  animation: account-card-enter 180ms ease both;
}

.filter-panel {
  padding: 14px;
  border-color: rgba(110, 231, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.07), transparent 42%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.055), transparent 42%),
    rgba(7, 12, 19, 0.98);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.filter-panel .field {
  gap: 7px;
}

.filter-panel .field span {
  color: #9fb1cd;
  font-weight: 950;
}

.filter-panel .field select,
.filter-panel .field input {
  min-height: 48px;
}

.score {
  border-width: 1px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 58%),
    rgba(5, 10, 17, 0.76);
}

.score.good {
  border-color: rgba(92, 241, 195, 0.55);
  background:
    radial-gradient(circle at 50% 45%, rgba(92, 241, 195, 0.24), transparent 64%),
    rgba(61, 224, 155, 0.1);
  box-shadow: inset 0 0 0 4px rgba(5, 7, 11, 0.68), 0 0 32px rgba(92, 241, 195, 0.22);
}

.score.warn {
  border-color: rgba(255, 209, 102, 0.55);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 209, 102, 0.24), transparent 64%),
    rgba(255, 209, 102, 0.12);
  box-shadow: inset 0 0 0 4px rgba(5, 7, 11, 0.68), 0 0 32px rgba(255, 209, 102, 0.18);
}

.score.bad {
  border-color: rgba(255, 95, 115, 0.55);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 95, 115, 0.25), transparent 64%),
    rgba(255, 95, 115, 0.12);
  box-shadow: inset 0 0 0 4px rgba(5, 7, 11, 0.68), 0 0 32px rgba(255, 95, 115, 0.18);
}

.new-account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid rgba(255, 209, 102, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.22), rgba(255, 209, 102, 0.06)),
    rgba(5, 10, 17, 0.86);
  color: #ffd166;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.14);
}

.account-avatar .new-account-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  z-index: 3;
  justify-content: center;
  min-width: 31px;
  min-height: 15px;
  padding: 0 7px;
  border-width: 1px;
  border-radius: 6px;
  font-size: 8px;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 2px rgba(5, 10, 17, 0.72),
    0 0 14px rgba(255, 209, 102, 0.24);
}

.signal-account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border: 1px solid rgba(92, 241, 195, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.24), rgba(92, 241, 195, 0.07)),
    rgba(5, 10, 17, 0.86);
  color: #5cf1c3;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(92, 241, 195, 0.16);
}

.account-avatar .signal-account-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  z-index: 3;
  justify-content: center;
  min-width: 42px;
  min-height: 15px;
  padding: 0 7px;
  border-width: 1px;
  border-radius: 6px;
  font-size: 8px;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 2px rgba(5, 10, 17, 0.72),
    0 0 14px rgba(92, 241, 195, 0.28);
}

.account-row.is-watchlisted .new-account-badge,
.account-row.is-watchlisted .signal-account-badge {
  border-color: rgba(var(--brand-turquoise-rgb), 0.52);
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.28), rgba(var(--brand-turquoise-rgb), 0.08)),
    rgba(5, 10, 17, 0.86);
  color: var(--brand-turquoise);
  box-shadow: 0 0 16px rgba(var(--brand-turquoise-rgb), 0.18);
}

.account-row.is-watchlisted .account-avatar .new-account-badge,
.account-row.is-watchlisted .account-avatar .signal-account-badge {
  box-shadow:
    0 0 0 2px rgba(5, 10, 17, 0.72),
    0 0 15px rgba(var(--brand-turquoise-rgb), 0.28);
}

.account-row.top-signal-account.is-watchlisted .signal-account-badge {
  border-color: rgba(92, 241, 195, 0.42);
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.24), rgba(92, 241, 195, 0.07)),
    rgba(5, 10, 17, 0.86);
  color: #5cf1c3;
  box-shadow: 0 0 16px rgba(92, 241, 195, 0.16);
}

.account-row.top-signal-account.is-watchlisted .account-avatar .signal-account-badge {
  box-shadow:
    0 0 0 2px rgba(5, 10, 17, 0.72),
    0 0 14px rgba(92, 241, 195, 0.28);
}

.account-row.is-verified .handle-link {
  color: var(--username-blue);
  text-shadow: 0 0 18px rgba(97, 184, 255, 0.2);
}

.account-row.is-verified .account-avatar {
  border-color: rgba(110, 231, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(110, 231, 255, 0.06), 0 12px 28px rgba(0, 0, 0, 0.34);
}

.verified-badge {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  filter: drop-shadow(0 0 9px rgba(62, 162, 255, 0.64));
}

.account-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-follower-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.account-metric-grid span {
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid rgba(110, 231, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.055), transparent),
    rgba(5, 10, 17, 0.72);
}

.account-metric-grid .metric-wide {
  grid-column: 1 / -1;
}

.account-market-grid.no-volume .metric-wide {
  text-align: center;
  align-content: center;
}

.account-metric-grid b {
  display: block;
  margin-top: 4px;
  color: #edf6ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.account-metric-grid .market-cap-value {
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 241, 195, 0.14);
}

.account-follower-grid span {
  white-space: nowrap;
}

.account-row.source-coingecko {
  border-color: rgba(92, 241, 195, 0.2);
}

.account-row.source-dexscreener {
  border-color: rgba(110, 231, 255, 0.22);
}

.account-row.source-coingecko .research-source-button {
  border-color: rgba(92, 241, 195, 0.42);
  color: var(--green);
}

.account-row.source-dexscreener .research-source-button {
  border-color: rgba(110, 231, 255, 0.42);
  color: var(--cyan);
}

.source-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.source-stats a {
  min-width: 0;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.07), transparent),
    rgba(5, 10, 17, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.source-stats span {
  display: block;
  min-width: 0;
  color: #8ea0ba;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.source-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--username-blue);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  overflow-wrap: anywhere;
}

.source-stats strong {
  color: var(--brand-turquoise);
}

.source-stats a strong {
  color: var(--brand-turquoise) !important;
}

body.watchlist-mode .feed .section-title {
  display: none;
}

.category-pulse-title a {
  flex: 1 1 100%;
  margin-top: 2px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.leaderboard-list {
  display: grid;
  gap: 8px;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(110, 231, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.08), transparent),
    rgba(5, 10, 17, 0.82);
}

.leaderboard-item-locked {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.leaderboard-item-locked > :not(.gate-overlay) {
  filter: blur(4px);
  opacity: 0.38;
}

.gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  text-align: center;
  background: linear-gradient(90deg, rgba(5, 10, 17, 0.58), rgba(5, 10, 17, 0.9), rgba(5, 10, 17, 0.58));
}

.gate-overlay span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.gate-overlay a,
.locked-account-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 30px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 10px;
  border: 1px solid rgba(92, 241, 195, 0.34);
  border-radius: 7px;
  background: rgba(92, 241, 195, 0.12);
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.home-account-lock {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.home-account-lock > .account-row {
  pointer-events: none;
}

.home-account-lock > .account-row {
  filter: blur(4px);
  opacity: 0.38;
}

.account-gate-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(5, 10, 17, 0.72), rgba(5, 10, 17, 0.92)),
    rgba(5, 10, 17, 0.72);
}

.account-row-locked {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: 10px;
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(110, 231, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.06), transparent),
    rgba(5, 10, 17, 0.78);
  overflow: hidden;
}

.account-row-locked::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 8px, transparent 8px 16px),
    rgba(5, 10, 17, 0.2);
  pointer-events: none;
}

.locked-account-preview {
  position: relative;
  display: grid;
  gap: 4px;
  filter: blur(2.5px);
  opacity: 0.42;
  text-align: center;
}

.locked-account-preview span {
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.locked-account-preview strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 950;
}

.locked-account-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.locked-account-action {
  position: relative;
  min-height: 34px;
  white-space: nowrap;
}

.category-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 14px;
}

.category-detail-stats div {
  min-width: 0;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(92, 241, 195, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.08), transparent),
    rgba(5, 10, 17, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-detail-stats span {
  display: block;
  color: #8ea0ba;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-detail-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

.category-detail {
  margin-top: 14px;
}

.category-detail-head {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.08), transparent),
    rgba(5, 10, 17, 0.82);
}

.category-detail-head a {
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.category-detail-head h2,
.category-detail-title-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 21px;
  font-family: inherit;
  font-weight: 950;
  line-height: 1.05;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.category-detail-title-button:active {
  color: var(--brand-turquoise);
}

.category-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-detail-feed {
  margin-top: 10px;
}

.account-row-collapsible.is-expanded {
  border-color: rgba(92, 241, 195, 0.3);
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 241, 195, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(110, 231, 255, 0.045), transparent 58%),
    rgba(5, 10, 17, 0.9);
}

.account-row-collapsible.is-expanded .account-summary {
  padding: 10px;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 7, 12, 0.32);
}

.account-row-collapsible.is-expanded .row-detail,
.account-row-collapsible.is-expanded .category-list {
  padding-top: 2px;
}

.leaderboard-rank {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(92, 241, 195, 0.2);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.leaderboard-item strong {
  min-width: 0;
  color: var(--brand-turquoise);
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-item b {
  min-width: 48px;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(156, 183, 214, 0.18);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), transparent 44%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.055), transparent 40%),
    rgba(13, 19, 29, 0.94);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: var(--brand-turquoise);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.leaderboard-item.category-special-item {
  border-color: rgba(var(--brand-turquoise-rgb), 0.32);
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.12), transparent 48%),
    linear-gradient(135deg, rgba(var(--brand-turquoise-rgb), 0.08), transparent 42%),
    rgba(13, 19, 29, 0.96);
}

.leaderboard-item.category-special-item .leaderboard-rank {
  width: auto;
  min-width: 38px;
  padding: 0 7px;
  border-radius: 7px;
  border-color: rgba(var(--brand-turquoise-rgb), 0.3);
  color: var(--brand-turquoise);
  font-size: 10px;
}

/* Final polish pass */
.app {
  padding-top: 8px;
}

.filter-grid,
.source-logo-grid,
.source-stats {
  margin-top: 0;
}

.controls > .source-logo-grid {
  margin-top: 0;
}

.total-accounts + .source-stats,
.source-stats + .controls {
  margin-top: 0;
}

.feed {
  margin-top: 0;
}

.account-feed {
  gap: 10px;
  margin-top: 6px;
}

main > .feed .section-title,
main > .category-pulse-title {
  margin-top: 0;
  padding-top: 12px;
  border-top-color: rgba(247, 251, 255, 0.12);
}

main > .feed .section-title::before,
main > .category-pulse-title::before {
  width: min(104px, 30%);
  background: linear-gradient(90deg, transparent, rgba(92, 241, 195, 0.54), rgba(110, 231, 255, 0.38), transparent);
  box-shadow: 0 0 8px rgba(110, 231, 255, 0.14);
}

main > .feed .section-title h2,
main > .category-pulse-title h2 {
  color: rgba(244, 247, 251, 0.86);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-shadow: none;
}

.section-subtitle,
main > .category-pulse-title span,
.strip-head span,
.section-title span {
  color: rgba(92, 241, 195, 0.72);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.top-signal-feed,
.feed[aria-label="DexScreener accounts"],
.feed[aria-label="CoinGecko accounts"],
.category-pulse {
  border-radius: 10px;
}

.top-signal-feed {
  padding: 0;
  background: none;
}

.controls + .top-signal-feed {
  margin-top: 4px;
}

.top-signal-feed .section-title {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.top-signal-feed .section-title::before {
  display: none;
}

.feed[aria-label="DexScreener accounts"] {
  padding: 1px 0 2px;
  background: linear-gradient(180deg, rgba(97, 184, 255, 0.032), transparent 58%);
}

.feed[aria-label="CoinGecko accounts"] {
  padding: 1px 0 2px;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.026), transparent 58%);
}

.account-row,
.category-pulse,
.settings-panel,
.filter-panel {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.account-row:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(92, 241, 195, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.account-row.signal-good::after,
.account-row.signal-warn::after,
.account-row.signal-bad::after,
.account-row.low-liquidity::after {
  box-shadow: none;
}

.account-row.signal-good .account-avatar::after,
.account-row.signal-warn .account-avatar::after,
.account-row.signal-bad .account-avatar::after,
.account-row.low-liquidity .account-avatar::after {
  opacity: 0.76;
}

.account-row.is-watchlisted .account-avatar::after {
  opacity: 0.94;
}

.account-row-collapsible:not(.is-expanded) {
  min-height: 88px;
}

.account-row-collapsible:not(.is-expanded) .account-name-block {
  gap: 5px;
}

.account-row-collapsible:not(.is-expanded) .account-line {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.08;
}

.collapsed-statline {
  gap: 5px;
}

.collapsed-statline .collapsed-stat {
  padding: 4px 7px;
  border-color: rgba(110, 231, 255, 0.09);
  background: rgba(5, 10, 17, 0.42);
}

.collapsed-statline b {
  color: rgba(142, 160, 186, 0.86);
  font-weight: 800;
}

.account-row-collapsible.is-expanded {
  border-color: rgba(92, 241, 195, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 241, 195, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(110, 231, 255, 0.032), transparent 58%),
    rgba(5, 10, 17, 0.92);
}

.account-row-collapsible.is-expanded .account-summary,
.account-row-collapsible.is-expanded .row-detail span,
.account-row-collapsible.is-expanded .category-list a {
  border-color: rgba(110, 231, 255, 0.1);
  background: rgba(2, 7, 12, 0.28);
}

.account-row-collapsible.is-expanded .row-detail {
  gap: 8px;
}

.new-account-badge,
.signal-account-badge {
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.account-avatar .new-account-badge,
.account-avatar .signal-account-badge {
  bottom: -6px;
  min-height: 15px;
  padding: 0 7px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 900;
}

.tweet-about-button {
  border-color: rgba(92, 241, 195, 0.34);
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.16), rgba(92, 241, 195, 0.06)),
    rgba(5, 10, 17, 0.88);
  color: var(--text);
}

.research-source-button,
.load-more-button,
.watchlist-button {
  border-color: rgba(110, 231, 255, 0.16);
  background: rgba(5, 10, 17, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.project-watch-row .watchlist-button {
  border-color: rgba(92, 241, 195, 0.34);
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.14), rgba(92, 241, 195, 0.045)),
    rgba(5, 10, 17, 0.82);
  color: #f7fbff;
  box-shadow: 0 0 18px rgba(92, 241, 195, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-watch-row .watchlist-button.is-watched,
.project-watch-row .watchlist-button.is-watched:hover,
.project-watch-row .watchlist-button.is-watched:focus-visible {
  color: #f7fbff;
}

.signal-summary-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 241, 195, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 241, 195, 0.13), rgba(110, 231, 255, 0.045)),
    rgba(5, 10, 17, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 0 20px rgba(92, 241, 195, 0.07);
}

.signal-summary-panel span {
  color: #8ea0ba;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.signal-summary-panel b {
  color: var(--green);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 20px rgba(92, 241, 195, 0.18);
}

.signal-summary-panel.warn b {
  color: var(--ice);
}

.signal-summary-panel.bad {
  border-color: rgba(255, 95, 115, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 95, 115, 0.12), rgba(110, 231, 255, 0.035)),
    rgba(5, 10, 17, 0.78);
}

.signal-summary-panel.bad b {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 95, 115, 0.16);
}

.filter-panel {
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.filter-panel .field span {
  font-weight: 800;
}

.account-row,
.filter-menu summary,
.bottom-nav a,
.load-more-button,
.tweet-about-button,
.research-source-button,
.watchlist-button,
.source-logo-grid a {
  -webkit-tap-highlight-color: transparent;
}

.account-row-collapsible:active,
.filter-menu summary:active,
.bottom-nav a:active,
.load-more-button:active,
.tweet-about-button:active,
.research-source-button:active,
.watchlist-button:active,
.source-logo-grid a:active {
  transform: scale(0.992);
}

.account-row-collapsible:active {
  transform: none;
}

@media (max-width: 520px) {
  .app {
    padding-inline: 12px;
  }

  main > .feed .section-title h2,
  main > .category-pulse-title h2 {
    font-size: 19px;
  }
}

/* Five designer-call refinements */
.total-accounts,
.source-stats a,
.category-detail-stats div {
  border-top-color: rgba(255, 255, 255, 0.085);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), transparent 46%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.055), transparent 42%),
    rgba(5, 10, 17, 0.82);
}

.source-stats strong,
.category-detail-stats strong,
.total-accounts strong {
  letter-spacing: -0.01em;
}

.account-row-collapsible.is-expanded .account-summary p {
  color: rgba(237, 246, 255, 0.88);
  font-size: 13px;
  line-height: 1.5;
}

.account-row-collapsible.is-expanded .row-detail span {
  min-height: 46px;
  align-content: center;
}

.account-row-collapsible.is-expanded .row-detail b {
  margin-top: 3px;
}

.category-list a {
  background:
    linear-gradient(180deg, rgba(97, 184, 255, 0.08), rgba(97, 184, 255, 0.025)),
    rgba(5, 10, 17, 0.54);
}

.category-list a,
.category-list a:visited,
.category-list a:hover,
.category-list a:active,
.pulse-item span,
.leaderboard-item strong {
  color: var(--brand-turquoise);
}

.bottom-nav {
  padding-top: 7px;
  border-top-color: rgba(110, 231, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent),
    rgba(4, 7, 12, 0.94);
}

.bottom-nav::before {
  content: none;
}

.bottom-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  width: min(152px, 44vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-turquoise-rgb), 0.74), transparent);
  box-shadow: 0 0 10px rgba(var(--brand-turquoise-rgb), 0.2);
  pointer-events: none;
  transform: translateX(-50%);
}

.bottom-nav a {
  position: relative;
  z-index: 1;
  min-height: 39px;
  color: rgba(141, 150, 168, 0.86);
}

.bottom-nav a.active {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.13), rgba(97, 184, 255, 0.055)),
    rgba(16, 23, 34, 0.72);
}

/* Dark glass lift */
body {
  background:
    radial-gradient(circle at 50% -8%, rgba(40, 238, 255, 0.055), transparent 34%),
    linear-gradient(180deg, #0d1119 0%, #111722 52%, #0b1018 100%);
}

.category-pulse,
.account-row,
.settings-panel,
.filter-panel,
.total-accounts,
.source-stats a,
.category-detail-stats div,
.category-detail-head,
.leaderboard-item {
  border-color: rgba(156, 183, 214, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), transparent 44%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.055), transparent 40%),
    rgba(13, 19, 29, 0.94);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.account-row {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), transparent 42%),
    linear-gradient(135deg, rgba(92, 241, 195, 0.052), transparent 34%),
    linear-gradient(315deg, rgba(97, 184, 255, 0.035), transparent 36%),
    rgba(14, 20, 31, 0.95);
}

.account-row:hover {
  border-color: rgba(110, 231, 255, 0.3);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(92, 241, 195, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-row-collapsible.is-expanded {
  background:
    radial-gradient(circle at 18% 0%, rgba(92, 241, 195, 0.065), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), transparent 46%),
    rgba(14, 21, 32, 0.96);
}

.account-row-collapsible.is-expanded .account-summary,
.account-row-collapsible.is-expanded .row-detail span,
.account-row-collapsible.is-expanded .category-list a,
.collapsed-statline .collapsed-stat,
.pulse-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 60%),
    rgba(11, 17, 26, 0.72);
}

.source-logo-grid a,
.search input,
.filter-action-row .sort-control,
.filter-menu summary,
.field input,
.field select {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 58%),
    rgba(13, 19, 29, 0.9);
  border-color: rgba(156, 183, 214, 0.18);
}

.bottom-nav {
  border-top-color: rgba(156, 183, 214, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), transparent),
    rgba(10, 15, 23, 0.94);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.bottom-nav a.active {
  background:
    linear-gradient(180deg, rgba(92, 241, 195, 0.14), rgba(97, 184, 255, 0.07)),
    rgba(24, 33, 47, 0.88);
}

.meta,
.source-stats span,
.category-detail-stats span,
.collapsed-statline b {
  color: rgba(174, 188, 210, 0.84);
}

.account-row.watchlist-feedback-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  width: auto;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.filter-menu[open] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 14px 86px;
  background:
    radial-gradient(circle at 50% -8%, rgba(var(--brand-turquoise-rgb), 0.12), transparent 34%),
    rgba(3, 6, 11, 0.94);
  backdrop-filter: blur(16px);
}

.filter-menu[open] summary {
  min-height: 48px;
  border-color: rgba(var(--brand-turquoise-rgb), 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 58%),
    rgba(13, 19, 29, 0.96);
  color: var(--brand-turquoise);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.filter-menu[open] .filter-panel {
  position: static;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  width: 100%;
  max-width: 760px;
  height: 100%;
  margin: 0 auto;
  padding: 14px;
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 10px;
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 640px) {
  .filter-menu[open] .filter-panel {
    grid-template-columns: 1fr;
  }
}

.submit-page .app {
  padding-bottom: 28px;
}

.submit-stack {
  display: grid;
  gap: 12px;
}

.submit-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(156, 183, 214, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), transparent 44%),
    linear-gradient(135deg, rgba(var(--brand-turquoise-rgb), 0.055), transparent 40%),
    rgba(13, 19, 29, 0.94);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.submit-form {
  display: grid;
  gap: 10px;
}

.submit-button {
  min-height: 46px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.18), rgba(var(--brand-turquoise-rgb), 0.07)),
    rgba(10, 18, 26, 0.9);
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(var(--brand-turquoise-rgb), 0.14);
}

.submit-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.submit-message[data-state="success"] {
  color: var(--brand-turquoise);
}

.submit-message[data-state="error"] {
  color: var(--red);
}

.submit-queue-list {
  display: grid;
  gap: 8px;
}

.submit-queue-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 10px 11px;
  border: 1px solid rgba(156, 183, 214, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), transparent 56%),
    rgba(8, 14, 22, 0.78);
}

.submit-queue-item strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.submit-queue-item span,
.submit-empty {
  margin: 0;
  color: rgba(174, 188, 210, 0.82);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.account-page-shell {
  display: grid;
  gap: 12px;
}

.account-page-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(16, 28, 38, 0.92), rgba(7, 12, 20, 0.94)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 44px rgba(0, 0, 0, 0.26);
}

.account-page-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.account-page-avatar {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border: 3px solid rgba(var(--brand-turquoise-rgb), 0.78);
  border-radius: 50%;
  background: #060b12;
  box-shadow: 0 0 0 5px rgba(var(--brand-turquoise-rgb), 0.08), 0 0 26px rgba(var(--brand-turquoise-rgb), 0.18);
}

.account-page-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-page-kicker,
.account-page-hero p,
.account-page-score span {
  margin: 0;
  color: var(--soft-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-page-hero h1 {
  margin: 3px 0;
  color: var(--text);
  font-size: clamp(22px, 7vw, 34px);
  line-height: 1;
}

.account-page-hero h1 span {
  color: rgba(148, 163, 184, 0.58);
}

.account-page-score,
.account-page-grid span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(5, 10, 17, 0.72);
}

.account-page-score {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.account-page-score b {
  color: var(--brand-turquoise);
  font-size: 24px;
}

.account-page-bio {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: rgba(5, 10, 17, 0.72);
  color: #dce7f5;
  font-size: 14px;
  line-height: 1.45;
}

.account-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-page-grid span {
  color: #8190a7;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-page-grid b {
  color: var(--text);
  font-size: 15px;
}

.account-page-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.account-page-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.28);
  border-radius: 8px;
  background: rgba(5, 10, 17, 0.66);
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-page-actions {
  display: grid;
  gap: 8px;
}

.account-page-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.12), rgba(var(--brand-turquoise-rgb), 0.035)),
    rgba(5, 10, 17, 0.82);
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.auth-stack {
  display: grid;
  gap: 10px;
}

.auth-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(16, 28, 38, 0.88), rgba(7, 12, 20, 0.92)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 16px 40px rgba(0, 0, 0, 0.22);
}

.auth-provider-button,
.settings-login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(var(--brand-turquoise-rgb), 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(var(--brand-turquoise-rgb), 0.13), rgba(var(--brand-turquoise-rgb), 0.04)),
    rgba(5, 10, 17, 0.84);
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.google-login-native {
  display: grid;
  min-height: 42px;
}

.google-login-native > div {
  width: 100% !important;
}

.auth-provider-button-x {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(5, 10, 17, 0.9);
}

.x-login-logo {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  object-fit: cover;
}

.auth-provider-button-secondary {
  border-color: rgba(255, 95, 115, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 95, 115, 0.13), rgba(255, 95, 115, 0.04)),
    rgba(5, 10, 17, 0.84);
}

.settings-login-link {
  min-height: 34px;
  padding: 0 12px;
  margin-left: auto;
}

/* Homepage section rhythm */
body:not(.accounts-page):not(.categories-page):not(.settings-page) main {
  --home-section-gap: 10px;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed {
  margin-top: var(--home-section-gap);
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) .controls + .top-signal-feed {
  margin-top: -3px;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed .section-title {
  display: grid;
  gap: var(--home-section-gap);
  margin: 0;
  padding-top: var(--home-section-gap);
  border-top: 0;
  text-align: center;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed .section-title::before {
  display: none;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .category-pulse-title {
  border-top: 0;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .category-pulse-title::before {
  display: none;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) .top-signal-feed .section-title {
  padding-top: 0;
  border-top: 0;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) .top-signal-feed .section-title::before {
  display: none;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed .section-title h2,
body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed .section-title .section-subtitle {
  margin: 0;
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) main > .feed .account-feed {
  margin-top: var(--home-section-gap);
}

body:not(.accounts-page):not(.categories-page):not(.settings-page) .load-more-button {
  margin-top: var(--home-section-gap);
}
