:root {
  --ink: #111318;
  --muted: #626a78;
  --paper: #fbfaf7;
  --paper-2: #f2efe8;
  --line: rgba(17, 19, 24, 0.12);
  --navy: #101722;
  --forest: #1f5c4c;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.wrap {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  background: var(--navy);
  color: var(--white);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  padding: 62px 0 52px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 23, 34, 0.98), rgba(31, 92, 76, 0.92)),
    var(--navy);
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
  line-height: 1.7;
}

.meta {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

main {
  padding: 44px 0 70px;
}

.notice {
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(31, 92, 76, 0.24);
  border-radius: var(--radius);
  background: rgba(31, 92, 76, 0.08);
  color: #244139;
  line-height: 1.65;
}

section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.72;
}

ul {
  padding-left: 22px;
}

.table {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.86rem;
}

tr:last-child td {
  border-bottom: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

button,
.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary,
button.primary {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #0d121b;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 980px);
  }

  .nav-inner {
    display: grid;
    justify-items: start;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
