:root {
  color-scheme: light;
  --ink: #06101f;
  --muted: #536174;
  --line: #d9e1ec;
  --soft: #f6f8fb;
  --paper: #ffffff;
  --blue: #2563eb;
  --green: #0f9f6e;
  --yellow: #f6c915;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

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

.nav-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-actions a,
.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  text-decoration: none;
}

.nav-actions a.active,
.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.wrap {
  margin: 0 auto;
  max-width: 1060px;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 48px);
}

.hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  padding-bottom: 34px;
}

.kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 14px 0 0;
}

.lead {
  color: #223049;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 850;
  line-height: 1.28;
  margin: 18px 0 0;
  max-width: 820px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  margin-top: 22px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.section {
  margin-top: 16px;
}

h2 {
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h3 {
  font-size: 20px;
  letter-spacing: 0;
  margin: 0;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

p {
  margin: 12px 0 0;
}

ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

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

.badge {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 850;
  min-height: 34px;
  padding: 0 12px;
}

.badge.blue {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.24);
  color: var(--blue);
}

.badge.green {
  background: rgba(15, 159, 110, 0.08);
  border-color: rgba(15, 159, 110, 0.24);
  color: var(--green);
}

.badge.yellow {
  background: rgba(246, 201, 21, 0.14);
  border-color: rgba(246, 201, 21, 0.38);
  color: #7a5b00;
}

.table {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 16px;
  overflow: hidden;
}

.row {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.8fr 1.4fr;
  min-height: 50px;
  padding: 14px 16px;
}

.row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.row strong {
  color: #263244;
}

.footer {
  background: #17202d;
  border-radius: 8px;
  color: #fff;
  margin-top: 24px;
  padding: 24px;
}

.footer-brand {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  padding-bottom: 18px;
}

.footer-brand img {
  height: 34px;
  width: 42px;
}

.footer-brand strong {
  display: block;
  font-size: 20px;
}

.footer-brand span {
  color: #94a3b8;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

.footer-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px 0;
}

.footer h2 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer a {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.footer p {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.footer-trust {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-trust a {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  min-height: 38px;
  padding: 0 10px;
}

.footer-bottom {
  color: #94a3b8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 18px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .nav-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .row {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-trust {
    grid-template-columns: 1fr;
  }
}
