:root {
  color-scheme: dark;

  --bg: #090b0e;
  --surface: #0f1216;
  --surface-soft: #12161b;
  --line: #252b33;
  --line-strong: #39414b;

  --text: #f2f4f7;
  --muted: #929ba7;

  --accent: #e3ebf8;
  --accent-text: #10151c;

  --success: #b6e4c3;
  --warning: #f0d49a;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  min-height: 100%;

  background: var(--bg);
  color: var(--text);
}


body {
  max-width: 1180px;
  margin: auto;
  padding: 0 44px;
}


.site-header {
  height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--line);
}


.brand {
  display: flex;
  align-items: center;
  gap: 8px;

  color: inherit;
  text-decoration: none;
}


.brand > span:last-child,
.muted,
#identity {
  color: var(--muted);
}


.symbol {
  width: 34px;
  height: 34px;

  margin-right: 8px;

  display: grid;
  place-items: center;

  border: 1px solid #39424d;
  border-radius: 50%;

  font-weight: 700;
}


main {
  max-width: 960px;

  padding: 94px 0;
}


#landing {
  max-width: 750px;
}


.eyebrow {
  margin: 0 0 15px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 650;

  letter-spacing: .15em;
  text-transform: uppercase;
}


h1 {
  margin: 0;

  max-width: 800px;

  font-size: clamp(44px, 7vw, 74px);
  font-weight: 540;

  line-height: .98;
  letter-spacing: -.047em;
}


h2 {
  margin: 0;

  font-size: 30px;
  font-weight: 540;

  letter-spacing: -.025em;
}


h3 {
  margin: 0;

  font-size: 19px;
  font-weight: 600;
}


.lead {
  max-width: 600px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.65;
}


.rule {
  height: 1px;

  margin: 64px 0;

  background: var(--line);
}


label {
  display: block;

  margin: 27px 0 8px;

  color: var(--muted);

  font-size: 14px;
}


input,
select {
  width: 100%;

  padding: 14px 0;

  border: 0;
  border-bottom: 1px solid var(--line-strong);

  outline: none;

  background: transparent;
  color: var(--text);

  font: inherit;
  font-size: 16px;
}


select {
  cursor: pointer;
}


select option {
  background: #11151a;
  color: var(--text);
}


input:focus,
select:focus {
  border-color: #eef3fa;
}


button {
  margin-top: 26px;
  padding: 13px 19px;

  border: 0;
  border-radius: 5px;

  background: var(--accent);
  color: var(--accent-text);

  font: inherit;
  font-weight: 650;

  cursor: pointer;
}


button:hover {
  filter: brightness(.96);
}


button.secondary {
  border: 1px solid var(--line-strong);

  background: transparent;
  color: var(--text);
}


button.compact {
  margin: 0;
}


button:disabled {
  opacity: .5;
  cursor: wait;
}


.text-button,
.nav-button {
  padding: 0;

  border: 0;
  border-radius: 0;

  background: none;
  color: var(--muted);
}


.text-button {
  margin: 0 0 36px;
}


.account-bar,
.section-title {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;
}


.count {
  margin-top: 8px;

  color: var(--muted);

  font-size: 13px;
}


.workspace-nav {
  display: flex;
  gap: 30px;

  margin-bottom: 54px;

  border-bottom: 1px solid var(--line);
}


.nav-button {
  margin: 0;
  padding: 0 0 15px;

  border-bottom: 2px solid transparent;

  white-space: nowrap;
}


.nav-button.active {
  color: var(--text);
  border-color: var(--text);
}


.proof-row,
.client-row {
  padding: 21px 0;

  border-top: 1px solid var(--line);

  display: grid;

  grid-template-columns:
    minmax(180px, 1.3fr)
    minmax(180px, 1fr)
    auto;

  gap: 24px;
  align-items: center;
}


.proof-row:first-child,
.client-row:first-child {
  margin-top: 32px;
}


.row-main strong,
.row-main span,
.row-meta span {
  display: block;
}


.row-main strong {
  font-weight: 600;
}


.row-main span,
.row-meta,
.hash,
.small {
  margin-top: 5px;

  color: var(--muted);

  font-size: 13px;
}


.hash {
  overflow-wrap: anywhere;
}


.row-action {
  margin: 0;
}


#assign-panel {
  max-width: 620px;
}


.nested-form {
  margin-top: 30px;

  padding-left: 22px;

  border-left: 1px solid var(--line);
}


#intervention-zone {
  margin-top: 30px;
}


.assign-actions {
  display: flex;
  gap: 12px;

  margin-top: 20px;
}


.detail-header {
  margin-bottom: 52px;
}


.detail-result {
  margin-top: 18px;

  font-size: 17px;
}


.detail-section {
  padding: 30px 0;

  border-top: 1px solid var(--line);
}


.detail-grid {
  display: grid;

  grid-template-columns:
    minmax(180px, .8fr)
    minmax(260px, 1.6fr);

  gap: 15px 32px;

  margin-top: 24px;
}


.detail-grid dt {
  color: var(--muted);

  font-size: 14px;
}


.detail-grid dd {
  margin: 0;

  overflow-wrap: anywhere;
}


.status-good {
  color: var(--success);
}


.status-warning {
  color: var(--warning);
}


.message {
  min-height: 24px;

  margin-top: 32px;

  color: var(--muted);
}


footer {
  min-height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 13px;
}


[hidden] {
  display: none !important;
}


@media (max-width: 760px) {

  body {
    padding: 0 22px;
  }


  main {
    padding: 62px 0;
  }


  .site-header {
    height: 76px;
  }


  #identity {
    display: none;
  }


  h1 {
    font-size: 46px;
  }


  .account-bar,
  .section-title {
    display: block;
  }


  .account-bar button {
    margin-top: 20px;
  }


  .workspace-nav {
    gap: 20px;

    overflow-x: auto;
  }


  .proof-row,
  .client-row {
    grid-template-columns: 1fr;

    gap: 8px;
  }


  .row-action {
    margin-top: 10px;
  }


  .assign-actions {
    flex-direction: column;
  }


  .assign-actions button {
    width: 100%;
  }


  .detail-grid {
    grid-template-columns: 1fr;

    gap: 5px;
  }


  .detail-grid dd {
    margin-bottom: 14px;
  }


  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
  }
}
