:root {
  --ink: #12261f;
  --ink-soft: #41544e;
  --forest: #173f34;
  --forest-dark: #0d2e26;
  --green: #1f765d;
  --lime: #c9f45b;
  --mint: #dff7eb;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d8ded9;
  --orange: #ed6b43;
  --blue: #a9cbed;
  --purple: #c7b6ee;
  --shadow: 0 24px 60px rgba(25, 55, 45, 0.12);
  --max: 1320px;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 38, 31, 0.12);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
}

.logo-word {
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-word span {
  color: var(--green);
}

.logo-tagline {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--forest);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  min-height: 730px;
  overflow: hidden;
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - var(--max)) / 2)) 60px;
  padding-right: 7vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

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

h1,
h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.99;
}

h1 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 38, 31, 0.15);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust ul {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-trust li::before {
  margin-right: 7px;
  color: var(--green);
  content: "●";
  font-size: 7px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--forest);
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom right, transparent, black);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201, 244, 91, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 360px;
  height: 360px;
}

.orbit-two {
  width: 570px;
  height: 570px;
  border-color: rgba(255, 255, 255, 0.13);
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  box-shadow: 0 0 80px rgba(201, 244, 91, 0.25);
  transform: translate(-50%, -50%);
}

.visual-center span {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 700;
}

.pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--lime);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  to {
    opacity: 0;
    transform: scale(1.75);
  }
}

.path-card {
  position: absolute;
  z-index: 3;
  width: 165px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(13, 46, 38, 0.78);
  backdrop-filter: blur(8px);
}

.path-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--lime);
  font-size: 10px;
}

.path-card strong,
.path-card small {
  display: block;
}

.path-card strong {
  font-size: 15px;
}

.path-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.card-strategy {
  top: 15%;
  left: 8%;
}

.card-build {
  top: 16%;
  right: 7%;
}

.card-scale {
  right: 13%;
  bottom: 12%;
}

.signal {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
}

.signal-one {
  top: 30%;
  left: 48%;
}

.signal-two {
  right: 30%;
  bottom: 30%;
}

.visual-caption {
  position: absolute;
  bottom: 25px;
  left: 28px;
  display: flex;
  right: 28px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-strip {
  display: flex;
  align-items: center;
  gap: 55px;
  min-height: 106px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.proof-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #68766f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.section {
  padding: 125px max(32px, calc((100vw - var(--max)) / 2));
}

.challenge {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12%;
}

.section-heading h2,
.deployment h2,
.outcomes h2,
.case-study h2,
.assessment h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1.06;
}

.challenge-copy {
  align-self: end;
  max-width: 510px;
}

.challenge-copy .lead {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.45;
}

.challenge-copy > p:not(.lead),
.deployment-copy > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.challenge-copy .text-link {
  margin-top: 20px;
}

.journey {
  color: var(--white);
  background: var(--forest-dark);
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-kicker > p:last-child {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

.journey > h2 {
  max-width: 760px;
  margin: 40px 0 70px;
  font-size: clamp(48px, 5vw, 72px);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-card {
  position: relative;
  min-height: 475px;
  padding: 28px 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease;
}

.journey-card:hover,
.journey-card.active {
  color: var(--ink);
  background: var(--lime);
}

.card-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.journey-card:hover .card-number,
.journey-card.active .card-number {
  color: var(--green);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 65px 0 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.card-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.journey-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 500;
}

.journey-card p {
  min-height: 76px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.journey-card:hover p,
.journey-card.active p {
  color: rgba(18, 38, 31, 0.72);
}

.journey-card ul {
  margin: 25px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.journey-card:hover ul,
.journey-card.active ul {
  border-color: rgba(18, 38, 31, 0.2);
}

.journey-card li {
  margin: 9px 0;
  font-size: 12px;
}

.journey-card li::before {
  margin-right: 8px;
  content: "—";
}

.use-cases {
  background: var(--paper);
}

.use-cases-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 65px;
}

.use-cases-heading > p {
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.use-case-card {
  min-height: 410px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.use-case-card:hover {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.use-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  color: var(--green);
  font-size: 10px;
}

.use-case-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.use-case-card h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
}

.use-case-card > p {
  min-height: 92px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.use-case-card dl {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.use-case-card dl div {
  display: grid;
  grid-template-columns: 55px 1fr;
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.45;
}

.use-case-card dt {
  color: var(--green);
  font-weight: 700;
}

.use-case-card dd {
  margin: 0;
  color: var(--ink-soft);
}

.industries {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 9%;
  color: var(--white);
  background: var(--forest);
}

.industries-intro h2,
.governance h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 1.06;
}

.industries-intro > p:last-child,
.governance-heading > p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.7;
}

.industry-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-list article {
  display: grid;
  grid-template-columns: 45px 190px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-list article > span {
  color: var(--lime);
  font-size: 10px;
}

.industry-list h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.industry-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.deployment {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9%;
  align-items: center;
  background: var(--white);
}

.deployment-copy > p {
  max-width: 580px;
  margin-top: 30px;
}

.deployment-options {
  display: flex;
  gap: 8px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.deployment-tab {
  padding: 11px 15px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.deployment-tab:hover,
.deployment-tab.active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.deployment-detail {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 2px solid var(--lime);
}

.deployment-detail strong {
  font-size: 15px;
}

.deployment-detail p {
  max-width: 530px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.architecture {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 63, 52, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 52, 0.05) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
}

.architecture-label {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.architecture-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.architecture-core strong,
.architecture-core small {
  position: absolute;
}

.architecture-core strong {
  top: 62px;
  font-size: 18px;
}

.architecture-core small {
  top: 88px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.core-ring {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(201, 244, 91, 0.6);
  border-radius: 50%;
}

.architecture-node {
  position: absolute;
  z-index: 2;
  width: 142px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(25, 55, 45, 0.08);
}

.architecture-node span,
.architecture-node strong {
  display: block;
}

.architecture-node span {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 9px;
}

.architecture-node strong {
  font-size: 13px;
}

.node-data {
  top: 65px;
  left: 55px;
  border-top: 3px solid var(--orange);
}

.node-models {
  top: 65px;
  right: 55px;
  border-top: 3px solid var(--purple);
}

.node-workflows {
  bottom: 65px;
  left: 55px;
  border-top: 3px solid var(--blue);
}

.node-governance {
  right: 55px;
  bottom: 65px;
  border-top: 3px solid var(--lime);
}

.architecture-lines {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.architecture-lines path {
  fill: none;
  stroke: rgba(23, 63, 52, 0.32);
  stroke-dasharray: 4 6;
}

.governance {
  color: var(--white);
  background: var(--forest-dark);
}

.governance-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.15fr 0.8fr;
  gap: 5%;
  align-items: end;
}

.governance-heading .eyebrow {
  align-self: start;
}

.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.governance-grid article {
  min-height: 285px;
  padding: 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.governance-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--lime);
  font-size: 10px;
}

.governance-grid h3 {
  font-size: 20px;
  font-weight: 500;
}

.governance-grid p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.governance-standards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.governance-standards div {
  display: flex;
  gap: 35px;
  color: rgba(255, 255, 255, 0.74);
}

.case-study {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 55px 8%;
  background: var(--white);
}

.case-study-label > span {
  display: block;
  max-width: 210px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-client {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-main h2 {
  max-width: 880px;
}

.case-study-summary {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.case-study-details {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-study-details article {
  min-height: 235px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-study-details span {
  display: block;
  margin-bottom: 45px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-details p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.case-study-footer {
  grid-column: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.case-study-footer blockquote {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.35;
}

.outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--cream);
}

.outcomes-intro {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.outcomes-intro p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.case-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.78fr;
  gap: 15px;
  margin-top: 45px;
}

.case-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.case-featured {
  color: var(--white);
  background: var(--forest);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-featured .case-meta {
  color: rgba(255, 255, 255, 0.55);
}

.case-client {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-featured .case-client {
  color: var(--lime);
}

.case-card h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.25;
}

.case-card div > p:last-child {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.case-featured div > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.case-card > a {
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.case-quote {
  justify-content: center;
  color: var(--ink);
  background: var(--lime);
}

.quote-mark {
  height: 70px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.case-quote blockquote {
  margin: 18px 0 28px;
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
}

.case-quote p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assessment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  background: var(--mint);
}

.assessment-content > p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.assessment-content ol {
  margin: 38px 0;
  padding: 0;
  border-top: 1px solid rgba(18, 38, 31, 0.2);
  list-style: none;
}

.assessment-content li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 38, 31, 0.2);
  font-size: 14px;
}

.assessment-content li span {
  color: var(--green);
  font-size: 10px;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12%;
  color: var(--white);
  background: var(--green);
}

.contact h2 {
  max-width: 760px;
}

.contact-action {
  align-self: end;
}

.contact-action p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.65;
}

.button-light {
  margin-top: 22px;
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.button-light:hover {
  border-color: var(--lime);
  color: var(--white);
}

footer {
  padding: 75px max(32px, calc((100vw - var(--max)) / 2)) 30px;
  color: var(--white);
  background: var(--forest-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  min-height: 220px;
}

.footer-logo .logo-word {
  color: var(--white);
}

.footer-main > p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .desktop-nav.open {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 32px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .desktop-nav.open a {
    padding: 14px 0;
  }

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

  .hero-copy {
    min-height: 660px;
    padding: 80px 48px 60px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .proof-list span:nth-last-child(-n + 2) {
    display: none;
  }

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

  .use-case-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .governance-heading {
    grid-template-columns: 1fr 1fr;
  }

  .governance-heading > p:last-child {
    grid-column: 2;
  }

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

  .governance-standards,
  .governance-standards div {
    flex-wrap: wrap;
  }

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

  .architecture {
    margin-top: 30px;
  }

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

  .case-quote {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study-details,
  .case-study-footer {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .desktop-nav.open {
    top: 72px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .section {
    padding: 85px 22px;
  }

  .hero-copy {
    min-height: auto;
    padding: 75px 22px 55px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 50px;
  }

  .hero-trust ul {
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 520px;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
  }

  .orbit-two {
    width: 440px;
    height: 440px;
  }

  .path-card {
    width: 138px;
    padding: 14px;
  }

  .path-card span {
    margin-bottom: 16px;
  }

  .card-strategy {
    left: 4%;
  }

  .card-build {
    right: 4%;
  }

  .proof-strip {
    display: block;
    padding: 28px 22px;
  }

  .proof-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .proof-list span:nth-last-child(-n + 2) {
    display: block;
  }

  .challenge,
  .use-cases-heading,
  .industries,
  .outcomes,
  .assessment,
  .contact {
    grid-template-columns: 1fr;
  }

  .challenge-copy {
    margin-top: 20px;
  }

  .section-heading h2,
  .deployment h2,
  .outcomes h2,
  .case-study h2,
  .assessment h2,
  .contact h2 {
    font-size: 43px;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey > h2 {
    font-size: 48px;
  }

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

  .use-cases-heading {
    margin-bottom: 40px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    min-height: auto;
  }

  .industry-list article {
    grid-template-columns: 35px 1fr;
    padding: 24px 0;
  }

  .industry-list p {
    grid-column: 2;
  }

  .governance-heading {
    grid-template-columns: 1fr;
  }

  .governance-heading > p:last-child {
    grid-column: 1;
  }

  .governance-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .governance-grid article {
    min-height: auto;
  }

  .governance-grid span {
    margin-bottom: 38px;
  }

  .governance-standards {
    flex-direction: column;
  }

  .governance-standards div {
    flex-direction: column;
    gap: 12px;
  }

  .journey-card {
    min-height: 410px;
  }

  .card-icon {
    margin-top: 40px;
  }

  .architecture {
    min-height: 510px;
  }

  .architecture-node {
    width: 112px;
  }

  .node-data,
  .node-workflows {
    left: 14px;
  }

  .node-models,
  .node-governance {
    right: 14px;
  }

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

  .case-study-details {
    grid-template-columns: 1fr;
  }

  .case-study-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-study-footer blockquote {
    font-size: 24px;
  }

  .case-quote {
    grid-column: auto;
  }

  .contact-action {
    margin-top: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pulse {
    animation: none;
  }
}
