:root {
  --green-900: #1d4b2f;
  --green-700: #2f6e42;
  --green-100: #eaf3ec;
  --earth-600: #7a5f3c;
  --text-900: #1f2933;
  --text-700: #4b5a68;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-900);
  line-height: 1.5;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid #d8e2db;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  color: var(--green-900);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-700);
  font-weight: 600;
}

.banner {
  background: #f3f8f4;
}

.banner-image {
  display: block;
  width: min(1080px, 92%);
  margin: 0 auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 0 0 0.9rem 0.9rem;
  border: 1px solid #d8e2db;
  border-top: none;
}

.hero {
  background: linear-gradient(120deg, var(--green-100), #f8faf9);
  padding: 4.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-image {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d8e2db;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--earth-600);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--text-700);
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--green-700);
  color: var(--white);
  padding: 0.75rem 1.2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.stats {
  background: var(--white);
  border: 1px solid #d8e2db;
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.stats article + article {
  border-top: 1px solid #d8e2db;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.section {
  padding: 3.25rem 0;
}

.section-alt {
  background: #f5f8f6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid #d8e2db;
  border-radius: 0.6rem;
  padding: 1rem;
  background: var(--white);
}

.steps {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.2rem;
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.checklist {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  align-items: start;
}

.bushel-logo {
  width: min(180px, 100%);
  margin-bottom: 1rem;
  border: 1px solid #dedede;
}

.wallet-form {
  display: grid;
  gap: 0.85rem;
}

.wallet-status {
  min-height: 1.25rem;
  margin: 0.75rem 0;
  font-weight: 600;
}

.wallet-result {
  background: #10222a;
  color: #effaf4;
  border-radius: 0.5rem;
  padding: 0.9rem;
  min-height: 160px;
  overflow: auto;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

input,
select {
  padding: 0.55rem;
  border-radius: 0.35rem;
  border: 1px solid #bdc9bf;
  font: inherit;
}

.site-footer {
  background: var(--green-900);
  color: #e8f3eb;
}

.footer-wrap {
  padding: 1rem 0;
}

@media (max-width: 800px) {
  .hero-grid,
  .about,
  .contact,
  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
