:root {
  --ink: #172126;
  --muted: #637078;
  --green: #0e765e;
  --green-dark: #0d4f43;
  --mint: #dff3ec;
  --paper: #ffffff;
  --soft: #eef4f1;
  --blue-soft: #e9f0f7;
  --line: #d5dfdb;
  --yellow: #f0be35;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

h1 {
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
}

h1 span {
  display: block;
  margin-top: 12px;
  font-size: 52px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.18;
}

.site-header {
  min-height: 76px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
.text-link:hover {
  color: var(--green);
}

.site-header > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-dark);
  border-radius: 6px;
  color: #fff;
  background: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

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

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 14px;
}

.text-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 590px;
  height: calc(100svh - 132px);
  max-height: 700px;
  overflow: hidden;
  background: var(--soft);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("/assets/hero-people.webp?v=20260721");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 61%;
  background: rgba(238, 244, 241, 0.97);
  border-right: 1px solid rgba(213, 223, 219, 0.86);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 0 58px;
}

.hero-content > * {
  width: min(610px, 52%);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: #46545a;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-proof {
  margin: 26px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.signal-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-inner p {
  margin: 0;
  padding: 25px 28px;
  border-left: 1px solid var(--line);
}

.signal-inner p:last-child {
  border-right: 1px solid var(--line);
}

.signal-inner strong,
.signal-inner span {
  display: block;
}

.signal-inner strong {
  color: var(--ink);
  font-size: 15px;
}

.signal-inner span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

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

.value-section,
.full-flow-section {
  padding: 112px 0 124px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  margin-top: 8px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

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

.value-grid article {
  min-height: 280px;
  padding: 28px 30px 28px 0;
  border-right: 1px solid var(--line);
}

.value-grid article:not(:first-child) {
  padding-left: 30px;
}

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

.value-mark {
  width: 36px;
  height: 36px;
  margin-bottom: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.value-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.ai-band {
  padding: 110px 0;
  color: #fff;
  background: var(--green-dark);
}

.ai-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 94px;
  align-items: start;
}

.ai-band h2,
.ai-band strong {
  color: #fff;
}

.ai-band .eyebrow {
  color: var(--yellow);
}

.ai-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: var(--yellow);
}

.ai-capabilities {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.ai-capabilities p {
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.ai-capabilities span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.compact-heading {
  grid-template-columns: 0.5fr 1.5fr;
}

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

.flow-groups article {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.flow-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-heading span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.flow-heading h3 {
  margin: 0;
}

.flow-groups article > p {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
}

.product-proof-band {
  padding: 110px 0;
  background: var(--blue-soft);
}

.product-proof {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.product-proof figure {
  margin-bottom: 0;
}

.product-proof img {
  width: 100%;
  border: 1px solid #bdcbd5;
  box-shadow: 0 20px 50px rgba(23, 33, 38, 0.16);
}

.product-proof figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.security-band {
  padding: 110px 0;
  color: #fff;
  background: #172126;
}

.security-band h2,
.security-band strong {
  color: #fff;
}

.security-band .eyebrow {
  color: #92d5bf;
}

.security-band p {
  color: rgba(255, 255, 255, 0.7);
}

.security-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.security-list {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.security-list p {
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.security-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.final-cta {
  padding: 116px 0 126px;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 28px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-contact a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  nav {
    gap: 18px;
    font-size: 13px;
  }

  h1 {
    font-size: 62px;
  }

  h1 span {
    font-size: 44px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 660px;
    height: calc(100svh - 112px);
    max-height: 760px;
  }

  .hero-image {
    top: 59%;
    background-position: 72% center;
    background-size: cover;
  }

  .hero-shade {
    width: 100%;
    height: 59%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 50px;
  }

  .hero-content > * {
    width: min(680px, 100%);
  }

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

  .signal-inner p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .section-heading.compact-heading,
  .ai-inner,
  .product-proof,
  .security-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .value-grid article,
  .value-grid article:not(:first-child) {
    min-height: 210px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-mark {
    margin-bottom: 30px;
  }

  .ai-inner,
  .product-proof,
  .security-inner {
    gap: 52px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-content,
  .signal-inner,
  .section,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 150px);
    max-height: 720px;
  }

  .hero-shade {
    height: 66%;
  }

  .hero-image {
    top: 66%;
    background-position: 74% center;
    background-size: cover;
  }

  .hero-content {
    padding-top: 36px;
  }

  h1 {
    font-size: 48px;
  }

  h1 span {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .final-cta-actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    margin-top: 20px;
  }

  .signal-inner,
  .flow-groups {
    grid-template-columns: 1fr;
  }

  .signal-inner p,
  .signal-inner p:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .value-section,
  .full-flow-section,
  .final-cta {
    padding-top: 82px;
    padding-bottom: 90px;
  }

  .ai-band,
  .product-proof-band,
  .security-band {
    padding: 82px 0;
  }

  .ai-capabilities p,
  .security-list p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .flow-groups article {
    min-height: 290px;
    padding: 27px;
  }

  .footer-inner {
    min-height: 140px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
