:root {
  --page-bg: #f4f6f5;
  --card-bg: #ffffff;
  --brand-green: #014933;
  --soft-green: #e8f2ec;
  --brand-gold: #f1b82d;
  --text-heading: #10110e;
  --text-body: #7b7b7b;
  --text-muted: #9a9a9a;
  --border-soft: #e6ebe8;
  --radius-card: 18px;
  --radius-control: 14px;
  --shadow-card: 0 4px 12px rgba(1, 73, 51, 0.06);
  --gutter: 20px;
  --max: 560px;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text-heading);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px var(--gutter) 36px;
}

.page--article {
  padding-top: 32px;
}

.shell {
  width: 100%;
  max-width: var(--max);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.logo {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-copy .eyebrow {
  margin-bottom: 6px;
}

.brand-copy h1 {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
}

.page-kicker {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-heading);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

h1 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.lede {
  margin: 0 0 14px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 24px;
}

.lede--last {
  margin-bottom: 28px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--text-heading);
}

.qr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash {
  width: 18px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
  margin: 0 0 28px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 20px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.icon-well {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--soft-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-well svg {
  display: block;
}

.card-title {
  flex: 1;
  margin: 0;
  color: var(--brand-green);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.qr-wrap {
  display: grid;
  place-items: center;
  padding: 8px 0 4px;
}

.qr {
  width: 160px;
  height: 160px;
  display: block;
}

.icon-glyph {
  font-size: 15px;
  line-height: 1;
}

.hint {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 18px;
  text-align: left;
}

.cta {
  display: none;
  margin-top: 16px;
  width: 100%;
  background: var(--brand-green);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.cta:hover {
  text-decoration: none;
  filter: brightness(1.06);
}

.site-footer {
  width: 100%;
  max-width: var(--max);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 0 14px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 18px;
}

.footer-entity,
.footer-copy {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 18px;
}

.footer-fine {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 16px;
}

.footer-fine a {
  color: var(--brand-green);
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--brand-green);
  font-size: 15px;
  font-weight: 500;
}

.back-btn {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
}

.article h1 {
  margin-bottom: 8px;
}

.article .updated {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.article .card {
  padding: 22px 20px;
}

.article h2 {
  margin: 22px 0 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--brand-green);
}

.article h2:first-child {
  margin-top: 0;
}

.article p,
.article li {
  color: var(--text-body);
  font-size: 15px;
  line-height: 23px;
}

.article p {
  margin: 0 0 12px;
}

.article ul {
  margin: 0 0 12px;
  padding-left: 1.15em;
}

.article li + li {
  margin-top: 6px;
}

.highlight {
  background: var(--soft-green);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 16px 0 4px;
}

.highlight p {
  margin: 0;
  color: var(--brand-green);
}

@media (max-width: 640px) {
  .cta {
    display: block;
  }

  .qr {
    width: 132px;
    height: 132px;
  }

  .logo {
    width: 88px;
    height: 88px;
  }

  .brand-copy h1 {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (min-width: 641px) {
  .page {
    padding-top: 72px;
  }
}
