:root {
  --green: #164c3b;
  --green-dark: #103f30;
  --lime: #d7ef9a;
  --ink: #23372d;
  --muted: #7c877f;
  --line: #e6ebe4;
  --paper: #f7f9f5;
  --white: #fff;
  --red: #bc5444;
  --amber: #a67828;
  --radius: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 14px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid #92b667;
  outline-offset: 3px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 0;
  box-shadow: none;
  background-color: #f4f8ee;
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg.lucide {
  width: 19px;
  height: 19px;
  stroke-width: 1.65;
  flex-shrink: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.9px;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--lime);
  border-radius: 10px;
}
.brand-mark svg {
  width: 23px;
  height: 23px;
}
.brand .brand-dot {
  color: #72914c;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 9px;
  font-weight: 650;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 2px 3px #164c3b10;
}
.btn-primary:hover {
  background: #226149;
}
.btn-lime {
  background: var(--lime);
  color: var(--green);
}
.btn-secondary {
  background: white;
  border: 1px solid #dfe5dc;
  color: var(--ink);
}
.btn-secondary:hover {
  background: #f4f7f1;
}
.btn-ghost {
  background: transparent;
  color: #647669;
}
.btn-danger {
  background: #b64e3e;
  color: #fff;
}
.btn-small {
  padding: 9px 13px;
  font-size: 11px;
}
.icon-button {
  background: transparent;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #778179;
}
.icon-button:hover {
  background: #eef2eb;
  color: var(--green);
}
.text-link {
  font-size: 12px;
  color: var(--green);
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link svg {
  width: 15px;
}
.muted {
  color: var(--muted);
}
.mono {
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.7px;
  font-weight: 750;
  color: #6a7c6c;
}
.badge {
  font-size: 10px;
  font-weight: 650;
  border-radius: 6px;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  background: #eef3e9;
  color: #628049;
}
.badge svg {
  width: 12px;
  height: 12px;
}
.badge.healthy {
  background: #eef6ec;
  color: #4b8058;
}
.badge.blocked,
.badge.error {
  background: #fff0eb;
  color: #bc5d48;
}
.badge.warning {
  background: #fff6df;
  color: #a38031;
}
.badge.paused,
.badge.pending {
  background: #f0f1ef;
  color: #80877d;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.initial-load {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}
.app-shell {
  min-height: 100vh;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 238px;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 30px 21px 18px;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.sidebar .brand {
  margin: 0 9px 37px;
}
.workspace-selector {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 650;
}
.workspace-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf2e7;
  color: #6b8458;
}
.workspace-icon svg {
  width: 16px;
}
.workspace-selector > svg {
  margin-left: auto;
  width: 13px;
  color: #879082;
}
.nav-label {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.3px;
  color: #a0a89f;
  padding: 0 13px;
  margin: 0 0 12px;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  font-size: 11px;
  font-weight: 550;
  color: #7a837b;
  border-radius: 8px;
}
.nav-link.active {
  background: #eaf1e3;
  color: #315c3d;
  font-weight: 700;
}
.nav-link:hover {
  background: #f2f5ef;
}
.nav-link svg {
  width: 17px;
  height: 17px;
}
.nav-count {
  margin-left: auto;
  background: #f6e6da;
  color: #b37b51;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 9px;
}
.nav-link .external {
  margin-left: auto;
  width: 13px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 60px;
}
.watch-note {
  background: #f7f9f2;
  border: 1px solid #e9eedf;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 21px;
}
.watch-note .mini-icon {
  color: #64824e;
  margin-bottom: 10px;
}
.watch-note h4 {
  font-size: 11px;
  margin: 0 0 6px;
}
.watch-note p {
  font-size: 10px;
  color: #89907f;
  line-height: 1.8;
}
.sidebar-profile {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 20px 6px 0;
}
.avatar {
  width: 32px;
  height: 32px;
  background: #e8e9df;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #e3e6db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 750;
  color: #7a8060;
  flex-shrink: 0;
}
.profile-info {
  min-width: 0;
}
.profile-info strong {
  font-size: 11px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-info span {
  font-size: 9px;
  color: #97a08e;
}
.sidebar-profile .icon-button {
  margin-left: auto;
}
.app-main {
  margin-left: 238px;
}
.topbar {
  height: 73px;
  background: #ffffffc7;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 37px;
  gap: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #919a91;
  font-size: 11px;
}
.breadcrumb strong {
  color: #5b6c5c;
  font-weight: 550;
}
.breadcrumb svg {
  width: 13px;
}
.topbar-right {
  display: flex;
  gap: 19px;
  align-items: center;
}
.live-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #7a8979;
}
.live-status .dot {
  background: #71995a;
}
.topbar-right .icon-button {
  position: relative;
}
.notification-dot {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 5px;
  height: 5px;
  background: #c5855a;
  border: 1px solid white;
  border-radius: 50%;
}
.mobile-menu {
  display: none;
}
.page-content {
  max-width: 1370px;
  margin: auto;
  padding: 34px 37px 28px;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
}
.page-heading h1 {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -1.05px;
  margin-bottom: 9px;
}
.page-heading p {
  font-size: 11px;
  color: #86917f;
  line-height: 1.8;
}
.heading-actions {
  display: flex;
  gap: 10px;
}
.greeting-mark {
  color: #a2af72;
  margin-left: 5px;
}
.peace-banner {
  border: 1px solid #dfe9d1;
  background: linear-gradient(105deg, #eff5e7, #f5f8ed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 21px;
  margin-bottom: 24px;
}
.peace-icon {
  width: 38px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b8b4e;
  background: #e4edda;
  border-radius: 10px;
  flex-shrink: 0;
}
.peace-icon svg {
  width: 21px;
  height: 21px;
}
.peace-banner h3 {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 5px;
}
.peace-banner p {
  font-size: 10px;
  color: #8a947d;
  line-height: 1.7;
}
.peace-banner > .badge {
  margin-left: auto;
  background: white;
  color: #72835b;
  border: 1px solid #e6eddc;
  font-size: 9px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-bottom: 27px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px 20px;
}
.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 10px;
  color: #818b7e;
}
.stat-icon {
  background: #f2f5ed;
  color: #81916b;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 15px;
  height: 15px;
}
.stat-card.warning .stat-icon {
  background: #fff1e6;
  color: #bb8b59;
}
.stat-value {
  font-size: 30px;
  letter-spacing: -1.2px;
  line-height: 1;
  font-weight: 650;
}
.stat-foot {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 12px;
  font-size: 9px;
  color: #9aa18f;
}
.stat-foot svg {
  width: 12px;
  height: 12px;
}
.stat-foot.positive {
  color: #829867;
}
.stat-card.warning .stat-value {
  color: #b98255;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 23px 19px;
  gap: 12px;
}
.panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.count-pill {
  font-size: 9px;
  color: #7c886f;
  background: #f0f3eb;
  padding: 3px 6px;
  border-radius: 5px;
  font-weight: 500;
}
.panel-subtitle {
  font-size: 10px;
  color: #99a18f;
  margin-top: 6px;
  line-height: 1.6;
}
.table-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-tools .btn {
  font-size: 10px;
}
.table-search {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e7ebe2;
  border-radius: 7px;
  padding: 9px 10px;
  max-width: 190px;
}
.table-search svg {
  color: #9ca48e;
  width: 13px;
  height: 13px;
}
.table-search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  font-size: 10px;
  color: var(--ink);
  box-shadow: none;
}
.table-search input::placeholder {
  color: #adb3a2;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
thead {
  background: #fafbf7;
  border-block: 1px solid #edf0e7;
}
th {
  font-size: 9px;
  font-weight: 550;
  color: #96a08c;
  padding: 13px 20px;
}
th:first-child,
td:first-child {
  padding-left: 24px;
}
th:last-child,
td:last-child {
  padding-right: 24px;
}
td {
  padding: 19px 20px;
  border-bottom: 1px solid #eef1e9;
  font-size: 10px;
  color: #8a9681;
}
tbody tr:last-child td {
  border-bottom: 0;
}
tbody tr:hover {
  background: #fcfdf9;
}
.site-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}
.site-favicon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid #e4e9df;
  background: #f2f5ed;
  color: #75805e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 750;
  flex-shrink: 0;
}
.site-favicon.violet {
  background: #f0edf5;
  color: #9586ad;
}
.site-favicon.peach {
  background: #fbf0e7;
  color: #b5906a;
}
.site-cell strong {
  display: block;
  font-size: 11px;
  color: #495940;
  font-weight: 650;
  margin-bottom: 5px;
}
.site-cell small {
  font-size: 9px;
  color: #98a28f;
}
.site-cell a:hover strong {
  text-decoration: underline;
}
.site-pages {
  color: #728166;
  font-weight: 550;
}
.table-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}
.table-actions .icon-button svg {
  width: 14px;
  height: 14px;
}
.table-actions .icon-button {
  width: 27px;
  height: 27px;
}
.table-footer {
  border-top: 1px solid var(--line);
  background: #fcfdf9;
  padding: 13px 24px;
  font-size: 9px;
  color: #a0a792;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-footer .text-link {
  font-size: 9px;
  color: #7d8b68;
}
.bottom-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.activity-list {
  padding: 0 22px 6px;
}
.activity-row {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-bottom: 1px solid #eef1e9;
}
.activity-row:last-child {
  border: 0;
}
.event-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff1e8;
  color: #bd8a63;
  border-radius: 8px;
}
.event-icon.recovered {
  background: #f0f5e8;
  color: #7d965e;
}
.event-icon svg {
  width: 14px;
  height: 14px;
}
.event-main {
  flex: 1;
  min-width: 0;
}
.event-main strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #617154;
  line-height: 1.7;
}
.event-main p {
  font-size: 9px;
  color: #a0a890;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
}
.event-time {
  font-size: 8px;
  color: #a2aa96;
  white-space: nowrap;
  margin-top: 3px;
}
.quick-check {
  padding: 1px 23px 24px;
}
.quick-check > p {
  font-size: 10px;
  color: #96a187;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 290px;
}
.input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #e2e7dc;
  border-radius: 8px;
  padding-left: 11px;
  background: #fff;
}
.input-wrap > svg {
  width: 14px;
  color: #9ba68e;
}
.input-wrap input {
  width: 100%;
  padding: 12px;
  border: 0;
  min-width: 0;
  background: transparent;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  font-size: 10px;
}
.quick-check .btn {
  width: 100%;
  margin-top: 10px;
  font-size: 10px;
  padding: 11px;
}
.quick-check .fine-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 8px;
  color: #a6ae9a;
  margin-top: 13px;
}
.quick-check .fine-print svg {
  width: 11px;
  height: 11px;
}
.app-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  color: #a6ad9c;
  margin-top: 28px;
}
.app-footer > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.app-footer svg {
  width: 11px;
  height: 11px;
}
.empty-state {
  padding: 45px 24px;
  text-align: center;
}
.empty-state .empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #f0f5e9;
  color: #7e9868;
  margin-bottom: 16px;
}
.empty-state h3 {
  font-size: 14px;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 11px;
  color: #8a9780;
  line-height: 1.9;
  max-width: 360px;
  margin: 0 auto 18px;
}
.error-box {
  border: 1px solid #eed8cb;
  background: #fff7f1;
  color: #a96545;
  font-size: 11px;
  border-radius: 8px;
  padding: 13px;
  line-height: 1.7;
  margin: 12px 0;
}
.form-error:empty {
  display: none;
}
.form-error {
  color: #b05543;
  font-size: 11px;
  line-height: 1.6;
  padding: 10px;
  background: #fff4ef;
  border-radius: 6px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 19px;
}
.form-field label {
  font-size: 11px;
  font-weight: 650;
  color: #5c6c54;
}
.form-field > input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid #dfe5d9;
  background: white;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font-size: 12px;
}
.form-field > input:focus,
.form-field textarea:focus,
.form-field select:focus {
  background-color: #f4f8ee;
}
.form-field textarea {
  resize: vertical;
  line-height: 1.8;
  min-height: 120px;
}
.form-field small {
  font-size: 10px;
  color: #8e9a82;
  line-height: 1.8;
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 8px;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #1530265b;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal {
  width: 480px;
  max-width: 100%;
  max-height: 90vh;
  overflow: auto;
  border: 1px solid #e7ebdf;
  background: #fbfcf8;
  border-radius: 19px;
  box-shadow: 0 25px 100px #09241920;
  padding: 29px;
  animation: enter 0.2s ease-out;
}
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.modal-head h2 {
  font-size: 20px;
  letter-spacing: -0.7px;
}
.modal-description {
  font-size: 11px;
  color: #8a957c;
  line-height: 1.9;
  margin-bottom: 25px;
}
.modal-icon {
  width: 43px;
  height: 43px;
  background: #eaf1e1;
  color: #628251;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}
.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 200;
  background: #203e2d;
  color: white;
  padding: 15px 21px;
  border-radius: 11px;
  box-shadow: 0 6px 30px #203d2726;
  max-width: calc(100vw - 40px);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: enter 0.2s ease-out;
}
.toast.error {
  background: #a3503e;
}
.toast svg {
  width: 16px;
  height: 16px;
}
.check-results {
  border: 1px solid #dfe8d5;
  border-radius: 12px;
  background: #fff;
  margin-top: 18px;
  text-align: left;
  overflow: hidden;
}
.result-heading {
  padding: 17px 19px;
  background: #f3f7ed;
  border-bottom: 1px solid #e7eddf;
  display: flex;
  gap: 10px;
  align-items: center;
}
.result-heading > svg {
  color: #7c9d61;
  flex-shrink: 0;
}
.result-heading.blocked,
.result-heading.error {
  background: #fff4ee;
}
.result-heading.blocked > svg,
.result-heading.error > svg {
  color: #be7154;
}
.result-heading h3 {
  font-size: 12px !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.result-heading p {
  font-size: 9px !important;
  color: #94a183 !important;
  margin-top: 5px !important;
  line-height: 1.5 !important;
  word-break: break-all;
}
.signal-row {
  padding: 13px 19px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-bottom: 1px solid #f0f3eb;
}
.signal-row:last-child {
  border-bottom: 0;
}
.signal-row > svg {
  width: 14px;
  height: 14px;
  color: #7e9b66;
  margin-top: 2px;
}
.signal-row.blocked > svg,
.signal-row.warning > svg,
.signal-row.unknown > svg {
  color: #c48e5c;
}
.signal-row strong {
  font-size: 10px;
  font-weight: 650;
  display: block;
  color: #657957;
}
.signal-row p {
  font-size: 9px !important;
  line-height: 1.7 !important;
  color: #97a389 !important;
  margin: 4px 0 0 !important;
  word-break: break-word;
}
.signal-row .badge {
  margin-left: auto;
  align-self: flex-start;
  font-size: 8px;
}
.result-note {
  padding: 12px 19px;
  background: #fcfdf9;
  font-size: 9px;
  line-height: 1.8;
  color: #96a18d;
  border-top: 1px solid #edf1e7;
}
.check-loading {
  padding: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: #728466;
}
.spin {
  animation: spin 1s linear infinite;
}
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fbfcf8;
}
.auth-story {
  background: var(--green);
  color: white;
  min-height: 100vh;
  padding: 43px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.auth-story .brand-mark {
  background: #ffffff14;
  color: var(--lime);
}
.auth-story .brand-dot {
  color: var(--lime);
}
.auth-story-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: auto 0;
  padding: 80px 0;
}
.auth-story .eyebrow {
  color: #b5cc8f;
  font-size: 10px;
}
.auth-story h1 {
  font-size: 52px;
  line-height: 1.18;
  letter-spacing: -2.7px;
  margin: 23px 0;
}
.auth-story h1 span {
  color: var(--lime);
}
.auth-story-content > p {
  font-size: 13px;
  color: #c1d1bd;
  line-height: 1.95;
  max-width: 345px;
}
.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dce7d4;
  font-size: 11px;
  margin-top: 22px;
}
.auth-feature > svg {
  width: 18px;
  color: #b7d58d;
}
.auth-orbit {
  width: 550px;
  height: 550px;
  border: 1px solid #a3d47a12;
  border-radius: 50%;
  position: absolute;
  right: -260px;
  bottom: -270px;
  box-shadow:
    0 0 0 70px #a3d47a07,
    0 0 0 140px #a3d47a05,
    0 0 0 210px #a3d47a04;
}
.auth-story-footer {
  font-size: 9px;
  color: #9bb298;
  position: relative;
  z-index: 1;
}
.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  position: relative;
}
.auth-back {
  position: absolute;
  top: 39px;
  right: 42px;
  font-size: 11px;
  color: #8a967e;
  display: flex;
  align-items: center;
  gap: 7px;
}
.auth-back svg {
  width: 14px;
}
.auth-form-box {
  width: 345px;
  max-width: 100%;
}
.auth-small-logo {
  display: none;
}
.auth-form-box .eyebrow {
  font-size: 9px;
  color: #82966b;
  margin-bottom: 13px;
}
.auth-form-box h2 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 11px;
}
.auth-form-box > p {
  font-size: 11px;
  color: #95a086;
  line-height: 1.9;
  margin-bottom: 29px;
}
.auth-form-box .btn-primary {
  width: 100%;
  margin-top: 4px;
  padding: 14px;
}
.password-wrap {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #dfe5d9;
  border-radius: 8px;
  overflow: hidden;
}
.password-wrap input {
  padding: 13px 14px;
  background: transparent;
  width: 100%;
  border: 0;
  min-width: 0;
  font-size: 12px;
  outline: none;
  box-shadow: none;
}
.password-wrap .icon-button {
  margin-right: 6px;
  flex-shrink: 0;
}
.password-wrap:focus-within {
  background: #f4f8ee;
}
.auth-switch {
  text-align: center;
  font-size: 11px;
  color: #94a088;
  margin-top: 24px;
}
.auth-switch a {
  color: var(--green);
  font-weight: 700;
  margin-left: 3px;
}
.auth-privacy {
  text-align: center;
  font-size: 9px;
  line-height: 1.8;
  color: #a4ac99;
  margin-top: 30px;
}
.signup-form-box {
  width: 370px;
}
.signup-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 35px;
  list-style: none;
}
.signup-progress li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a0a995;
  font-size: 10px;
  font-weight: 600;
}
.signup-progress li + li::before {
  content: "";
  width: 15px;
  height: 1px;
  margin-right: 5px;
  background: #dfe5d9;
}
.signup-progress li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: #ecf0e7;
  border-radius: 50%;
  font-size: 10px;
}
.signup-progress li.current,
.signup-progress li.complete {
  color: var(--green);
}
.signup-progress li.current > span {
  color: white;
  background: var(--green);
}
.signup-progress li.complete > span {
  background: #e3edcf;
}
.signup-progress svg {
  width: 13px;
  height: 13px;
}
.signup-mail-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e7efd8;
  color: var(--green);
  margin-bottom: 24px;
}
.signup-mail-icon svg {
  width: 25px;
  height: 25px;
}
.signup-address {
  display: block;
  color: #526443;
  overflow-wrap: anywhere;
  font-weight: 600;
}
.signup-text-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 0;
  cursor: pointer;
}
.signup-text-button:disabled {
  cursor: default;
  color: #7c8871;
}
.otp-fieldset {
  border: 0;
  padding: 0;
  min-width: 0;
  margin: 0;
}
.otp-fieldset legend {
  font-size: 11px;
  font-weight: 600;
  color: #5d6b51;
  padding: 0;
  margin-bottom: 10px;
}
.otp-boxes {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}
.otp-boxes input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0;
  text-align: center;
  border: 1px solid #dfe5d9;
  border-radius: 9px;
  background: white;
  color: var(--green);
  font: inherit;
  font-size: 25px;
  font-weight: 600;
  caret-color: var(--green);
  outline: none;
  box-shadow: none;
  transition: background 150ms;
}
.otp-boxes input:focus {
  background: #e7efd8;
  outline: none;
  box-shadow: none;
}
.signup-code-help,
.signup-form-box > .signup-notice {
  font-size: 10px;
  color: #829075;
  line-height: 1.8;
  margin: 13px 0 20px;
}
.signup-resend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 11px;
  color: #829075;
}
.signup-form-box > .signup-notice:empty {
  display: none;
}
.signup-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 19px;
  font-size: 10px;
  color: #859577;
}
.signup-reassurance svg {
  width: 14px;
  height: 14px;
}
.signup-verified {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: #edf3e4;
  border-radius: 9px;
  color: var(--green);
  margin-bottom: 24px;
  font-size: 12px;
}
.signup-verified > svg {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
}
.signup-verified > span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.signup-verified small {
  display: block;
  font-size: 9px;
  margin-top: 3px;
  color: #7d9169;
}
.signup-start-over {
  display: block;
  margin: 15px auto 0;
  font-size: 10px;
}
@media (max-width: 380px) {
  .signup-progress {
    gap: 6px;
  }
  .signup-progress li {
    gap: 5px;
    font-size: 9px;
  }
  .signup-progress li + li::before {
    width: 7px;
    margin-right: 0;
  }
  .otp-boxes {
    gap: 6px;
  }
  .otp-boxes input {
    height: 49px;
    font-size: 22px;
  }
}
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  align-items: start;
}
.settings-body {
  padding: 5px 24px 24px;
}
.settings-body .form-field label {
  font-size: 10px;
}
.settings-body .form-field input,
.settings-body .form-field select {
  font-size: 11px;
}
.settings-body .btn {
  font-size: 10px;
}
.toggle-row {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 10px 0 20px;
}
.toggle-copy {
  flex: 1;
}
.toggle-copy strong {
  font-size: 11px;
  display: block;
  margin-bottom: 6px;
}
.toggle-copy p {
  font-size: 10px;
  color: #95a186;
  line-height: 1.8;
}
.toggle {
  appearance: none;
  width: 35px;
  height: 21px;
  border-radius: 11px;
  background: #dfe5d7;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.toggle:checked {
  background: var(--green);
}
.toggle:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px #0002;
  transition: transform 0.2s;
}
.toggle:checked:before {
  transform: translateX(14px);
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 24px;
}
.detail-stat {
  padding: 19px 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.detail-stat p {
  font-size: 10px;
  color: #95a18b;
  margin-bottom: 10px;
}
.detail-stat strong {
  font-size: 20px;
  letter-spacing: -0.5px;
}
.detail-url {
  max-width: 370px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #637756;
}
.page-path {
  font-size: 11px;
  font-weight: 600;
  color: #617356;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-path svg {
  width: 13px;
  color: #a5af99;
}
.signal-dots {
  display: flex;
  gap: 5px;
}
.signal-dots span {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: #b7d294;
}
.signal-dots span.blocked {
  background: #dcaa82;
}
.signal-dots span.unknown,
.signal-dots span.warning {
  background: #ded7a4;
}
.site-detail-description {
  display: flex;
  align-items: center;
  gap: 8px;
}
.activity-full .activity-row {
  padding: 21px 3px;
}
.activity-full .event-main strong {
  font-size: 11px;
}
.activity-full .event-main p {
  font-size: 10px;
}
.activity-full .event-time {
  font-size: 9px;
}
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.notfound h1 {
  font-size: 44px;
  color: var(--green);
  letter-spacing: -2px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .page-content {
    padding-top: 45px;
  }
  .page-heading {
    margin-bottom: 30px;
  }
  .stats-grid {
    margin-bottom: 30px;
  }
  .peace-banner {
    padding: 21px;
  }
  .stat-card {
    padding: 24px;
  }
  .panel-heading {
    padding-top: 25px;
    padding-bottom: 23px;
  }
  td {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 1180px) {
  .sidebar {
    width: 210px;
    padding-inline: 15px;
  }
  .app-main {
    margin-left: 210px;
  }
  .page-content {
    padding: 28px 25px;
  }
  .topbar {
    padding-inline: 25px;
  }
  .stats-grid {
    gap: 12px;
  }
  .stat-card {
    padding: 17px;
  }
  .bottom-grid {
    grid-template-columns: 1.25fr 1fr;
    gap: 16px;
  }
  .auth-story {
    padding: 40px;
  }
  .auth-story h1 {
    font-size: 45px;
  }
  th,
  td {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 950px) {
  .sidebar {
    width: 190px;
    padding-inline: 12px;
  }
  .sidebar .brand {
    font-size: 18px;
    gap: 7px;
    margin-inline: 5px;
  }
  .brand-mark {
    width: 31px;
    height: 31px;
  }
  .app-main {
    margin-left: 190px;
  }
  .page-content {
    padding: 27px 20px;
  }
  .topbar {
    padding-inline: 20px;
  }
  .page-heading h1 {
    font-size: 24px;
  }
  .heading-actions .btn {
    font-size: 10px;
    padding: 11px 13px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-top {
    margin-bottom: 14px;
  }
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  .peace-banner > .badge {
    display: none;
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .auth-story h1 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }
  .auth-story {
    padding: 35px;
  }
  .auth-form-side {
    padding: 50px 30px;
  }
  .panel-heading {
    padding-inline: 19px;
  }
  .panel-heading .table-tools {
    gap: 5px;
  }
  .table-search {
    max-width: 140px;
  }
}
@media (max-width: 700px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s;
    width: 238px;
    box-shadow: 10px 0 60px #14332310;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar .brand {
    font-size: 20px;
    margin-left: 10px;
  }
  .app-main {
    margin-left: 0;
  }
  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: #12322340;
    z-index: 19;
  }
  .mobile-menu {
    display: flex;
  }
  .topbar {
    height: 60px;
    padding: 0 18px;
  }
  .topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .live-status {
    font-size: 9px;
  }
  .topbar-right {
    gap: 10px;
  }
  .page-content {
    padding: 25px 17px;
  }
  .page-heading {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 17px;
    margin-bottom: 20px;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-heading p {
    font-size: 10px;
  }
  .heading-actions {
    width: 100%;
  }
  .heading-actions .btn {
    flex: 1;
    font-size: 11px;
  }
  .peace-banner {
    padding: 16px;
    gap: 12px;
    margin-bottom: 20px;
  }
  .peace-banner h3 {
    font-size: 10px;
  }
  .peace-banner p {
    font-size: 9px;
  }
  .peace-icon {
    width: 32px;
    height: 36px;
  }
  .stats-grid {
    gap: 11px;
    margin-bottom: 20px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-value {
    font-size: 28px;
  }
  .stat-top {
    font-size: 9px;
  }
  .stat-foot {
    font-size: 8px;
    line-height: 1.6;
  }
  .panel-heading {
    padding: 18px;
    flex-wrap: wrap;
    gap: 13px;
  }
  .panel-heading .table-tools {
    width: 100%;
  }
  .table-search {
    max-width: none;
    flex: 1;
  }
  .table-tools .btn {
    font-size: 9px;
    padding: 9px;
  }
  .table-footer {
    padding: 13px 17px;
    font-size: 8px;
  }
  .bottom-grid {
    margin-top: 20px;
    gap: 20px;
  }
  .app-footer {
    font-size: 8px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .app-footer span:last-child {
    display: none;
  }
  .auth-page {
    display: block;
  }
  .auth-story {
    display: none;
  }
  .auth-form-side {
    min-height: 100vh;
    padding: 110px 28px 50px;
  }
  .auth-small-logo {
    display: inline-flex;
    margin-bottom: 40px;
  }
  .auth-back {
    top: 30px;
    right: 26px;
    font-size: 10px;
  }
  .auth-form-box h2 {
    font-size: 29px;
  }
  .auth-form-box {
    width: 370px;
  }
  .auth-form-box > p {
    font-size: 12px;
  }
  .form-field label {
    font-size: 12px;
  }
  .form-field > input,
  .password-wrap input {
    font-size: 14px;
    padding: 14px;
  }
  .modal {
    padding: 23px;
    border-radius: 14px;
  }
  .modal-backdrop {
    padding: 15px;
  }
  .detail-grid {
    gap: 10px;
  }
  .detail-stat {
    padding: 16px 13px;
  }
  .detail-stat p {
    font-size: 8px;
  }
  .detail-stat strong {
    font-size: 17px;
  }
  .event-time {
    font-size: 7px;
  }
  .activity-list {
    padding-inline: 17px;
  }
  .event-main strong {
    font-size: 9px;
  }
  .event-main p {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.page-history {
  margin-top: 23px;
}
.history-heading {
  font-size: 11px;
  font-weight: 650;
  margin-bottom: 10px;
}
.history-heading span {
  font-size: 9px;
  font-weight: 400;
}
.history-note {
  font-size: 10px;
  color: #8c9b81;
  line-height: 1.8;
}
.history-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e9eee2;
  padding: 10px 0;
  font-size: 9px;
  color: #819375;
}
.history-row time {
  flex: 1;
}
.history-duration {
  font-size: 8px;
  color: #9da78f;
}
.history-row .badge {
  font-size: 8px;
  padding: 4px 6px;
}

/* Crawler preferences reuse the site's compact green form language. */
.bot-picker {
  margin: 15px 0 20px;
  text-align: left;
  min-width: 0;
}
.bot-picker-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bot-picker-line > label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #72846a;
  font-size: 10px;
  font-weight: 600;
}
.bot-picker-line > label svg {
  width: 15px;
  height: 15px;
}
.bot-picker select {
  min-width: 0;
  width: 100%;
  padding: 10px 28px 10px 11px;
  border: 1px solid #dfe6d8;
  border-radius: 8px;
  background: #fff;
  color: #45643c;
  font-size: 11px;
  line-height: 1.4;
  cursor: pointer;
}
.bot-picker-help {
  font-size: 9px;
  line-height: 1.8;
  color: #87977c;
  margin: 9px 0 0;
}
.bot-custom-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #e2e9db;
  background: #f7faf3;
  border-radius: 10px;
  padding: 15px;
  margin-top: 13px;
}
.bot-custom-fields[hidden] {
  display: none !important;
}
.bot-custom-fields .form-field {
  margin-bottom: 14px;
}
.bot-custom-fields .form-field:last-child {
  margin-bottom: 0;
}
.bot-custom-fields .form-field > input {
  background: #fff;
  font-size: 11px;
  padding: 11px;
}
.bot-custom-fields .form-field > label {
  font-size: 10px;
}
.bot-custom-fields .form-field > small {
  font-size: 9px;
}
.landing #public-bot-picker {
  margin-top: 13px;
  max-width: 520px;
}
.landing .bot-picker {
  margin-bottom: 0;
}
.landing .bot-picker-line {
  gap: 13px;
}
.landing .bot-picker-line label {
  font-size: 10px;
}
.landing .bot-picker select {
  font-size: 10px;
  background: #ffffffb8;
  max-width: 310px;
}
.landing .bot-picker-help {
  font-size: 9px;
  line-height: 1.7;
  max-width: 470px;
}
.landing .bot-custom-fields {
  max-width: 470px;
}
.landing .bot-custom-fields input {
  font-size: 11px;
}
.bot-save-note {
  font-size: 10px;
  color: #8e9e82;
  line-height: 1.85;
  margin: 0 0 18px;
}
.monitor-bot-bar {
  background: #eff4e8;
  border: 1px solid #e1e9d8;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.monitor-bot-bar > span {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 10px;
  color: #849578;
  flex-wrap: wrap;
}
.monitor-bot-bar > span svg {
  width: 15px;
  height: 15px;
}
.monitor-bot-bar strong {
  font-weight: 650;
  color: #4b7040;
}
.monitor-bot-bar .text-link {
  font-size: 10px;
  background: none;
  padding: 3px;
  white-space: nowrap;
}
.site-bot-caption {
  font-size: 8px;
  color: #92a184;
  display: block;
  margin-top: 5px;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.result-bot-context {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-bottom: 1px solid #e9eee2;
}
.result-bot-context > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 650;
  color: #618051;
  min-width: 0;
  overflow-wrap: anywhere;
}
.result-bot-context svg {
  width: 14px;
  height: 14px;
}
.result-bot-context .badge {
  font-size: 8px;
  padding: 4px 6px;
}
.bot-audit-intro {
  padding: 15px 18px;
  background: #fbfdf8;
  border-bottom: 1px solid #edf1e7;
}
.bot-audit-intro > strong {
  font-size: 10px;
  font-weight: 650;
  color: #617f51;
}
.bot-audit-intro > p {
  font-size: 9px !important;
  line-height: 1.8 !important;
  color: #94a18a !important;
  margin: 6px 0 0 !important;
}
.bot-audit-row {
  border-bottom: 1px solid #eaf0e2;
}
.bot-audit-row:last-child {
  border-bottom: 0;
}
.bot-audit-row > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s;
}
.bot-audit-row > summary::-webkit-details-marker {
  display: none;
}
.bot-audit-row > summary:hover {
  background: #f7faf3;
}
.bot-audit-row > summary:focus-visible {
  outline: 2px solid #7b9d63;
  outline-offset: -3px;
}
.bot-audit-name {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
  color: #58764c;
  font-size: 10px;
  font-weight: 600;
}
.bot-audit-name > svg {
  width: 15px;
  height: 15px;
  color: #91a580;
}
.bot-audit-name small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: #9aa68f;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
.bot-audit-row .badge {
  font-size: 8px;
  padding: 4px 6px;
}
.bot-audit-row .bot-row-chevron {
  width: 12px;
  height: 12px;
  color: #99a78e;
  transition: transform 0.15s;
}
.bot-audit-row[open] .bot-row-chevron {
  transform: rotate(180deg);
}
.bot-audit-row[open] > summary {
  background: #f2f7eb;
}
.bot-audit-details {
  border-top: 1px solid #e9efdf;
  background: #fcfdf9;
  padding-left: 6px;
}
.bot-audit-details .signal-row {
  padding-block: 12px;
}
.bot-result-notes {
  background: #f5f8ef;
}
.history-bot {
  max-width: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
  color: #8c9d80;
}
@media (max-width: 700px) {
  .bot-picker select {
    font-size: 12px;
    padding-block: 11px;
  }
  .bot-custom-fields .form-field > input {
    font-size: 14px;
  }
  .monitor-bot-bar {
    padding: 13px;
    align-items: flex-start;
  }
  .monitor-bot-bar > span {
    font-size: 9px;
  }
  .monitor-bot-bar .text-link {
    font-size: 9px;
  }
  .result-bot-context {
    padding: 12px 14px;
  }
  .result-bot-context > span:first-child {
    font-size: 9px;
  }
  .bot-audit-row > summary {
    padding: 13px 14px;
  }
  .history-bot {
    max-width: 64px;
    font-size: 7px;
  }
}
@media (max-width: 650px) {
  .landing .bot-picker-line label {
    font-size: 10px;
  }
  .landing .bot-picker select {
    font-size: 11px;
    max-width: none;
  }
  .landing .bot-picker-help {
    font-size: 9px;
  }
  .landing .bot-custom-fields input {
    font-size: 14px;
  }
  .landing .bot-picker {
    margin: 13px 0 0;
  }
}
