:root {
  color-scheme: light;
  --ink: #17201f;
  --muted: #52605e;
  --surface: #ffffff;
  --surface-soft: #f2f5f4;
  --line: #d6dddb;
  --teal: #087f73;
  --teal-dark: #075f58;
  --saffron: #e7a72f;
  --content: 1180px;
  --header-height: 72px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.header-inner,
.section-inner,
.hero-inner {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-mark {
  width: 12px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--teal) 0 68%, var(--saffron) 68% 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 150ms ease;
}

.site-nav a:hover {
  color: var(--teal-dark);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
}

.header-command {
  flex: 0 0 auto;
  color: var(--surface);
  background: var(--teal-dark);
}

.header-command:hover {
  background: var(--teal);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 580px;
  max-height: 760px;
  height: calc(100svh - var(--header-height) - 116px);
  overflow: hidden;
  color: var(--surface);
  background: #273532;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 5;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 27, 25, 0.9) 0%, rgba(13, 27, 25, 0.79) 38%, rgba(13, 27, 25, 0.34) 68%, rgba(13, 27, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 22, 20, 0.55) 0%, transparent 45%);
}

.hero-inner {
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  padding-block: 48px;
}

.hero-copy {
  width: min(100%, 720px);
}

.hero h1 {
  margin-bottom: 17px;
  font-size: 58px;
  font-weight: 790;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 17px;
  font-size: 34px;
  font-weight: 690;
  line-height: 1.18;
}

.hero-support {
  max-width: 660px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
}

.hero-accent {
  margin-bottom: 24px;
  padding-left: 13px;
  border-left: 3px solid var(--saffron);
  color: #ffffff;
  font-size: 15px;
  font-weight: 680;
}

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

.button-primary {
  color: var(--ink);
  background: var(--saffron);
}

.button-primary:hover {
  background: #f1bd56;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  color: var(--surface);
  background: rgba(15, 38, 34, 0.38);
}

.button-secondary:hover {
  border-color: var(--surface);
  background: rgba(15, 38, 34, 0.68);
}

.section-band {
  width: 100%;
  padding-block: 90px;
}

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

.section-heading {
  max-width: 590px;
  margin-bottom: 38px;
}

.section-heading-wide {
  max-width: 720px;
}

.section-heading h2,
.contact-inner h2 {
  margin-bottom: 13px;
  font-size: 38px;
  font-weight: 770;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.capability-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(280px, 1.25fr);
  align-items: baseline;
  gap: 42px;
  min-height: 88px;
  padding: 24px 22px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background-color 150ms ease, transform 150ms ease;
}

.capability:hover {
  background: var(--surface-soft);
  transform: translateX(3px);
}

.capability h3,
.capability p {
  margin-bottom: 0;
}

.capability h3 {
  font-size: 19px;
  font-weight: 730;
}

.capability p {
  color: var(--muted);
}

.workflow-section {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-step {
  position: relative;
  min-height: 148px;
  padding: 68px 28px 20px 0;
  border-top: 2px solid var(--teal);
  font-size: 17px;
  font-weight: 720;
  counter-increment: workflow;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  transform: rotate(45deg);
}

.workflow-step::before {
  content: "0" counter(workflow);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 820;
}

.contact-section {
  width: 100%;
  padding-block: 76px;
  color: var(--surface);
  background: var(--teal-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
}

.contact-inner > div {
  max-width: 700px;
}

.contact-inner h2 {
  color: var(--surface);
}

.contact-inner p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.button-contact {
  min-height: 48px;
  color: var(--ink);
  background: var(--surface);
}

.button-contact:hover {
  background: #e9efed;
}

.site-footer {
  width: 100%;
  padding-block: 22px;
  color: #cbd5d2;
  background: #17201f;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(100% - 40px, var(--content));
  }

  .header-inner {
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .header-command {
    font-size: 13px;
  }

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

  .hero-lead {
    max-width: 650px;
    font-size: 31px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 112px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 56px 56px;
    column-gap: 16px;
    row-gap: 0;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 26px;
    margin: 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 580px;
    height: calc(100svh - var(--header-height) - 116px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 27, 25, 0.92) 0%, rgba(13, 27, 25, 0.78) 62%, rgba(13, 27, 25, 0.34) 100%),
      linear-gradient(0deg, rgba(8, 22, 20, 0.58) 0%, transparent 50%);
  }

  .hero-copy {
    width: min(100%, 650px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 29px;
  }

  .section-band {
    padding-block: 72px;
  }

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

  .workflow-step {
    min-height: 72px;
    padding: 23px 16px 20px 62px;
    border-top: 0;
    border-left: 2px solid var(--teal);
  }

  .workflow-step::before {
    top: 21px;
    left: 18px;
  }

  .workflow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 5px;
    left: -6px;
    transform: rotate(135deg);
  }

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

  .button-contact {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(100% - 32px, var(--content));
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark {
    width: 10px;
    height: 25px;
  }

  .header-command {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 10px;
  }

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

  .hero {
    min-height: 600px;
    max-height: 720px;
    height: calc(100svh - var(--header-height) - 83px);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-inner {
    align-items: center;
    padding-block: 34px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .hero-lead {
    margin-bottom: 13px;
    font-size: 27px;
  }

  .hero-support {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-accent {
    margin-bottom: 19px;
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
  }

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

  .section-band {
    padding-block: 58px;
  }

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

  .section-heading h2,
  .contact-inner h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .capability {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 20px 4px;
  }

  .capability:hover {
    transform: none;
  }

  .capability h3 {
    font-size: 18px;
  }

  .contact-section {
    padding-block: 58px;
  }

  .button-contact {
    width: 100%;
  }

  .site-footer {
    line-height: 1.5;
  }
}

@media (max-width: 370px) {
  .header-inner,
  .section-inner,
  .hero-inner {
    width: min(100% - 24px, var(--content));
  }

  .brand {
    font-size: 14px;
  }

  .header-command {
    padding-inline: 8px;
    font-size: 11px;
  }

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

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead {
    font-size: 25px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0s !important;
  }

  .button:hover,
  .capability:hover {
    transform: none;
  }
}

@media print {
  :root {
    --ink: #111111;
    --muted: #333333;
  }

  .site-header,
  .hero-media,
  .hero-overlay,
  .hero-actions .button-secondary {
    display: none;
  }

  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    color: var(--ink);
    background: var(--surface);
  }

  .hero-inner {
    min-height: 0;
    padding-block: 30px;
  }

  .hero-support,
  .hero-accent {
    color: var(--ink);
  }

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

  .section-band,
  .contact-section {
    padding-block: 34px;
    color: var(--ink);
    background: var(--surface);
  }

  .contact-inner h2,
  .contact-inner p:last-child {
    color: var(--ink);
  }

  .capability:hover {
    background: transparent;
    transform: none;
  }

  .site-footer {
    color: var(--ink);
    background: var(--surface);
  }
}
