:root {
  --green-900: #073d2b;
  --green-800: #0d5136;
  --green-600: #258048;
  --green-100: #e8f3e4;
  --orange-600: #e56f1e;
  --gold-500: #d8a634;
  --blue-700: #14639c;
  --ink: #15231e;
  --muted: #617069;
  --line: #d9e3d7;
  --paper: #fffdf5;
  --soft: #f3f7ec;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(10, 61, 43, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 166, 52, .16), transparent 32rem),
    linear-gradient(180deg, #fffaf0 0%, #f8fbf2 48%, #ffffff 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: .85rem 5%;
  background: rgba(255, 253, 245, .92);
  border-bottom: 1px solid rgba(13, 81, 54, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span {
  color: var(--orange-600);
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-text strong {
  color: var(--green-600);
}

.brand-text small {
  margin-top: .25rem;
  color: var(--green-900);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav a {
  padding: .7rem .85rem;
  color: var(--green-900);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

main {
  overflow: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .95fr);
  gap: 2.5rem;
  align-items: center;
  width: min(1120px, 90%);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 3rem 0 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 .7rem;
  color: var(--orange-600);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1,
.section-grid h2,
.content-section h2 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: 4.2rem;
}

.hero-lead {
  max-width: 40rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 26px rgba(13, 81, 54, .22);
}

.button.ghost {
  color: var(--green-900);
  border-color: rgba(13, 81, 54, .22);
  background: var(--white);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  padding: .8rem;
  border: 1px solid rgba(13, 81, 54, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.hero-badge {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  display: grid;
  min-width: 130px;
  padding: .95rem 1rem;
  color: var(--white);
  border-radius: 8px;
  background: var(--green-900);
  box-shadow: 0 18px 36px rgba(7, 61, 43, .26);
}

.hero-badge span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 2.35rem;
  line-height: 1;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, 90%);
  margin: 0 auto 3.5rem;
  overflow: hidden;
  border: 1px solid rgba(13, 81, 54, .12);
  border-radius: 8px;
  background: rgba(13, 81, 54, .12);
}

.intro-strip article {
  display: grid;
  gap: .45rem;
  min-height: 150px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, .82);
}

.intro-strip svg,
.contact-cards svg {
  width: 32px;
  height: 32px;
  color: var(--green-600);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-strip h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.08rem;
}

.intro-strip p {
  margin: 0;
  color: var(--muted);
}

.section-grid,
.content-section {
  width: min(1120px, 90%);
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(20rem, .65fr);
  gap: 2rem;
  align-items: stretch;
}

.section-grid h2,
.content-section h2 {
  font-size: 2.45rem;
}

.section-grid p,
.section-heading p,
.split-band p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.question-panel,
.feature-card,
.environment-grid article,
.finance-card,
.team-grid article,
.contact-cards a {
  border: 1px solid rgba(13, 81, 54, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(13, 81, 54, .08);
}

.question-panel {
  padding: 1.5rem;
}

.question-panel h3,
.feature-card h3,
.environment-grid h3,
.finance-card h3 {
  margin: 0;
  color: var(--green-900);
}

.check-list,
.benefit-list {
  display: grid;
  gap: .75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before,
.benefit-list li::before {
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.05rem;
  height: 1.05rem;
  content: "";
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: inset 0 0 0 4px var(--green-100);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 210px;
  padding: 1.35rem;
}

.feature-card.strong {
  color: var(--white);
  background: var(--green-800);
}

.feature-card.strong h3,
.feature-card.strong .number {
  color: var(--white);
}

.feature-card p {
  color: var(--muted);
}

.feature-card.strong p {
  color: rgba(255, 255, 255, .82);
}

.number,
.environment-grid span {
  display: inline-block;
  margin-bottom: 2.7rem;
  color: var(--orange-600);
  font-size: 2rem;
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 4.5rem max(5%, calc((100% - 1120px) / 2));
  background:
    linear-gradient(135deg, rgba(13, 81, 54, .95), rgba(20, 99, 156, .92)),
    var(--green-900);
}

.split-band h2,
.split-band .section-kicker {
  color: var(--white);
}

.split-band p {
  color: rgba(255, 255, 255, .78);
}

.benefit-list {
  margin: 0;
}

.benefit-list li {
  padding: 1rem 1rem 1rem 3rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.benefit-list li::before {
  left: 1rem;
  top: 1.25rem;
  background: var(--gold-500);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .2);
}

.benefit-list span {
  display: block;
  font-weight: 900;
}

.benefit-list small {
  display: block;
  margin-top: .25rem;
  color: rgba(255, 255, 255, .72);
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.environment-grid article {
  min-height: 230px;
  padding: 1.35rem;
}

.environment-grid p {
  color: var(--muted);
}

.finance-section {
  width: 100%;
  padding-right: max(5%, calc((100% - 1120px) / 2));
  padding-left: max(5%, calc((100% - 1120px) / 2));
  background: #f6f8f1;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .8fr);
  gap: 1rem;
}

.finance-card {
  padding: 1.2rem;
}

.finance-card.highlight {
  display: grid;
  gap: 1.2rem;
  background: var(--green-900);
}

.finance-card.highlight h3,
.finance-card.highlight .card-title strong {
  color: var(--white);
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.card-title strong {
  color: var(--green-600);
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: .82rem .45rem;
  text-align: left;
  border-bottom: 1px solid #e7ede4;
}

th {
  color: var(--green-900);
  font-size: .78rem;
  text-transform: uppercase;
}

td:last-child,
th:last-child {
  color: var(--green-600);
  font-weight: 900;
  text-align: right;
}

.revenue-list {
  display: grid;
  gap: .7rem;
}

.revenue-list p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: .85rem;
  color: rgba(255, 255, 255, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}

.revenue-list strong {
  color: var(--white);
  white-space: nowrap;
}

.profit-box {
  display: grid;
  gap: .2rem;
  padding: 1.1rem;
  color: var(--green-900);
  border-radius: 8px;
  background: var(--white);
}

.profit-box span {
  font-weight: 900;
  text-transform: uppercase;
}

.profit-box strong {
  color: var(--orange-600);
  font-size: 2.25rem;
  line-height: 1.05;
}

.profit-box small {
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}

.team-grid article {
  display: grid;
  gap: .35rem;
  min-height: 100px;
  padding: 1rem;
}

.team-grid span {
  color: var(--green-700, #1c6b3e);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: .85rem;
}

.contact-cards a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  font-weight: 800;
}

.contact-cards a:hover {
  border-color: rgba(37, 128, 72, .38);
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 5%;
  color: rgba(255, 255, 255, .86);
  background: var(--green-900);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 900;
}

.footer-logo {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-section,
  .section-grid,
  .split-band,
  .finance-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 2.4rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: 3.15rem;
  }

  .feature-layout,
  .environment-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: .7rem 4%;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-text span {
    font-size: 1.18rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .6rem;
    border: 1px solid rgba(13, 81, 54, .14);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: .9rem;
  }

  .hero-section,
  .intro-strip,
  .section-grid,
  .content-section {
    width: min(100% - 2rem, 1120px);
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .section-grid h2,
  .content-section h2 {
    font-size: 2rem;
  }

  .hero-lead,
  .section-grid p,
  .section-heading p,
  .split-band p,
  .contact-section p {
    font-size: 1rem;
  }

  .intro-strip,
  .feature-layout,
  .environment-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip article {
    min-height: auto;
  }

  .hero-badge {
    right: 1.1rem;
    bottom: 1.1rem;
    min-width: 112px;
  }

  .hero-badge strong {
    font-size: 1.9rem;
  }

  .section-grid,
  .content-section,
  .split-band,
  .finance-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .number,
  .environment-grid span {
    margin-bottom: 1.25rem;
  }

  .card-title,
  .revenue-list p,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    gap: .75rem;
  }
}

@media (max-width: 430px) {
  .brand-text small {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .profit-box strong {
    font-size: 1.75rem;
  }
}
