:root {
  color-scheme: light;
  --forest: #477b35;
  --leaf: #97c77c;
  --pine: #0d2014;
  --deep: #07110c;
  --ink: #111812;
  --muted: #657265;
  --line: #dce5d5;
  --paper: #f5f6ef;
  --field: #e9f1e4;
  --white: #ffffff;
  --silver: #c9d2c7;
  --shadow: 0 26px 70px rgba(7, 17, 12, 0.18);
  --logo-dark: #5b873f;
  --logo-light: #a8d08d;
  --logo-divider: #050505;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(151, 199, 124, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(13, 32, 20, 0.08), transparent 44%),
    var(--paper);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.language-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(7, 17, 12, 0.54);
  box-shadow: 0 14px 32px rgba(7, 17, 12, 0.24);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.language-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(151, 199, 124, 0.6);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 104px, 1240px);
  min-height: 64px;
  padding: 12px 86px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 17, 12, 0.52);
  box-shadow: 0 20px 50px rgba(7, 17, 12, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-image {
  width: clamp(220px, 25vw, 300px);
  height: auto;
}

.brand-main {
  color: var(--logo-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-weight: 700;
}

.brand-divider {
  color: var(--logo-divider);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
}

.brand-sub {
  color: var(--logo-light);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 650;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--leaf);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 12, 0.9) 0%, rgba(7, 17, 12, 0.66) 36%, rgba(7, 17, 12, 0.12) 72%),
    linear-gradient(0deg, rgba(7, 17, 12, 0.76) 0%, transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 12, 0.58) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: 160px 0 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--leaf);
}

h1 {
  max-width: 860px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.9rem, 6.6vw, 7rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  color: var(--pine);
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

h3 {
  margin-bottom: 12px;
  color: var(--pine);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.hero-support {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 720;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--leaf);
  color: var(--deep);
  background: var(--leaf);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 12, 0.5);
  backdrop-filter: blur(20px);
}

.hero-panel span {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel span:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--deep);
}

.metrics-strip article {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: clamp(28px, 5vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.metrics-strip article:last-child {
  border-right: 0;
}

.metrics-strip a {
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: 360px;
  color: var(--leaf);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.metrics-strip a span {
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
}

.metrics-strip a strong {
  color: inherit;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.96;
}

.metrics-strip a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.section-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  font-weight: 620;
  line-height: 1.62;
}

.section,
.services-section,
.process-section,
.partners-section,
.contact-section {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.section,
.services-section,
.process-section,
.partners-section,
.contact-section,
.compute-section,
.mission-section {
  scroll-margin-top: 110px;
}

.section {
  padding: clamp(82px, 11vw, 150px) 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-bottom: clamp(36px, 7vw, 76px);
}

.section-kicker h2 {
  max-width: 900px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(24px, 4vw, 44px);
  min-height: 380px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
}

.profile-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.profile-body {
  display: grid;
  align-content: start;
}

.profile-role,
.feature-label,
.service-card span,
.process-list span {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-body p:not(.profile-role),
.mission-copy p,
.feature-card p,
.service-card p,
.process-list p,
.contact-copy,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.profile-body p:not(.profile-role) {
  margin-bottom: 0;
  font-weight: 560;
}

.compute-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.compute-image,
.compute-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compute-image {
  object-fit: cover;
}

.compute-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 12, 0.9) 0%, rgba(7, 17, 12, 0.7) 46%, rgba(7, 17, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 17, 12, 0.86) 0%, rgba(7, 17, 12, 0.08) 56%, rgba(7, 17, 12, 0.5) 100%);
}

.compute-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  align-content: center;
  align-items: end;
  gap: clamp(34px, 6vw, 88px);
  min-height: inherit;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.compute-heading {
  display: grid;
  gap: 18px;
}

.compute-section .eyebrow {
  color: var(--logo-light);
}

.compute-section h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 4.9rem);
  overflow-wrap: normal;
  hyphens: auto;
}

.compute-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  font-weight: 720;
  line-height: 1.55;
}

.compute-list {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compute-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 610;
  line-height: 1.58;
}

.compute-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--logo-light);
  box-shadow: 0 0 18px rgba(168, 208, 141, 0.8);
}

.mission-section {
  padding: clamp(82px, 11vw, 150px) 0;
  color: var(--white);
  background: var(--pine);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.mission-section .eyebrow {
  color: var(--leaf);
}

.mission-section h2 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.1vw, 4.4rem);
  line-height: 1.02;
  overflow-wrap: normal;
  hyphens: auto;
}

.mission-copy {
  display: grid;
  gap: 20px;
  align-self: start;
  max-width: 650px;
  padding-top: clamp(6px, 1vw, 16px);
}

.mission-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.feature-card div {
  display: grid;
  align-content: start;
  padding: clamp(26px, 4vw, 44px);
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-card-dark {
  color: var(--white);
  background: var(--pine);
  border-color: rgba(13, 32, 20, 0.28);
}

.feature-card-dark h3 {
  color: var(--white);
}

.feature-card-dark p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.services-section,
.process-section,
.partners-section,
.contact-section {
  padding: clamp(82px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.service-grid,
.service-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-groups {
  gap: 0;
}

.service-group {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.52);
}

.service-group + .service-group {
  border-left: 1px solid var(--line);
}

.service-group .feature-label {
  margin-bottom: 0;
}

.service-group-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 280px;
  padding: clamp(24px, 3.5vw, 34px);
  background: rgba(255, 255, 255, 0.78);
}

.service-group .service-card {
  min-height: 180px;
  background: var(--white);
}

.service-group .service-card-wide {
  grid-column: auto;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 210px;
}

.service-card h3 {
  max-width: 360px;
}

.service-card p {
  margin-bottom: 0;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 86px minmax(210px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span,
.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 51, 30, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(71, 123, 53, 0.42);
  box-shadow: 0 18px 42px rgba(21, 51, 30, 0.1);
}

.partner-card img {
  width: 100%;
  max-width: 210px;
  max-height: 104px;
  object-fit: contain;
}

.partner-card-tall img {
  max-width: 132px;
  max-height: 148px;
}

.partner-card-wide-logo img {
  max-width: 250px;
  max-height: 112px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 80px);
  color: var(--white);
  background: var(--deep);
  border-top: 0;
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
}

.contact-section h2 {
  color: var(--white);
  max-width: 520px;
  font-size: clamp(2.15rem, 3.8vw, 3.8rem);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.contact-section .eyebrow {
  color: var(--leaf);
}

.contact-copy {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--leaf);
  color: var(--white);
  font-style: normal;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
}

.contact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card a {
  color: var(--leaf);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 32px, 1240px);
    border-radius: 24px;
    padding: 16px 86px 16px 18px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-content {
    padding-top: 190px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: min(100% - 48px, 520px);
    margin: -48px auto 32px;
  }

  .section-kicker,
  .mission-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .profile-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    grid-template-columns: 132px 1fr;
  }

  .compute-section {
    min-height: auto;
  }

  .compute-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-grid,
  .service-groups,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-group:first-child {
    border-top: 0;
  }

  .service-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .language-toggle {
    top: 12px;
    right: 12px;
    min-height: 34px;
    font-size: 0.78rem;
  }

  .site-header {
    top: 10px;
    width: min(100% - 24px, 1240px);
    padding-right: 74px;
  }

  .brand-image {
    width: min(100%, 238px);
  }

  .site-nav {
    gap: 4px 14px;
  }

  .site-nav a {
    padding: 4px 0;
    font-size: 0.86rem;
  }

  .hero-content {
    width: min(100% - 32px, 1240px);
    padding: 196px 0 76px;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .metrics-strip {
    grid-template-columns: 1fr;
  }

  .metrics-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section,
  .services-section,
  .process-section,
  .partners-section,
  .contact-section {
    width: min(100% - 32px, 1240px);
  }

  .mission-grid {
    width: min(100% - 32px, 1240px);
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 112px;
    height: 112px;
  }

  .compute-content {
    width: min(100% - 32px, 1240px);
    padding: 78px 0;
  }

  .compute-section h2 {
    font-size: clamp(2rem, 9.5vw, 3.35rem);
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card img {
    height: 260px;
  }

  .service-grid,
  .service-groups,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: span 1;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-section {
    width: 100%;
    padding-inline: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
