:root {
  --bg: #eef1f4;
  --surface: #ffffff;
  --ink: #17212b;
  --muted: #66727e;
  --line: #d4dbe1;
  --blue: #175f9b;
  --red: #b94d43;
  --green: #267455;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 15px; line-height: 1.55; letter-spacing: 0; }
a { color: var(--blue); text-underline-offset: 3px; }
.topbar, main, footer { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar { min-height: 66px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 17px; font-weight: 750; text-decoration: none; }
.status { color: var(--green); font-size: 12px; }
.status i { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--green); }
.summary { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; padding: 64px 0; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 10px; color: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; }
h1, h2 { font-family: Arial, Helvetica, sans-serif; letter-spacing: 0; }
h1 { max-width: 720px; margin: 0; font-size: 42px; line-height: 1.14; }
h2 { margin: 0; font-size: 26px; }
dl { display: grid; grid-template-columns: 1fr; margin: 0; border-top: 1px solid var(--line); }
dl div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; text-align: right; }
.archive { padding: 64px 0 72px; }
.archive-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 24px; }
label { color: var(--muted); font-size: 12px; }
input { display: block; width: 280px; margin-top: 7px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface); color: var(--ink); font: inherit; }
.file-table { overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.file-row { display: grid; grid-template-columns: minmax(260px, 2fr) 0.65fr 0.55fr 1fr 0.6fr; gap: 18px; align-items: center; min-height: 74px; padding: 12px 16px; border-top: 1px solid var(--line); }
.file-row:first-child { border-top: 0; }
.file-row[hidden] { display: none; }
.file-header { min-height: 42px; background: #e4e9ed; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.file-row strong, .file-row small { display: block; }
.file-row small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.file-row code { color: var(--green); }
.file-row > a { justify-self: end; }
.optional { background: #fafbfb; }
.pending { justify-self: end; color: var(--muted); }
.empty { padding: 18px; color: var(--muted); }
.verification { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 40px; align-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); }
.verification p { color: var(--muted); }
footer { min-height: 72px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; }
@media (max-width: 860px) {
  .summary { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: 35px; }
  .file-header { display: none; }
  .file-row { grid-template-columns: 1fr 1fr; gap: 8px 20px; padding: 18px; }
  .file-row > a, .pending { justify-self: start; }
  .verification { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .topbar, main, footer { width: min(100% - 28px, 1160px); }
  h1 { font-size: 30px; }
  .archive-head { align-items: start; flex-direction: column; }
  label, input { width: 100%; }
  .file-row { grid-template-columns: 1fr; }
}

