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

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background: #1e4d20;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cube {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 10px;
}

.logo-name {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.logo-tagline {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.2px;
  margin-top: 5px;
  display: block;
}

/* MAIN */
main {
  padding: 40px 32px 48px;
  flex: 1;
}

h1 {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 10px;
  color: #1e4d20;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: 8px;
  border-top: 3px solid #1e4d20;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
  padding: 20px 18px;
}

.card h2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 700;
  color: #1e4d20;
  margin-bottom: 8px;
}

.card p {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
}

/* FOOTER */
footer {
  background: #1e4d20;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer span {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

footer span:last-child {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

/* LEGAL PAGES */
main.legal {
  padding: 40px 32px 48px;
  max-width: 680px;
  flex: 1;
}

main.legal h1 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

main.legal .subtitle {
  font-size: 10px;
  color: #1e4d20;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}

main.legal section {
  margin-bottom: 28px;
}

main.legal h2 {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  color: #1e4d20;
  margin-bottom: 8px;
}

main.legal p, main.legal a {
  font-size: 13px;
  color: #444;
  line-height: 1.75;
}

main.legal a {
  color: #1e4d20;
}

/* FOOTER NAV */
.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.9);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 28px;
  }
}