@font-face {
  font-family: "Savanna Aptos";
  src: local("Aptos"), local("Aptos Body");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --forest-1000: #031712;
  --forest-950: #061f19;
  --forest-900: #0e2822;
  --forest-800: #173a30;
  --forest-700: #245548;
  --leaf-500: #18ad56;
  --leaf-400: #45d576;
  --lime-300: #d7fb67;
  --mint-100: #e3f6ea;
  --paper: #f6f8f3;
  --white: #ffffff;
  --ink-950: #0b1d18;
  --ink-700: #30473f;
  --ink-500: #64756f;
  --amber-400: #e5b84d;
  --sky-400: #63b8c0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 29, 24, 0.14);
  --shadow: 0 30px 90px rgba(3, 23, 18, 0.2);
  --max-width: 1240px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-1000);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-950);
  background: var(--paper);
  font-family: "Savanna Aptos", Aptos, "Aptos Body", "Segoe UI Variable", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.capability-icon,
.result-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--forest-950);
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 300;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf-400), var(--amber-400), var(--sky-400));
  transform-origin: left;
}

.section {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-anchor {
  scroll-margin-top: 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf-500);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-marker span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--forest-900);
  font-size: 0.68rem;
}

.light-marker {
  color: rgba(255, 255, 255, 0.55);
}

.light-marker span {
  border-color: var(--line-dark);
  color: var(--leaf-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 23, 18, 0.83);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 23, 18, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 48px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  background: var(--leaf-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 10px;
  border: 1px solid var(--leaf-400);
  background: var(--leaf-400);
  color: var(--forest-1000);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--lime-300);
  color: var(--forest-1000);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  height: calc(100svh - 112px);
  min-height: 620px;
  max-height: 840px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--forest-1000);
}

.hero-visual,
.hero-photo,
.hero-scrim,
.signal-grid,
.pointer-light {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: -2;
  overflow: hidden;
}

.hero-photo {
  width: 104%;
  height: 104%;
  inset: -2%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0) scale(1.04);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 23, 18, 0.98) 0%, rgba(3, 23, 18, 0.9) 31%, rgba(3, 23, 18, 0.35) 60%, rgba(3, 23, 18, 0.08) 82%),
    linear-gradient(0deg, rgba(3, 23, 18, 0.78), transparent 42%);
}

.signal-grid {
  z-index: 2;
  width: 66%;
  height: 130%;
  left: 34%;
  top: -15%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(99, 184, 192, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 184, 192, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  transform: perspective(900px) rotateY(-12deg) translate3d(var(--move-x, 0), var(--move-y, 0), 0);
  transform-origin: right center;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.pointer-light {
  z-index: 3;
  opacity: 0.45;
  background: radial-gradient(circle 190px at var(--pointer-x, 68%) var(--pointer-y, 42%), rgba(69, 213, 118, 0.27), transparent 72%);
  transition: opacity 250ms ease;
}

.hero:not(.is-pointer-active) .pointer-light {
  opacity: 0.18;
}

.hero[data-active-word="secure"] .orbit-one {
  border-color: rgba(215, 251, 103, 0.82);
  box-shadow: 0 0 60px rgba(69, 213, 118, 0.14);
}

.hero[data-active-word="connect"] .signal-grid {
  opacity: 0.72;
}

.hero[data-active-word="transform"] .hero-photo {
  filter: saturate(1.12) contrast(1.05);
}

.signal-orbit {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(215, 251, 103, 0.35);
  border-radius: 50%;
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0);
}

.signal-orbit::before,
.signal-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.signal-orbit::after {
  inset: 29%;
  border-style: solid;
  border-color: rgba(99, 184, 192, 0.25);
}

.signal-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-300);
  box-shadow: 0 0 0 9px rgba(215, 251, 103, 0.08);
}

.signal-orbit i:nth-child(1) {
  top: 12%;
  left: 22%;
}

.signal-orbit i:nth-child(2) {
  right: 4%;
  bottom: 33%;
  background: var(--sky-400);
}

.signal-orbit i:nth-child(3) {
  bottom: 5%;
  left: 36%;
  background: var(--leaf-400);
}

.orbit-one {
  top: 10%;
  right: -7%;
  width: 510px;
  height: 510px;
}

.orbit-two {
  right: 24%;
  bottom: -18%;
  width: 310px;
  height: 310px;
  border-color: rgba(99, 184, 192, 0.3);
}

.hero-inner {
  position: relative;
  z-index: 6;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 80px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-400);
  box-shadow: 0 0 0 0 rgba(69, 213, 118, 0.5);
  animation: signal-pulse 2.2s ease-out infinite;
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(69, 213, 118, 0.46); }
  70% { box-shadow: 0 0 0 12px rgba(69, 213, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(69, 213, 118, 0); }
}

.hero h1 {
  width: min(850px, 74vw);
  margin: 0;
  font-family: "Aptos Display", "Savanna Aptos", Aptos, "Segoe UI Variable Display", sans-serif;
  font-size: 8.4rem;
  font-weight: 820;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero-word {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  color: var(--white);
  outline-offset: 8px;
}

.hero-word span {
  display: block;
  transition: color 250ms ease, transform 250ms ease, -webkit-text-stroke 250ms ease;
}

.hero-word small {
  position: absolute;
  left: calc(100% + 24px);
  top: 50%;
  width: 170px;
  color: var(--lime-300);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  opacity: 0;
  transform: translate(-12px, -50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-word:hover span,
.hero-word:focus-visible span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
  transform: translateX(14px);
}

.hero-word:hover small,
.hero-word:focus-visible small {
  opacity: 1;
  transform: translate(0, -50%);
}

.hero-copy {
  width: min(660px, 58vw);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 18px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button .icon {
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover .icon,
.button:focus-visible .icon {
  transform: translate(3px, -2px);
}

.button-primary {
  background: var(--lime-300);
  color: var(--forest-1000);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--leaf-400);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  width: fit-content;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.hero-proof span + span {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-sticker {
  position: absolute;
  z-index: 8;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.sticker-location {
  top: 10%;
  right: 4.5%;
  display: grid;
  min-width: 132px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(6, 31, 25, 0.78);
  color: var(--white);
  padding: 13px 15px;
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0) rotate(4deg);
  backdrop-filter: blur(9px);
}

.sticker-location span {
  color: var(--leaf-400);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sticker-location strong {
  margin-top: 2px;
  font-size: 0.88rem;
}

.sticker-principles {
  right: 2.5%;
  bottom: 13%;
  border: 1px solid var(--forest-1000);
  background: var(--lime-300);
  color: var(--forest-1000);
  padding: 14px 18px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0) rotate(-6deg);
  box-shadow: 8px 8px 0 rgba(3, 23, 18, 0.52);
}

.scroll-cue {
  position: absolute;
  right: calc((100% - min(var(--max-width), calc(100% - 48px))) / 2);
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue .icon {
  transform: rotate(90deg);
}

.trust-strip {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(240px, 0.25fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line-light);
  background: var(--white);
}

.trust-label {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-light);
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.trust-marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 0 34px;
  animation: marquee 24s linear infinite;
}

.trust-marquee strong {
  white-space: nowrap;
  color: var(--forest-900);
  font-size: 1.05rem;
}

.trust-marquee i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--leaf-400);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 72px 24px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.ecosystem-intro > .section-marker {
  grid-column: 1 / 4;
}

.intro-statement {
  grid-column: 4 / 12;
}

.intro-statement h2,
.solutions-heading h2,
.ecosystem-banner-content h2,
.story-main h2,
.industries-heading h2,
.process-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Aptos Display", "Savanna Aptos", Aptos, sans-serif;
  font-size: 4.25rem;
  line-height: 0.98;
  font-weight: 760;
}

.intro-statement h2 em {
  position: relative;
  color: var(--leaf-500);
  font-style: normal;
}

.intro-statement h2 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 7px;
  background: var(--lime-300);
  z-index: -1;
  transform: rotate(-1deg);
}

.intro-detail {
  grid-column: 8 / 13;
}

.intro-detail p {
  margin: 0;
  color: var(--ink-500);
  font-size: 1.12rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border-bottom: 2px solid var(--leaf-500);
  color: var(--forest-900);
  font-weight: 850;
}

.text-link .icon {
  width: 18px;
  height: 18px;
}

.ecosystem-equation {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr auto 0.8fr auto 1fr auto 1.2fr;
  align-items: stretch;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ecosystem-equation span {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--forest-900);
  font-weight: 850;
}

.ecosystem-equation span .icon {
  width: 28px;
  height: 28px;
  color: var(--leaf-500);
}

.ecosystem-equation i {
  display: grid;
  place-items: center;
  color: var(--amber-400);
  font-size: 1.4rem;
  font-style: normal;
}

.solutions-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-1000);
  color: var(--white);
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
  pointer-events: none;
}

.solutions-heading {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 2fr 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 52px;
}

.solutions-heading h2 {
  color: var(--white);
}

.solutions-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.solution-console {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: stretch;
  margin-top: 0;
  padding: 0;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.console-nav {
  padding: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.console-nav > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.finder-option {
  width: 100%;
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-top: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 4px;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.finder-option:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.finder-option .icon {
  width: 23px;
  height: 23px;
}

.finder-option span {
  font-size: 1rem;
  font-weight: 800;
}

.finder-option small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}

.finder-option:hover,
.finder-option:focus-visible,
.finder-option.is-active {
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--lime-300);
}

.finder-result {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--lime-300);
  color: var(--forest-1000);
  padding: 44px;
}

.finder-result::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(3, 23, 18, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(3, 23, 18, 0.04), 0 0 0 86px rgba(3, 23, 18, 0.03);
}

.result-number {
  position: absolute;
  top: 30px;
  left: 44px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-icon {
  position: absolute;
  top: 38px;
  right: 42px;
  width: 110px;
  height: 110px;
  opacity: 0.28;
}

.finder-result h3 {
  position: relative;
  margin: 0;
  font-size: 3.4rem;
  line-height: 0.95;
}

.finder-result p {
  position: relative;
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(3, 23, 18, 0.72);
  font-size: 1.07rem;
}

.finder-result a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

.console-note {
  position: absolute;
  top: -30px;
  right: -25px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--forest-1000);
  background: var(--amber-400);
  color: var(--forest-1000);
  padding: 13px 16px;
  transform: rotate(5deg);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.3);
}

.console-note strong {
  font-size: 2rem;
  line-height: 1;
}

.console-note span {
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.capability-ledger {
  position: relative;
  padding-top: 94px;
  padding-bottom: 120px;
}

.capability-row {
  display: grid;
  grid-template-columns: 44px 58px minmax(260px, 2fr) minmax(210px, 1fr) 48px;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  padding: 28px 12px;
  transition: background 200ms ease, padding 200ms ease;
}

.capability-row:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.capability-row:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.capability-number {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
}

.capability-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  color: var(--leaf-400);
  padding: 11px;
}

.capability-row h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.05;
}

.capability-row p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.capability-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.capability-row li::before {
  content: "/";
  margin-right: 6px;
  color: var(--amber-400);
}

.capability-row > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.capability-row > a:hover,
.capability-row > a:focus-visible {
  background: var(--lime-300);
  color: var(--forest-1000);
  transform: rotate(8deg);
}

.ecosystem-banner {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-950);
  color: var(--white);
}

.ecosystem-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ecosystem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ecosystem-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 31, 25, 0.02) 0%, rgba(6, 31, 25, 0.1) 36%, rgba(6, 31, 25, 0.88) 65%, rgba(6, 31, 25, 0.98) 100%),
    linear-gradient(0deg, rgba(3, 23, 18, 0.65), transparent 45%);
}

.ecosystem-banner-content {
  width: min(560px, calc(100% - 48px));
  margin: 0 max(24px, calc((100% - var(--max-width)) / 2)) 0 auto;
  padding: 90px 0;
}

.ecosystem-banner-content .section-marker {
  margin-bottom: 64px;
}

.ecosystem-banner-content h2 {
  color: var(--white);
}

.ecosystem-banner-content > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.technology-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.technology-stack span {
  display: grid;
  gap: 2px;
  padding: 17px 14px 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.technology-stack span:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line-dark);
}

.technology-stack strong {
  font-size: 1rem;
}

.technology-stack small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.banner-sticker {
  position: absolute;
  top: 9%;
  left: 4%;
  border: 1px solid var(--forest-1000);
  background: var(--leaf-400);
  color: var(--forest-1000);
  padding: 13px 18px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 7px 7px 0 rgba(3, 23, 18, 0.55);
}

.banner-sticker strong {
  font-size: 0.96rem;
}

.story-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 42px 24px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.story-section > .section-marker {
  grid-column: 1 / -1;
}

.story-main {
  grid-column: 1 / 8;
}

.story-main > img {
  width: 112px;
  height: 112px;
  margin-bottom: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 10px var(--mint-100);
}

.story-main h2 {
  color: var(--forest-950);
}

.story-main > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--ink-500);
  font-size: 1.08rem;
}

.story-aside {
  position: relative;
  grid-column: 9 / 13;
  align-self: end;
  border-top: 1px solid var(--line-light);
  padding-top: 42px;
}

.registration-sticker {
  position: absolute;
  top: -72px;
  right: 4px;
  display: grid;
  border: 1px solid var(--forest-900);
  background: var(--amber-400);
  color: var(--forest-1000);
  padding: 12px 15px;
  transform: rotate(3deg);
}

.registration-sticker span {
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.registration-sticker strong {
  font-size: 0.84rem;
}

.story-aside blockquote {
  margin: 0;
  color: var(--forest-900);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1.3;
}

.story-aside dl {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
}

.story-aside dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line-light);
  padding: 16px 0;
}

.story-aside dt {
  color: var(--leaf-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-aside dd {
  margin: 0;
  color: var(--ink-500);
}

.industries-section {
  overflow: hidden;
  background: var(--forest-800);
  color: var(--white);
}

.industries-heading {
  display: grid;
  grid-template-columns: 0.75fr 2fr 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 66px;
}

.industries-heading h2 {
  color: var(--white);
}

.industries-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.industry-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.industry-track article {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  padding: 26px 22px;
  transition: background 200ms ease, color 200ms ease;
}

.industry-track article:first-child {
  border-left: 1px solid var(--line-dark);
}

.industry-track article:hover {
  background: var(--lime-300);
  color: var(--forest-1000);
}

.industry-track .icon {
  width: 38px;
  height: 38px;
  color: var(--leaf-400);
  transition: color 200ms ease, transform 200ms ease;
}

.industry-track article:hover .icon {
  color: var(--forest-1000);
  transform: scale(1.12) rotate(-4deg);
}

.industry-track article span {
  margin-top: auto;
  padding-top: 50px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
}

.industry-track article small {
  position: absolute;
  top: 24px;
  right: 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
}

.industry-track article:hover small {
  color: rgba(3, 23, 18, 0.5);
}

.process-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px 24px;
  padding-top: 128px;
  padding-bottom: 128px;
}

.process-section > .section-marker {
  grid-column: 1 / 4;
}

.process-intro {
  grid-column: 4 / 11;
}

.process-intro h2 {
  color: var(--forest-950);
}

.process-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-line li {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 0 0;
}

.process-line li + li {
  border-left: 1px solid var(--line-light);
  padding-left: 28px;
}

.process-line li::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--leaf-500);
  box-shadow: 0 0 0 1px var(--leaf-500);
}

.process-line li + li::before {
  left: 28px;
}

.process-line > li > span {
  color: var(--amber-400);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-line h3 {
  margin: 0 0 8px;
  color: var(--forest-950);
  font-size: 1.6rem;
}

.process-line p {
  margin: 0;
  color: var(--ink-500);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-1000);
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -50%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(69, 213, 118, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(69, 213, 118, 0.025), 0 0 0 170px rgba(99, 184, 192, 0.025);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: start;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-copy .section-marker {
  margin-bottom: 72px;
}

.contact-copy h2 {
  color: var(--white);
}

address {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  font-style: normal;
}

address > a,
address > span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.66);
}

address a:hover,
address a:focus-visible {
  color: var(--lime-300);
}

address .icon {
  width: 20px;
  height: 20px;
  color: var(--leaf-400);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 5px solid var(--leaf-400);
  background: var(--white);
  color: var(--forest-950);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form .form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label > span {
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  outline: none;
  background: var(--paper);
  color: var(--ink-950);
  padding: 12px 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--leaf-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24, 173, 86, 0.13);
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 48px;
  margin: 0;
  display: none;
  align-items: center;
  border-left: 4px solid transparent;
  background: var(--paper);
  color: var(--forest-800);
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status[data-state] {
  display: flex;
}

.form-status[data-state="loading"] {
  border-color: var(--sky-400);
}

.form-status[data-state="success"] {
  border-color: var(--leaf-500);
  background: rgba(24, 173, 86, 0.1);
}

.form-status[data-state="error"] {
  border-color: #d5573f;
  background: #fff3ef;
}

.site-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  background: var(--forest-1000);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px max(24px, calc((100% - var(--max-width)) / 2));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.footer-brand p,
.footer-note {
  margin: 0;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.92rem;
}

.footer-brand span {
  margin-top: 2px;
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--leaf-400);
}

.footer-note {
  justify-self: end;
  color: var(--leaf-400);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(3, 23, 18, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--leaf-500);
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-enabled [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero h1 {
    width: min(760px, 76vw);
    font-size: 7rem;
  }

  .hero-copy {
    width: min(620px, 60vw);
  }

  .intro-statement h2,
  .solutions-heading h2,
  .ecosystem-banner-content h2,
  .story-main h2,
  .industries-heading h2,
  .process-intro h2,
  .contact-copy h2 {
    font-size: 3.55rem;
  }

  .sticker-principles {
    display: none;
  }

  .industry-track {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(190px, 1fr));
    scrollbar-color: var(--leaf-400) var(--forest-800);
  }
}

@media (max-width: 1360px) {
  .hero h1 {
    width: min(760px, 76vw);
    font-size: 7rem;
  }

  .hero-copy {
    width: min(620px, 60vw);
  }
}

@media (max-width: 960px) {
  .section,
  .nav-shell,
  .hero-inner {
    width: min(var(--max-width), calc(100% - 36px));
  }

  .nav-links a {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero h1 {
    width: min(700px, 88vw);
    font-size: 5.8rem;
  }

  .hero-copy {
    width: min(590px, 70vw);
  }

  .hero-word small {
    display: none;
  }

  .hero-proof span:last-child {
    display: none;
  }

  .sticker-location {
    top: 7%;
  }

  .ecosystem-intro > .section-marker,
  .process-section > .section-marker {
    grid-column: 1 / 4;
  }

  .intro-statement,
  .process-intro {
    grid-column: 4 / 13;
  }

  .intro-detail {
    grid-column: 6 / 13;
  }

  .ecosystem-equation {
    grid-template-columns: repeat(5, 1fr);
  }

  .ecosystem-equation i {
    display: none;
  }

  .ecosystem-equation span {
    min-height: 100px;
    border-right: 1px solid var(--line-light);
    flex-direction: column;
    gap: 7px;
    font-size: 0.82rem;
  }

  .ecosystem-equation span:last-child {
    border-right: 0;
  }

  .solutions-heading,
  .industries-heading {
    grid-template-columns: 0.7fr 2fr;
  }

  .solutions-heading > p,
  .industries-heading > p {
    grid-column: 2;
  }

  .capability-row {
    grid-template-columns: 40px 52px minmax(240px, 1fr) 46px;
  }

  .capability-row ul {
    display: none;
  }

  .ecosystem-banner-content {
    width: min(500px, calc(100% - 36px));
    margin-right: 18px;
  }

  .story-main {
    grid-column: 1 / 8;
  }

  .story-aside {
    grid-column: 8 / 13;
  }

  .contact-shell {
    gap: 44px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: calc(100svh - 70px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px 18px;
    background: rgba(3, 23, 18, 0.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .nav-links a {
    min-height: 56px;
    border-bottom: 1px solid var(--line-dark);
    padding: 14px 8px;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin: 18px 0 0;
    border-bottom: 0;
  }

  .hero {
    height: auto;
    min-height: 730px;
  }

  .hero-inner {
    padding: 76px 0 128px;
  }

  .hero-photo {
    width: 130%;
    height: 108%;
    inset: -4% -15%;
    object-position: 61% center;
    opacity: 0.8;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(3, 23, 18, 0.97) 0%, rgba(3, 23, 18, 0.82) 56%, rgba(3, 23, 18, 0.24) 100%), linear-gradient(0deg, rgba(3, 23, 18, 0.92), transparent 55%);
  }

  .hero h1 {
    width: 100%;
    font-size: 5rem;
  }

  .hero-copy {
    width: min(560px, 82vw);
  }

  .hero-proof {
    width: 100%;
  }

  .hero-proof span {
    flex: 1;
  }

  .sticker-location {
    top: auto;
    right: 6%;
    bottom: 70px;
  }

  .signal-grid {
    left: 18%;
    width: 90%;
  }

  .orbit-one {
    right: -35%;
  }

  .scroll-cue {
    right: 18px;
    bottom: 22px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-label {
    display: none;
  }

  .ecosystem-intro,
  .story-section,
  .process-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ecosystem-intro > .section-marker,
  .intro-statement,
  .intro-detail,
  .ecosystem-equation,
  .story-section > .section-marker,
  .story-main,
  .story-aside,
  .process-section > .section-marker,
  .process-intro,
  .process-line {
    grid-column: 1;
  }

  .intro-detail {
    max-width: 620px;
    margin-left: auto;
  }

  .solutions-heading,
  .industries-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .solutions-heading > p,
  .industries-heading > p {
    grid-column: 1;
    max-width: 580px;
  }

  .solution-console {
    grid-template-columns: 1fr;
  }

  .finder-result {
    min-height: 400px;
  }

  .console-note {
    right: 10px;
  }

  .ecosystem-banner {
    align-items: end;
    min-height: 900px;
  }

  .ecosystem-photo {
    height: 60%;
  }

  .ecosystem-photo img {
    object-position: 28% center;
  }

  .ecosystem-banner::after {
    background: linear-gradient(0deg, rgba(6, 31, 25, 1) 34%, rgba(6, 31, 25, 0.88) 53%, rgba(6, 31, 25, 0.03) 82%);
  }

  .ecosystem-banner-content {
    width: min(100% - 36px, 640px);
    margin: 0 auto;
    padding: 350px 0 70px;
  }

  .ecosystem-banner-content .section-marker {
    margin-bottom: 40px;
  }

  .banner-sticker {
    top: 5%;
    left: 5%;
  }

  .story-aside {
    margin-top: 42px;
  }

  .registration-sticker {
    top: -54px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line li:nth-child(3) {
    border-left: 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy .section-marker {
    margin-bottom: 42px;
  }
}

@media (max-width: 620px) {
  .section,
  .nav-shell,
  .hero-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 730px;
  }

  .hero-inner {
    padding-top: 62px;
  }

  .hero-kicker {
    max-width: 300px;
    font-size: 0.66rem;
  }

  .hero h1 {
    font-size: 3.35rem;
    line-height: 0.82;
  }

  .hero-word:hover span,
  .hero-word:focus-visible span {
    transform: translateX(7px);
  }

  .hero-copy {
    width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    display: grid;
    gap: 2px;
    align-content: start;
    padding-right: 12px;
    font-size: 0.68rem;
  }

  .hero-proof span + span {
    margin-left: 12px;
    padding-left: 12px;
  }

  .hero-photo {
    width: 175%;
    inset: -4% -37%;
    object-position: 66% center;
    opacity: 0.69;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(3, 23, 18, 0.97), rgba(3, 23, 18, 0.72)), linear-gradient(0deg, rgba(3, 23, 18, 0.92), transparent 50%);
  }

  .sticker-location {
    display: none;
  }

  .scroll-cue span {
    display: none;
  }

  .intro-statement h2,
  .solutions-heading h2,
  .ecosystem-banner-content h2,
  .story-main h2,
  .industries-heading h2,
  .process-intro h2,
  .contact-copy h2 {
    font-size: 2.65rem;
  }

  .ecosystem-intro {
    gap: 30px;
  }

  .ecosystem-equation {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecosystem-equation span {
    min-height: 98px;
    border-bottom: 1px solid var(--line-light);
  }

  .ecosystem-equation span:last-child {
    grid-column: 1 / -1;
  }

  .solutions-heading {
    padding-bottom: 30px;
  }

  .console-nav,
  .finder-result {
    padding: 24px;
  }

  .finder-result {
    min-height: 390px;
  }

  .result-number {
    top: 24px;
    left: 24px;
  }

  .result-icon {
    top: 46px;
    right: 22px;
    width: 86px;
    height: 86px;
  }

  .finder-result h3 {
    font-size: 2.55rem;
  }

  .console-note {
    top: -22px;
    right: 4px;
    transform: rotate(3deg) scale(0.85);
  }

  .capability-ledger {
    padding-top: 68px;
    padding-bottom: 86px;
  }

  .capability-row {
    grid-template-columns: 34px 46px 1fr 42px;
    gap: 13px;
    padding: 22px 4px;
  }

  .capability-row:hover {
    padding-right: 7px;
    padding-left: 7px;
  }

  .capability-icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .capability-row h3 {
    font-size: 1.24rem;
  }

  .capability-row p {
    display: none;
  }

  .capability-row > a {
    width: 40px;
    height: 40px;
  }

  .ecosystem-banner {
    min-height: 870px;
  }

  .ecosystem-banner-content {
    width: calc(100% - 24px);
    padding-bottom: 54px;
  }

  .technology-stack {
    grid-template-columns: 1fr;
  }

  .technology-stack span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .banner-sticker {
    transform: rotate(-3deg) scale(0.85);
    transform-origin: top left;
  }

  .story-main > img {
    width: 86px;
    height: 86px;
    margin-bottom: 34px;
  }

  .story-aside blockquote {
    font-size: 1.28rem;
  }

  .industry-track article {
    min-height: 210px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line li {
    min-height: 160px;
    padding: 24px 8px 24px 30px;
    border-left: 1px solid var(--line-light);
  }

  .process-line li + li,
  .process-line li:nth-child(3) {
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
    padding-left: 30px;
  }

  .process-line li::before,
  .process-line li + li::before {
    top: 28px;
    left: -6px;
  }

  .contact-shell {
    gap: 48px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-form label,
  .full-field {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Company profile page */
.profile-page {
  background: var(--paper);
}

.profile-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-1000);
  color: var(--white);
  padding-top: 118px;
}

.profile-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 23, 18, 0.98) 0%, rgba(3, 23, 18, 0.9) 36%, rgba(3, 23, 18, 0.54) 64%, rgba(3, 23, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(3, 23, 18, 0.96) 0%, rgba(3, 23, 18, 0) 44%);
}

.profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(69, 213, 118, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 184, 192, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 86%);
}

.profile-hero-image {
  position: absolute;
  inset: 0;
}

.profile-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.9;
}

.profile-hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 64px;
  align-items: end;
  padding-bottom: 78px;
}

.profile-hero-copy {
  max-width: 780px;
}

.profile-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.7rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.profile-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
}

.profile-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  background: rgba(6, 31, 25, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.profile-facts div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
}

.profile-facts dt {
  color: var(--leaf-400);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.profile-index {
  position: sticky;
  top: 73px;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line-light);
  background: rgba(246, 248, 243, 0.9);
  backdrop-filter: blur(18px);
}

.profile-index a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-index a:hover,
.profile-index a:focus-visible {
  border-color: var(--line-light);
  background: var(--white);
  color: var(--leaf-500);
}

.profile-philosophy {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: 44px;
  align-items: start;
  padding-top: 112px;
  padding-bottom: 106px;
}

.profile-statement h2,
.profile-industry-head h2,
.profile-why-title h2 {
  margin: 0;
  max-width: 820px;
  color: var(--forest-950);
  font-size: clamp(2.3rem, 4.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.profile-note {
  border-left: 5px solid var(--leaf-400);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 54px rgba(3, 23, 18, 0.08);
}

.profile-note p {
  margin: 0;
  color: var(--ink-700);
}

.mission-grid {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-grid article {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--forest-950);
  color: var(--white);
  padding: 30px;
}

.mission-grid article::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(69, 213, 118, 0.28);
  transform: rotate(18deg);
}

.mission-grid span {
  color: var(--leaf-400);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-grid p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.profile-capabilities {
  position: relative;
  overflow: hidden;
  background: var(--forest-1000);
  color: var(--white);
  padding: 106px 0;
}

.profile-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(69, 213, 118, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 184, 192, 0.12) 1px, transparent 1px);
  background-size: 84px 84px;
}

.profile-capability-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 42px;
  align-items: start;
}

.profile-capability-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.profile-capability-heading > p {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.profile-solution-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: var(--leaf-400) rgba(255, 255, 255, 0.08);
}

.profile-solution-list article {
  min-height: 510px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  background: rgba(255, 255, 255, 0.07);
  border-top: 4px solid transparent;
  padding: 28px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.profile-solution-list article:hover,
.profile-solution-list article:focus-within {
  border-color: var(--leaf-400);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.profile-solution-list article > span {
  color: var(--lime-300);
  font-weight: 900;
}

.profile-solution-list .icon {
  width: 34px;
  height: 34px;
  color: var(--leaf-400);
}

.profile-solution-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.12;
}

.profile-solution-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-solution-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.profile-solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf-400);
}

.profile-vendor-banner .ecosystem-photo img {
  object-position: 64% center;
}

.profile-partner-note {
  margin: 20px 0 0;
  border-left: 4px solid var(--amber-400);
  color: rgba(255, 255, 255, 0.62);
  padding-left: 14px;
  font-size: 0.9rem;
}

.profile-industries {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: 44px;
  padding-top: 112px;
  padding-bottom: 106px;
}

.profile-industry-head {
  max-width: 900px;
}

.profile-industry-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 1px;
  overflow-x: auto;
  scrollbar-color: var(--leaf-500) rgba(3, 23, 18, 0.12);
}

.profile-industry-grid article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line-light);
  background: var(--white);
  padding: 20px;
}

.profile-industry-grid .icon {
  width: 30px;
  height: 30px;
  color: var(--leaf-500);
}

.profile-industry-grid span {
  color: var(--forest-950);
  font-weight: 900;
  line-height: 1.12;
}

.profile-why {
  padding-top: 30px;
  padding-bottom: 118px;
}

.profile-why-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  margin-top: 44px;
}

.why-list {
  display: grid;
  gap: 1px;
}

.why-list p {
  position: relative;
  margin: 0;
  border-left: 5px solid var(--leaf-400);
  background: var(--white);
  color: var(--ink-700);
  padding: 22px 24px 22px 54px;
  box-shadow: 0 18px 48px rgba(3, 23, 18, 0.06);
}

.why-list p::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 29px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--leaf-500);
  transform: rotate(45deg);
}

@media (max-width: 1080px) {
  .profile-hero-shell,
  .profile-philosophy,
  .profile-capability-heading,
  .profile-industries,
  .profile-why-layout {
    grid-template-columns: 1fr;
  }

  .profile-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-grid,
  .profile-industry-grid {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .profile-hero {
    min-height: 720px;
    padding-top: 96px;
  }

  .profile-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 23, 18, 0.92) 0%, rgba(3, 23, 18, 0.76) 42%, rgba(3, 23, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 23, 18, 0.96) 0%, rgba(3, 23, 18, 0.32) 100%);
  }

  .profile-hero-image img {
    object-position: 64% center;
  }

  .profile-hero-shell {
    gap: 32px;
    padding-bottom: 48px;
  }

  .profile-hero h1 {
    font-size: clamp(3rem, 18vw, 4.75rem);
  }

  .profile-lede {
    font-size: 1.05rem;
  }

  .profile-facts,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .profile-index {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .profile-philosophy,
  .profile-capabilities,
  .profile-industries,
  .profile-why {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .profile-statement h2,
  .profile-industry-head h2,
  .profile-why-title h2,
  .profile-capability-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .profile-solution-list {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .profile-solution-list article {
    min-height: auto;
  }

  .profile-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-industry-grid article {
    min-height: 150px;
  }
}

@media (max-width: 460px) {
  .profile-industry-grid {
    grid-template-columns: 1fr;
  }

  .why-list p {
    padding-left: 46px;
  }

  .why-list p::before {
    left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}