:root {
  --navy: #071d55;
  --ink: #0b1739;
  --teal: #087f7d;
  --paper: #f7f8f6;
  --muted: #59657b;
  --line: #dce2e4;
  --soft: #eaf8f7;
  --purple: #5b38d1;
  --purple-soft: #f0edff;
  --max: 1160px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(var(--max), calc(100% - 56px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 246, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links {
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-actions {
  margin-left: 4px;
}
.btn.secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}
.brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  min-height: 82px;
}
.brand img {
  width: 82px;
  height: auto;
  object-fit: contain;
  display: block;
}
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 9px;
  background: var(--teal);
  color: #fff;
  font-weight: 750;
}
.crumb {
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted);
}
.crumb a {
  color: var(--teal);
}
.hero {
  padding: 70px 0 82px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 800;
}
h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(52px, 6vw, 78px);
  margin: 17px 0 24px;
}
h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  margin: 12px 0 18px;
}
.lead {
  font-size: 20px;
  color: #45516a;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(7, 29, 85, 0.07);
}
.workflow-demo {
  overflow: hidden;
}
.workflow-demo__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workflow-demo__live {
  color: #087f5b;
}
.workflow-demo__request {
  margin: 20px 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--purple-soft);
  color: var(--navy);
}
.workflow-demo__request span {
  display: block;
  margin-bottom: 5px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.workflow-steps {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.workflow-step {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.workflow-step__number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}
.workflow-step strong,
.workflow-step small {
  display: block;
}
.workflow-step small {
  color: var(--muted);
}
.workflow-step__owner {
  border-radius: 999px;
  padding: 4px 8px;
  background: #eef2f4;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.workflow-step[data-owner="human"] .workflow-step__owner {
  background: #fff1df;
  color: #8a5112;
}
.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.system-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
.human-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.human-band article {
  border-radius: 16px;
  padding: 26px;
}
.human-band article:first-child {
  background: var(--navy);
  color: #fff;
}
.human-band article:last-child {
  background: var(--purple-soft);
}
.human-band p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.8;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 750;
}
.faq details p {
  color: var(--muted);
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}
.panel-row {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  margin-top: 10px;
}
.panel-row strong,
.panel-row span {
  display: block;
}
.panel-row span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.panel-row.accent {
  background: var(--soft);
  border-color: #a7dcd9;
}
.section {
  padding: 86px 0;
}
.section.alt {
  background: #fff;
}
.intro {
  max-width: 760px;
  margin-bottom: 38px;
}
.intro p {
  color: var(--muted);
  font-size: 18px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 24px;
}
.alt .card {
  background: var(--paper);
}
.card h3 {
  font-size: 19px;
  margin: 10px 0;
}
.card p,
.card li {
  font-size: 14px;
  color: var(--muted);
}
.card ul {
  padding-left: 20px;
}
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.flow article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 21px;
}
.flow b {
  color: var(--teal);
  font-size: 12px;
}
.flow h3 {
  font-size: 17px;
}
.flow p {
  font-size: 13px;
  color: var(--muted);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.list {
  list-style: none;
  padding: 0;
}
.list li {
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.list strong {
  display: block;
}
.list span {
  font-size: 14px;
  color: var(--muted);
}
.cta {
  margin: 80px auto;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  font-size: 42px;
  margin: 0 0 10px;
}
.cta p {
  color: #cbd3e3;
  margin: 0;
}
.cta .btn {
  background: #fff;
  color: var(--navy);
}
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 850px) {
  .links a:not(.btn) {
    display: none;
  }
  .hero,
  .split,
  .human-band {
    grid-template-columns: 1fr;
  }
  .flow,
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    gap: 35px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .brand img {
    width: 64px;
  }
  .hero {
    padding: 52px 0 62px;
  }
  h1 {
    font-size: 46px;
  }
  .lead {
    font-size: 17px;
  }
  .nav-actions .secondary {
    display: none;
  }
  .workflow-step {
    grid-template-columns: 28px 1fr;
  }
  .workflow-step__owner {
    grid-column: 2;
    justify-self: start;
  }
  .flow,
  .grid3 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 66px 0;
  }
  .cta {
    display: block;
    padding: 32px 24px;
  }
  .cta .btn {
    margin-top: 22px;
    width: 100%;
  }
}
