:root {
  --ink: #102018;
  --ink-muted: #506256;
  --forest: #103323;
  --forest-2: #1f5b38;
  --moss: #95d579;
  --lime: #d9ff6b;
  --cream: #f6f1e5;
  --paper: #fffaf0;
  --clay: #b86534;
  --copper: #d9923d;
  --steel: #d7e1dd;
  --line: rgba(16, 32, 24, 0.14);
  --shadow: 0 24px 70px rgba(16, 32, 24, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "IBM Plex Sans", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 8%, rgba(217, 255, 107, 0.22), transparent 28rem),
    linear-gradient(120deg, #fff8e7 0%, #eef4e7 48%, #dcece3 100%);
  line-height: 1.55;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px clamp(16px, 3vw, 36px);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(246, 241, 229, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(16, 32, 24, 0.08);
}
.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(16, 32, 24, 0.14);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -0.02em;
  font-size: 1rem;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: var(--forest);
  color: var(--lime);
  border-radius: 50% 50% 50% 8px;
  font-family: var(--display);
  box-shadow: inset 0 0 0 2px rgba(217, 255, 107, 0.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--ink-muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(16, 32, 24, 0.08);
  transform: translateY(-1px);
}
.nav-links .nav-cta {
  background: var(--forest);
  color: #fff;
  padding-inline: 18px;
}
.nav-links .nav-cta:hover { background: #071711; color: #fff; }
.nav-toggle { display: none; }

.section-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: clamp(76px, 10vw, 126px) 0; position: relative; }
.section-light { background: rgba(255, 250, 240, 0.76); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--forest-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}
h1, h2, h3 { margin: 0; line-height: 0.96; letter-spacing: -0.055em; }
h1, h2 { font-family: var(--display); text-transform: uppercase; }
h1 { font-size: clamp(3.4rem, 8.6vw, 7.9rem); max-width: 930px; }
h2 { font-size: clamp(2.35rem, 5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.05; letter-spacing: -0.035em; }
p { margin: 0; color: var(--ink-muted); }

.hero {
  position: relative;
  padding: clamp(34px, 5vw, 64px) 0 clamp(76px, 8vw, 116px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -12% -10% auto auto;
  width: 58vw;
  height: 58vw;
  max-width: 780px;
  max-height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 213, 121, 0.42), rgba(217, 255, 107, 0.12) 44%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.hero-lede {
  max-width: 710px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  color: #30483a;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 18px 32px rgba(16, 51, 35, 0.24); }
.btn-primary:hover { background: #071711; }
.btn-secondary { background: rgba(255, 250, 240, 0.8); color: var(--forest); border-color: var(--line); }
.hero-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.62);
}
.hero-proof div { padding: 18px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1; color: var(--forest); }
.hero-proof span { display: block; margin-top: 8px; color: var(--ink-muted); font-weight: 700; font-size: 0.88rem; }
.hero-art {
  padding: 12px;
  border: 1px solid rgba(16, 32, 24, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 240, 0.58);
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}
.hero-art img { border-radius: 28px; }

.impact-strip {
  background: var(--forest);
  color: #fff;
  padding: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-grid div {
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.impact-grid span { color: var(--lime); font-weight: 900; letter-spacing: 0.12em; }
.impact-grid strong { display: block; margin-top: 14px; font-size: 1.35rem; letter-spacing: -0.04em; }
.impact-grid p { margin-top: 10px; color: rgba(255,255,255,0.72); }

.two-col, .tech-layout, .chain-grid, .footprint-grid, .values-grid, .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}
.rich-copy {
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}
.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}
.section-heading.narrow { max-width: 780px; }
.section-heading p:not(.eyebrow) { max-width: 690px; margin-top: 18px; font-size: 1.08rem; }

.business-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.business-card {
  position: relative;
  min-height: 540px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.business-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -22% auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  opacity: 0.28;
}
.business-card.solar::after { background: var(--copper); }
.business-card.wind::after { background: var(--moss); }
.card-number {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--forest);
  color: var(--lime);
  font-family: var(--display);
}
.business-card p { margin-top: 18px; font-size: 1.02rem; }
.check-list, .job-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.check-list li, .job-card li {
  position: relative;
  padding-left: 30px;
  color: #344b3d;
  font-weight: 600;
}
.check-list li::before, .job-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest-2);
  box-shadow: 0 0 0 5px rgba(31, 91, 56, 0.12);
}

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  min-height: 330px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.process-card p { margin-top: 18px; }

.tech-section {
  background:
    linear-gradient(135deg, rgba(8, 26, 18, 0.96), rgba(20, 61, 42, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255,255,255,0.05) 80px 81px);
  color: #fff;
  overflow: hidden;
}
.tech-section .eyebrow { color: var(--lime); }
.tech-section p { color: rgba(255,255,255,0.7); }
.tech-stack { display: grid; gap: 14px; }
.tech-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: grid;
  gap: 8px;
}
.tech-item strong { font-size: 1.22rem; letter-spacing: -0.03em; }
.tech-item span { color: rgba(255,255,255,0.72); }

.chain-grid { grid-template-columns: 0.78fr 1.22fr; align-items: center; }
.chain-copy p:not(.eyebrow) { margin-top: 20px; font-size: 1.08rem; }
.text-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 900;
  color: var(--forest);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.chain-art img, .footprint-map img { border-radius: var(--radius-xl); box-shadow: var(--shadow); }

.footprint { background: #e8efe1; }
.footprint-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.footprint-copy p:not(.eyebrow) { margin-top: 20px; font-size: 1.06rem; }
.region-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.region-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fffaf0;
  border: 1px solid var(--line);
  font-weight: 800;
}

.values-section { background: var(--forest); color: #fff; padding-block: clamp(64px, 8vw, 96px); }
.value-panel {
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-1deg);
}
.value-panel span { font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; }
.values-copy { align-self: center; }
.values-copy p { color: rgba(255,255,255,0.76); font-size: clamp(1.16rem, 2vw, 1.5rem); }

.careers-layout .section-heading { margin-inline: auto; text-align: center; }
.careers-layout .section-heading p { margin-inline: auto; }
.career-note {
  margin: -16px auto 30px;
  max-width: 880px;
  padding: 18px 22px;
  border: 1px solid rgba(16, 32, 24, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(217, 255, 107, 0.28), rgba(255, 255, 255, 0.72));
  display: grid;
  gap: 6px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(16, 32, 24, 0.08);
}
.career-note strong {
  color: var(--forest);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.career-note span {
  color: var(--ink-muted);
  font-weight: 700;
}
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.job-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(16, 32, 24, 0.08);
}
.job-type {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(184, 101, 52, 0.11);
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}
.job-card p { margin-top: 16px; }
.apply-panel {
  margin-top: 22px;
  padding: 26px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--forest);
  color: #fff;
}
.apply-panel p { margin-top: 10px; color: rgba(255,255,255,0.74); }
.apply-panel a:not(.btn) { color: var(--lime); font-weight: 800; }
.apply-panel .btn-primary { background: var(--lime); color: var(--ink); box-shadow: none; }
.apply-panel .btn-primary:hover { background: #f0ffad; }

.contact-section { background: var(--paper); }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.contact-copy p:not(.eyebrow) { margin-top: 20px; font-size: 1.08rem; }
.contact-methods {
  margin-top: 32px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(16, 51, 35, 0.06);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
}
.contact-methods a { color: var(--forest); font-weight: 900; font-size: 1.08rem; }
.contact-methods span { color: var(--ink-muted); font-weight: 700; }
.contact-form {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.contact-form label { display: grid; gap: 8px; font-weight: 800; color: var(--forest); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(16, 32, 24, 0.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px rgba(31, 91, 56, 0.12);
}
.form-note { font-size: 0.88rem; color: var(--ink-muted); }

.site-footer {
  padding: 42px 0;
  background: #08140f;
  color: #fff;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { color: #fff; }
.site-footer p { margin-top: 12px; color: rgba(255,255,255,0.62); }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }

@media (max-width: 980px) {
  .hero-grid, .two-col, .tech-layout, .chain-grid, .footprint-grid, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { transform: none; }
  .business-grid, .process-grid, .job-grid, .impact-grid { grid-template-columns: 1fr; }
  .business-card { min-height: auto; }
  .footprint-map { order: 2; }
  .apply-panel { align-items: flex-start; flex-direction: column; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  body { overflow-x: hidden; }
  .site-header { padding-inline: 12px; }
  .nav-shell { border-radius: 24px; }
  .nav-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: var(--forest);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: #fff; display: block; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 86px 12px auto 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px; }
  .hero {
    padding-top: 22px;
    padding-bottom: 54px;
    overflow: hidden;
  }
  .hero-grid {
    gap: 36px;
  }
  .hero-copy {
    width: 100%;
    min-width: 0;
  }
  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    line-height: 1.45;
  }
  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.85rem, 8.1vw, 2.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-lede {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    font-size: 1.04rem;
    line-height: 1.6;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .btn {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    text-align: center;
    white-space: normal;
    line-height: 1.16;
  }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-proof strong { font-size: 2rem; }
  .hero-art {
    padding: 8px;
    border-radius: 28px;
  }
  .hero-art img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
  }
  .section-wrap { width: min(100% - 28px, 1160px); }
  .contact-form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
