:root {
  --bg: #060707;
  --surface: #0c0e0d;
  --surface-2: #111312;
  --line: #232624;
  --line-soft: #171a18;
  --text: #f0f1e9;
  --muted: #8b918d;
  --dim: #78807b;
  --green: #8df5b5;
  --green-deep: #173a27;
  --red: #ff7d6e;
  --red-deep: #3d211f;
  --amber: #f4d37c;
  --max: 1380px;
  --radius: 14px;
  --mono: "Manrope", Arial, sans-serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.drawer-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      900px 460px at 18% -12%,
      rgba(112, 210, 151, 0.055),
      transparent 68%
    ),
    linear-gradient(180deg, #070908 0%, var(--bg) 38%);
  z-index: -1;
}
.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.055;
  animation: ambient-drift 20s ease-in-out infinite alternate;
}
.ambient::before {
  top: -300px;
  right: 3%;
  background: var(--green);
}
.ambient::after {
  top: 24%;
  left: -390px;
  background: #6b8cff;
  animation-delay: -9s;
}
@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  to {
    transform: translate3d(42px, 30px, 0) scale(1.08);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  height: 68px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(6, 8, 7, 0.88);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--green);
  transform: translateY(1px);
}
.brand-mark svg,
.brand-mark img {
  width: 23px;
  height: 23px;
  display: block;
  fill: currentColor;
  stroke: none;
}
.beta {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}
.main-nav {
  --nav-indicator-x: 0px;
  --nav-indicator-width: 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: var(--muted);
}
.main-nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: var(--nav-indicator-width);
  height: 1px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0;
  transform: translate3d(var(--nav-indicator-x), 0, 0);
  transition:
    width 0.28s var(--ease),
    transform 0.28s var(--ease),
    opacity 0.16s ease;
  pointer-events: none;
}
.main-nav.indicator-ready::after {
  opacity: 1;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.main-nav svg {
  width: 14px;
  height: 14px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}
.button {
  min-height: 38px;
  border-radius: 8px;
  border: 0;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: opacity 0.15s;
}
.button svg {
  width: 17px;
  height: 17px;
}
.button-primary {
  justify-self: end;
  background: var(--green);
  color: #0a1610;
}
.button-primary:hover {
  opacity: 0.84;
}
.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}
.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px;
}
.board-head {
  padding: 32px 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 36px;
}
.eyebrow {
  color: var(--muted);
  letter-spacing: 0;
  font-size: 10px;
  font-weight: 700;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(141, 245, 181, 0.8);
  vertical-align: 1px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin: 0;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 750;
  white-space: nowrap;
}
.board-intro {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}
.negative {
  color: var(--red);
}
.positive {
  color: var(--green);
}
.neutral {
  color: var(--text);
}

.board {
  border: 1px solid #272c29;
  border-radius: 12px 12px 0 0;
  background: rgba(10, 12, 11, 0.94);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.018);
  overflow: hidden;
}
.toolbar {
  min-height: 62px;
  padding: 10px 14px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.tabs {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
}
.tab svg {
  width: 14px;
  height: 14px;
}
.tab:hover {
  opacity: 0.72;
}
.tab.active {
  background: #222724;
  color: var(--text);
}
.tools {
  display: flex;
  gap: 8px;
}
.sort-control {
  height: 38px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #080a09;
}
.sort-control svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.sort-control select {
  width: 166px;
  border: 0;
  outline: 0;
  color: #c9cdc9;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}
.search-field {
  width: min(280px, 28vw);
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080a09;
}
.search-field svg,
.icon-button svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 12px;
}
.search-field input::placeholder {
  color: #656c68;
}
.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080a09;
  color: var(--muted);
  cursor: pointer;
}
.icon-button:hover {
  opacity: 0.7;
}
.icon-button.active {
  color: var(--green);
  border-color: #42554a;
}
.filter-row {
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 11px;
}
.filter-row[hidden] {
  display: none;
}
.filter-chip {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}
.filter-chip.active {
  color: var(--green);
  border-color: #395444;
  background: rgba(141, 245, 181, 0.06);
}
.table-head,
.founder-row {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.65fr) minmax(150px, 0.9fr) minmax(120px, 0.7fr)
    minmax(130px, 0.8fr) minmax(110px, 0.7fr) 32px;
  gap: 18px;
  align-items: center;
}
.table-head {
  min-height: 36px;
  padding: 0 20px;
  color: #707672;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.founder-row {
  position: relative;
  min-height: 74px;
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.15s;
}
.founder-row::before {
  display: none;
}
.founder-row:hover {
  opacity: 0.76;
}
.person-cell {
  display: grid;
  grid-template-columns: 22px 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}
.rank {
  color: var(--dim);
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.78) contrast(1.04);
}
.person-meta {
  min-width: 0;
}
.person-name {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 760;
}
.person-name svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}
.person-detail {
  display: flex;
  gap: 8px;
  color: var(--dim);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.person-detail span + span::before {
  content: "·";
  margin-right: 8px;
}
.projects-cell {
  display: flex;
  align-items: center;
}
.project-orbs {
  display: flex;
}
.project-orb {
  width: 29px;
  height: 29px;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--surface);
  color: #d4d7d3;
  font-size: 8px;
  font-weight: 750;
  background: #292f2c;
  overflow: hidden;
}
.project-orb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.project-orb:first-child {
  margin-left: 0;
}
.project-count {
  margin-left: 9px;
  color: var(--dim);
  font-size: 10px;
}
.money {
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.row-money-group {
  display: contents;
}
.money strong {
  font: inherit;
  color: inherit;
}
.mobile-forecast,
.mobile-metric-label {
  display: none;
}
.money small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font: 9px var(--sans);
  font-weight: 500;
  letter-spacing: 0;
}
.forecast-line {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.forecast-line.payback,
.forecast-line.milestone {
  color: #8fcda7;
}
.forecast-line.uncertain {
  color: #707873;
}
.row-arrow {
  color: var(--dim);
  font-size: 18px;
}
.empty-state {
  padding: 70px 20px;
  text-align: center;
}
.empty-state p {
  margin-bottom: 7px;
  font-size: 18px;
}
.empty-state span {
  color: var(--muted);
  font-size: 12px;
}
.transparency-note {
  min-height: 86px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  background: #101311;
}
.transparency-note svg {
  width: 25px;
  height: 25px;
  color: var(--green);
}
.transparency-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.transparency-note strong {
  color: #c5cac6;
  font-weight: 600;
}
.transparency-note a {
  color: var(--green);
  font-size: 11px;
  white-space: nowrap;
}

.info-grid {
  padding: 64px 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.info-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(19, 23, 21, 0.88),
    rgba(10, 12, 11, 0.78)
  );
}
.info-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #35423b;
  border-radius: 9px;
  color: var(--green);
  background: rgba(141, 245, 181, 0.035);
}
.info-icon svg {
  width: 17px;
  height: 17px;
}
.info-card h2 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.02em;
}
.info-card p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.join-strip {
  margin: 12px 0 70px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #2e3d35;
  border-radius: 12px;
  background:
    radial-gradient(
      500px 160px at 84% 50%,
      rgba(141, 245, 181, 0.075),
      transparent 70%
    ),
    #101311;
}
.join-strip h2 {
  margin-bottom: 5px;
  font-size: 17px;
  letter-spacing: -0.025em;
}
.join-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

footer {
  max-width: var(--max);
  min-height: 106px;
  margin: 0 auto;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 50px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: 10px;
}
.footer-brand {
  color: var(--text);
}
.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}

.drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
}
.drawer-shell.open {
  visibility: visible;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 3, 0.72);
  opacity: 0;
  backdrop-filter: blur(7px);
  transition: opacity 0.3s;
}
.drawer-shell.open .drawer-backdrop {
  opacity: 1;
}
.profile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  padding: 44px 42px;
  overflow-y: auto;
  background: #101312;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
}
.drawer-shell.open .profile-drawer {
  transform: none;
}
.drawer-close,
.dialog-close {
  position: absolute;
  top: 22px;
  right: 23px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.drawer-profile-head {
  margin-top: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.drawer-profile-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.drawer-id {
  display: flex;
  gap: 18px;
  align-items: center;
}
.drawer-id .avatar {
  width: 66px;
  height: 66px;
  border-radius: 19px;
  font-size: 18px;
}
.drawer-id h2 {
  margin: 0 0 7px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.drawer-id p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.drawer-bio {
  margin: 25px 0 0;
  color: #b5bab6;
  font-size: 13px;
  line-height: 1.6;
}
.drawer-stats {
  margin: 28px 0 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

/* Compact 12-month financial history in the profile drawer. */
.history-card {
  margin: 18px 0;
  padding: 15px;
  border: 1px solid #26342b;
  border-radius: 13px;
  background: linear-gradient(140deg, #0e1511, #0b0f0d);
}
.history-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.history-card-head span,
.history-card-head strong,
.history-card-head small,
.history-empty span,
.history-empty strong,
.history-empty small {
  display: block;
}
.history-card-head span,
.history-empty span {
  color: #829087;
  font-size: 10px;
}
.history-card-head strong,
.history-empty strong {
  margin-top: 3px;
  font-size: 13px;
}
.history-card-head div > small {
  margin-top: 3px;
  color: #8b978f;
  font-size: 9px;
}
.history-card-head > small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #869189;
  font-size: 9px;
  white-space: nowrap;
}
.history-card-head > small i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}
.history-card .income {
  background: var(--green);
}
.history-card .expense {
  background: #ef7073;
}
.history-plot {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 5px;
  height: 142px;
  margin-top: 15px;
  background: linear-gradient(to bottom, transparent calc(50% - .5px), #28332c calc(50% - .5px), #28332c calc(50% + .5px), transparent calc(50% + .5px));
}
.history-column {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr 17px;
  min-width: 0;
}
.history-column > i {
  width: min(16px, 74%);
  height: var(--bar-height);
  justify-self: center;
  border-radius: 4px 4px 1px 1px;
}
.history-column > i.income {
  grid-row: 1;
  align-self: end;
}
.history-column > i.expense {
  grid-row: 2;
  align-self: start;
  border-radius: 1px 1px 4px 4px;
}
.history-column > i.zero {
  display: none;
}
.history-column > small {
  grid-row: 3;
  align-self: end;
  overflow: hidden;
  color: #77827b;
  font-size: 8px;
  text-align: center;
  text-overflow: clip;
  white-space: nowrap;
}
.history-empty {
  display: grid;
  min-height: 90px;
  place-items: center start;
}
.history-empty small {
  margin-top: 4px;
  color: #7e8a82;
  font-size: 10px;
}
@media (max-width: 640px) {
  .history-card {
    margin: 15px 0;
    padding: 13px;
  }
  .history-plot {
    height: 126px;
    gap: 3px;
  }
  .history-column > small {
    font-size: 7px;
  }
}
.drawer-stats div {
  min-height: 92px;
  padding: 17px;
  background: #141817;
}
.drawer-stats span {
  display: block;
  margin-bottom: 16px;
  color: var(--dim);
  font-size: 9px;
}
.drawer-stats strong {
  font-size: 15px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.forecast-card {
  margin: 12px 0 4px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  border: 1px solid #2d3a32;
  border-radius: 11px;
  background: #101612;
}
.forecast-card svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}
.forecast-card span,
.forecast-card strong,
.forecast-card small {
  display: block;
}
.forecast-card span {
  margin-bottom: 4px;
  color: var(--dim);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.forecast-card strong {
  font-size: 12px;
}
.forecast-card small {
  margin-top: 5px;
  color: #7f8b83;
  font-size: 9px;
  line-height: 1.45;
}
.forecast-card.uncertain {
  border-color: #303633;
  background: #111412;
}
.forecast-card.uncertain svg {
  color: #747d77;
}
.forecast-card.preliminary {
  border-color: #365847;
  background: #101914;
}
.forecast-card.preliminary svg {
  color: #8fcda7;
}
.drawer-section-title {
  margin: 36px 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.drawer-section-title span {
  color: var(--dim);
}
.project-card {
  width: 100%;
  margin-bottom: 9px;
  padding: 15px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 18px;
  gap: 13px;
  align-items: center;
  text-align: left;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #141817;
  cursor: pointer;
  transition: opacity 0.15s;
}
.project-card:hover {
  opacity: 0.76;
}
.project-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: #202622;
  font-size: 10px;
  font-weight: 750;
}
.project-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.project-card-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}
.project-card-copy small {
  display: block;
  color: var(--dim);
  font-size: 9px;
}
.project-money {
  text-align: right;
  font-size: 11px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}
.project-money small {
  display: block;
  margin-top: 6px;
  color: var(--dim);
  font: 8px var(--sans);
}
.project-arrow {
  width: 16px;
  height: 16px;
  color: var(--dim);
}
.verification {
  margin-top: 25px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #344b3d;
  border-radius: 10px;
  color: #b7c4bc;
  background: rgba(141, 245, 181, 0.035);
  font-size: 10px;
  line-height: 1.5;
}
.verification svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--green);
}
.profile-links {
  margin-top: 26px;
  display: flex;
  gap: 8px;
}
.profile-links {
  flex-wrap: wrap;
}
.profile-links a,
.profile-links button {
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font: 600 10px var(--sans);
  cursor: pointer;
}
.profile-links img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  display: block;
}
.profile-links a:hover {
  color: var(--green);
  border-color: #3a5042;
}
.report-dialog {
  width: min(520px, calc(100% - 28px));
  padding: 24px;
  border: 1px solid #343c37;
  border-radius: 14px;
  background: #111512;
  color: var(--text);
  box-shadow: 0 30px 100px #000b;
}
.report-dialog::backdrop {
  background: #020403cc;
  backdrop-filter: blur(5px);
}
.report-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.report-heading h2 {
  margin: 0 0 7px;
  font-size: 20px;
}
.report-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.report-heading button {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
}
.report-dialog label {
  display: grid;
  gap: 7px;
  margin-top: 15px;
  font-size: 11px;
  font-weight: 700;
}
.report-dialog label > span {
  color: var(--dim);
  font-weight: 500;
}
.report-dialog input,
.report-dialog select,
.report-dialog textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090c0a;
  color: var(--text);
  font: 500 12px var(--sans);
  padding: 0 11px;
}
.report-dialog input,
.report-dialog select {
  height: 42px;
}
.report-dialog textarea {
  min-height: 100px;
  padding-top: 11px;
  resize: vertical;
}
.report-dialog .button {
  width: 100%;
}
.report-message {
  min-height: 18px;
  margin: 10px 0;
  color: #ff8b90;
  font-size: 11px;
}
.report-message.success {
  color: var(--green);
}
.report-dialog .report-consent {
  padding: 11px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  border: 1px solid #2d3c33;
  border-radius: 9px;
  background: #0c130e;
}
.report-dialog .report-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
}
.report-dialog .report-consent span {
  color: #9ba69e;
  line-height: 1.5;
}
.report-dialog .report-consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.drawer-back {
  margin: 6px 0 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}
.drawer-back svg {
  width: 15px;
  height: 15px;
}
.project-detail-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.project-icon.large {
  width: 64px;
  height: 64px;
  border-radius: 17px;
  font-size: 17px;
  flex: none;
}
.project-detail-head h2 {
  margin: 7px 0 5px;
  font-size: 30px;
  letter-spacing: -0.045em;
}
.project-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.status-pill {
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(141, 245, 181, 0.08);
  font-size: 8px;
  font-weight: 700;
}
.project-description {
  margin: 28px 0 0;
  color: #b3b8b4;
  font-size: 12px;
  line-height: 1.7;
}
.mini-chart {
  height: 150px;
  padding: 18px 16px 0;
  display: flex;
  align-items: end;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(141, 245, 181, 0.035), transparent);
}
.mini-chart i {
  flex: 1;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(141, 245, 181, 0.2));
  opacity: 0.7;
}
.project-facts {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.project-facts div {
  padding: 15px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #141817;
}
.project-facts svg {
  grid-row: 1 / 3;
  width: 19px;
  height: 19px;
  color: var(--green);
}
.project-facts span {
  color: var(--dim);
  font-size: 8px;
}
.project-facts strong {
  font-size: 10px;
  font-weight: 650;
}

.join-dialog {
  width: min(570px, calc(100% - 28px));
  padding: 36px 40px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #121514;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}
.join-dialog::backdrop {
  background: rgba(2, 4, 3, 0.76);
  backdrop-filter: blur(7px);
}
.join-dialog h2 {
  margin: 2px 0 8px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 720;
}
.join-dialog > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.form-progress {
  margin: 25px 0 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.form-progress span {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 2px solid var(--line);
  color: var(--dim);
  font-size: 9px;
  font-weight: 650;
}
.form-progress span.active {
  color: var(--text);
  border-color: var(--green);
}
.form-progress i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  font-size: 8px;
}
.join-dialog form {
  display: grid;
  gap: 15px;
}
.form-step {
  display: grid;
  gap: 13px;
}
.form-step[hidden] {
  display: none;
}
.join-dialog label {
  color: #b5bab6;
  font-size: 10px;
}
.join-dialog input,
.join-dialog textarea {
  width: 100%;
  height: 44px;
  margin-top: 7px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--text);
  background: #0b0e0d;
  font-size: 12px;
}
.join-dialog textarea {
  height: 78px;
  padding-top: 12px;
  resize: vertical;
}
.join-dialog input:focus,
.join-dialog textarea:focus {
  border-color: #4a6b57;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.join-dialog .check-label {
  min-height: 42px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}
.join-dialog .check-label input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--green);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 5px;
}
.form-actions .button {
  min-width: 130px;
}
.form-actions .button[hidden] {
  display: none;
}
.join-dialog small {
  color: var(--dim);
  text-align: center;
  font-size: 9px;
}
.success-message {
  padding: 38px 0 18px;
  text-align: center;
}
.success-message span {
  width: 54px;
  height: 54px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--bg);
  background: var(--green);
  font-size: 24px;
}
.success-message h3 {
  margin: 20px 0 9px;
  font-size: 24px;
}
.success-message p {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 1050px) {
  .toolbar {
    flex-wrap: wrap;
  }
  .tools {
    margin-left: auto;
  }
  .table-head,
  .founder-row {
    grid-template-columns:
      minmax(270px, 1.5fr) minmax(120px, 0.7fr) minmax(120px, 0.7fr)
      minmax(120px, 0.7fr) 28px;
  }
  .table-head span:nth-child(5),
  .founder-row > .invested {
    display: none;
  }
}

@media (max-width: 820px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .topbar {
    height: 62px;
    padding: 0 15px;
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    display: none;
  }
  .topbar .button {
    padding: 0 12px;
  }
  .topbar .button svg {
    display: none;
  }
  main {
    padding: 0 14px;
  }
  .board-head {
    padding: 24px 4px 20px;
    display: block;
  }
  h1 {
    font-size: clamp(17px, 4.7vw, 23px);
    white-space: nowrap;
    letter-spacing: -0.055em;
  }
  .board-intro {
    margin-top: 9px;
    text-align: left;
    font-size: 10px;
    white-space: normal;
  }
  .toolbar {
    padding: 9px;
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .tabs {
    margin: 0 -11px -11px;
    padding: 0 11px 11px;
  }
  .tools {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
  }
  .sort-control {
    width: 100%;
  }
  .sort-control select {
    width: 100%;
  }
  .search-field {
    width: calc(100% - 46px);
  }
  .table-head {
    display: none;
  }
  .founder-row {
    min-height: 108px;
    padding: 12px 13px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 10px;
  }
  .founder-row:hover {
    opacity: 0.76;
  }
  .person-cell {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: 18px 44px minmax(0, 1fr);
    gap: 10px;
  }
  .rank {
    font-size: 11px;
  }
  .avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 10px;
  }
  .person-name {
    font-size: 14px;
  }
  .person-name {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .person-detail {
    font-size: 10px;
  }
  .person-detail span:last-child {
    display: none;
  }
  .person-detail span + span::before {
    content: none;
  }
  .projects-cell {
    display: none;
  }
  .row-money-group {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-self: stretch;
    align-items: end;
    gap: 12px;
  }
  .row-money-group .money {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    column-gap: 7px;
    text-align: left;
    font-size: 16px;
    line-height: 1.1;
  }
  .row-money-group .total-result {
    text-align: right;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .row-money-group .total-result .mobile-metric-label {
    text-align: right;
  }
  .row-money-group .money small {
    margin: 0;
  }
  .mobile-metric-label {
    display: block;
    color: var(--dim) !important;
    font-size: 10px !important;
    white-space: nowrap;
  }
  .desktop-money-caption,
  .forecast-line {
    display: none !important;
  }
  .mobile-forecast {
    display: none;
  }
  .row-arrow {
    display: none;
  }
  .filter-row {
    overflow-x: auto;
    padding: 11px;
  }
  .transparency-note {
    grid-template-columns: 24px 1fr;
    padding: 18px;
  }
  .transparency-note a {
    grid-column: 2;
  }
  .info-grid {
    padding: 46px 0 10px;
    grid-template-columns: 1fr;
  }
  .info-card {
    min-height: 0;
    padding: 20px;
  }
  .info-icon {
    margin-bottom: 18px;
  }
  .join-strip {
    margin-bottom: 48px;
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .join-strip .button {
    width: 100%;
  }
  footer {
    padding: 30px 18px;
    grid-template-columns: 1fr auto;
    gap: 22px;
  }
  footer > p {
    display: none;
  }
  .footer-links {
    grid-row: 2;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .profile-drawer {
    padding: 42px 20px;
  }
  .drawer-stats {
    grid-template-columns: 1fr 1fr;
  }
  .drawer-stats div:last-child {
    grid-column: 1 / -1;
  }
  .project-card {
    grid-template-columns: 36px minmax(0, 1fr) 16px;
  }
  .project-card .project-money {
    display: none;
  }
  .project-facts {
    grid-template-columns: 1fr;
  }
  .join-dialog {
    padding: 30px 20px;
  }
  .field-pair {
    grid-template-columns: 1fr;
  }
  .form-progress span {
    gap: 4px;
    font-size: 8px;
  }
  .form-actions {
    justify-content: stretch;
  }
  .form-actions .button {
    flex: 1;
    min-width: 0;
  }
}

.account-action {
  gap: 8px;
}
.account-action img,
.account-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #27302d;
  color: #dfe8e1;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}
.topbar-actions .button {
  white-space: nowrap;
}
.button-ghost {
  border: 1px solid #3b443f;
  background: #0a0d0b;
  color: #e4e8e5;
}
.button-ghost:hover {
  border-color: #59645d;
  background: #101411;
  opacity: 1;
}
@media (max-width: 420px) {
  .topbar-actions {
    gap: 6px;
  }
  .topbar-actions .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }
  .topbar-actions .button-primary {
    padding: 0 11px;
  }
  .brand .beta {
    display: none;
  }
}

.drawer-close,
.dialog-close {
  width: 42px;
  height: 42px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
