html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050a06;
  color: #d7ddcf;
}

a {
  color: #a3c36b;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

.site-header {
  border-bottom: 1px solid #182a19;
  background: radial-gradient(circle at top left, #0e2014, #050a06);
}

.header-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.logo {
  width: 120px;
  image-rendering: pixelated;
  border-radius: 6px;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  color: #879b68;
}

.site-header h1 {
  margin: 0;
  font-size: 1.9rem;
  color: #dce9c0;
}

.site-header h2 {
  margin: 0.45rem 0 0.9rem;
  font-weight: 400;
  font-size: 1rem;
  color: #9fb08b;
}

.lead {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 46rem;
}

h2 {
  font-size: 1.2rem;
  color: #b2cc73;
  margin-bottom: 0.75rem;
}
h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #3b4d29;
  margin-top: 0.25rem;
}

ul { padding-left: 1.2rem; }
li { margin-bottom: 0.5rem; }

.site-footer {
  border-top: 1px solid #182a19;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  text-align: center;
  color: #808a7a;
  padding: 1rem 0 1.5rem;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo {
    width: 150px;
    margin-bottom: 0.75rem;
  }

  .site-header h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .site-header h2 {
    font-size: 0.95rem;
  }

  .lead {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .container {
    padding: 1.25rem;
  }
}
