:root {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  color: #17251c;
  background: #f4f5ef;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid #d9ddd2;
}

.brand { font-weight: 750; letter-spacing: -0.02em; }
nav { display: flex; gap: 18px; font-size: 14px; }
main { width: min(720px, calc(100% - 32px)); margin: 56px auto; }
.title-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(36px, 8vw, 64px); letter-spacing: -0.06em; }
h2 { margin-bottom: 18px; font-size: 24px; letter-spacing: -0.03em; }
.eyebrow { margin-bottom: 8px; color: #5b6a60; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.beta-flags { display: flex; gap: 8px; margin: 28px 0; flex-wrap: wrap; }
.beta-flags span, .facts span { border: 1px solid #cbd1c6; border-radius: 999px; padding: 6px 10px; font-size: 13px; }
.request-list { display: grid; gap: 14px; }
.request-card, .notice, .page-card { padding: 24px; border: 1px solid #d9ddd2; border-radius: 18px; background: #fff; box-shadow: 0 8px 30px rgb(23 37 28 / 5%); }
.facts, .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.reason { margin: 18px 0 0; line-height: 1.5; }
.actions { margin-top: 22px; }
button { min-height: 44px; padding: 0 18px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; }
button:disabled { cursor: default; opacity: 0.45; }
.primary { color: #fff; background: #214c32; }
.secondary { color: #214c32; background: transparent; border-color: #9cab9d; }
.code { font: 700 26px ui-monospace, monospace; letter-spacing: 0.16em; }
.expired, .empty, .status { color: #667168; }
.status { min-height: 24px; margin-top: 18px; font-size: 14px; }
.page-card { line-height: 1.6; }
.page-card h1 { margin-bottom: 28px; }
.page-card h2 { margin-top: 30px; }
.page-card a { text-decoration: underline; text-underline-offset: 3px; }

@media (prefers-color-scheme: dark) {
  :root { color: #edf3ea; background: #101712; }
  .topbar { border-color: #2d382f; }
  .request-card, .notice, .page-card { background: #18221b; border-color: #303d33; }
  .eyebrow, .expired, .empty, .status { color: #aab7ad; }
  .beta-flags span, .facts span { border-color: #465448; }
  .secondary { color: #dce9de; border-color: #607064; }
}
