:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #18332d;
  background: #f5f7f3;
  font-synthesis: none;
  --line: #dfe5dc;
  --muted: #6c7b72;
  --green: #214c3c;
  --lime: #c8ef89;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select {
  font: inherit;
}
button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
select {
  cursor: pointer;
}
a {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid #70a348;
  outline-offset: 4px;
}
button {
  color: inherit;
}
.topbar {
  height: 88px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 4.3%;
  gap: 30px;
  background: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1px;
}
.brand-light {
  font-weight: 400;
  margin-left: 4px;
}
.network-label {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.beta {
  padding: 4px 6px;
  background: #f0f3eb;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 9px;
}
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.status {
  font-size: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.status:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a2b29e;
}
.status.live:before {
  background: #438653;
}
.quiet-button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  font-size: 12px;
  padding: 10px 13px;
}
main {
  max-width: 1510px;
  margin: auto;
  padding: 0 4.3%;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 48px 0 34px;
  gap: 20px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  margin: 0 0 13px;
  color: var(--muted);
}
h1 {
  font-size: clamp(27px, 3vw, 43px);
  letter-spacing: -1.6px;
  line-height: 1.16;
  margin: 0;
  font-weight: 550;
}
h1 span {
  color: #7e8e80;
}
.intro {
  font-size: 13px;
  color: var(--muted);
  margin: 17px 0 0;
}
.window-control {
  display: grid;
  gap: 9px;
  min-width: 190px;
}
.window-control label {
  font-size: 11px;
  font-weight: 600;
}
.window-control span {
  font-size: 10px;
  color: var(--muted);
}
select {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 10px 30px 10px 12px;
  font-size: 12px;
  color: #294237;
}
.tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  overflow-x: auto;
}
.tabs button {
  white-space: nowrap;
  border: 0;
  background: none;
  padding: 16px 0;
  font-size: 12px;
  border-bottom: 2px solid transparent;
  color: var(--muted);
}
.tabs button.active {
  color: #234b37;
  border-bottom-color: #234b37;
  font-weight: 650;
}
.tabs span {
  margin-left: 5px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: white;
  border-radius: 10px;
  margin-bottom: 24px;
  padding: 24px 0;
}
.metrics article {
  padding: 0 26px;
  border-right: 1px solid var(--line);
}
.metrics article:last-child {
  border-right: 0;
}
.metrics p {
  font-size: 9px;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin: 0 0 13px;
}
.metrics strong {
  display: block;
  font-size: 34px;
  letter-spacing: -1px;
  font-weight: 550;
  line-height: 1;
}
.metrics span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 11px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.main-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 25px 16px;
  gap: 12px;
}
.panel-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 9px;
}
h2 {
  font-size: 19px;
  letter-spacing: -0.5px;
  margin: 0;
  font-weight: 550;
}
.pill {
  border: 1px solid var(--line);
  font-size: 10px;
  padding: 6px 9px;
  border-radius: 30px;
  color: var(--muted);
}
.concentration-body {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 18px 28px 26px;
}
.donut-wrap {
  flex: 0 0 200px;
}
.donut {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #e9eee5;
  display: grid;
  place-items: center;
  transform: rotate(-90deg);
}
.donut > div {
  transform: rotate(90deg);
  width: 151px;
  height: 151px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.donut strong {
  font-size: 39px;
  letter-spacing: -2px;
  font-weight: 550;
}
.donut span {
  font-size: 10px;
  color: var(--muted);
}
.legend {
  flex: 1;
  min-width: 0;
}
.legend-row {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f2ed;
}
.legend-row:last-child {
  border: 0;
}
.legend-row strong {
  margin-left: auto;
  font-weight: 600;
}
.swatch {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.panel-foot {
  border-top: 1px solid var(--line);
  padding: 14px 25px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.watch {
  background: #eff3e8;
}
.watch-dot {
  width: 8px;
  height: 8px;
  background: #879f69;
  border-radius: 50%;
}
.watch #alerts {
  padding: 0 24px;
}
.signal {
  border: 1px solid #d7dfc9;
  border-radius: 7px;
  padding: 15px;
  background: #f9fbf4;
  margin: 8px 0;
}
.signal h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 7px;
}
.signal p {
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
  color: #68765b;
}
.signal.warning {
  border-left: 3px solid #b58a36;
}
.threshold-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 24px 10px;
  gap: 8px;
}
.threshold-control label {
  font-size: 11px;
}
.watch > .small {
  margin: 0 24px 21px;
  line-height: 1.7;
}
.small {
  font-size: 11px;
}
.muted {
  color: var(--muted);
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
  white-space: nowrap;
}
th {
  font-size: 9px;
  letter-spacing: 0.7px;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 25px;
  background: #fafbf8;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
td {
  padding: 18px 25px;
  border-bottom: 1px solid #edf0e9;
}
tr:last-child td {
  border-bottom: 0;
}
.table-scroll {
  overflow: auto;
}
.pool-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.pool-sub {
  display: block;
  font-weight: 400;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.share-cell {
  display: flex;
  gap: 15px;
  align-items: center;
}
.bar {
  width: 95px;
  height: 5px;
  border-radius: 8px;
  background: #f0f3eb;
  overflow: hidden;
}
.bar span {
  height: 100%;
  display: block;
  border-radius: 8px;
}
.evidence {
  font-size: 10px;
  background: #f1f5eb;
  padding: 5px 8px;
  border-radius: 4px;
  color: #627254;
}
.empty {
  padding: 30px !important;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  white-space: normal;
}
.block-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 5px 25px 25px;
}
.block {
  border: 1px solid var(--line);
  background: #fafbf7;
  border-radius: 6px;
  text-align: left;
  padding: 14px;
  min-width: 0;
}
.block:hover {
  border-color: #86a567;
  background: #f1f7e9;
}
.block strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.block span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.block .block-time {
  font-size: 9px;
  margin-top: 17px;
}
.notice {
  margin-top: 22px;
  padding: 12px 17px;
  background: #fff4d8;
  border: 1px solid #e6d5a7;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.6;
}
.notice[hidden] {
  display: none;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0 25px;
}
.section-title p {
  font-size: 12px;
  line-height: 1.6;
}
input {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  min-width: 250px;
  background: white;
  font-size: 12px;
}
.mono {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
}
.address-button {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.address-button:hover {
  text-decoration: underline;
}
.telemetry-panel {
  text-align: center;
  padding: 45px 35px;
}
.telemetry-icon {
  font-size: 45px;
  color: #789d59;
}
.telemetry-panel h3 {
  font-size: 23px;
  letter-spacing: -0.6px;
  font-weight: 550;
}
.telemetry-panel p {
  max-width: 640px;
  margin: 15px auto;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}
.telemetry-notes {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 30px;
  font-size: 11px;
  color: #537042;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.method-grid article {
  margin: 0;
  padding: 25px;
}
.method-grid h3 {
  font-size: 15px;
  margin-top: 0;
}
.method-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}
footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #687a6d;
  margin-top: 35px;
  gap: 15px;
}
.footer-brand {
  letter-spacing: 0.5px;
}
.footer-brand span {
  padding: 0 10px;
  color: #b3bfb0;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  padding: 25px;
  color: inherit;
}
dialog::backdrop {
  background: #142d2466;
  backdrop-filter: blur(3px);
}
#close-detail {
  float: right;
}
#detail-content {
  clear: both;
  padding-top: 15px;
  overflow-wrap: anywhere;
}
#detail-content p {
  font-size: 13px;
  line-height: 1.8;
}
#detail-content h3 {
  font-size: 22px;
  font-weight: 550;
}
#detail-content pre {
  white-space: pre-wrap;
  font-size: 11px;
  background: #f3f6ef;
  padding: 15px;
  max-height: 300px;
  overflow: auto;
}
@media (min-width: 1500px) {
  .concentration-body {
    gap: 55px;
  }
  .donut-wrap {
    flex-basis: 220px;
  }
  .donut {
    width: 220px;
    height: 220px;
  }
  .donut > div {
    width: 169px;
    height: 169px;
  }
}
@media (max-width: 1100px) {
  .network-label {
    display: none;
  }
  .concentration-body {
    gap: 18px;
    padding: 15px 20px;
  }
  .donut-wrap {
    flex-basis: 160px;
  }
  .donut {
    width: 160px;
    height: 160px;
  }
  .donut > div {
    width: 122px;
    height: 122px;
  }
  .legend-row {
    font-size: 11px;
  }
  .main-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .panel-heading {
    padding: 20px;
  }
  .pill {
    display: none;
  }
  .block-feed {
    grid-template-columns: repeat(3, 1fr);
  }
  .metrics article {
    padding: 0 18px;
  }
  .metrics p {
    font-size: 8px;
  }
  .threshold-control {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 760px) {
  .topbar {
    height: 70px;
    padding: 0 20px;
    gap: 10px;
  }
  .brand {
    font-size: 20px;
  }
  .header-right {
    gap: 10px;
  }
  .status {
    display: none;
  }
  .quiet-button {
    font-size: 10px;
    padding: 9px;
  }
  main {
    padding: 0 20px;
  }
  .page-heading {
    padding: 30px 0 20px;
    display: block;
  }
  h1 {
    font-size: 31px;
  }
  .window-control {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .window-control > span {
    flex-basis: 100%;
  }
  .window-control label {
    margin-right: 6px;
  }
  .tabs {
    gap: 22px;
  }
  .tabs button {
    font-size: 11px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 25px 0;
    padding: 20px 0;
  }
  .metrics article:nth-child(2) {
    border: 0;
  }
  .metrics strong {
    font-size: 29px;
  }
  .metrics span {
    font-size: 9px;
  }
  .main-grid {
    display: block;
  }
  .concentration-body {
    justify-content: center;
    gap: 25px;
    padding: 20px;
  }
  .legend {
    max-width: 240px;
  }
  .donut-wrap {
    flex-basis: 150px;
  }
  .donut {
    width: 150px;
    height: 150px;
  }
  .donut > div {
    width: 112px;
    height: 112px;
  }
  .donut strong {
    font-size: 32px;
  }
  .panel-heading h2 {
    font-size: 17px;
  }
  .threshold-control {
    flex-direction: row;
    align-items: center;
  }
  .section-title {
    display: block;
  }
  .section-title input {
    width: 100%;
  }
  .telemetry-notes {
    flex-direction: column;
    gap: 14px;
  }
  .method-grid {
    grid-template-columns: 1fr;
  }
  .block-feed {
    padding: 5px 16px 16px;
    gap: 8px;
  }
  .block {
    padding: 11px;
  }
  .block strong {
    font-size: 12px;
  }
  footer {
    flex-direction: column;
    font-size: 9px;
  }
  th,
  td {
    padding: 14px 18px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  button {
    transition:
      background 0.15s,
      border-color 0.15s;
  }
  .view {
    animation: appear 0.2s ease-out;
  }
  @keyframes appear {
    from {
      opacity: 0.3;
      transform: translateY(3px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
:root {
  scroll-behavior: smooth;
}
.primary-button {
  display: inline-block;
  background: #244c3e;
  color: white;
  border: 0;
  border-radius: 6px;
  padding: 12px 17px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.primary-button:hover {
  background: #34624f;
}
.primary-button:disabled {
  opacity: 0.6;
  cursor: default;
}
.contribute-main {
  max-width: 1200px;
}
.contribute-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.intake-panel {
  padding: 28px;
}
.intake-panel > p {
  line-height: 1.8;
}
.intake-panel form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.intake-panel label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.intake-panel input,
.intake-panel textarea,
.intake-panel select {
  width: 100%;
  min-width: 0;
}
.intake-panel textarea {
  font: inherit;
  font-size: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  resize: vertical;
  background: white;
  color: inherit;
}
.intake-panel textarea:focus-visible {
  outline: 3px solid #70a348;
  outline-offset: 3px;
}
.intake-panel .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  line-height: 1.7;
}
.intake-panel .consent input {
  width: 16px;
  margin-top: 3px;
  flex: 0 0 16px;
}
.intake-panel .honeypot {
  display: none;
}
.form-result {
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  margin: 0;
}
.form-result:empty {
  display: none;
}
.onboarding-steps {
  padding-left: 20px;
  margin: 24px 0;
}
.onboarding-steps li {
  padding: 0 0 22px 7px;
  font-size: 13px;
}
.onboarding-steps li span {
  display: block;
  color: var(--muted);
  line-height: 1.8;
  font-size: 12px;
  margin-top: 8px;
}
.contribute-main code {
  overflow-wrap: anywhere;
}
.contribute-main td {
  white-space: normal;
  line-height: 1.7;
}
@media (max-width: 760px) {
  .contribute-grid {
    grid-template-columns: 1fr;
  }
  .intake-panel {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
}
:root {
  --rating-accent: #244c3e;
}
.rating-criteria dt {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 600;
}
.rating-criteria dt strong {
  color: var(--rating-accent);
  font-size: 18px;
}
.rating-criteria dd {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.rating-rules {
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.9;
}
.rating-rules li {
  margin-bottom: 12px;
}
.rating-invitation {
  grid-column: 1 / -1;
  margin-bottom: 0;
  background: #eff3e8;
}
.rating-badge {
  display: inline-block;
  font-size: 10px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: #58675e;
  background: #f7f8f5;
}
.rating-badge.contributor {
  background: #e8f3e0;
  border-color: #9fbd86;
  color: #244c3e;
}
.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.admin-notes {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.admin-token {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 18px;
  background: #f0f4ec;
  user-select: all;
}
#action-form label {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
}
#action-form input {
  min-width: 0;
}
#action-form .consent {
  display: flex;
  align-items: flex-start;
}
#action-form .consent input {
  width: 18px;
}
#login-panel {
  max-width: 560px;
}

[hidden] {
  display: none !important;
}
