:root {
  --ink: #20323b;
  --ink-deep: #122329;
  --ink-soft: #53666c;
  --green: #55b83d;
  --green-bright: #79ca4d;
  --green-dark: #22873a;
  --green-deep: #176f31;
  --mint: #eaf6e7;
  --mint-2: #f3f9f1;
  --paper: #fbfdfb;
  --white: #ffffff;
  --line: #dce7dd;
  --line-dark: rgba(255,255,255,.15);
  --shadow-sm: 0 12px 35px rgba(25, 51, 44, .08);
  --shadow-lg: 0 30px 80px rgba(22, 49, 43, .14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.72,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink-deep); background: rgba(121, 202, 77, .3); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}
.eyebrow-light { color: #b8ecac; }
.eyebrow-light > span { background: #8bdd66; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--ink-deep);
  font-size: clamp(3.1rem, 6.3vw, 6.1rem);
  font-weight: 760;
}
h1 em {
  display: block;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 610;
}
h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-deep);
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  font-weight: 720;
}
h3 { color: var(--ink-deep); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 760;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(85, 184, 61, .35);
  outline-offset: 3px;
}
.button-solid {
  color: var(--white);
  background: var(--ink-deep);
  box-shadow: 0 12px 30px rgba(18, 35, 41, .18);
}
.button-solid:hover { background: var(--green-deep); box-shadow: 0 16px 35px rgba(30, 115, 50, .22); }
.button-ghost {
  color: var(--ink);
  border-color: rgba(32, 50, 59, .19);
  background: rgba(255,255,255,.65);
}
.button-ghost:hover { border-color: var(--green); background: var(--white); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .86rem; }
.button-wide { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 760;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: #d7f3d0; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  border-color: rgba(32, 50, 59, .08);
  background: rgba(251, 253, 251, .9);
  box-shadow: 0 10px 35px rgba(30, 54, 46, .06);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.brand { display: block; width: 224px; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a:not(.button) {
  position: relative;
  color: #3e5157;
  font-size: .89rem;
  font-weight: 700;
}
.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 154px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 202, 77, .16), transparent 26%),
    linear-gradient(180deg, #fbfdfb 0%, #f6fbf5 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(32,50,59,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,50,59,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one {
  top: 120px;
  right: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(85,184,61,.22);
  box-shadow: inset 0 0 100px rgba(85,184,61,.08);
}
.hero-glow-two {
  top: 270px;
  right: 65px;
  width: 250px;
  height: 250px;
  border: 1px dashed rgba(32,50,59,.14);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  align-items: center;
  gap: 66px;
  min-height: 650px;
}
.hero-copy { padding-bottom: 30px; }
.hero-lead {
  max-width: 680px;
  margin-bottom: 33px;
  color: #4d6268;
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin: 28px 0 0;
  padding: 0;
  color: #586b70;
  list-style: none;
  font-size: .86rem;
  font-weight: 720;
}
.hero-proof li { display: flex; align-items: center; gap: 7px; }
.hero-proof li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--mint);
  font-size: .7rem;
}
.hero-visual {
  position: relative;
  border: 1px solid rgba(32,50,59,.11);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.hero-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(121,202,77,.08), transparent 40%, rgba(32,50,59,.03));
  content: "";
  pointer-events: none;
}
.visual-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 23px;
  border-bottom: 1px solid var(--line);
  color: #53676c;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.visual-toolbar > div { display: flex; align-items: center; gap: 9px; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(85,184,61,.12);
  animation: statusPulse 2.4s infinite;
}
.visual-label {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--green-deep);
  background: var(--mint-2);
  font-size: .64rem;
}
.integration-map { position: relative; height: 445px; overflow: hidden; }
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-lines path { fill: none; stroke: url(#lineGradient); stroke-width: 1.8; stroke-dasharray: 5 7; }
.map-lines .orbit { fill: none; stroke: rgba(32,50,59,.10); stroke-width: 1; stroke-dasharray: none; }
.map-lines .orbit-dashed { stroke: rgba(85,184,61,.19); stroke-dasharray: 3 6; }
.map-pulse { fill: var(--green); filter: url(#softGlow); }
.map-node {
  position: absolute;
  z-index: 2;
  width: 144px;
  padding: 12px 13px 11px;
  border: 1px solid rgba(32,50,59,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 10px 24px rgba(30,54,46,.08);
}
.map-node strong, .map-node small { display: block; }
.map-node strong { color: var(--ink-deep); font-size: .76rem; line-height: 1.2; }
.map-node small { margin-top: 3px; color: #748286; font-size: .61rem; line-height: 1.3; }
.node-icon {
  display: grid;
  float: left;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  place-items: center;
  border-radius: 8px;
  color: var(--green-deep);
  background: var(--mint);
  font-size: .85rem;
  font-weight: 800;
}
.node-tech { top: 18px; left: 50%; transform: translateX(-50%); }
.node-data { top: 98px; left: 12px; }
.node-ops { top: 98px; right: 12px; }
.node-people { bottom: 22px; left: 46px; }
.node-governance { right: 41px; bottom: 22px; }
.map-centre {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 168px;
  height: 168px;
  padding: 20px;
  place-items: center;
  border: 1px solid rgba(85,184,61,.34);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #eef8eb);
  box-shadow: 0 20px 45px rgba(43,110,57,.16), 0 0 0 13px rgba(85,184,61,.05);
  text-align: center;
  transform: translate(-50%, -50%);
}
.map-centre img { width: 47px; margin-bottom: -4px; }
.map-centre strong { color: var(--ink-deep); font-size: .91rem; line-height: 1.16; }
.map-centre span { color: var(--green-deep); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.visual-outcomes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.visual-outcomes > div { padding: 17px 16px; border-right: 1px solid var(--line); }
.visual-outcomes > div:last-child { border-right: 0; }
.visual-outcomes span { display: block; margin-bottom: 3px; color: var(--green-deep); font-size: .61rem; font-weight: 850; }
.visual-outcomes strong { color: #43575c; font-size: .68rem; letter-spacing: -.01em; }
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 70px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(32,50,59,.1);
}
.hero-bottom p { max-width: 250px; margin: 0; color: #63777b; font-size: .76rem; font-weight: 760; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.hero-bottom-items { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.hero-bottom-items span {
  padding: 8px 13px;
  border: 1px solid rgba(32,50,59,.10);
  border-radius: 99px;
  color: #53686c;
  background: rgba(255,255,255,.55);
  font-size: .76rem;
  font-weight: 700;
}

.section-intro { background: var(--white); }
.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 85px;
  margin-bottom: 62px;
}
.section-heading > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 480px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.service-card:hover { border-color: rgba(85,184,61,.38); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.service-card::after {
  position: absolute;
  right: -65px;
  bottom: -85px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(85,184,61,.13);
  border-radius: 50%;
  content: "";
}
.service-card-featured { background: linear-gradient(145deg, #f3faef, #fbfdfb 62%); }
.service-number { color: #90a099; font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 24px 0 30px;
  place-items: center;
  border: 1px solid rgba(85,184,61,.2);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27,81,43,.08);
}
.service-icon svg { width: 34px; }
.service-icon svg * { fill: none; stroke: var(--green-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 390px; margin-bottom: 17px; font-size: 1.65rem; }
.service-card > p { max-width: 520px; margin-bottom: 24px; color: var(--ink-soft); }
.service-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding-left: 20px; color: #3f555a; font-size: .89rem; font-weight: 650; }
.service-card li::before { position: absolute; top: .62em; left: 0; width: 8px; height: 2px; border-radius: 99px; background: var(--green); content: ""; }

.friction-section { color: var(--white); background: var(--ink-deep); overflow: hidden; }
.friction-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 105px; }
.friction-copy { position: sticky; top: 140px; align-self: start; }
.friction-copy h2 { margin-bottom: 27px; color: var(--white); }
.friction-copy > p:not(.eyebrow) { max-width: 510px; margin-bottom: 32px; color: #b9c8c9; font-size: 1.02rem; }
.friction-list { border-top: 1px solid var(--line-dark); }
.friction-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 39px 0;
  border-bottom: 1px solid var(--line-dark);
}
.friction-item > span { color: #7fd45b; font-size: .75rem; font-weight: 850; letter-spacing: .1em; }
.friction-item h3 { margin-bottom: 12px; color: var(--white); font-size: 1.5rem; }
.friction-item p { margin: 0; color: #aebfc1; }

.approach-section { background: #f4f8f3; }
.approach-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 41px;
}
.track-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: #d8e5d7; overflow: hidden; }
.track-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--green-dark), var(--green-bright)); transition: width 1.6s var(--ease); }
.approach-track.is-visible .track-line span { width: 100%; }
.approach-step {
  position: relative;
  min-height: 340px;
  padding: 32px 27px;
  border: 1px solid #dce7dc;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.76);
}
.step-marker {
  position: absolute;
  top: -50px;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 5px solid #f4f8f3;
  border-radius: 50%;
  color: transparent;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}
.step-kicker { margin-bottom: 42px; color: var(--green-deep); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.approach-step h3 { margin-bottom: 15px; font-size: 1.38rem; }
.approach-step > p:not(.step-kicker) { margin-bottom: 25px; color: var(--ink-soft); font-size: .92rem; }
.step-output {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #4c655e;
  font-size: .73rem;
  font-weight: 780;
}

.engagement-section { background: var(--white); }
.engagement-heading { max-width: 840px; margin-bottom: 55px; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engagement-card {
  display: flex;
  min-height: 385px;
  padding: 33px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fafcfa;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.engagement-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.engagement-card-green { border-color: transparent; color: var(--white); background: linear-gradient(150deg, #2d943f, #176f31); box-shadow: 0 20px 55px rgba(24,111,49,.18); }
.engagement-tag {
  align-self: flex-start;
  margin-bottom: 72px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--green-deep);
  background: var(--white);
  font-size: .66rem;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.engagement-card-green .engagement-tag { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.12); }
.engagement-card h3 { margin-bottom: 15px; font-size: 1.65rem; }
.engagement-card-green h3 { color: var(--white); }
.engagement-card > p { color: var(--ink-soft); }
.engagement-card-green > p { color: rgba(255,255,255,.78); }
.engagement-footer { display: grid; gap: 4px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.engagement-card-green .engagement-footer { border-color: rgba(255,255,255,.2); }
.engagement-footer span { color: #81918d; font-size: .63rem; font-weight: 840; letter-spacing: .12em; text-transform: uppercase; }
.engagement-footer strong { font-size: .82rem; }
.engagement-card-green .engagement-footer span { color: rgba(255,255,255,.58); }

.signals-section { padding-top: 0; background: var(--white); }
.signals-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; align-items: stretch; }
.signals-card {
  position: relative;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--mint-2);
  overflow: hidden;
}
.signals-card h2 { font-size: clamp(2.2rem, 3.7vw, 3.6rem); }
.signals-card > p:last-child { margin: 26px 0 0; color: var(--ink-soft); }
.signals-mark {
  position: absolute;
  right: -48px;
  bottom: -78px;
  width: 260px;
  opacity: .08;
  transform: rotate(-8deg);
}
.signals-list { border-top: 1px solid var(--line); }
.signal-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.signal-row span { color: var(--green-deep); font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.signal-row p { margin: 0; color: #344a50; font-size: 1.06rem; font-weight: 670; line-height: 1.45; }

.about-section { background: #f4f8f3; overflow: hidden; }
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.about-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}
.about-visual::before {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,202,77,.19), rgba(121,202,77,.02) 65%, transparent 66%);
  content: "";
}
.about-visual > img { position: relative; z-index: 3; width: 210px; filter: drop-shadow(0 25px 30px rgba(34,92,46,.12)); }
.about-orbit { position: absolute; border: 1px solid rgba(32,50,59,.13); border-radius: 50%; }
.orbit-one { width: 420px; height: 420px; }
.orbit-two { width: 535px; height: 535px; border-style: dashed; animation: rotateOrbit 42s linear infinite; }
.about-chip {
  position: absolute;
  z-index: 4;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #40575d;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 25px rgba(30,54,46,.08);
  font-size: .72rem;
  font-weight: 780;
}
.chip-one { top: 48px; left: 42%; }
.chip-two { top: 44%; right: -8px; }
.chip-three { bottom: 48px; left: 38%; }
.chip-four { top: 44%; left: -5px; }
.about-copy h2 { margin-bottom: 27px; }
.about-lead { color: #334a50; font-size: 1.18rem; font-weight: 620; line-height: 1.65; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--ink-soft); }
.principles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 37px; }
.principles-grid > div { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.68); }
.principles-grid strong, .principles-grid span { display: block; }
.principles-grid strong { margin-bottom: 5px; color: var(--ink-deep); font-size: .86rem; }
.principles-grid span { color: #65777b; font-size: .76rem; line-height: 1.5; }

.sector-section { padding: 85px 0; color: var(--white); background: var(--ink); }
.sector-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sector-inner h2 { max-width: 610px; color: var(--white); font-size: clamp(2.2rem, 3.8vw, 3.7rem); }
.sector-tags { display: flex; flex-wrap: wrap; gap: 11px; }
.sector-tags span { padding: 11px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; color: #d5e0e1; background: rgba(255,255,255,.04); font-size: .78rem; font-weight: 700; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 135px; }
.faq-heading h2 { font-size: clamp(2.2rem, 3.8vw, 3.7rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 730;
}
.faq-icon { position: relative; width: 25px; height: 25px; flex: 0 0 25px; border: 1px solid var(--line); border-radius: 50%; }
.faq-icon::before, .faq-icon::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1.5px; border-radius: 99px; background: var(--green-deep); content: ""; transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq-panel { padding: 0 55px 25px 0; }
.faq-panel p { margin: 0; color: var(--ink-soft); line-height: 1.75; }

.contact-section {
  position: relative;
  padding: 112px 0;
  color: var(--white);
  background: linear-gradient(135deg, #15272d, #1c3937 70%, #1f4a3c);
  overflow: hidden;
}
.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(121,202,77,.9) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(121,202,77,.75) 0 2px, transparent 3px);
  background-size: 75px 75px, 110px 110px;
  mask-image: linear-gradient(90deg, #000, transparent 50%, #000);
}
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.contact-copy { position: sticky; top: 140px; }
.contact-copy h2 { margin-bottom: 27px; color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 510px; color: #bfcecf; font-size: 1.04rem; }
.contact-prompts { display: grid; gap: 10px; margin-top: 38px; }
.contact-prompts span { display: flex; align-items: center; gap: 10px; color: #d7e4e1; font-size: .82rem; font-weight: 700; }
.contact-prompts span::before { width: 18px; height: 2px; border-radius: 99px; background: var(--green-bright); content: ""; }
.contact-form { padding: 36px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.08); box-shadow: 0 25px 60px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: #dce7e6; font-size: .73rem; font-weight: 760; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 51px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #91a4a5; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(121,202,77,.75); background: rgba(255,255,255,.1); outline: none; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #c9d6d6 50%), linear-gradient(135deg, #c9d6d6 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form select option { color: var(--ink); background: var(--white); }
.form-note { margin: 15px 0 0; color: #91a5a4; font-size: .68rem; line-height: 1.5; }
.form-status { min-height: 1.5em; margin: 9px 0 0; color: #a8e494; font-size: .77rem; font-weight: 700; }

.site-footer { padding: 70px 0 24px; color: #b6c4c6; background: #0d1a1f; }
.footer-main { display: grid; grid-template-columns: .95fr 1.05fr; gap: 95px; padding-bottom: 55px; }
.footer-brand img { width: 250px; padding: 6px; border-radius: 7px; background: var(--white); }
.footer-brand p { max-width: 410px; margin: 24px 0 0; color: #8ea0a3; font-size: .86rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links span { margin-bottom: 5px; color: var(--white); font-size: .69rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: #98aaad; font-size: .8rem; transition: color .2s ease; }
.footer-links a:hover { color: #8ddd68; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #718589; font-size: .7rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(85,184,61,.12); }
  50% { box-shadow: 0 0 0 9px rgba(85,184,61,.03); }
}
@keyframes rotateOrbit { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 34px, 940px); }
  .primary-nav { gap: 20px; }
  .hero { padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; gap: 48px; padding-bottom: 50px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 680px); margin-inline: auto; }
  .hero-bottom { margin-top: 20px; }
  .section-heading { gap: 45px; }
  .approach-track { grid-template-columns: repeat(2, 1fr); row-gap: 55px; }
  .track-line { display: none; }
  .step-marker { top: -14px; left: 27px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 315px; }
  .engagement-tag { margin-bottom: 45px; }
  .about-layout { gap: 55px; }
  .about-visual { min-height: 500px; }
  .orbit-two { width: 470px; height: 470px; }
  .friction-layout, .contact-layout { gap: 60px; }
}

@media (max-width: 860px) {
  .section { padding: 86px 0; }
  .header-inner { min-height: 74px; }
  .brand { width: 200px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 25px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(251,253,251,.98);
    box-shadow: 0 30px 55px rgba(20,45,38,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .25s ease, visibility .2s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav > a:not(.button) { padding: 14px 5px; border-bottom: 1px solid var(--line); font-size: .98rem; }
  .primary-nav .button { margin-top: 15px; }
  .hero { min-height: auto; padding-top: 126px; }
  h1 { font-size: clamp(3.2rem, 11vw, 5.2rem); }
  .hero-bottom { display: block; }
  .hero-bottom p { max-width: none; margin-bottom: 17px; }
  .hero-bottom-items { justify-content: flex-start; }
  .section-heading, .friction-layout, .signals-layout, .about-layout, .sector-inner, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 25px; margin-bottom: 45px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .friction-copy, .faq-heading, .contact-copy { position: static; }
  .friction-layout, .signals-layout, .about-layout, .sector-inner, .faq-layout, .contact-layout { gap: 55px; }
  .signals-section { padding-top: 10px; }
  .about-visual { order: 2; min-height: 460px; }
  .sector-inner { gap: 35px; }
  .faq-layout { gap: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .brand { width: 180px; }
  h1 { font-size: clamp(2.85rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero-layout { min-height: auto; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { display: grid; gap: 9px; }
  .integration-map { height: 430px; }
  .hero-visual { border-radius: 20px; }
  .visual-toolbar { padding: 0 15px; font-size: .68rem; }
  .map-node { width: 117px; padding: 9px; }
  .map-node small { display: none; }
  .node-icon { width: 23px; height: 23px; font-size: .7rem; }
  .node-data { left: 5px; }
  .node-ops { right: 5px; }
  .node-people { bottom: 25px; left: 13px; }
  .node-governance { right: 12px; bottom: 25px; }
  .map-centre { width: 145px; height: 145px; }
  .visual-outcomes > div { padding: 13px 8px; }
  .visual-outcomes strong { font-size: .59rem; }
  .hero-bottom { padding-bottom: 22px; }
  .hero-bottom-items span { font-size: .67rem; }
  .service-card, .signals-card, .contact-form { padding: 28px 23px; }
  .service-card { min-height: auto; }
  .service-card li { font-size: .83rem; }
  .friction-item { grid-template-columns: 39px 1fr; gap: 12px; }
  .approach-track { grid-template-columns: 1fr; gap: 30px; padding-top: 0; }
  .step-marker { display: none; }
  .approach-step { min-height: 320px; }
  .engagement-card { min-height: 345px; padding: 28px 23px; }
  .signals-card { min-height: 390px; }
  .about-visual { min-height: 380px; }
  .about-visual > img { width: 155px; }
  .orbit-one { width: 280px; height: 280px; }
  .orbit-two { width: 360px; height: 360px; }
  .about-chip { padding: 7px 11px; font-size: .63rem; }
  .chip-one { top: 18px; }
  .chip-two { right: -4px; }
  .chip-three { bottom: 20px; }
  .chip-four { left: -5px; }
  .principles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 35px 22px; }
  .footer-bottom { display: grid; }
}

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