/* Deadline Bid Desk — single stylesheet.
   Plain files, no build step, no external fonts, no tracking. */

:root {
  --ink: #16191d;
  --ink-soft: #454b53;
  --paper: #ffffff;
  --paper-alt: #f4f5f7;
  --rule: #d3d7dd;
  --link: #14457a;
  --link-visited: #5a3a80;
  --accent: #14457a;
  --max: 720px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- header / nav ---------- */

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0 16px;
  margin-bottom: 32px;
}

.site-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 2px;
}

.site-title a { color: var(--ink); text-decoration: none; }
.site-title a:hover { text-decoration: underline; }

.site-strap {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 0.95rem;
}

nav a[aria-current="page"] {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

/* ---------- typography ---------- */

h1 {
  font-size: 1.85rem;
  line-height: 1.25;
  margin: 0 0 16px;
}

h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 40px 0 12px;
  padding-top: 4px;
}

h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

p, ul, ol, table, dl { margin: 0 0 16px; }

ul, ol { padding-left: 22px; }

li { margin-bottom: 6px; }

a { color: var(--link); }
a:visited { color: var(--link-visited); }
a:hover { text-decoration-thickness: 2px; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

strong { font-weight: 600; }

abbr[title] { text-decoration: underline dotted; }

/* ---------- blocks ---------- */

.lede {
  font-size: 1.1rem;
  color: var(--ink);
}

.product {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 16px 18px;
  margin: 0 0 18px;
  background: var(--paper);
}

.product h3 { margin-top: 0; }

.price {
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.price .sub {
  font-weight: 400;
  color: var(--ink-soft);
}

.note {
  background: var(--paper-alt);
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  margin: 0 0 20px;
}

.note p:last-child { margin-bottom: 0; }

.disclosure {
  border: 1px solid var(--rule);
  background: var(--paper-alt);
  padding: 14px 16px;
  margin: 0 0 24px;
}

.disclosure p { margin: 0; }

/* ---------- tables ---------- */

.table-scroll { overflow-x: auto; margin-bottom: 20px; }

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}

caption {
  text-align: left;
  font-weight: 600;
  padding-bottom: 8px;
}

th, td {
  border: 1px solid var(--rule);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

thead th { background: var(--paper-alt); }

td.num, th.num { text-align: right; white-space: nowrap; }

/* ---------- checklist (map pages) ---------- */

.checklist { list-style: none; padding-left: 0; }

.checklist li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 2px;
}

/* ---------- call to action ---------- */

.cta {
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 18px;
  margin: 28px 0;
}

.cta h2 { margin-top: 0; }

.button {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
}

.button:visited { color: #ffffff; }
.button:hover { text-decoration: underline; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 48px;
  padding: 20px 0 40px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  padding: 10px 14px;
  border: 2px solid var(--accent);
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 10;
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 1.6rem; }
}

@media print {
  body { font-size: 11pt; }
  .site-header nav, .site-footer { display: none; }
}
