@font-face {
  font-family: "Onest";
  src: url("assets/fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Azeret Mono";
  src: url("assets/fonts/azeret-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --color-navy: oklch(0.2 0.08 260);
  --color-navy-deep: oklch(0.13 0.055 260);
  --color-blue: oklch(0.42 0.22 264);
  --color-violet: oklch(0.67 0.2 286);
  --color-violet-dark: oklch(0.53 0.22 286);
  --color-cyan: oklch(0.8 0.13 185);
  --color-white: oklch(0.985 0.005 264);
  --color-surface: oklch(0.965 0.012 264);
  --color-line: oklch(0.84 0.02 264);
  --color-ink: oklch(0.22 0.04 264);
  --color-muted: oklch(0.45 0.035 264);
  --color-white-20: oklch(1 0 0 / 0.2);
  --color-white-55: oklch(1 0 0 / 0.55);
  --color-text-on-dark: oklch(0.9 0.025 264);
  --color-text-subtle: oklch(0.76 0.035 264);
  --color-line-on-dark: oklch(0.72 0.09 264 / 0.65);
  --color-label-on-light: oklch(0.43 0.18 286);
  --color-trust-text: oklch(0.82 0.025 264);
  --color-navy-98: oklch(0.13 0.055 260 / 0.98);
  --color-navy-82: oklch(0.13 0.055 260 / 0.82);
  --color-navy-42: oklch(0.13 0.055 260 / 0.42);
  --color-navy-07: oklch(0.13 0.055 260 / 0.07);
  --font-display: "Onest", system-ui, sans-serif;
  --font-label: "Azeret Mono", ui-monospace, monospace;
  --space-page: clamp(1.25rem, 4vw, 4.5rem);
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --content-max: 88rem;
  --radius-small: 0.25rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 5.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--font-display);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid var(--color-cyan);
  outline-offset: 0.25rem;
}

.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;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-inline: var(--space-page);
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white-20);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-ai {
  margin-left: 0.055em;
  color: var(--color-violet);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding-inline: 1.25rem;
  background: var(--color-violet-dark);
}

.menu-button {
  display: none;
  place-items: center;
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.65rem;
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white-55);
}

.menu-button > span[aria-hidden] {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: max(46rem, 100svh);
  padding: calc(var(--header-height) + clamp(3.5rem, 7vw, 7rem)) var(--space-page) 5.25rem;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-deep);
}

.hero-visual,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-visual {
  left: 38%;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.hero-network {
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.network-orbits circle,
.network-links path {
  fill: none;
  stroke: var(--color-line-on-dark);
  stroke-width: 1;
}

.network-links path {
  stroke-width: 1.4;
}

.network-signals path {
  fill: none;
  stroke: var(--color-cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 0.12 0.88;
  animation: network-signal 4.2s linear infinite;
}

.network-signals path:nth-child(2) {
  stroke: var(--color-violet);
  animation-delay: -1.4s;
}

.network-signals path:nth-child(3) {
  animation-delay: -2.8s;
}

.network-nodes circle {
  fill: var(--color-navy-deep);
  stroke: var(--color-cyan);
  stroke-width: 3;
}

.network-core circle:first-child {
  fill: var(--color-violet);
  opacity: 0.18;
  animation: network-core 3.6s var(--ease-out) infinite alternate;
}

.network-core circle:last-child {
  fill: var(--color-cyan);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, var(--color-navy-98) 0%, var(--color-navy-82) 42%, var(--color-navy-07) 76%);
}

.hero-content {
  align-self: center;
  width: min(42rem, 55vw);
  animation: hero-content-in 750ms var(--ease-out) both;
}

.section-heading > p,
.method-copy > p:first-child {
  margin: 0 0 1.5rem;
  color: var(--color-label-on-light);
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 0.8vw, 0.8rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero-kicker {
  margin: 0 0 1.5rem;
  color: var(--color-cyan);
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 0.8vw, 0.8rem);
  font-weight: 600;
  line-height: 1.5;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 strong {
  color: var(--color-violet);
  font-weight: inherit;
}

.hero-summary {
  max-width: 42ch;
  margin: 2rem 0 0;
  color: var(--color-text-on-dark);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: transform 220ms var(--ease-out), background-color 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-0.18rem);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: var(--color-white);
  background: var(--color-violet-dark);
}

.button-primary:hover {
  background: var(--color-violet);
  color: var(--color-navy-deep);
}

.button-secondary {
  color: var(--color-white);
  border-color: var(--color-white-55);
}

.button-secondary:hover {
  color: var(--color-navy-deep);
  background: var(--color-white);
}

.hero-facts {
  position: absolute;
  inset: auto var(--space-page) 0;
  display: flex;
  justify-content: flex-start;
  gap: clamp(1.5rem, 5vw, 5rem);
  min-height: 3.5rem;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  border-top: 1px solid var(--color-white-20);
}

.hero-facts li {
  color: var(--color-trust-text);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.hero-facts li:first-child::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.55rem;
  background: var(--color-cyan);
  border-radius: 50%;
}

.trust {
  display: grid;
  grid-template-columns: minmax(17rem, 1.2fr) 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 1.7rem var(--space-page);
  color: var(--color-white);
  background: var(--color-blue);
}

.trust p {
  max-width: 45ch;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.trust ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust li {
  display: grid;
  align-items: center;
  min-height: 2.75rem;
  padding-left: 1.25rem;
  color: var(--color-text-on-dark);
  font-family: var(--font-label);
  font-size: 0.75rem;
  border-left: 1px solid var(--color-white-20);
}

.section-shell {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--space-section) var(--space-page);
}

.about {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.section-heading h2,
.solutions-heading h2,
.method h2,
.team h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-copy {
  max-width: 45rem;
}

.about-copy p {
  max-width: 66ch;
  margin: 0 0 1.4rem;
  color: var(--color-muted);
  text-wrap: pretty;
}

.about-copy .lead {
  color: var(--color-ink);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.solutions {
  max-width: none;
  color: var(--color-ink);
  background: var(--color-surface);
}

.solutions > * {
  max-width: calc(var(--content-max) - (2 * var(--space-page)));
  margin-inline: auto;
}

.solutions-heading {
  display: grid;
  grid-template-columns: minmax(20rem, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.solutions-heading h2 {
  max-width: 13ch;
}

.solutions-heading p {
  max-width: 48ch;
  margin: 0;
  color: var(--color-muted);
}

.solution-list {
  margin-block: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--color-line);
}

.solution-list li {
  display: grid;
  grid-template-columns: minmax(6.5rem, 0.45fr) minmax(14rem, 0.95fr) minmax(18rem, 1.2fr) minmax(12rem, 0.7fr);
  gap: clamp(1.5rem, 3.5vw, 4rem);
  align-items: center;
  min-height: 10rem;
  border-top: 1px solid var(--color-line);
}

.solution-list li > span {
  color: var(--color-label-on-light);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.solution-list small {
  color: var(--color-label-on-light);
  font-family: var(--font-label);
  font-size: 0.75rem;
  line-height: 1.5;
}

.solution-list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.solution-list p {
  max-width: 48ch;
  margin: 0;
  color: var(--color-muted);
}

.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 38rem;
}

.method-visual,
.method-copy {
  padding: var(--space-section) var(--space-page);
}

.method-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy);
}

.method-statement {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.1vw, 4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.method-statement strong {
  display: block;
  color: var(--color-violet);
  font-weight: inherit;
}

.operation-flow {
  display: grid;
  gap: 0;
  width: 86%;
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: 0;
  list-style: none;
}

.operation-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-height: 6.5rem;
  padding: 1.15rem 0.25rem 1rem;
  border-top: 1px solid var(--color-line-on-dark);
}

.operation-flow li:nth-child(2) {
  margin-left: 7%;
}

.operation-flow li:nth-child(3) {
  margin-left: 14%;
  border-top-color: var(--color-violet);
}

.operation-flow li::after {
  content: "";
  position: absolute;
  inset: -1px auto auto 0;
  width: 34%;
  height: 1px;
  background: var(--color-cyan);
  transform: scaleX(0.12);
  transform-origin: left;
  animation: operation-signal 3.4s var(--ease-out) infinite;
}

.operation-flow li:nth-child(2)::after {
  animation-delay: 0.7s;
}

.operation-flow li:nth-child(3)::after {
  background: var(--color-violet);
  animation-delay: 1.4s;
}

.operation-flow li > span {
  padding-top: 0.18rem;
  color: var(--color-cyan);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.operation-flow li:last-child > span {
  color: var(--color-violet);
}

.operation-flow strong {
  display: block;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.2;
}

.operation-flow p {
  margin: 0.55rem 0 0;
  color: var(--color-text-subtle);
  font-family: var(--font-label);
  font-size: clamp(0.75rem, 0.8vw, 0.8rem);
  line-height: 1.55;
}

.method-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
}

.method-copy > p:not(:first-child) {
  max-width: 55ch;
  margin: 2rem 0 0;
  color: var(--color-muted);
}

.method-copy ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.method-copy li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.method-copy li:not(:last-child)::after {
  content: "→";
  color: var(--color-violet-dark);
}

.team {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  max-width: none;
  color: var(--color-white);
  background: var(--color-navy);
}

.team > *:first-child {
  margin-left: max(0px, calc((100vw - var(--content-max)) / 2));
}

.team > *:last-child {
  margin-right: max(0px, calc((100vw - var(--content-max)) / 2));
}

.team-intro p {
  max-width: 44ch;
  margin: 1.5rem 0 0;
  color: var(--color-text-on-dark);
}

.people {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--color-line-on-dark);
}

.people li {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 7rem;
  border-top: 1px solid var(--color-line-on-dark);
}

.person-photo {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.person-copy {
  display: grid;
  gap: 0.25rem;
}

.people strong {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.person-role {
  color: var(--color-text-subtle);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.person-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding-inline: 0.25rem;
  color: var(--color-violet);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.linkedin-icon {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
}

.person-link:hover {
  color: var(--color-cyan);
  transform: translateY(-2px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  max-width: none;
  color: var(--color-white);
  background: var(--color-blue);
}

.contact > *:first-child {
  margin-left: max(0px, calc((100vw - var(--content-max)) / 2));
}

.contact > *:last-child {
  margin-right: max(0px, calc((100vw - var(--content-max)) / 2));
}

.contact-intro p {
  max-width: 42ch;
  margin: 1.5rem 0;
  color: var(--color-text-on-dark);
}

.contact-intro a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--color-white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--color-text-on-dark);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0;
  color: var(--color-white);
  caret-color: var(--color-cyan);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-white-55);
  border-radius: 0;
}

.field-group textarea {
  min-height: 7rem;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-bottom-color: var(--color-cyan);
  outline: 0;
}

.consent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  color: var(--color-text-on-dark);
  font-size: 0.8rem;
}

.consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  accent-color: var(--color-cyan);
}

.submit-button {
  color: var(--color-blue);
  background: var(--color-white);
}

.submit-button:hover {
  color: var(--color-navy-deep);
  background: var(--color-cyan);
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  color: var(--color-white);
  font-size: 0.85rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem var(--space-page);
  color: var(--color-text-subtle);
  background: var(--color-navy-deep);
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
}

.site-footer p:last-child {
  text-align: right;
}

@keyframes network-signal {
  to {
    stroke-dashoffset: -1;
  }
}

@keyframes network-core {
  to {
    transform: scale(1.12);
    transform-origin: 590px 420px;
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0.35;
    transform: translateY(1.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes operation-signal {
  0%,
  18% {
    transform: scaleX(0.12);
    opacity: 0.45;
  }

  52% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

@media (max-width: 850px) {
  .site-header {
    min-height: 4.5rem;
  }

  .menu-button {
    display: grid;
    gap: 0.4rem;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: grid;
    gap: 0;
    padding: 0.75rem var(--space-page) 1.25rem;
    background: var(--color-navy-deep);
    border-top: 1px solid var(--color-white-20);
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav a {
    min-height: 3rem;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    width: max-content;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 46rem;
    padding-top: 8.5rem;
  }

  .hero-visual {
    left: 20%;
    opacity: 0.72;
  }

  .hero-content {
    width: min(34rem, 75vw);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 11vw, 5.6rem);
  }

  .hero-facts {
    gap: 1.5rem;
    flex-wrap: wrap;
    overflow: visible;
  }

  .hero-facts li {
    flex: 0 0 auto;
  }

  .trust,
  .about,
  .team,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .team > *:first-child,
  .team > *:last-child {
    margin: 0;
  }

  .trust ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .solutions-heading {
    grid-template-columns: 1fr;
  }

  .solution-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding-block: 2rem;
  }

  .solution-list h3,
  .solution-list p,
  .solution-list small {
    grid-column: 1;
  }

  .method {
    grid-template-columns: 1fr;
  }

  .method-visual {
    min-height: 30rem;
  }

  .operation-flow {
    width: 92%;
  }

  .operation-flow li:nth-child(2) {
    margin-left: 4%;
  }

  .operation-flow li:nth-child(3) {
    margin-left: 8%;
  }

  .contact > *:first-child,
  .contact > *:last-child {
    margin: 0;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .people li {
    grid-template-columns: 4rem 1fr;
  }

  .person-photo {
    width: 4rem;
    height: 4rem;
  }

  .person-link {
    grid-column: 2;
    width: max-content;
  }

  .hero {
    flex-direction: column;
    min-height: 49rem;
    padding-bottom: 0;
  }

  .hero-visual {
    left: 0;
    opacity: 0.52;
  }

  .hero-shade {
    background: linear-gradient(90deg, var(--color-navy-98) 0%, var(--color-navy-82) 68%, var(--color-navy-42) 100%);
  }

  .hero-content {
    width: 100%;
    margin-block: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 17vw, 4.8rem);
  }

  .hero-summary {
    max-width: 31ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    position: static;
    inset: auto;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    overflow: visible;
  }

  .trust ul {
    grid-template-columns: 1fr;
  }

  .trust li {
    padding: 0.65rem 0 0;
    border-top: 1px solid var(--color-white-20);
    border-left: 0;
  }

  .section-heading h2,
  .solutions-heading h2,
  .method h2,
  .team h2,
  .contact h2 {
    font-size: clamp(1.8rem, 11vw, 3.5rem);
  }

  .method-statement {
    max-width: 13ch;
    font-size: clamp(1.5rem, 11vw, 3.25rem);
  }

  .operation-flow {
    width: 100%;
    margin-top: 3.5rem;
  }

  .operation-flow li:nth-child(n) {
    margin-left: 0;
  }

  .operation-flow li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .people li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }

  .people span {
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .people li {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 1rem;
  }

  .person-link {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .network-signals path,
  .network-core circle {
    animation: none !important;
  }
}
