:root {
  --ink: #101923;
  --ink-soft: #263746;
  --paper: #f4f6f7;
  --surface: #ffffff;
  --line: #d7dde1;
  --muted: #63717d;
  --brand: #283593;
  --teal: #008c95;
  --signal: #c49a3a;
  --danger: #b3261e;
  --max: 1240px;
  --header-height: 76px;
  --shadow: 0 18px 45px rgba(16, 25, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 221, 225, 0.9);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 25, 35, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 100%;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.language-link:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 19px;
  border: 1px solid var(--brand);
  border-radius: 3px;
  color: var(--surface);
  background: var(--brand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  white-space: nowrap;
}

.button-light {
  border-color: var(--surface);
  color: var(--ink);
  background: var(--surface);
}

.button-light:hover {
  border-color: var(--teal);
  color: var(--surface);
  background: var(--teal);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--surface);
  background: rgba(16, 25, 35, 0.28);
}

.button-ghost:hover {
  border-color: var(--surface);
  background: rgba(16, 25, 35, 0.75);
}

.icon-button,
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(2) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(4) {
  transform: translateY(7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: rotate(-45deg);
}

.eyebrow,
.section-kicker,
.project-category {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: clamp(620px, 78svh, 840px);
  align-items: center;
  overflow: hidden;
  color: var(--surface);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.hero-image-project-tank {
  background-image: url("/assets/images/project-tank.webp");
}

.hero-image-project-controller {
  background-image: url("/assets/images/project-controller.webp");
}

.hero-image-project-schaeffler {
  background-image: url("/assets/images/project-schaeffler.webp");
}

.hero-image-project-multifunction {
  background-image: url("/assets/images/project-multifunction.webp");
}

.hero-image-project-php {
  background-image: url("/assets/images/project-php.webp");
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 17, 25, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 92px 124px;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #70d3d7;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0;
  font-size: 76px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-summary {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-contact {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(16, 25, 35, 0.72);
}

.hero-contact .shell {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.hero-contact span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-contact a {
  font-weight: 700;
}

.signal-band {
  color: var(--surface);
  background: var(--ink);
}

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

.signal-grid article {
  min-height: 210px;
  padding: 38px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-grid article > span,
.method-grid article > span,
.capability-grid article > span,
.principle-grid article > span {
  color: #70d3d7;
  font-family: Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.signal-grid h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.signal-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.section {
  padding-block: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: 44px;
  font-weight: 650;
  line-height: 1.2;
}

.section-intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading-light h2,
.section-heading-light .section-intro {
  color: var(--surface);
}

.section-heading-light .section-intro {
  color: rgba(255, 255, 255, 0.66);
}

.solutions-overview {
  background: var(--surface);
}

.solution-rows {
  border-top: 1px solid var(--line);
}

.solution-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.8fr) minmax(280px, 1fr) 150px;
  gap: 24px;
  align-items: center;
  min-height: 160px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.solution-row .index,
.project-feature-copy .index {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.solution-row h3 {
  margin: 0;
  font-size: 24px;
}

.solution-row p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover {
  color: var(--teal);
}

.method-section {
  background: var(--paper);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.method-layout .section-heading {
  display: block;
  margin: 0;
}

.method-layout .section-heading h2 {
  font-size: 40px;
}

.method-layout .section-intro {
  margin-top: 24px;
}

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

.method-grid article {
  min-height: 230px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.method-grid h3 {
  margin: 38px 0 8px;
  font-size: 21px;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.projects-overview {
  background: var(--surface);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  min-width: 0;
}

.project-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-card .project-category {
  margin: 24px 0 8px;
}

.project-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
}

.project-card h3 a:hover {
  color: var(--brand);
}

.project-card > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  color: var(--surface);
  background: var(--brand);
}

.cta-inner {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-block: 64px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
}

.cta-inner p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-inner .button {
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(500px, 67svh, 720px);
  align-items: flex-end;
  overflow: hidden;
  color: var(--surface);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 96px 82px;
}

.page-hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: 56px;
  font-weight: 650;
  line-height: 1.15;
}

.page-hero-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.pillar-section {
  padding-top: 64px;
}

.pillar {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.pillar:first-child {
  border-top: 1px solid var(--line);
}

.pillar-title {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.pillar-title span {
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 13px;
}

.pillar-title h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}

.pillar-body > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 16px 16px 16px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 24px;
  left: 8px;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.architecture-section {
  color: var(--surface);
  background: var(--ink);
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  align-items: center;
}

.architecture-layout .section-heading {
  display: block;
  margin: 0;
}

.architecture-layout .section-heading h2 {
  font-size: 40px;
}

.architecture-layout .section-intro {
  margin-top: 22px;
}

.architecture-stack {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.architecture-layer {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.architecture-layer:last-child {
  border-bottom: 0;
}

.architecture-layer strong {
  color: #70d3d7;
  font-size: 14px;
}

.architecture-layer span {
  color: rgba(255, 255, 255, 0.76);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: 100px;
}

.delivery-layout .section-heading {
  display: block;
  margin: 0;
}

.delivery-layout .section-heading h2 {
  font-size: 40px;
}

.delivery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.delivery-list li {
  min-height: 125px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 650;
}

.delivery-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 12px;
}

.capabilities-section {
  background: var(--surface);
}

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

.capability-grid article {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-grid h3 {
  margin: 44px 0 12px;
  font-size: 22px;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.industry-section {
  background: var(--paper);
}

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

.industry-row {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 230px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.industry-row img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.industry-row div {
  align-self: center;
  padding: 28px;
}

.industry-row h3 {
  margin: 0;
  font-size: 20px;
}

.industry-row p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.project-list {
  padding-top: 72px;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 560px;
  margin-bottom: 72px;
  background: var(--paper);
}

.project-feature:nth-child(even) .project-feature-image {
  order: 2;
}

.project-feature-image {
  min-height: 520px;
  overflow: hidden;
}

.project-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.project-feature-copy .project-category {
  margin: 30px 0 10px;
}

.project-feature-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
}

.project-feature-copy > p:last-of-type {
  margin: 20px 0 0;
  color: var(--muted);
}

.project-feature-copy ul {
  margin: 28px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.project-feature-copy li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
}

.project-feature-copy li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.disclosure-section {
  padding-block: 78px;
  color: var(--surface);
  background: var(--ink);
}

.disclosure-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 80px;
}

.disclosure-inner h2 {
  margin: 0;
  font-size: 30px;
}

.disclosure-inner p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.story-section {
  background: var(--surface);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.story-layout h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
}

.story-layout p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.principles-section {
  background: var(--paper);
}

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

.principle-grid article {
  min-height: 290px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.principle-grid h3 {
  margin: 52px 0 12px;
  font-size: 20px;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.name-section {
  padding-block: 96px;
  overflow: hidden;
  background: var(--surface);
}

.name-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 100px;
  align-items: center;
}

.name-mark {
  width: 320px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.name-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.name-layout h2 {
  margin: 0;
  font-size: 54px;
}

.name-layout div:last-child > p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 56px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-details h2 {
  margin: 0 0 36px;
  font-size: 32px;
}

.contact-details dl {
  margin: 0;
}

.contact-details dl > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-details dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-size: 18px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.contact-details dd a:hover {
  color: var(--brand);
}

.contact-prep {
  margin-top: 48px;
}

.contact-prep h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.contact-prep ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.enquiry-panel {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.enquiry-heading h2 {
  margin: 0;
  font-size: 32px;
}

.enquiry-heading p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
}

.enquiry-form {
  margin-top: 40px;
}

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

.form-grid label:not(.honeypot) {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.form-grid em {
  color: var(--danger);
  font-size: 11px;
  font-style: normal;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bfc8ce;
  border-radius: 2px;
  background: var(--surface);
}

input,
select {
  min-height: 50px;
  padding: 10px 13px;
}

textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(40, 53, 147, 0.15);
}

.field-invalid {
  border-color: var(--danger) !important;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.contact-hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
}

.consent a {
  color: var(--brand);
  text-decoration: underline;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: var(--danger);
}

.legal-hero {
  padding-block: 100px 72px;
  color: var(--surface);
  background: var(--ink);
}

.legal-hero h1 {
  margin: 0;
  font-size: 52px;
}

.legal-hero > .shell > p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.legal-content {
  max-width: 900px;
  padding-block: 84px 110px;
}

.legal-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.legal-content p {
  margin: 0 0 10px;
  color: var(--muted);
}

.site-footer {
  color: var(--surface);
  background: #0b1219;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 80px;
  padding-block: 76px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #70d3d7;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.filing-link:hover {
  color: #70d3d7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 172px 1fr auto;
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 172px;
  }

  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-actions .button {
    display: none;
  }

  .method-layout,
  .architecture-layout {
    gap: 54px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .icon-button,
  .nav-toggle {
    position: relative;
    display: inline-flex;
    grid-column: 3;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    height: auto;
    padding: 22px 28px 40px;
    background: var(--surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    height: auto;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .site-nav a::after {
    display: none;
  }

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

  .hero-subhead {
    font-size: 30px;
  }

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

  .signal-grid article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .signal-grid article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .signal-grid h3 {
    margin-top: 14px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-intro {
    margin-top: 24px;
  }

  .solution-row {
    grid-template-columns: 60px minmax(200px, 0.75fr) minmax(260px, 1.25fr);
  }

  .solution-row .text-link {
    grid-column: 2 / -1;
    justify-content: flex-start;
  }

  .method-layout,
  .architecture-layout,
  .delivery-layout,
  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .pillar {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature:nth-child(even) .project-feature-image {
    order: 0;
  }

  .project-feature-image {
    min-height: 420px;
  }

  .name-layout {
    grid-template-columns: 240px 1fr;
    gap: 55px;
  }

  .name-mark {
    width: 240px;
  }

  .contact-details {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand,
  .brand img {
    width: 154px;
  }

  .header-inner {
    gap: 6px;
  }

  .language-link {
    font-size: 12px;
  }

  .home-hero {
    min-height: 76svh;
    background-position: 62% center;
  }

  .hero-content {
    padding-block: 72px 102px;
  }

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

  .hero-subhead {
    margin-top: 14px;
    font-size: 25px;
  }

  .hero-summary {
    margin-top: 22px;
    font-size: 15px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-contact .shell {
    justify-content: space-between;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .method-layout .section-heading h2,
  .architecture-layout .section-heading h2,
  .delivery-layout .section-heading h2,
  .story-layout h2 {
    font-size: 32px;
  }

  .section-intro,
  .pillar-body > p,
  .story-layout p {
    font-size: 16px;
  }

  .solution-row {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-block: 28px;
  }

  .solution-row p,
  .solution-row .text-link {
    grid-column: 2;
  }

  .method-grid,
  .project-grid,
  .delivery-list,
  .capability-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .capability-grid article,
  .principle-grid article {
    min-height: 0;
  }

  .project-grid {
    gap: 46px;
  }

  .cta-inner {
    display: block;
    min-height: 0;
    padding-block: 60px;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .cta-inner .button {
    width: 100%;
    margin-top: 30px;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-inner {
    padding-block: 76px 60px;
  }

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

  .page-hero-intro {
    font-size: 16px;
  }

  .pillar {
    padding-block: 54px;
  }

  .pillar-title {
    grid-template-columns: 38px 1fr;
  }

  .pillar-title h2 {
    font-size: 28px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .architecture-layer {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .industry-row img {
    height: 230px;
  }

  .project-feature {
    min-height: 0;
    margin-bottom: 34px;
  }

  .project-feature-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-feature-copy {
    padding: 34px 24px 40px;
  }

  .project-feature-copy h2 {
    font-size: 27px;
  }

  .disclosure-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .name-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .name-mark {
    width: min(220px, 70vw);
  }

  .name-layout h2 {
    font-size: 42px;
  }

  .enquiry-panel {
    padding: 28px 20px;
    box-shadow: none;
  }

  .enquiry-heading h2 {
    font-size: 27px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-wide {
    grid-column: auto;
  }

  .form-submit {
    display: block;
  }

  .form-submit .button {
    width: 100%;
  }

  .form-status {
    margin-top: 16px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
    padding-block: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
