:root {
  --bg: #f7f9fc;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dce3ec;
  --panel: #fff;
  --nav: #101828;
  --accent: #ea580c;
  --green: #0f766e;
  --blue: #1d4ed8;
  --amber: #b45309;
  --red: #b42318;
  --shadow: 0 14px 34px rgba(16, 24, 40, .07);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}
.brand span { color: var(--accent); }
.links { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; }
.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #344054;
  font-weight: 900;
  text-decoration: none;
}
.links a.primary, .button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.links a.primary {
  min-width: 44px;
  border-radius: 8px;
  padding: 0 13px;
}
.hero { padding: 42px 0 30px; }
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: 0; }
h1 { max-width: 880px; margin: 12px 0 14px; font-size: 54px; }
h2 { margin: 0 0 10px; font-size: 24px; }
h3 { margin: 0 0 6px; font-size: 17px; }
p { color: var(--muted); margin: 0 0 14px; }
.lead { max-width: 820px; font-size: 18px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}
.band { padding: 28px 0; }
.dark {
  background: var(--nav);
  color: #fff;
}
.dark p { color: #cbd5e1; }
.grid { display: grid; gap: 14px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.card p:last-child, .note p:last-child { margin-bottom: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0 10px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.note {
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
  padding: 16px;
  font-weight: 800;
}
.note p { color: #9a3412; }
.table { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
th, td { padding: 13px 12px; border-bottom: 1px solid #edf1f6; text-align: left; vertical-align: top; }
th { color: #667085; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
li { margin: 7px 0; color: var(--muted); }
footer { padding: 34px 0 46px; color: #667085; }
footer a { display: inline-flex; align-items: center; min-height: 44px; margin-right: 12px; font-weight: 850; }

@media (max-width: 860px) {
  .topnav { align-items: flex-start; flex-direction: column; }
  .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .hero { padding-top: 24px; }
  h1 { font-size: 32px; }
  .lead { font-size: 16px; }
  .actions .button, .links a.primary { width: 100%; }
}
