/* Minimalist light theme — black/white/gray only */
:root{
  --bg:#ffffff;
  --fg:#111111;
  --muted:#666666;
  --border:#e5e5e5;
  --surface:#f7f7f7;
  --accent:#111111; /* stay grayscale */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font:16px/1.6 monospace;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container{max-width:960px; margin-inline:auto; padding:0 16px}

.site-header{
  border-bottom:1px solid var(--border);
  background:var(--bg);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between; padding:12px 16px;
}
.brand{font-size:20px; letter-spacing:0.5px; margin:0;}
.nav-link{color:var(--muted); text-decoration:none; margin-left:16px}
.nav-link:hover{color:var(--fg); text-decoration:underline}

.hero{
  padding:56px 0;
  background:var(--surface);
  border-bottom:1px solid var(--border);
}
.kicker{margin:0 0 8px; color:var(--muted); font-size:14px; letter-spacing:.3px;}
.title{margin:0 0 16px; font-size:28px; line-height:1.25; max-width:60ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{display:inline-block; padding:10px 16px; border-radius:8px; border:1px solid var(--fg); text-decoration:none; font-weight:600}
.btn-primary{background:var(--fg); color:#fff}
.btn-ghost{background:transparent; color:var(--fg)}

.section{padding:32px 0}
.section-header{margin-bottom:12px}
.section-title{margin:0 0 4px; font-size:20px}
.section-subtitle{margin:0; color:var(--muted); font-size:14px}

.status{color:var(--muted); margin:8px 0 16px}

.table-wrap{overflow:auto; border:1px solid var(--border); border-radius:10px; background:#fff}
.table{width:100%; border-collapse:collapse; font-size:14px}
th, td{padding:10px 12px; border-bottom:1px solid var(--border); text-align:left; white-space:nowrap}
thead th{background:var(--surface); font-weight:700}
tbody tr:last-child td{border-bottom:none}
tbody tr:hover{background:#fafafa}

/* Make table rows clickable */
tbody tr{cursor:pointer; transition:background-color 0.2s ease}
tbody tr:hover{background:#f0f0f0}

.site-footer{border-top:1px solid var(--border); padding:16px 0; color:var(--muted)}

/* Screen-reader only utility */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
