@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .absolute {
    position: absolute;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .sticky {
    position: sticky;
  }
  .grow {
    flex-grow: 1;
  }
}
@font-face {
  font-family: Geist Mono;
  src: url(/home/fonts/geist-mono-latin.woff2) format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --font-geist-mono: "Geist Mono";
  --ink: #102723;
  --muted: #5d706c;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --line: #d8ded8;
  --green: #167d68;
  --green-dark: #0c4b40;
  --green-soft: #dcebe2;
  --blue: #236b84;
  --blue-dark: #0b3047;
  --copper: #bf6840;
  --shadow: 0 24px 70px #122c2721;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background:
    radial-gradient(circle at 78% 8%, #b7d6c457, transparent 28rem),
    var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.shell {
  width: min(1460px, 100% - 64px);
  margin-inline: auto;
}
.site-header {
  z-index: 30;
  border-bottom: 1px solid #20403929;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 108px;
  display: grid;
  position: relative;
}
.brand {
  align-items: center;
  gap: 14px;
  width: fit-content;
  display: inline-flex;
}
.brand img {
  object-fit: cover;
  border: 1px solid #1027232e;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  box-shadow: 0 7px 16px #152e291a;
}
.brand span {
  gap: 3px;
  display: grid;
}
.brand strong {
  letter-spacing: 0.24em;
  font-size: 22px;
}
.brand small {
  color: var(--muted);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}
.desktop-nav {
  align-items: center;
  gap: 42px;
  display: flex;
}
.desktop-nav a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 700;
  position: relative;
}
.desktop-nav a:after {
  background: var(--green);
  content: "";
  transform-origin: 0;
  height: 2px;
  transition: transform 0.18s;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}
.desktop-nav a:hover:after,
.desktop-nav a:focus-visible:after {
  transform: scaleX(1);
}
.header-contact {
  border: 1px solid var(--ink);
  border-radius: 15px;
  justify-self: end;
  align-items: center;
  gap: 20px;
  min-height: 50px;
  padding: 0 21px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.18s;
  display: inline-flex;
}
.header-contact:hover {
  background: var(--ink);
  color: #fff;
}
.mobile-menu {
  display: none;
}
.hero {
  grid-template-columns: minmax(480px, 0.86fr) minmax(600px, 1.14fr);
  align-items: center;
  gap: 42px;
  min-height: 735px;
  padding-top: 46px;
  padding-bottom: 78px;
  display: grid;
}
.hero-copy {
  z-index: 3;
  padding-left: 8px;
  position: relative;
}
.eyebrow {
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 850;
}
.hero h1,
.page-hero h1 {
  letter-spacing: -0.065em;
  max-width: 730px;
  margin: 0;
  font-size: clamp(58px, 5.7vw, 94px);
  font-weight: 680;
  line-height: 0.94;
}
.hero h1 span {
  color: var(--green);
}
.hero-lede {
  max-width: 650px;
  color: var(--muted);
  margin: 30px 0 0;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  display: flex;
}
.button {
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
  display: inline-flex;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 15px 30px #167d683b;
}
.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 18px 38px #0d4b4040;
}
.text-link {
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 15px;
  padding: 12px 2px;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
}
.trust-line {
  color: #687a76;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}
.trust-line i {
  background: var(--green);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}
.hero-stage {
  perspective: 1500px;
  min-height: 640px;
  position: relative;
}
.hero-stage:before {
  content: "";
  background-image:
    linear-gradient(#194f430f 1px, #0000 1px),
    linear-gradient(90deg, #194f430f 1px, #0000 1px);
  background-size: 40px 40px;
  border: 1px solid #1d54481c;
  border-radius: 48px;
  position: absolute;
  inset: 45px 14px 22px 70px;
  transform: rotateY(-7deg) rotateX(2deg);
}
.stage-glow {
  filter: blur(75px);
  background: #2d8c7138;
  border-radius: 50%;
  width: 420px;
  height: 330px;
  position: absolute;
  top: 170px;
  right: 45px;
}
.work-panel {
  box-shadow: var(--shadow);
  border: 1px solid #0f312a1f;
  border-radius: 27px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: absolute;
  overflow: hidden;
}
.work-panel:hover {
  z-index: 5;
  box-shadow: 0 30px 80px #0f302a33;
}
.panel-label {
  z-index: 3;
  letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffffe8;
  border: 1px solid #0e39301a;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 850;
  display: inline-flex;
  position: absolute;
  top: 16px;
  left: 18px;
  box-shadow: 0 8px 24px #0e39301a;
}
.light-label {
  color: #ddebff;
  background: #042044b8;
  border-color: #ffffff1f;
}
.status-dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.green-dot {
  background: #4da862;
}
.blue-dot {
  background: #4e8cff;
}
.copper-dot {
  background: var(--copper);
}
.panel-sprout {
  background: #fff;
  width: 86%;
  top: 55px;
  right: 0;
  transform: rotateY(-9deg) rotate(1.5deg);
}
.panel-sprout:hover {
  transform: rotateY(-4deg) rotate(0.5deg) translateY(-8px);
}
.panel-sprout img {
  aspect-ratio: 16/8.7;
  object-fit: cover;
}
.panel-comply {
  z-index: 2;
  color: #fff;
  background: linear-gradient(140deg, #071d3f, #143f85);
  width: 49%;
  min-height: 250px;
  padding: 72px 28px 26px;
  bottom: 70px;
  left: 12px;
  transform: rotateY(10deg) rotate(-3deg);
}
.panel-comply:hover {
  transform: rotateY(4deg) rotate(-1deg) translateY(-8px);
}
.comply-wordmark {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
.comply-wordmark img {
  object-fit: cover;
  border-radius: 14px;
  width: 58px;
  height: 58px;
  box-shadow: 0 8px 18px #020c1f33;
}
.comply-wordmark strong {
  letter-spacing: -0.045em;
  font-size: 25px;
}
.comply-wordmark strong span {
  color: #4b83ff;
}
.panel-comply p {
  color: #c8d8f2;
  text-align: center;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.panel-prototype {
  z-index: 3;
  background: #fffefd;
  width: 53%;
  padding: 58px 15px 10px;
  bottom: 15px;
  right: 8px;
  transform: rotateY(-10deg) rotate(3deg);
}
.panel-prototype:hover {
  transform: rotateY(-4deg) rotate(1deg) translateY(-8px);
}
.panel-prototype img {
  object-fit: cover;
  object-position: center 23%;
  width: 100%;
  height: 180px;
}
.stage-note {
  color: #687b76;
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 16px;
  font-size: 9px;
  display: flex;
  position: absolute;
  bottom: -8px;
  right: 26px;
}
/* NICAMCO MASTERY STATEMENT */
.mastery-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, #65bfa43b, transparent 26rem),
    #0c2823;
  border-top: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
}

.mastery-inner {
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding-top: 52px;
  padding-bottom: 56px;
  display: grid;
}

.mastery-label {
  color: #8bd8c0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 10px;
  font-weight: 850;
  display: flex;
}

.mastery-label:before {
  content: "";
  background: #69bba3;
  width: 36px;
  height: 1px;
}

.mastery-copy {
  letter-spacing: -0.035em;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 620;
  line-height: 1.18;
}

.mastery-copy span {
  color: #8bd8c0;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-size: 0.72em;
  font-weight: 750;
  display: block;
}

@media (max-width: 760px) {
  .mastery-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .mastery-copy {
    font-size: clamp(27px, 8vw, 38px);
  }
}

.capabilities-section {
  background: var(--paper);
  border-top: 1px solid #1c40381a;
  border-bottom: 1px solid #1c40381a;
  padding: 115px 0 125px;
}
.section-heading h2 {
  letter-spacing: -0.055em;
  max-width: 770px;
  margin: 0;
  font-size: clamp(40px, 4.4vw, 67px);
  font-weight: 680;
  line-height: 1.02;
}
.split-heading {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  display: grid;
}
.split-heading > p {
  max-width: 470px;
  color: var(--muted);
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.7;
}
.capability-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 58px;
  display: grid;
}
.capability-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 25px;
  flex-direction: column;
  min-height: 360px;
  padding: 27px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  position: relative;
  overflow: hidden;
}
.capability-card:after {
  background: var(--card-glow);
  content: "";
  opacity: 0.5;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: -65px;
  right: -55px;
}
.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px #13372f1c;
}
.tone-green {
  --card-glow: #b8dfc8;
}
.tone-blue {
  --card-glow: #a9d2e2;
}
.tone-copper {
  --card-glow: #efc3aa;
}
.tone-charcoal {
  --card-glow: #aebfba;
}
.capability-top {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}
.capability-top span:last-child {
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  color: var(--ink);
  border-radius: 50%;
  place-items: center;
  font-family: Arial, sans-serif;
  display: grid;
}
.capability-card h3 {
  letter-spacing: -0.035em;
  max-width: 265px;
  margin: 58px 0 0;
  font-size: 27px;
  line-height: 1.08;
}
.capability-card p {
  color: var(--muted);
  margin: 19px 0 30px;
  font-size: 14px;
  line-height: 1.65;
}
.capability-card strong {
  z-index: 2;
  letter-spacing: 0.02em;
  margin-top: auto;
  font-size: 12px;
  position: relative;
}
.featured-section {
  padding-top: 120px;
  padding-bottom: 125px;
}
.featured-grid {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 55px;
  display: grid;
}
.featured-card {
  background: #fff;
  border: 1px solid #1339311f;
  border-radius: 34px;
  grid-template-rows: auto 1fr;
  min-height: 520px;
  display: grid;
  position: relative;
  overflow: hidden;
}
.featured-copy {
  z-index: 3;
  padding: 38px 40px 24px;
  position: relative;
}
.project-type {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  font-size: 11px;
  font-weight: 850;
}
.featured-copy h3,
.industrial-copy h3 {
  letter-spacing: -0.05em;
  margin: 13px 0 12px;
  font-size: 40px;
}
.featured-copy p,
.industrial-copy p {
  max-width: 520px;
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.featured-copy a,
.industrial-copy a {
  gap: 10px;
  margin-top: 21px;
  font-size: 13px;
  font-weight: 850;
  display: inline-flex;
}
.featured-visual {
  border-radius: 22px 22px 0 0;
  margin: 5px 34px 0;
  position: relative;
  overflow: hidden;
}
.sprout-visual {
  background: linear-gradient(150deg, #d9edc3, #edf7df 60%, #fff3c7);
  padding: 28px 28px 0;
}
.sprout-visual img {
  border-radius: 18px 18px 0 0;
  width: 100%;
  box-shadow: 0 18px 46px #174b3938;
}
.featured-comply {
  color: #fff;
  background: linear-gradient(145deg, #071c3d, #113a7e);
}
.featured-comply .featured-copy p {
  color: #cbd8eb;
}
.comply-visual {
  background: #4f7fd133;
  border: 1px solid #ffffff1a;
  place-items: center;
  padding: 30px;
  display: grid;
}
.featured-wordmark {
  z-index: 2;
  position: relative;
}
.featured-wordmark img {
  border-radius: 20px;
  width: 84px;
  height: 84px;
}
.featured-wordmark strong {
  font-size: 38px;
}
.binder-lines {
  border: 1px solid #ffffff14;
  border-radius: 18px;
  position: absolute;
  inset: 30px;
}
.binder-lines span {
  background: #ffffff24;
  width: 42%;
  height: 1px;
  position: absolute;
}
.binder-lines span:first-child {
  top: 24%;
  left: 7%;
}
.binder-lines span:nth-child(2) {
  top: 48%;
  right: 7%;
}
.binder-lines span:nth-child(3) {
  bottom: 22%;
  left: 18%;
}
.featured-industrial {
  color: #fff;
  background: #0e2925;
  grid-column: 1/-1;
  grid-template-rows: 1fr;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 445px;
}
.industrial-copy {
  flex-direction: column;
  justify-content: center;
  padding: 52px 58px;
  display: flex;
}
.industrial-copy p {
  color: #bbcbc7;
}
.industrial-diagram {
  background-image:
    linear-gradient(#ffffff0d 1px, #0000 1px),
    linear-gradient(90deg, #ffffff0d 1px, #0000 1px);
  background-size: 42px 42px;
  border-left: 1px solid #ffffff1a;
  min-height: 445px;
  position: relative;
  overflow: hidden;
}
.diagram-node {
  z-index: 2;
  color: #a7e5d4;
  width: 112px;
  height: 112px;
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.14em;
  background: #143f38;
  border: 1px solid #8adec780;
  border-radius: 50%;
  place-items: center;
  font-size: 10px;
  display: grid;
  position: absolute;
  box-shadow: 0 0 0 13px #479d870f;
}
.node-one {
  top: 46px;
  left: 10%;
}
.node-two {
  width: 132px;
  height: 132px;
  top: 168px;
  left: 43%;
}
.node-three {
  bottom: 52px;
  right: 10%;
}
.diagram-line {
  transform-origin: 0;
  background: linear-gradient(90deg, #4d9d87, #acd7cb);
  height: 2px;
  position: absolute;
}
.line-one {
  width: 33%;
  top: 137px;
  left: 19%;
  transform: rotate(25deg);
}
.line-two {
  width: 32%;
  top: 280px;
  left: 55%;
  transform: rotate(21deg);
}
.diagram-pulse {
  border: 1px solid #73d8bd38;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  animation: 3s infinite pulse;
  position: absolute;
  top: 42%;
  left: 49.5%;
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
.process-section {
  color: #fff;
  background: #0c2823;
  padding: 118px 0;
}
.process-shell {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 110px;
  display: grid;
}
.light-eyebrow {
  color: #8bd8c0;
}
.process-intro h2 {
  letter-spacing: -0.055em;
  max-width: 520px;
  margin: 0;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.02;
}
.process-intro > p:not(.eyebrow) {
  color: #b6cac4;
  max-width: 500px;
  margin: 26px 0 32px;
  font-size: 16px;
  line-height: 1.72;
}
.button-light {
  color: var(--ink);
  background: #f4f0e6;
}
.process-list article {
  border-top: 1px solid #ffffff26;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  display: grid;
}
.process-list article:last-child {
  border-bottom: 1px solid #ffffff26;
}
.process-list article > span {
  color: #69bba3;
  font-family: var(--font-geist-mono), monospace;
  padding-top: 5px;
  font-size: 11px;
}
.process-list h3 {
  margin: 0;
  font-size: 25px;
}
.process-list p {
  color: #aec3bd;
  max-width: 600px;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
.closing-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.closing-card {
  background:
    radial-gradient(circle at 86% 20%, #80c5af38, transparent 23rem),
    var(--paper);
  border: 1px solid #123c3221;
  border-radius: 36px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 64px;
  display: grid;
  box-shadow: 0 25px 65px #13372f14;
}
.closing-card h2 {
  letter-spacing: -0.055em;
  max-width: 760px;
  margin: 0;
  font-size: clamp(41px, 4.1vw, 64px);
  line-height: 1.02;
}
.closing-action {
  align-self: end;
}
.closing-action p {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
}
.site-footer {
  color: #fff;
  background: #081d19;
  padding: 78px 0 25px;
}
.footer-grid {
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  display: grid;
}
.footer-brand .brand img {
  filter: invert();
  mix-blend-mode: screen;
}
.footer-brand .brand small,
.footer-brand > p,
.footer-links a {
  color: #9fb5af;
}
.footer-brand > p {
  max-width: 380px;
  margin: 23px 0 0;
  font-size: 14px;
  line-height: 1.7;
}
.footer-links {
  align-content: start;
  gap: 13px;
  display: grid;
}
.footer-links strong {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 12px;
}
.footer-links a {
  width: fit-content;
  font-size: 13px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  color: #718d85;
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 24px;
  font-size: 11px;
  display: flex;
}
.page-hero {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
  min-height: 600px;
  padding-top: 78px;
  padding-bottom: 95px;
  display: grid;
}
.page-hero h1 {
  font-size: clamp(55px, 5.3vw, 84px);
}
.page-hero-copy > p:last-child {
  max-width: 650px;
  color: var(--muted);
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.7;
}
.page-section-white {
  background: var(--paper);
  border-top: 1px solid #1c40381a;
  border-bottom: 1px solid #1c40381a;
  padding: 112px 0;
}
.software-mosaic {
  perspective: 1400px;
  min-height: 500px;
  position: relative;
}
.software-mosaic:before {
  content: "";
  background-image:
    linear-gradient(#165c4b0e 1px, #0000 1px),
    linear-gradient(90deg, #165c4b0e 1px, #0000 1px);
  background-size: 38px 38px;
  border: 1px solid #165c4b1f;
  border-radius: 38px;
  position: absolute;
  inset: 10px 0 30px 40px;
  transform: rotateY(-6deg);
}
.mosaic-card {
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid #123a311f;
  border-radius: 24px;
  position: absolute;
  overflow: hidden;
}
.mosaic-main {
  width: 83%;
  top: 28px;
  right: 0;
  transform: rotate(2deg);
}
.mosaic-main img {
  aspect-ratio: 16/8.7;
  object-fit: cover;
}
.mosaic-blue {
  z-index: 2;
  color: #fff;
  background: linear-gradient(145deg, #071d3e, #123c7e);
  place-items: center;
  width: 50%;
  min-height: 155px;
  padding: 24px;
  display: grid;
  bottom: 42px;
  left: 0;
  transform: rotate(-4deg);
}
.mosaic-belt {
  z-index: 3;
  background: linear-gradient(135deg, #fff, #f3eee5);
  align-items: center;
  gap: 15px;
  width: 53%;
  padding: 14px 22px 14px 14px;
  display: flex;
  bottom: 3px;
  right: 5px;
  transform: rotate(3deg);
}
.mosaic-belt img {
  object-fit: cover;
  border-radius: 15px;
  width: 78px;
  height: 78px;
}
.mosaic-belt span {
  color: #1b2724;
  letter-spacing: -0.035em;
  font-size: 17px;
  font-weight: 850;
}
/* Billwright card in the software hero mosaic */
.mosaic-billwright {
  z-index: 2;
  background: linear-gradient(135deg, #f8fbf9, #dce9e4);
  align-items: center;
  gap: 14px;
  width: 44%;
  padding: 13px 19px 13px 13px;
  display: flex;
  bottom: 112px;
  right: 16px;
  transform: rotate(-2deg);
}
.mosaic-billwright img {
  object-fit: cover;
  border-radius: 18px;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  box-shadow: 0 10px 22px #142a2530;
}
.mosaic-billwright div {
  gap: 3px;
  min-width: 0;
  display: grid;
}
.mosaic-billwright span {
  color: #17231f;
  letter-spacing: -0.035em;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.05;
}
.mosaic-billwright small {
  color: #675b3d;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
/* Supporting labels for hero product cards */
.mosaic-comply-copy {
  align-items: center;
  gap: 10px;
  display: flex;
}
.mosaic-comply-text {
  gap: 3px;
  min-width: 0;
  display: grid;
}
.mosaic-blue .mosaic-comply-copy small {
  color: #bed0eb;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.mosaic-belt-copy {
  gap: 3px;
  min-width: 0;
  display: grid;
}
.mosaic-belt-copy small {
  color: #68766f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.product-showcase {
  gap: 30px;
  margin-top: 66px;
  display: grid;
}
.product-row {
  border: 1px solid var(--line);
  background: #f7f5ee;
  border-radius: 35px;
  grid-template-columns: 0.76fr 1.24fr;
  min-height: 560px;
  display: grid;
  overflow: hidden;
}
.product-row:nth-child(2n) {
  grid-template-columns: 1.24fr 0.76fr;
}
.product-row:nth-child(2n) .product-row-copy {
  order: 2;
}
.product-row-copy {
  flex-direction: column;
  justify-content: center;
  padding: 58px;
  display: flex;
}
.product-row-copy > span {
  color: var(--green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
}
.product-row-copy h3 {
  letter-spacing: -0.055em;
  margin: 14px 0 18px;
  font-size: clamp(40px, 4vw, 60px);
}
.product-row-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.product-row-copy ul {
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
}
.product-row-copy li {
  color: #3e5751;
  padding-left: 20px;
  font-size: 13px;
  position: relative;
}
.product-row-copy li:before {
  border: 2px solid var(--green);
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0.35em;
  left: 0;
}
.product-row-copy .button {
  width: fit-content;
}
.row-buttons {
  align-items: center;
  gap: 26px;
  display: flex;
}
.product-row-image {
  place-items: center;
  min-height: 560px;
  display: grid;
  position: relative;
  overflow: hidden;
}
.sprout-product-image {
  background:
    radial-gradient(circle at 20% 10%, #fff9c8, #0000 19rem),
    linear-gradient(145deg, #cfe9bd, #edf5dc);
  padding: 65px 0 0 65px;
}
.sprout-product-image img {
  border-radius: 24px 0 0;
  align-self: end;
  width: 112%;
  max-width: none;
  box-shadow: -20px 20px 55px #1d553c33;
}
.product-row-comply {
  color: #fff;
  background: linear-gradient(145deg, #071b3b, #12376f);
  border-color: #1d4b88;
}
.product-row-comply .product-row-copy > span {
  color: #80aeff;
}
.product-row-comply .product-row-copy p,
.product-row-comply .product-row-copy li {
  color: #c7d5e8;
}
.product-row-comply .product-row-copy li:before {
  border-color: #6b9cff;
}
.comply-product-image {
  background-image:
    linear-gradient(#ffffff0d 1px, #0000 1px),
    linear-gradient(90deg, #ffffff0d 1px, #0000 1px);
  background-size: 40px 40px;
}
.giant-wordmark {
  z-index: 3;
  padding-bottom: 70px;
  position: relative;
}
.giant-wordmark img {
  border-radius: 27px;
  width: 110px;
  height: 110px;
}
.giant-wordmark strong {
  font-size: 51px;
}
.record-stack {
  height: 185px;
  position: absolute;
  bottom: 36px;
  left: 12%;
  right: 12%;
}
.record-stack > div {
  background: #4875be47;
  border: 1px solid #ffffff1c;
  border-radius: 18px 18px 0 0;
  gap: 15px;
  padding: 25px;
  display: grid;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.record-stack > div:first-child {
  opacity: 0.55;
  bottom: 34px;
  left: 45px;
  right: 45px;
}
.record-stack span {
  background: #ffffff26;
  border-radius: 999px;
  height: 4px;
}
.record-stack span:nth-child(2) {
  width: 72%;
}
.record-stack span:nth-child(3) {
  width: 45%;
}
.belt-product-image {
  background:
    radial-gradient(circle at 80% 20%, #c3233229, #0000 20rem), #f3f0e9;
  align-content: center;
  gap: 18px;
  padding: 52px 32px;
  display: grid;
}
.belt-brand-lockup {
  background: #ffffffe0;
  border: 1px solid #21322e1a;
  border-radius: 24px;
  align-items: center;
  gap: 24px;
  width: min(520px, 92%);
  padding: 22px;
  display: flex;
  transform: rotate(-2deg);
  box-shadow: 0 18px 42px #1d29261f;
}
.belt-brand-lockup img {
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
}
.belt-brand-lockup div {
  gap: 6px;
  display: grid;
}
.belt-brand-lockup strong {
  color: #171c1b;
  letter-spacing: -0.04em;
  font-size: 25px;
}
.belt-brand-lockup span {
  color: #61706c;
  font-size: 12px;
  line-height: 1.45;
}
.belt-feature-board {
  background: #101b19;
  border-radius: 20px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(430px, 80%);
  margin-left: auto;
  padding: 17px;
  display: grid;
  transform: translateY(-6px) rotate(2deg);
  box-shadow: 0 18px 42px #1d29262e;
}
.belt-feature-board span {
  color: #e8ece9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ffffff0e;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  padding: 12px;
  font-size: 10px;
  font-weight: 750;
}
.apps-section {
  padding-top: 118px;
  padding-bottom: 125px;
}
.app-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  display: grid;
}
.app-card {
  background: var(--app-bg, white);
  border: 1px solid #193d351f;
  border-radius: 27px;
  min-height: 425px;
  padding: 26px;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.app-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px #12342d1f;
}
.app-card:after {
  background: var(--app-glow, #d9e6df);
  content: "";
  opacity: 0.55;
  border-radius: 50%;
  width: 210px;
  height: 210px;
  position: absolute;
  top: -70px;
  right: -70px;
}
.app-gold {
  --app-bg: #fff8e8;
  --app-glow: #f0c465;
}
.app-red {
  --app-bg: #fff1eb;
  --app-glow: #e47352;
}
.app-pink {
  --app-bg: #fff1fa;
  --app-glow: #ef9bd8;
}
.app-violet {
  --app-bg: #f3f0ff;
  --app-glow: #7f73ce;
}
/* Official Google Play app icons */
.app-monogram {
  z-index: 2;
  background: transparent;
  border-radius: 24px;
  width: 96px;
  height: 96px;
  margin-bottom: 35px;
  display: block;
  position: relative;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 0 12px 24px #112a2526;
}
.app-monogram img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-card > span {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.app-card h3 {
  letter-spacing: -0.04em;
  margin: 10px 0 13px;
  font-size: 27px;
}
.app-card p {
  color: var(--muted);
  margin: 0 0 25px;
  font-size: 13px;
  line-height: 1.65;
}
.app-card strong {
  font-size: 11px;
  position: absolute;
  bottom: 25px;
  left: 26px;
}
.development-section {
  color: #fff;
  background: #0c2924;
  padding: 105px 0;
}
.development-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  display: grid;
}
.development-grid h2 {
  letter-spacing: -0.055em;
  max-width: 560px;
  margin: 0;
  font-size: 54px;
  line-height: 1.04;
}
.development-cards {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}
.development-cards article {
  background: #ffffff0b;
  border: 1px solid #ffffff21;
  border-radius: 25px;
  padding: 31px;
}
.development-cards span {
  color: #83cdb8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
}
.development-cards h3 {
  margin: 28px 0 12px;
  font-size: 28px;
}
.development-cards p {
  color: #aec2bc;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}
.control-board {
  color: #fff;
  background-color: #09231f;
  background-image:
    linear-gradient(#5fae9914 1px, #0000 1px),
    linear-gradient(90deg, #5fae9914 1px, #0000 1px), none;
  background-position:
    0 0,
    0 0,
    0 0;
  background-repeat: repeat, repeat, repeat;
  background-size: 35px 35px;
  background-attachment: scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box;
  border: 1px solid #315e57;
  border-radius: 28px;
  min-height: 410px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
  box-shadow: 0 28px 65px #0b2c2533;
}
.control-topline,
.control-status {
  color: #79b8a8;
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.11em;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  display: flex;
}
.control-topline span:last-child {
  color: #9bdfcb;
  padding-left: 15px;
  position: relative;
}
.control-topline span:last-child:before {
  content: "";
  background: #59d0a9;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 2px;
  left: 0;
  box-shadow: 0 0 15px #59d0a9;
}
.control-readout {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 53px;
  display: grid;
}
.control-readout > div {
  background: #1c4f4447;
  border: 1px solid #74c5ae26;
  border-radius: 17px;
  padding: 20px;
}
.control-readout small {
  color: #69a798;
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.14em;
  margin-bottom: 9px;
  font-size: 8px;
  display: block;
}
.control-readout strong {
  font-family: var(--font-geist-mono), monospace;
  font-size: 48px;
  font-weight: 500;
}
.control-readout > div > span {
  color: #8bb6aa;
  margin-left: 8px;
  font-size: 13px;
}
.control-trace {
  border-bottom: 1px solid #73bba733;
  height: 90px;
  margin: 25px 0 20px;
  position: relative;
}
.control-trace span {
  background: #63c7a9;
  width: 2px;
  position: absolute;
  bottom: 15px;
  box-shadow: 0 0 10px #63c7a959;
}
.control-trace span:first-child {
  height: 20px;
  left: 8%;
}
.control-trace span:nth-child(2) {
  height: 46px;
  left: 28%;
}
.control-trace span:nth-child(3) {
  height: 27px;
  left: 48%;
}
.control-trace span:nth-child(4) {
  height: 62px;
  left: 68%;
}
.control-trace span:nth-child(5) {
  height: 40px;
  left: 88%;
}
.control-status {
  justify-content: flex-start;
  gap: 18px;
}
.control-status b {
  color: #9de7d2;
  margin-right: 20px;
  font-size: 9px;
}
.industrial-intro-grid,
.about-story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  display: grid;
}
.industrial-intro h2,
.about-story h2 {
  letter-spacing: -0.055em;
  margin: 0;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1.03;
}
.industrial-intro-copy,
.about-story-grid > div:last-child {
  padding-top: 30px;
}
.industrial-intro-copy p,
.about-story-grid > div:last-child p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
}
.service-section,
.methods-section,
.values-section,
.industrial-principles {
  padding-top: 118px;
  padding-bottom: 125px;
}
.service-grid,
.method-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 55px;
  display: grid;
}
.service-grid article,
.method-grid article {
  border: 1px solid var(--line);
  background: #ffffff85;
  border-radius: 24px;
  min-height: 300px;
  padding: 28px;
}
.service-grid article > span,
.method-grid article > span,
.values-grid article > span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}
.service-grid h3,
.method-grid h3,
.values-grid h3 {
  letter-spacing: -0.035em;
  margin: 58px 0 13px;
  font-size: 26px;
}
.service-grid p,
.method-grid p,
.values-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.equipment-section,
.identity-section {
  color: #fff;
  background: #0b2923;
  padding: 112px 0;
}
.equipment-grid,
.identity-grid {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  display: grid;
}
.equipment-copy h2,
.identity-grid h2 {
  letter-spacing: -0.055em;
  max-width: 620px;
  margin: 0;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.03;
}
.equipment-copy > p:not(.eyebrow) {
  color: #b5c8c2;
  margin: 27px 0 33px;
  font-size: 16px;
  line-height: 1.72;
}
.equipment-list article {
  border-top: 1px solid #ffffff24;
  gap: 9px;
  padding: 26px 0;
  display: grid;
}
.equipment-list article:last-child {
  border-bottom: 1px solid #ffffff24;
}
.equipment-list strong {
  font-size: 21px;
}
.equipment-list span {
  color: #93aea7;
  font-size: 12px;
}
.principle-strip {
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 22px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 58px;
  display: grid;
  overflow: hidden;
}
.principle-strip span {
  background: var(--paper);
  text-align: center;
  place-items: center;
  min-height: 125px;
  padding: 25px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}
.prototype-hero-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 29px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotate(1.5deg);
}
.prototype-card-label,
.prototype-meta {
  color: var(--muted);
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.1em;
  justify-content: space-between;
  align-items: center;
  padding: 17px 21px;
  font-size: 9px;
  display: flex;
}
.prototype-card-label {
  border-bottom: 1px solid var(--line);
}
.prototype-card-label b {
  color: var(--green);
}
.prototype-hero-card > img {
  object-fit: cover;
  width: 100%;
  height: 315px;
}
.prototype-meta {
  border-top: 1px solid var(--line);
  justify-content: flex-start;
  gap: 25px;
}
.prototype-story-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 110px;
  display: grid;
}
.prototype-image-stack {
  min-height: 470px;
  position: relative;
}
.proto-sheet {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 25px;
  width: 62%;
  min-height: 280px;
  padding: 30px;
  position: absolute;
  box-shadow: 0 24px 48px #11312b1a;
}
.proto-sheet:first-child {
  top: 20px;
  left: 0;
  transform: rotate(-5deg);
}
.proto-sheet:nth-child(2) {
  top: 80px;
  left: 18%;
  transform: rotate(1deg);
}
.proto-sheet:nth-child(3) {
  top: 145px;
  right: 0;
  transform: rotate(6deg);
}
.proto-sheet span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
}
.proto-sheet strong {
  margin: 55px 0 14px;
  font-size: 34px;
  display: block;
}
.proto-sheet p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}
.prototype-story-copy h2 {
  letter-spacing: -0.055em;
  margin: 0;
  font-size: clamp(43px, 4.2vw, 62px);
  line-height: 1.03;
}
.prototype-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.72;
}
.prototype-cta,
.updates-cta {
  padding: 0 0 105px;
}
.about-mark-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 29px;
  align-items: center;
  gap: 38px;
  padding: 42px;
  display: flex;
}
.about-mark-card img {
  border-radius: 50%;
  width: min(48%, 260px);
}
.about-mark-card > div {
  gap: 4px;
  display: grid;
}
.about-mark-card span {
  color: var(--green);
  letter-spacing: 0.13em;
  margin-bottom: 17px;
  font-size: 9px;
  font-weight: 800;
}
.about-mark-card strong {
  letter-spacing: -0.04em;
  font-size: 31px;
}
.values-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 55px;
  display: grid;
}
.values-grid article {
  border: 1px solid var(--line);
  background: #ffffff7a;
  border-radius: 24px;
  min-height: 305px;
  padding: 28px;
}
.identity-grid > div:last-child {
  align-self: end;
}
.identity-grid > div:last-child p {
  color: #b6c8c3;
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.72;
}
.identity-grid > div:last-child strong {
  color: #fff;
}
.location-section {
  padding-top: 95px;
  padding-bottom: 100px;
}
.location-card {
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #d0e7db6b, transparent 55%), var(--paper);
  border-radius: 33px;
  padding: 62px;
}
.location-card > span {
  color: var(--green);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-size: 10px;
  font-weight: 850;
  display: block;
}
.location-card > strong {
  letter-spacing: -0.05em;
  font-size: 48px;
  display: block;
}
.location-card p {
  max-width: 620px;
  color: var(--muted);
  margin: 18px 0 25px;
  line-height: 1.7;
}
.location-card a {
  font-size: 13px;
  font-weight: 850;
}
.updates-section {
  padding-top: 70px;
}
.update-list article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
  gap: 45px;
  padding: 58px 0;
  display: grid;
}
.update-list article:first-child {
  border-top: 1px solid var(--line);
}
.update-number {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}
.update-meta {
  color: var(--muted);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  display: flex;
}
.update-body h2 {
  letter-spacing: -0.045em;
  max-width: 850px;
  margin: 24px 0 17px;
  font-size: 43px;
}
.update-body p {
  max-width: 920px;
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.contact-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 29px;
  padding: 45px;
}
.contact-card > span {
  color: var(--green);
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 850;
  display: block;
}
.contact-card > a {
  letter-spacing: -0.04em;
  border-bottom: 2px solid var(--green);
  margin: 32px 0 15px;
  font-size: clamp(25px, 2.5vw, 39px);
  font-weight: 720;
  display: inline-block;
}
.contact-card > p {
  color: var(--muted);
  font-size: 14px;
}
.contact-status {
  border-top: 1px solid var(--line);
  color: var(--muted);
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 22px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}
.contact-status i {
  background: #42ad7c;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 5px #42ad7c1f;
}
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 55px;
  display: grid;
}
.contact-grid > a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 25px;
  min-height: 380px;
  padding: 30px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-grid > a:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px #11352d1a;
}
.contact-grid span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}
.contact-grid h3 {
  letter-spacing: -0.04em;
  margin: 70px 0 16px;
  font-size: 30px;
}
.contact-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.contact-grid strong {
  margin-top: 42px;
  font-size: 12px;
  display: block;
}
.contact-prep {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
  padding-top: 115px;
  padding-bottom: 120px;
  display: grid;
}
.contact-prep h2 {
  letter-spacing: -0.05em;
  margin: 0;
  font-size: 49px;
  line-height: 1.05;
}
.contact-prep ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-prep li {
  border-top: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  gap: 15px;
  padding: 23px 0;
  font-size: 16px;
  font-weight: 720;
  display: grid;
}
.contact-prep li:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-prep li span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  padding-top: 5px;
  font-size: 10px;
}
@media (max-width: 1180px) {
  .shell {
    width: min(100% - 42px, 1080px);
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-right: 62px;
  }
  .mobile-menu {
    display: block;
    position: absolute;
    right: 0;
  }
  .mobile-menu summary {
    border: 1px solid var(--line);
    cursor: pointer;
    border-radius: 14px;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    list-style: none;
    display: grid;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    background: var(--ink);
    width: 20px;
    height: 2px;
  }
  .mobile-menu nav {
    border: 1px solid var(--line);
    background: var(--paper);
    width: 240px;
    box-shadow: var(--shadow);
    border-radius: 18px;
    gap: 4px;
    padding: 13px;
    display: grid;
    position: absolute;
    top: 58px;
    right: 0;
  }
  .mobile-menu nav a {
    border-radius: 10px;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: 750;
  }
  .mobile-menu nav a:hover {
    background: var(--green-soft);
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 85px;
  }
  .hero-copy {
    max-width: 900px;
  }
  .hero-stage {
    width: min(100%, 870px);
    min-height: 650px;
    margin: 0 auto;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-industrial {
    grid-column: auto;
  }
  .process-shell {
    gap: 60px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-grid > :last-child {
    display: none;
  }
  .app-grid,
  .values-grid,
  .service-grid,
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .development-grid,
  .equipment-grid,
  .identity-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}
@media (max-width: 760px) {
  .shell {
    width: calc(100% - 30px);
  }
  .site-header {
    min-height: 84px;
  }
  .brand {
    gap: 10px;
  }
  .brand img {
    width: 49px;
    height: 49px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small,
  .header-contact {
    display: none;
  }
  .hero {
    gap: 5px;
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .hero h1 {
    font-size: clamp(51px, 15vw, 68px);
  }
  .hero-lede {
    font-size: 17px;
    line-height: 1.62;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .text-link {
    width: fit-content;
  }
  .trust-line {
    gap: 9px;
  }
  .hero-stage {
    min-height: 480px;
    margin-top: 30px;
  }
  .hero-stage:before {
    inset: 20px 0 18px 30px;
  }
  .panel-sprout {
    width: 94%;
    top: 35px;
  }
  .panel-label {
    padding: 7px 9px;
    font-size: 9px;
    top: 10px;
    left: 11px;
  }
  .panel-comply {
    width: 52%;
    min-height: 185px;
    padding: 53px 15px 16px;
    bottom: 50px;
    left: 0;
  }
  .panel-comply p {
    font-size: 10px;
  }
  .panel-prototype {
    width: 56%;
    padding: 43px 8px 7px;
    bottom: 12px;
    right: 0;
  }
  .panel-prototype img {
    height: 125px;
  }
  .stage-note {
    display: none;
  }
  .capabilities-section,
  .featured-section,
  .process-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .capability-card {
    min-height: 310px;
  }
  .featured-grid {
    margin-top: 36px;
  }
  .featured-card {
    border-radius: 25px;
    min-height: 470px;
  }
  .featured-copy {
    padding: 28px 25px 20px;
  }
  .featured-copy h3,
  .industrial-copy h3 {
    font-size: 34px;
  }
  .featured-visual {
    margin-inline: 20px;
  }
  .featured-industrial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .industrial-copy {
    padding: 40px 28px;
  }
  .industrial-diagram {
    border-top: 1px solid #ffffff1a;
    border-left: 0;
    min-height: 310px;
  }
  .process-shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .closing-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .closing-card {
    border-radius: 26px;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 35px 25px;
  }
  .closing-card h2 {
    font-size: 41px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :nth-child(3) {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-top: 65px;
    padding-bottom: 70px;
  }
  .page-hero h1 {
    font-size: 51px;
  }
  .page-section-white {
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .software-mosaic {
    min-height: 360px;
  }
  .mosaic-main {
    width: 92%;
  }
  .mosaic-blue {
    width: 56%;
    min-height: 115px;
    padding: 14px;
  }
  .mosaic-blue .comply-wordmark img {
    width: 40px;
    height: 40px;
  }
  .mosaic-blue .comply-wordmark strong {
    font-size: 18px;
  }
  .mosaic-belt {
    width: 57%;
  }
  .mosaic-billwright {
    gap: 8px;
    width: 58%;
    padding: 10px 12px 10px 10px;
    bottom: 92px;
    right: 8px;
  }
  .mosaic-billwright img {
    border-radius: 14px;
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }
  .mosaic-billwright span {
    font-size: 14px;
  }
  .mosaic-billwright small {
    font-size: 8px;
  }
  .product-row,
  .product-row:nth-child(2n) {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-row:nth-child(2n) .product-row-copy {
    order: 0;
  }
  .product-row-copy {
    padding: 38px 26px;
  }
  .product-row-copy h3 {
    font-size: 43px;
  }
  .product-row-image {
    min-height: 360px;
  }
  .sprout-product-image {
    padding: 34px 0 0 25px;
  }
  .giant-wordmark {
    padding-bottom: 50px;
  }
  .giant-wordmark img {
    width: 70px;
    height: 70px;
  }
  .giant-wordmark strong {
    font-size: 29px;
  }
  .belt-product-image {
    min-height: 410px;
    padding: 35px 20px;
  }
  .row-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .apps-section,
  .service-section,
  .methods-section,
  .values-section,
  .industrial-principles {
    padding-top: 75px;
    padding-bottom: 78px;
  }
  .app-grid,
  .service-grid,
  .method-grid,
  .values-grid,
  .contact-grid,
  .development-cards {
    grid-template-columns: 1fr;
  }
  .development-grid h2 {
    font-size: 43px;
  }
  .control-board {
    min-height: 365px;
    padding: 22px;
    transform: none;
  }
  .control-readout strong {
    font-size: 35px;
  }
  .control-status {
    flex-wrap: wrap;
  }
  .industrial-intro-grid,
  .about-story-grid,
  .prototype-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .industrial-intro h2,
  .about-story h2,
  .equipment-copy h2,
  .identity-grid h2 {
    font-size: 43px;
  }
  .industrial-intro-copy,
  .about-story-grid > div:last-child {
    padding-top: 0;
  }
  .principle-strip {
    grid-template-columns: 1fr 1fr;
  }
  .prototype-hero-card {
    transform: none;
  }
  .prototype-hero-card > img {
    height: 230px;
  }
  .prototype-image-stack {
    min-height: 510px;
  }
  .proto-sheet {
    width: 78%;
  }
  .prototype-story-copy h2 {
    font-size: 43px;
  }
  .about-mark-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  .about-mark-card img {
    width: 180px;
  }
  .location-card {
    padding: 38px 27px;
  }
  .location-card > strong {
    font-size: 39px;
  }
  .update-list article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }
  .update-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .update-body h2 {
    font-size: 34px;
  }
  .contact-card {
    padding: 30px 24px;
  }
  .contact-card > a {
    font-size: 21px;
  }
  .contact-prep {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .contact-prep h2 {
    font-size: 42px;
  }
}
/* software-origin:start */
.software-origin {
  padding: 0 0 100px;
}

.software-origin-card {
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, #4ca98d2b, transparent 22rem),
    linear-gradient(135deg, #0a241f, #0d342c);
  border: 1px solid #315e55;
  border-radius: 32px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  padding: 58px 62px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 65px #12372f24;
}

.software-origin-card:before {
  content: "";
  background-image:
    linear-gradient(#ffffff0a 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.software-origin-card > * {
  z-index: 1;
  position: relative;
}

.software-origin-heading .eyebrow {
  margin-bottom: 18px;
}

.software-origin-heading h2 {
  letter-spacing: -0.055em;
  max-width: 430px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.02;
}

.software-origin-copy {
  border-left: 1px solid #ffffff2b;
  align-content: center;
  gap: 18px;
  padding-left: 52px;
  display: grid;
}

.software-origin-copy p {
  color: #b9ccc6;
  max-width: 720px;
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.software-origin-copy p:last-child {
  color: #e8f4f0;
  font-weight: 750;
}

@media (max-width: 760px) {
  .software-origin {
    padding-bottom: 72px;
  }

  .software-origin-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 27px;
  }

  .software-origin-heading h2 {
    font-size: 43px;
  }

  .software-origin-copy {
    border-top: 1px solid #ffffff2b;
    border-left: 0;
    padding-top: 27px;
    padding-left: 0;
  }

  .software-origin-copy p {
    font-size: 15px;
  }
}
/* software-origin:end */

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