:root {
  --canvas: #f5f5f2;
  --paper: #ffffff;
  --ink: #171715;
  --muted: #74746d;
  --line: #e7e7e1;
  --green: #168553;
  --green-soft: #e9f6ef;
  --amber: #996515;
  --amber-soft: #fff4dc;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 32px; }

.hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }

.eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

h1 { margin: 0; font-size: clamp(42px, 7vw, 78px); line-height: .96; letter-spacing: -.055em; font-weight: 650; }

.lede { max-width: 670px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

.bot-link { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; white-space: nowrap; }

.bot-link:hover { border-color: #c9c9c1; background: var(--paper); }

.bot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

.summary { display: grid; grid-template-columns: repeat(3, minmax(100px, 150px)) 1fr; align-items: end; gap: 8px; margin: 54px 0 18px; }

.summary > div { display: flex; align-items: baseline; gap: 8px; }

.summary strong { font-size: 27px; letter-spacing: -.04em; }

.summary span, .summary p { color: var(--muted); font-size: 13px; }

.summary p { justify-self: end; margin: 0 4px 5px 0; }

.table-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: 0 14px 40px rgba(25,25,20,.045); }

.table-wrap { overflow-x: auto; }

table { width: 100%; border-collapse: collapse; table-layout: fixed; }

th { padding: 15px 18px; color: var(--muted); background: #fafaf8; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-align: left; text-transform: uppercase; }

th:first-child { width: 54%; }
th:nth-child(2) { width: 15%; }
th:nth-child(3) { width: 13%; }
th:nth-child(4) { width: 18%; }

td { padding: 20px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 14px; line-height: 1.45; }

tr:last-child td { border-bottom: 0; }

.description { display: flex; gap: 12px; }

.id { flex: 0 0 auto; margin-top: 1px; color: #999990; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }

.description-text { white-space: pre-wrap; overflow-wrap: anywhere; }

.frequency, .owner { color: #50504b; }

.status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border-radius: 999px; font-size: 12px; font-weight: 650; }

.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.status-active { color: var(--amber); background: var(--amber-soft); }
.status-found { color: var(--green); background: var(--green-soft); }

.result-link { display: inline-block; margin-top: 9px; color: var(--green); font-size: 13px; font-weight: 650; text-underline-offset: 3px; }

.checked { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }

.result-content { display: flex; flex-direction: column; align-items: flex-start; }

.empty, .error { padding: 72px 24px; color: var(--muted); text-align: center; }
.empty span { display: block; color: var(--ink); font-size: 22px; font-weight: 650; letter-spacing: -.03em; }
.empty p { margin: 8px 0 0; }
.error { color: #a03730; }

footer { padding: 18px 4px; color: #999990; font-size: 12px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1180px); padding-top: 42px; }
  .hero { align-items: flex-start; flex-direction: column; }
  .summary { grid-template-columns: repeat(3, 1fr); margin-top: 38px; }
  .summary > div { display: block; }
  .summary span { display: block; margin-top: 2px; }
  .summary p { grid-column: 1 / -1; justify-self: start; margin-top: 10px; }
  .table-wrap { overflow: visible; }
  table, tbody, tr, td { display: block; width: 100%; }
  table { min-width: 0; }
  thead { display: none; }
  tr { padding: 20px; border-bottom: 1px solid var(--line); }
  tr:last-child { border-bottom: 0; }
  td { padding: 0; border: 0; }
  td + td { display: grid; grid-template-columns: 92px minmax(0, 1fr); align-items: start; gap: 12px; margin-top: 16px; }
  td + td::before { content: attr(data-label); color: #999990; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .description { gap: 9px; }
}
