:root {
  --green: #174c3c;
  --green-dark: #0e3328;
  --cream: #f5f1e8;
  --paper: #e4d5b8;
  --gold: #c58b35;
  --black: #171a18;
  --gray: #68706b;
  --white: #ffffff;
  --border: #dedbd3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  color: var(--green);
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  font-weight: 400;
  margin-left: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.nav-button {
  background: var(--green);
  color: white !important;
  padding: 11px 17px;
  border-radius: 5px;
}

.hero {
  background: var(--cream);
  padding: 90px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.eyebrow.light {
  color: #d5ad69;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -3px;
  margin: 0 0 25px;
  color: var(--green-dark);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
  color: var(--green-dark);
}

h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

.hero-text {
  font-size: 19px;
  color: var(--gray);
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 21px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

.primary {
  background: var(--green);
  color: white;
}

.secondary {
  border: 1px solid var(--green);
  color: var(--green);
}

.hero-card {
  background: var(--green);
  color: white;
  padding: 55px 35px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.weight {
  font-size: 110px;
  line-height: .8;
  font-weight: 900;
  color: var(--paper);
}

.weight-unit {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 5px;
}

.hero-card p {
  font-size: 20px;
  font-weight: 700;
}

.hero-card span {
  color: #c9d6d0;
  font-size: 13px;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 45px;
}

.section-heading p {
  color: var(--gray);
  font-size: 17px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  border-top: 2px solid var(--green);
  padding-top: 20px;
}

.feature-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
}

.feature p {
  color: var(--gray);
  font-size: 14px;
}

.dark-section {
  background: var(--green-dark);
  color: white;
  padding: 90px 0;
}

.dark-section h2 {
  color: white;
}

.dark-section p {
  color: #c9d6d0;
  max-width: 600px;
}

.split {
  display: grid;
  grid-template-columns: 1fr .6fr;
  align-items: center;
  gap: 60px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.check-list li {
  padding: 7px 0;
}

.check-list li::before {
  content: "✓";
  color: #d5ad69;
  margin-right: 10px;
  font-weight: bold;
}

.light-button {
  background: var(--paper);
  color: var(--green-dark);
}

.big-number {
  font-size: 170px;
  font-weight: 900;
  color: var(--paper);
  text-align: center;
  line-height: .8;
}

.big-number span {
  display: block;
  font-size: 35px;
  letter-spacing: 8px;
}

.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.industries div {
  background: var(--cream);
  padding: 25px;
  font-weight: 700;
  color: var(--green-dark);
}

.cta {
  background: var(--paper);
  padding: 75px 0;
  text-align: center;
}

.cta p {
  color: #5d584d;
  margin-bottom: 25px;
}

footer {
  background: #101815;
  color: white;
  padding: 45px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-content p {
  color: #9ba8a2;
  font-size: 13px;
}

.footer-content a {
  color: #d7dfdb;
  text-decoration: none;
  margin-left: 20px;
  font-size: 13px;
}

.copyright {
  border-top: 1px solid #29322e;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #84918b;
  font-size: 12px;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }

  .hero-content,
  .split {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .industries {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-content a {
    display: block;
    margin: 8px 0;
  }

  .big-number {
    font-size: 110px;
  }
}

@media (max-width: 500px) {
  .features,
  .industries {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }
}