:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #202e2a;
  background: #f6f7f3;
  font-synthesis: none;
  font-size: 14px;
}
[hidden] {
  display: none !important;
}
.session-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-story {
  background: #e8eedf;
  padding: 60px clamp(30px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-story .brand {
  margin-bottom: 85px;
}
.auth-story h1 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.1;
  margin: 20px 0;
}
.auth-story > p {
  color: #5b6c50;
}
.auth-points {
  padding: 35px 0;
}
.auth-points p {
  padding: 10px 0;
  border-bottom: 1px solid #d4dec9;
}
.auth-points span {
  font-size: 11px;
  color: #7e936b;
  margin-right: 16px;
}
.auth-panel {
  display: grid;
  place-items: center;
  padding: 40px 30px;
  background: #f7f8f4;
}
.auth-card {
  width: min(100%, 410px);
}
.auth-card h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 31px;
  margin: 16px 0 10px;
}
.auth-card form {
  margin-top: 25px;
}
.auth-card label {
  font-size: 13px;
}
.auth-card input {
  padding: 13px;
}
.auth-card .primary {
  padding: 14px;
  margin-top: 6px;
}
.auth-switch {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
}
.text-button {
  border: 0;
  background: transparent;
  padding: 0 4px;
  color: #325e3c;
  text-decoration: underline;
}
.password-help {
  margin: -8px 0 0;
  font-size: 11px;
}
.preview-note {
  margin-top: 38px;
  font-size: 11px;
  text-align: center;
}
#auth-notice:not(:empty) {
  background: #f4e9d4;
  padding: 12px;
  border-radius: 6px;
  color: #7b5727;
}
@media (max-width: 800px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-story {
    padding: 30px;
  }
  .auth-story .brand {
    margin-bottom: 25px;
  }
  .auth-points,
  .auth-story > .muted {
    display: none;
  }
  .auth-panel {
    padding: 35px 24px;
  }
  .session-controls {
    gap: 8px;
  }
  .session-controls .pill {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
select {
  cursor: pointer;
}
button {
  border: 1px solid #ced7cd;
  border-radius: 7px;
  background: #fff;
  color: #283d31;
  padding: 10px 15px;
  font-weight: 600;
}
button:hover {
  background: #edf1e9;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button.primary {
  background: #244c39;
  border-color: #244c39;
  color: white;
}
button.primary:hover {
  background: #163b29;
}
.shell {
  display: grid;
  grid-template-columns: 245px 1fr;
  min-height: 100vh;
}
aside {
  padding: 30px 22px;
  background: #eef1e9;
  border-right: 1px solid #dce1d6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand {
  font-size: 23px;
  letter-spacing: -1px;
  color: #244331;
  text-decoration: none;
  font-weight: 750;
  margin-bottom: 30px;
}
.brand-mark {
  color: #829871;
  margin-right: 6px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #758474;
  margin: 0 0 6px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #526153;
}
input,
textarea,
select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d4dcd1;
  border-radius: 6px;
  background: #fff;
  color: #253a2c;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #a2b896;
  outline-offset: 2px;
}
.quiet {
  background: transparent;
  border-color: transparent;
  text-align: left;
  font-size: 12px;
  padding: 8px 0;
  color: #62705c;
}
nav {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}
nav button {
  border: 0;
  background: none;
  text-align: left;
  padding: 13px 12px;
  color: #5d6c5c;
  font-weight: 500;
}
nav button.selected {
  background: #dfe7d8;
  color: #244b34;
  font-weight: 650;
}
nav span {
  float: right;
  font-size: 10px;
  opacity: 0.5;
}
.sidebar-foot {
  margin-top: auto;
  padding-top: 60px;
  font-size: 12px;
  color: #5e705c;
}
.sidebar-foot p {
  font-size: 11px;
  color: #778273;
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #718962;
  border-radius: 50%;
  margin-right: 6px;
}
main {
  min-width: 0;
  padding: 0 44px;
}
header {
  height: 84px;
  border-bottom: 1px solid #dfe5da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #687463;
  font-size: 12px;
}
.pill,
.badge {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.6px;
  padding: 6px 9px;
  background: #e8eedf;
  border-radius: 4px;
  color: #4e6842;
  display: inline-block;
}
.badge.warning {
  background: #f4e9d1;
  color: #8c6627;
}
.badge.neutral {
  background: #edf0eb;
  color: #6c7868;
}
#content {
  max-width: 1200px;
  margin: auto;
  padding-top: 36px;
}
h1 {
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 10px 0 14px;
}
h2 {
  font-size: 19px;
  letter-spacing: -0.3px;
  margin: 0 0 15px;
}
h3 {
  font-size: 15px;
  margin: 0 0 10px;
}
p {
  line-height: 1.65;
  margin: 8px 0;
}
.muted {
  color: #73806e;
  font-size: 13px;
}
.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.title-row p {
  max-width: 650px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat {
  background: white;
  border: 1px solid #e0e6d9;
  border-radius: 10px;
  padding: 23px;
}
.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  margin: 12px 0 6px;
}
.grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #dce3d5;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}
.card.tinted {
  background: #eaf0e3;
  border-color: #d9e4cf;
}
.card p:last-child {
  margin-bottom: 0;
}
.row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.stack {
  display: grid;
  gap: 16px;
}
.actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.steps {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e4e9dd;
}
.step-number {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #cbd9be;
  border-radius: 50%;
  font-size: 11px;
  color: #658252;
}
.steps .done {
  background: #486740;
  color: #fff;
  border-color: #486740;
}
.empty {
  padding: 28px 10px;
  text-align: center;
  color: #788571;
}
.rule {
  height: 1px;
  background: #e1e6dc;
  margin: 20px 0;
}
.note {
  border-left: 3px solid #9eaf80;
  padding: 12px 16px;
  background: #f5f7ef;
  font-size: 13px;
}
.claim {
  padding: 17px 0;
  border-bottom: 1px solid #e5e9df;
}
.claim p {
  white-space: pre-wrap;
}
.evidence {
  font-size: 12px;
  color: #607654;
}
details {
  margin: 12px 0;
}
summary {
  cursor: pointer;
  color: #516644;
  font-size: 12px;
}
blockquote {
  margin: 12px 0;
  padding: 14px;
  background: #f2f5ed;
  white-space: pre-wrap;
  font-size: 13px;
  border-radius: 5px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
form {
  display: grid;
  gap: 17px;
}
.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  font-size: 13px;
}
.checkbox input {
  width: auto;
}
dialog {
  border: 1px solid #d3ddc9;
  border-radius: 12px;
  width: min(620px, 92vw);
  max-height: 90vh;
  padding: 34px;
  color: inherit;
}
dialog::backdrop {
  background: #13211670;
}
.close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  font-size: 22px;
  padding: 3px 10px;
}
#notice:not(:empty) {
  padding: 13px 17px;
  margin-top: 20px;
  background: #f4e9d4;
  border: 1px solid #dfcfaa;
  border-radius: 7px;
}
footer {
  padding: 32px 0;
  font-size: 11px;
  color: #98a18f;
}
code {
  word-break: break-all;
  font-size: 11px;
}
a {
  color: #436a35;
}
.inline-fields {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 12px;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 1000px) {
  main {
    padding: 0 25px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .shell {
    grid-template-columns: 205px 1fr;
  }
  .stats {
    gap: 10px;
  }
  .stat {
    padding: 17px;
  }
}
@media (max-width: 680px) {
  .shell {
    display: block;
  }
  aside {
    padding: 18px;
    gap: 8px;
  }
  .brand {
    margin-bottom: 5px;
  }
  aside .eyebrow,
  .sidebar-foot {
    display: none;
  }
  nav {
    display: flex;
    margin-top: 7px;
    overflow: auto;
  }
  nav button {
    white-space: nowrap;
  }
  nav span {
    display: none;
  }
  main {
    padding: 0 18px;
  }
  header {
    height: 60px;
  }
  h1 {
    font-size: 32px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .two,
  .inline-fields {
    grid-template-columns: 1fr;
  }
  .title-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
.google-signin {
  width: 100%;
  margin-top: 16px;
  background: #fff;
  color: #1f1f1f;
  border: 1px solid #747775;
  border-radius: 4px;
  min-height: 40px;
  font-weight: 500;
}
.auth-divider {
  text-align: center;
  margin: 16px 0;
}
