:root {
  --ink: #062619;
  --muted: #53645b;
  --green-950: #002f1e;
  --green-900: #003b27;
  --green-800: #075033;
  --green-700: #0d6b3d;
  --green-100: #e9f5e4;
  --line: #dfe8df;
  --paper: #ffffff;
  --soft: #f5f8f4;
  --accent: #a6d64c;
  --orange: #ef8f1a;
  --blue: #2369b3;
  --red: #d0454c;
  --shadow: 0 16px 40px rgba(6, 38, 25, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, var(--green-950), #022519);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .13);
}

.header-inner {
  width: min(1440px, calc(100% - 48px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(166, 214, 76, .18);
  border: 1px solid rgba(166, 214, 76, .35);
  color: var(--accent);
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-weight: 600;
  margin-top: 3px;
}

.header-logos {
  flex: 1 1 230px;
  min-width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-logos img {
  width: 92px;
  height: 44px;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .12);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 26px 0 23px;
  color: rgba(255, 255, 255, .93);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.page {
  min-height: calc(100vh - 76px);
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 28px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--line), transparent);
}

.mini-title {
  margin: 0 0 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.accent-line {
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  margin: 12px 0 18px;
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.home-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) 1.1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #e2f2d9;
  color: var(--green-800);
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.12;
  color: var(--green-950);
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #26372f;
  font-size: 18px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-900);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(6, 38, 25, .06);
}

.btn-primary {
  color: #fff;
  border-color: var(--green-800);
  background: linear-gradient(180deg, #0b6a3d, var(--green-950));
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  margin-right: calc((100vw - min(1440px, calc(100vw - 48px))) / -2);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 38%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .82) 42%, rgba(255, 255, 255, 0) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  min-height: 250px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 40, 25, .93), rgba(0, 40, 25, .64) 48%, rgba(0, 40, 25, .15)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, .92);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 28px;
  align-items: stretch;
  padding: 24px 0;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.summary-item {
  min-height: 108px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-summary .summary-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-summary .summary-item:nth-child(3n) {
  border-right: 0;
}

.hero-summary .summary-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.summary-item strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.summary-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid > *,
.process > *,
.analysis-process > *,
.analysis-column > *,
.about-process > *,
.ml-summary-grid > * {
  min-width: 0;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(6, 38, 25, .04);
}

.pad {
  padding: 26px;
}

.feature-card {
  min-height: 270px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card h3,
.team-card h3,
.contact-card h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.feature-card p,
.contact-card p,
.team-card p,
.text-muted {
  color: var(--muted);
}

.feature-card a {
  margin-top: auto;
  color: var(--green-700);
  font-weight: 900;
}

.icon-bubble {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  flex: 0 0 auto;
}

.icon-bubble svg {
  width: 34px;
  height: 34px;
}

.purpose-band,
.note-band {
  display: grid;
  grid-template-columns: 104px 1fr 250px;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, #eef6ea, #fff 68%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.purpose-band h2,
.note-band h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.purpose-band p,
.note-band p {
  margin: 0;
}

.field-line {
  height: 86px;
  opacity: .38;
  color: var(--green-800);
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.product {
  text-align: center;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.product span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.scope-list,
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-list li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  margin: 14px 0;
}

.scope-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-800);
  border: 1px solid #9cc7a8;
  font-size: 12px;
  font-weight: 900;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-700);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.process.step-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process.step-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.step {
  min-width: 0;
  position: relative;
  text-align: center;
  overflow-wrap: break-word;
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -13px;
  color: #8da096;
  font-weight: 900;
}

.step .icon-bubble {
  margin: 0 auto 12px;
  width: 58px;
  height: 58px;
}

.step strong {
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.step span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.tool-row,
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.tool {
  min-width: 90px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.tool-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 8px;
  background: #f0f4ee;
  color: var(--green-800);
  font-size: 24px;
}

.data-source {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 12px 0;
}

.data-source + .data-source {
  border-top: 1px solid var(--line);
}

.source-logo {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eff5ef;
  color: var(--green-800);
  font-weight: 900;
}

.role-box {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
}

.analysis-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: start;
}

.chart-card {
  min-height: 320px;
}

.chart-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 14px;
}

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

.metric-chart {
  min-width: 0;
}

.metric-chart h4 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 13px;
}

.chart-image {
  width: 100%;
  min-height: 160px;
  max-height: 310px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric-chart .chart-image {
  height: 150px;
  min-height: 150px;
}

.chart-image.tall {
  max-height: 380px;
}

.chart-note {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #f1f5f1;
  color: #26372f;
  font-size: 14px;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  width: min(420px, 100%);
  aspect-ratio: 1 / .72;
  border: 1px solid var(--line);
}

.heatmap span {
  border: 1px solid rgba(255, 255, 255, .45);
  background: var(--c);
}

.bar-list {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 56px;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}

.bar-track {
  height: 20px;
  background: #edf2ec;
  border-radius: 4px;
  overflow: hidden;
}

.bar {
  height: 100%;
  width: var(--value);
  background: linear-gradient(90deg, var(--green-700), #2c8c4d);
}

.metric-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric-box {
  text-align: center;
  padding: 18px;
  border-radius: 8px;
  background: #f1f5f1;
}

.metric-box strong {
  display: block;
  color: var(--green-800);
  font-size: 26px;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef4ef;
  color: #26372f;
  font-weight: 700;
}

.prediction-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.prediction {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.prediction:last-child {
  border-right: 0;
}

.prediction .crop {
  font-size: 34px;
  line-height: 1;
}

.prediction strong {
  display: block;
  margin: 8px 0 4px;
}

.prediction b {
  display: block;
  font-size: 18px;
}

.table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  font-size: 14px;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

thead th {
  background: #f0f5ef;
  color: var(--green-900);
}

tbody tr:nth-child(even) {
  background: #fafcf9;
}

.findings {
  display: grid;
  gap: 12px;
}

.finding {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}

.finding svg {
  margin-top: 2px;
  color: var(--green-700);
}

.analysis-column {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  overflow: hidden;
}

.analysis-mini {
  min-height: 190px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.analysis-mini:last-child {
  border-right: 0;
}

.analysis-mini h3 {
  margin: 12px 0 10px;
  font-size: 17px;
  text-transform: uppercase;
}

.analysis-mini ul {
  padding-left: 20px;
  margin: 0;
}

.analysis-mini li {
  margin: 8px 0;
}

.contact-hero {
  min-height: 315px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: stretch;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0 48px calc((100vw - min(1440px, calc(100vw - 48px))) / 2);
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .95) 74%, rgba(255, 255, 255, 0) 100%);
}

.contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}

.contact-hero-copy p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #26372f;
  font-weight: 600;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  min-height: 315px;
  object-fit: cover;
}

.contact-card {
  min-height: 230px;
  padding: 28px;
  text-align: center;
  display: grid;
  place-items: center;
}

.contact-card .icon-bubble {
  margin: 0 auto;
}

.contact-card b {
  color: var(--ink);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(13, 107, 61, .12);
}

textarea.field {
  min-height: 116px;
  resize: vertical;
}

.privacy-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.team-card {
  min-height: 285px;
  padding: 24px;
  text-align: center;
}

.avatar {
  width: 94px;
  height: 94px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 36%, #eaf6e4 0 36%, #cfe8c5 37% 100%);
  color: var(--green-800);
}

.avatar svg {
  width: 76px;
  height: 76px;
}

.site-footer {
  margin-top: 28px;
  background: linear-gradient(90deg, var(--green-950), #02271a);
  color: #fff;
}

.footer-inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-size: 22px;
}

.footer-brand small,
.footer-note,
.footer-links a {
  color: rgba(255, 255, 255, .8);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
}

.footer-title {
  margin: 0 0 12px;
  font-weight: 900;
}

.footer-bottom {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .72);
}

.contact-footer .footer-inner {
  grid-template-columns: 1.25fr .78fr 1fr 1.2fr;
  align-items: center;
}

.footer-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-logo-panel img {
  width: 82px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 15;
  display: flex;
  gap: 10px;
}

.round-action {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.svg-chart {
  width: 100%;
  height: auto;
}

.axis {
  stroke: #ced9ce;
  stroke-width: 1;
}

.gridline {
  stroke: #e6ece6;
  stroke-width: 1;
}

.line-blue {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
}

.line-orange {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
}

.line-green {
  fill: none;
  stroke: var(--green-700);
  stroke-width: 3;
}

.line-red {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
}

.dot-blue {
  fill: var(--blue);
}

.dot-orange {
  fill: var(--orange);
}

.dot-green {
  fill: var(--green-700);
}

.dot-red {
  fill: var(--red);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c);
}

.logo-text {
  display: inline-flex;
  min-width: 115px;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
}

.logo-emblem {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
}

.about-exact {
  background: #fff;
  color: #081f17;
}

.about-exact-hero {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #062719;
}

.about-exact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 35, 22, .88), rgba(0, 35, 22, .63) 40%, rgba(0, 35, 22, .78));
}

.about-hero-left,
.about-hero-products {
  position: absolute;
  inset-block: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero-left {
  left: 0;
  width: 42%;
  background-image: url("assets/photos/olive.jpeg");
  background-position: center;
  opacity: .72;
}

.about-hero-products {
  right: 0;
  width: 62%;
  background-image: url("assets/photos/hero-products.jpeg");
  background-position: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 26px 0 24px;
}

.about-hero-content h1 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero-content p {
  margin: 12px 0 14px;
  color: #b7d98b;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, .95);
  font-size: 15px;
  font-weight: 800;
}

.about-breadcrumb svg {
  width: 18px;
  height: 18px;
}

.about-content-section {
  padding: 22px 0 18px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(420px, .82fr);
  gap: 26px;
}

.about-left,
.about-right {
  display: grid;
  align-content: start;
  gap: 18px;
}

.about-panel {
  min-width: 0;
}

.about-card {
  padding: 20px 22px;
  border: 1px solid #dfe7dd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(6, 38, 25, .035);
}

.about-aim {
  padding: 0 8px 10px 8px;
}

.about-aim p,
.about-importance p,
.about-soft-box p {
  margin: 0;
  color: #1d2c25;
  font-weight: 500;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #07281b;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.about-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, #dfe7dd, rgba(223, 231, 221, 0));
}

.about-title span {
  width: 28px;
  height: 28px;
  color: #11733f;
  flex: 0 0 auto;
}

.about-title svg {
  width: 100%;
  height: 100%;
}

.about-title.compact {
  margin-bottom: 10px;
}

.about-middle-grid {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
}

.about-soft-box {
  min-height: 264px;
  padding: 22px;
  border-radius: 8px;
  background: #f7faf7;
  border: 1px solid #e7eee6;
}

.about-checks {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-checks li {
  position: relative;
  margin: 14px 0;
  padding-left: 31px;
  color: #26352e;
  font-size: 14px;
  font-weight: 600;
}

.about-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #0d6b3d;
  border: 1px solid #a9c7af;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.about-step {
  min-width: 0;
  position: relative;
  text-align: center;
  overflow-wrap: break-word;
}

.about-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  right: -14px;
  width: 22px;
  border-top: 2px dotted #aebcaf;
}

.about-step-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  color: #0d6b3d;
  background: #f3f8f2;
  border: 1px solid #dbe7dc;
  border-radius: 50%;
}

.about-step-icon svg {
  width: 34px;
  height: 34px;
}

.about-step strong {
  display: block;
  color: #092a1c;
  font-size: 13px;
  line-height: 1.28;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.about-step p {
  margin: 9px 0 0;
  color: #394941;
  font-size: 12px;
  line-height: 1.5;
}

.about-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.about-products figure {
  margin: 0;
  text-align: center;
  color: #10241b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.about-products img {
  width: 100%;
  aspect-ratio: 1 / .83;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #dfe7dd;
}

.about-source {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
}

.about-source + .about-source {
  margin-top: 16px;
}

.about-logo-round {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f0f9;
  color: #245d9c;
  font-size: 13px;
  font-weight: 900;
}

.about-logo-round.tuik {
  background: #f7eeee;
  color: #4c4c4c;
}

.about-source p {
  margin: 0;
  color: #172820;
  font-size: 14px;
  line-height: 1.5;
}

.about-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 13px;
}

.about-tools span {
  min-width: 0;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #24352d;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.about-tools b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0d6b3d;
  background: #f0f5ef;
  font-size: 18px;
  font-weight: 900;
}

.compact-list {
  margin-top: 0;
}

.compact-list li {
  margin: 9px 0;
}

.about-importance {
  display: grid;
  grid-template-columns: 120px 1fr 110px;
  gap: 20px;
  align-items: center;
  min-height: 140px;
  padding: 22px 26px;
  border: 1px solid #dfe7dd;
  border-radius: 8px;
  background: linear-gradient(90deg, #f2f7ef, #fff 64%, #f7faf7);
}

.about-hand,
.about-world {
  display: grid;
  place-items: center;
}

.about-project-footer {
  background: linear-gradient(90deg, #002f1e, #022519);
  color: #fff;
}

.about-footer-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.about-footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
}

.about-footer-logos {
  display: flex;
  align-items: center;
  gap: 22px;
}

.about-footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-footer-logo.mcbu {
  font-family: Georgia, serif;
  letter-spacing: 1px;
}

.about-socials {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.about-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(166, 214, 76, .55);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

/* Screenshot-matched page refinements */
.home-exact,
.analysis-exact,
.ml-exact,
.results-exact,
.contact-exact {
  background: #fff;
}

.home-exact .container,
.analysis-exact .container,
.ml-exact .container,
.results-exact .container,
.contact-exact .container {
  width: min(1440px, calc(100% - 64px));
}

.home-shot-hero {
  border-bottom: 0;
}

.home-exact .home-hero {
  min-height: 500px;
  grid-template-columns: minmax(530px, .95fr) minmax(620px, 1.05fr);
}

.home-exact .hero-copy {
  padding: 52px 0 48px;
}

.home-exact .eyebrow {
  margin-bottom: 8px;
  padding-inline: 18px;
  background: #e5f2dd;
  font-size: 15px;
}

.home-exact .hero h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: 54px;
  line-height: 1.18;
  font-weight: 900;
}

.home-exact .hero-copy p {
  max-width: 680px;
  font-size: 17px;
}

.home-exact .hero-visual {
  min-height: 500px;
}

.home-exact .hero-visual::before {
  width: 44%;
}

.home-feature-section {
  padding: 26px 0 18px;
}

.home-exact .feature-card {
  min-height: 260px;
  padding: 24px 20px 22px;
}

.home-exact .feature-card h3 {
  font-size: 22px;
}

.home-exact .feature-card p {
  margin: 0 0 20px;
  color: #1f3129;
  font-weight: 500;
}

.home-exact .purpose-band {
  min-height: 102px;
  grid-template-columns: 92px 1fr 260px;
}

.analysis-shot-hero,
.ml-shot-hero {
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(0, 38, 24, .98) 0%, rgba(0, 38, 24, .88) 34%, rgba(0, 38, 24, .2) 70%, rgba(0, 38, 24, .1)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.analysis-shot-hero .hero-split {
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 18px;
  align-items: center;
  padding: 0;
}

.analysis-shot-hero h1,
.ml-shot-hero h1 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
}

.analysis-shot-hero p,
.ml-shot-hero p {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}

.analysis-exact .section,
.ml-exact .section,
.results-exact .section {
  padding: 12px 0;
}

.analysis-exact .card,
.ml-exact .card,
.results-exact .card,
.contact-exact .card {
  border-color: #dfe7dd;
  box-shadow: 0 8px 16px rgba(6, 38, 25, .035);
}

.analysis-exact .pad,
.ml-exact .pad,
.results-exact .pad {
  padding: 18px;
}

.analysis-exact .section-title,
.ml-exact .section-title,
.results-exact .section-title,
.contact-exact .section-title {
  margin-bottom: 14px;
  font-size: 18px;
}

.analysis-exact .hero-summary {
  display: block;
  align-self: center;
  justify-self: end;
  width: min(560px, 100%);
  padding: 14px 14px 12px;
  border-color: #dfe7dd;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(6, 38, 25, .1);
}

.analysis-exact .hero-summary h2 {
  margin: 0 0 10px;
  color: #08261a;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.analysis-exact .hero-summary .summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #edf2ed;
  border-radius: 8px;
}

.analysis-exact .summary-item {
  min-height: 78px;
  padding: 9px 10px;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.analysis-exact .summary-item .icon-bubble {
  width: 38px;
  height: 38px;
  margin: 0;
}

.analysis-exact .summary-item .icon-bubble svg {
  width: 23px;
  height: 23px;
}

.analysis-exact .summary-item strong {
  font-size: 21px;
  color: #08261a;
}

.analysis-exact .summary-item > div > span {
  display: block;
  color: #26372f;
  font-size: 11px;
  font-weight: 800;
}

.analysis-exact .summary-item small {
  display: block;
  max-width: 120px;
  margin: 2px 0 0;
  color: #53645b;
  font-size: 9px;
  line-height: 1.25;
  font-weight: 700;
}

.analysis-exact .role-box {
  min-height: 120px;
  grid-template-columns: 82px 1fr;
}

.analysis-exact .process.step-6 {
  grid-template-columns: repeat(6, 1fr);
}

.analysis-exact .step .icon-bubble {
  width: 54px;
  height: 54px;
}

.analysis-exact .step strong {
  font-size: 12px;
}

.analysis-exact .chart-card {
  min-height: 292px;
}

.analysis-exact .mini-charts {
  gap: 12px;
}

.analysis-exact .climate-chart-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.analysis-exact .metric-chart h4 {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
}

.analysis-exact .metric-chart .chart-image {
  height: 190px;
  min-height: 190px;
  max-height: 190px;
  padding: 4px;
}

.analysis-exact .chart-note,
.ml-exact .chart-note,
.results-exact .chart-note {
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 13px;
}

.analysis-exact .chart-image.tall {
  max-height: 270px;
}

.ml-shot-hero {
  display: grid;
  align-items: center;
}

.ml-shot-hero .container {
  padding: 0;
}

.ml-shot-hero h1 {
  max-width: 520px;
  font-size: 42px;
}

.ml-shot-hero p {
  max-width: 560px;
}

.ml-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.ml-summary-grid .summary-item {
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
}

.ml-summary-grid .summary-item .icon-bubble {
  width: 46px;
  height: 46px;
}

.ml-summary-grid .summary-item .icon-bubble svg {
  width: 26px;
  height: 26px;
}

.ml-summary-grid .summary-item strong {
  font-size: 27px;
}

.ml-summary-grid .summary-item span {
  color: #132b20;
  font-size: 13px;
}

.ml-three-grid {
  display: grid;
  grid-template-columns: .9fr 1.15fr 1.05fr;
  gap: 18px;
}

.ml-exact .prediction-grid {
  min-height: 116px;
}

.ml-exact .chart-image.tall,
.results-exact .chart-image.tall {
  max-height: 300px;
}

.ml-exact table,
.results-exact table {
  font-size: 12px;
}

.ml-exact th,
.ml-exact td,
.results-exact th,
.results-exact td {
  padding: 9px 10px;
}

.results-shot-hero {
  border-bottom: 0;
}

.results-exact .home-hero {
  min-height: 245px;
  grid-template-columns: minmax(440px, .72fr) minmax(620px, 1.28fr);
}

.results-exact .hero-copy {
  padding: 24px 0;
}

.results-exact .hero h1 {
  max-width: 620px;
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
}

.results-exact .hero-copy p {
  max-width: 620px;
  font-size: 15px;
}

.results-exact .hero-visual {
  min-height: 245px;
}

.results-exact .analysis-column {
  grid-template-columns: repeat(6, 1fr);
}

.results-exact .analysis-mini {
  min-height: 210px;
  padding: 18px;
}

.results-exact .analysis-mini .icon-bubble {
  width: 54px;
  height: 54px;
}

.results-exact .analysis-mini h3 {
  font-size: 14px;
}

.results-exact .analysis-mini li {
  font-size: 13px;
}

.results-exact .note-band {
  min-height: 112px;
  grid-template-columns: 92px 1fr 120px;
}

.results-exact .grid-5 {
  gap: 10px;
}

.results-exact .grid-5 > div {
  text-align: center;
}

.results-exact .grid-5 h3 {
  margin: 10px 0 6px;
  font-size: 14px;
}

.results-exact .grid-5 p {
  margin: 0;
  font-size: 12px;
}

.contact-exact .contact-hero {
  min-height: 315px;
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
}

.contact-exact .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, #fff 28%, rgba(255, 255, 255, .92) 38%, rgba(255, 255, 255, .38) 52%, rgba(255, 255, 255, 0) 68%);
}

.contact-exact .contact-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 46px 0 42px;
  background: transparent;
}

.contact-exact .contact-hero-copy h1 {
  font-size: 70px;
  font-weight: 900;
}

.contact-exact .contact-hero-copy p {
  max-width: 360px;
  font-size: 16px;
}

.contact-exact .contact-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.contact-exact .section {
  padding: 12px 0;
}

.contact-exact .contact-card {
  min-height: 220px;
}

.contact-exact .grid-4 .team-card {
  min-height: 280px;
}

.contact-exact .contact-form-card,
.contact-exact .contact-about-card {
  min-height: 340px;
}

.contact-exact .form-grid label {
  display: block;
}

.contact-exact .form-grid label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-exact .field {
  min-height: 48px;
  padding: 12px 14px;
}

.contact-exact textarea.field {
  min-height: 98px;
}

.contact-exact .note-band {
  grid-template-columns: 84px 1fr 120px;
  min-height: 96px;
}

.contact-exact .site-footer {
  margin-top: 16px;
}

@media (max-width: 1180px) {
  .header-inner,
  .container,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, 1040px);
  }

  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  .header-logos {
    flex-basis: 170px;
    min-width: 150px;
    gap: 8px;
  }

  .header-logos img {
    width: 72px;
    height: 38px;
    padding: 4px 6px;
  }

  .contact-footer .footer-inner {
    grid-template-columns: 1.15fr .7fr 1fr;
  }

  .contact-footer .footer-inner > :last-child {
    grid-column: 1 / -1;
  }

  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-split,
  .home-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin: 0;
    min-height: 360px;
  }

  .contact-hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .analysis-column {
    grid-template-columns: repeat(3, 1fr);
  }

  .analysis-mini:nth-child(3) {
    border-right: 0;
  }

  .process.step-7,
  .process.step-6,
  .process,
  .analysis-process {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-layout,
  .about-middle-grid {
    grid-template-columns: 1fr;
  }

  .about-process,
  .about-products,
  .about-tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-step:not(:last-child)::after {
    display: none;
  }

  .home-exact .container,
  .analysis-exact .container,
  .ml-exact .container,
  .results-exact .container,
  .contact-exact .container {
    width: min(100% - 32px, 1040px);
  }

  .home-exact .home-hero,
  .results-exact .home-hero,
  .analysis-shot-hero .hero-split {
    grid-template-columns: 1fr;
  }

  .ml-summary-grid,
  .ml-three-grid,
  .results-exact .analysis-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .header-logos {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    padding: 16px;
    background: var(--green-950);
    border-top: 1px solid rgba(255, 255, 255, .12);
    flex-direction: column;
    align-items: stretch;
  }

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

  .main-nav a {
    padding: 12px 4px;
  }

  .main-nav a::after {
    bottom: 4px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .section {
    padding: 20px 0;
  }

  .grid-3,
  .grid-2,
  .footer-inner,
  .contact-footer .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-footer .footer-inner > :last-child {
    grid-column: auto;
  }

  .hero-summary,
  .mini-charts,
  .metric-boxes,
  .prediction-grid,
  .product-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .summary-item,
  .summary-item:nth-child(3n),
  .summary-item:nth-last-child(-n + 3),
  .prediction {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-item:last-child,
  .prediction:last-child {
    border-bottom: 0;
  }

  .purpose-band,
  .note-band,
  .role-box {
    grid-template-columns: 1fr;
  }

  .field-line {
    display: none;
  }

  .process.step-7,
  .process.step-6,
  .process,
  .analysis-process,
  .analysis-column {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .analysis-mini,
  .analysis-mini:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .analysis-mini:last-child {
    border-bottom: 0;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

  .floating-actions {
    display: none;
  }

  .about-exact-hero {
    min-height: 220px;
  }

  .about-hero-left {
    width: 58%;
  }

  .about-hero-products {
    width: 100%;
    opacity: .45;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .about-products,
  .about-process,
  .about-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-importance,
  .about-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-footer-logos,
  .about-socials {
    justify-content: center;
  }

  .home-exact .hero h1,
  .results-exact .hero h1,
  .analysis-shot-hero h1,
  .ml-shot-hero h1 {
    font-size: 34px;
  }

  .ml-summary-grid,
  .ml-three-grid,
  .results-exact .analysis-column,
  .analysis-exact .process.step-6 {
    grid-template-columns: 1fr;
  }

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

  .contact-exact .contact-hero-copy h1 {
    font-size: 48px;
  }

  .analysis-exact .hero-summary .summary-grid {
    grid-template-columns: 1fr;
  }

  .analysis-exact .hero-summary .summary-item {
    justify-content: flex-start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #edf2ed;
  }

  .analysis-exact .hero-summary .summary-item:last-child {
    border-bottom: 0;
  }

  .ml-exact .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ml-exact .table-wrap {
    max-width: calc(100vw - 60px);
  }
}

@media (max-width: 560px) {
  .header-inner,
  .container,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero-copy {
    padding: 34px 0;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .feature-card,
  .pad,
  .contact-card {
    padding: 20px;
  }

  .about-content-section {
    padding-top: 16px;
  }

  .about-card,
  .about-soft-box,
  .about-importance {
    padding: 18px;
  }

  .about-products,
  .about-process,
  .about-tools {
    grid-template-columns: 1fr;
  }

  .about-source {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* Final layout pass across all pages */
.home-exact .section,
.contact-exact .section {
  padding: 16px 0;
}

.home-exact .grid-5,
.analysis-exact .grid,
.ml-exact .grid,
.results-exact .grid,
.contact-exact .grid {
  align-items: stretch;
}

.home-exact .card,
.analysis-exact .card,
.ml-exact .card,
.results-exact .card,
.contact-exact .card,
.about-exact .about-card,
.about-exact .about-importance {
  border-color: #dfe8df;
  box-shadow: 0 8px 18px rgba(6, 38, 25, .045);
}

.home-exact .feature-card,
.contact-exact .contact-card,
.contact-exact .team-card {
  height: 100%;
}

.home-exact .feature-card .icon-bubble,
.contact-exact .contact-card .icon-bubble {
  width: 58px;
  height: 58px;
}

.home-exact .feature-card .icon-bubble svg,
.contact-exact .contact-card .icon-bubble svg {
  width: 30px;
  height: 30px;
}

.home-exact .purpose-band,
.contact-exact .note-band,
.results-exact .note-band {
  box-shadow: 0 8px 18px rgba(6, 38, 25, .035);
}

.analysis-exact .role-box,
.results-exact .role-box,
.contact-exact .contact-form-card,
.contact-exact .contact-about-card {
  height: 100%;
}

.analysis-exact .chart-image,
.ml-exact .chart-image,
.results-exact .chart-image {
  background: #fff;
}

.analysis-exact .product-analysis-card .chart-image {
  width: 100%;
  height: 230px;
  min-height: 230px;
  max-height: 230px;
  margin-inline: auto;
  padding: 6px;
}

.analysis-exact .product-chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 18px;
  align-items: center;
}

.analysis-exact .product-chart-grid figure {
  margin: 0;
}

.analysis-exact .findings {
  align-content: center;
}

.ml-exact .info-line {
  margin-top: 14px;
  margin-bottom: 4px;
}

.ml-exact .plain-list li,
.results-exact .check-list li,
.contact-exact .contact-about-card p {
  line-height: 1.7;
}

.ml-exact .metric-box {
  display: grid;
  align-content: center;
  min-height: 82px;
}

.results-exact .analysis-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.results-exact .analysis-mini .icon-bubble {
  flex: 0 0 auto;
}

.contact-exact .contact-form-card .section-title,
.contact-exact .contact-about-card .section-title {
  font-size: 20px;
}

.contact-exact .privacy-note {
  margin-bottom: 0;
}

.contact-exact .avatar {
  width: 88px;
  height: 88px;
}

.contact-exact .team-card h3 {
  font-size: 18px;
}

.contact-exact .team-card p {
  font-size: 13px;
}

@media (max-width: 1180px) {
  .analysis-exact .climate-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-exact .metric-chart .chart-image {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

  .ml-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ml-three-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .home-exact .hero-copy,
  .results-exact .hero-copy {
    padding: 28px 0;
  }

  .home-exact .hero-visual,
  .results-exact .hero-visual {
    min-height: 280px;
  }

  .analysis-exact .climate-chart-grid,
  .analysis-exact .product-chart-grid,
  .ml-summary-grid {
    grid-template-columns: 1fr;
  }

  .analysis-exact .metric-chart .chart-image {
    height: 230px;
    min-height: 230px;
    max-height: 230px;
  }

  .contact-exact .contact-hero-copy {
    width: min(100% - 32px, 1040px);
  }
}

@media (max-width: 560px) {
  .home-exact .container,
  .analysis-exact .container,
  .ml-exact .container,
  .results-exact .container,
  .contact-exact .container,
  .contact-exact .contact-hero-copy {
    width: calc(100% - 24px);
  }

  .analysis-exact .metric-chart .chart-image {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

  .contact-exact .contact-hero {
    min-height: 280px;
  }
}
