:root {
  --accent: #357a00;
  --accent-bright: #6fc028;
  --accent-tint: #eef6e3;
  --accent-tint-2: #e3f0d4;
  --dark: #1b1b17;
  --dark-2: #25251e;
  --light: #f7f6f1;
  --white: #ffffff;
  --text: #2a2a24;
  --text-muted: #6b6b60;
  --border: #e2dfd5;
  --border-dark: rgba(255, 255, 255, 0.12);
  --nav-h: 64px;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Zilla Slab', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-bright);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

section {
  scroll-margin-top: calc(42px + var(--nav-h) + 16px);
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
  text-decoration: none;
  line-height: 1;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-right: auto;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.brand-word {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-bright);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.75rem 1.5rem 1.5rem;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 0.5rem;
}

.hero {
  background: var(--dark);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 24px,
    rgba(111, 192, 40, 0.025) 24px,
    rgba(111, 192, 40, 0.025) 25px
  );
  padding: 3.5rem 0 4rem;
  color: var(--white);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.pill {
  display: inline-block;
  background: rgba(111, 192, 40, 0.15);
  color: var(--accent-bright);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(111, 192, 40, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.pill-divider {
  color: rgba(255, 255, 255, 0.3);
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 4.25rem);