/* daily-lab 랩 사이트 공용 스타일 — 미니멀·다크. Siro Works 톤. */
:root {
  --bg: #0c0d10;
  --panel: #15171c;
  --panel-2: #1c1f26;
  --line: #262a33;
  --fg: #e8eaed;
  --muted: #9aa0ac;
  --accent: #7c9cff;
  --keep: #57f287;
  --kill: #6b7280;
  --pending: #f5c451;
  --maybe: #f0883e;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }

/* 헤더 */
header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky; top: 0;
  background: rgba(12,13,16,.85);
  backdrop-filter: blur(8px);
  z-index: 10;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.brand .dot { color: var(--accent); }
nav a { color: var(--muted); font-size: 14px; margin-left: 18px; transition: color .15s; }
nav a:hover, nav a.active { color: var(--fg); }

/* 인트로 */
.intro { padding: 48px 0 24px; }
.intro h1 { font-size: 28px; margin: 0 0 10px; letter-spacing: -.02em; }
.intro p { color: var(--muted); margin: 0; max-width: 560px; }

/* 섹션 타이틀 */
.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 36px 0 14px;
}
.section-title h2 { font-size: 15px; color: var(--muted); font-weight: 600; margin: 0; text-transform: uppercase; letter-spacing: .04em; }
.section-title .count { font-size: 13px; color: var(--muted); }

/* 카드 그리드 */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .15s, transform .15s, background .15s;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--panel-2); }
.card .top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card .date { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.card h3 { font-size: 16px; margin: 0; letter-spacing: -.01em; }
.card .pitch { font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; }
.card .meta { display: flex; align-items: center; gap: 8px; margin-top: 2px; }

/* 뱃지 */
.badge { font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.badge.type { background: var(--panel-2); color: var(--muted); border: 1px solid var(--line); }
.verdict { font-size: 11px; padding: 2px 8px; border-radius: 999px; font-weight: 600; }
.verdict.keep { background: rgba(87,242,135,.14); color: var(--keep); }
.verdict.kill { background: rgba(107,114,128,.18); color: var(--kill); }
.verdict.pending { background: rgba(245,196,81,.14); color: var(--pending); }
.verdict.maybe { background: rgba(240,136,62,.14); color: var(--maybe); }

/* 빈 상태 */
.empty { color: var(--muted); padding: 40px 0; text-align: center; border: 1px dashed var(--line); border-radius: 12px; }

/* 푸터 */
footer.site { border-top: 1px solid var(--line); margin-top: 56px; padding: 24px 0 48px; color: var(--muted); font-size: 13px; }
footer.site a { color: var(--accent); }
