.hero { margin-bottom: 28px; }
.hero h1 {
  font-size: 30px; font-weight: 700; margin: 0 0 10px;
  letter-spacing: -0.025em; line-height: 1.2;
}
.hero p { color: var(--muted); margin: 0; max-width: 680px; font-size: 15px; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 28px; }
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.stat-label {
  font-size: 11px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.stat-value {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  display: flex; align-items: center;
}
.stat-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

.section-title {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 12px 4px;
}

.actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin-bottom: 28px; }
.action {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  color: var(--text);
}
.action:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.action-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.action-icon svg { display: block; }
.action-title { font-weight: 600; font-size: 14px; }
.action-desc { color: var(--muted); font-size: 13px; line-height: 1.5; }
.action-arrow { color: var(--muted); font-size: 12px; margin-top: 6px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.card h2 { font-size: 14px; margin: 0; font-weight: 600; }

.url-row { display: flex; gap: 8px; align-items: stretch; }
.url {
  flex: 1; padding: 10px 12px; border-radius: 8px;
  background: var(--code-bg); border: 1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; word-break: break-all;
  display: flex; align-items: center;
}
.copy-hint { font-size: 12px; color: var(--muted); margin-top: 10px; }

.recent { display: flex; flex-direction: column; }
.recent-row {
  display: grid;
  grid-template-columns: 90px 80px 1fr auto;
  gap: 12px; align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.recent-row:last-child { border-bottom: none; }
.recent-time { color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.recent-msg { color: var(--muted); font-size: 12px; text-align: right; max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.recent-empty { color: var(--muted); font-size: 13px; padding: 12px 0; text-align: center; }
.recent-loading { color: var(--muted); font-size: 13px; padding: 12px 0; text-align: center; }

.footer { color: var(--muted); font-size: 12px; margin-top: 32px; text-align: center; }
.footer code { background: var(--code-bg); padding: 1px 6px; border-radius: 4px; }
