:root {
  --blue: #4b7bf5;
  --green: #1fe16d;
  --ink: #14110c;
  --muted: #5d5346;
  --paper: #f4ecd8;
  --paper-deep: #e7dac0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--blue);
  font-family: Arial, sans-serif;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav-links a {
  color: white;
  font-weight: 900;
  text-decoration: none;
  opacity: 0.9;
}

.hero,
.section {
  width: min(1120px, calc(100% - 28px));
  margin: 18px auto;
  padding: clamp(24px, 5vw, 62px);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 225, 109, 0.7);
  border-radius: 999px;
  padding: 8px 14px;
  color: #087b35;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 28px 0 16px;
  font-size: clamp(40px, 9vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

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

.lede {
  max-width: 840px;
  font-size: clamp(18px, 2.4vw, 23px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 5px 0 var(--ink);
}

.button.secondary {
  background: white;
}

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

.card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.card strong {
  color: var(--ink);
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.article-list a {
  display: block;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.faq details {
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  padding: 16px 18px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .section {
    width: calc(100% - 18px);
    margin: 10px auto;
    padding: 24px;
  }

  h1 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1;
    word-break: break-word;
  }

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

  p,
  li {
    font-size: 16px;
  }
}
