@font-face {
  font-family: Bricolage;
  src: url("/assets/bricolage-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("/assets/plex-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --purple: #3404cc;
  --ink: #202824;
  --muted: #5e6962;
  --paper: #f7f9f6;
  --white: #fff;
  --rule: #dbe2db;
  --mint: #e5eee7;
  --green: #35664e;
  --lavender: #eee9fc;
  --display: Bricolage, Arial, sans-serif;
  --body: Plex, Arial, sans-serif;
  --header: 80px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  border: 0;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p {
  margin: 0 0 20px;
  text-wrap: pretty;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 550;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: 76px;
  font-variation-settings: "opsz" 72;
}
h2 {
  font-size: 50px;
  font-variation-settings: "opsz" 48;
}
h3 {
  font-size: 23px;
  font-weight: 600;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
b,
strong {
  font-weight: 600;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #d9cef8;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid #9d7ee8;
  outline-offset: 5px;
}
section[id],
article[id] {
  scroll-margin-top: 100px;
}
.wrap {
  width: min(1248px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding: 100px 0;
}
.icon {
  width: 19px;
  height: 19px;
  flex: none;
  stroke-width: 1.6;
}
.atlas-mark {
  width: 31px;
  height: 31px;
  flex: none;
}
.fine {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.kicker {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 22px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 12px 20px;
  background: var(--white);
  z-index: 200;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 4px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid transparent;
}
.button:hover {
  background: #2802a3;
  transform: translateY(-2px);
}
.button.light {
  background: #fff;
  color: var(--purple);
}
.button.light:hover {
  background: var(--lavender);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link .icon {
  width: 17px;
  height: 17px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 4px;
}
.icon-button:hover {
  background: var(--mint);
}
.site-header {
  position: sticky;
  top: 0;
  height: var(--header);
  z-index: 60;
  background: rgba(247, 249, 246, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand .atlas-mark {
  color: var(--purple);
}
.brand span {
  font: 600 31px/1 var(--display);
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--purple);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: var(--white);
}
.header-cta:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  position: absolute;
  top: var(--header);
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 24px;
  border-bottom: 1px solid var(--rule);
  max-height: calc(100dvh - var(--header));
  overflow-y: auto;
}
.mobile-nav > a:not(.button) {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  font-size: 19px;
}
.mobile-nav .button {
  margin-top: 24px;
  width: 100%;
}
.hero {
  padding: 66px 0 48px;
  text-align: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 25px;
}
.mini-mark {
  color: var(--purple);
}
.mini-mark .atlas-mark {
  width: 17px;
  height: 17px;
}
.hero h1 {
  max-width: 1080px;
}
.hero-copy {
  font-size: 19px;
  line-height: 1.55;
  margin: 25px 0 26px;
  color: var(--muted);
  max-width: 660px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.offer-line {
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 0;
}
.offer-line b {
  color: var(--ink);
}
.offer-line > span {
  padding: 0 10px;
  color: #aeb7ae;
}
.workflow-section {
  padding: 0 0 58px;
}
.workflow-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.segmented {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--rule);
  border-radius: 5px;
  background: #edf1eb;
}
.segmented button {
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 3px;
  min-height: 40px;
}
.segmented button[aria-selected="true"] {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 3px #20302714;
}
.segmented button:hover {
  color: var(--purple);
}
.diagram-caption {
  font-size: 12px;
  color: var(--muted);
}
.workflow-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 10px 0 30px;
  min-height: 70px;
}
.workflow-intro h2 {
  font-size: 21px;
  max-width: 550px;
}
.workflow-intro p {
  font-size: 13px;
  color: var(--muted);
  max-width: 390px;
  margin: 0;
}
.pipeline-flow {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.08fr 1.06fr 1fr;
  isolation: isolate;
  position: relative;
}
.pipeline-flow:before {
  content: "";
  position: absolute;
  top: 100px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: #b3c4b3;
  z-index: -1;
}
.flow-unit {
  position: relative;
  min-width: 0;
  padding: 0 15px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-unit:not(:first-child):before {
  content: "";
  position: absolute;
  top: 96px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #98aa99;
  border-right: 1px solid #98aa99;
  transform: rotate(45deg);
}
.flow-order {
  font-size: 11px;
  color: var(--muted);
  display: block;
  white-space: nowrap;
  padding: 2px 0 24px;
}
.flow-unit h3 {
  font-size: 19px;
  line-height: 1.2;
  margin: 20px 0 9px;
  white-space: nowrap;
}
.flow-unit p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.account-stack {
  display: grid;
  grid-template-columns: repeat(4, 18px);
  grid-template-rows: repeat(3, 21px);
  gap: 6px;
  padding: 15px 17px;
  background: var(--paper);
  height: 107px;
  align-content: center;
}
.account-stack i {
  display: block;
  border: 1px solid #adbbaf;
  border-radius: 2px;
  background: var(--white);
}
.account-stack i:nth-child(4n),
.account-stack i:nth-child(7) {
  opacity: 0.22;
  transform: translateY(5px);
}
.account-stack i:nth-child(1),
.account-stack i:nth-child(5),
.account-stack i:nth-child(9) {
  border-color: #795bbd;
  background: #f0e9ff;
}
.suppression-stamp {
  display: flex;
  gap: 6px;
  font-size: 11px;
  align-items: center;
  color: var(--green);
  margin-top: 16px;
}
.suppression-stamp .icon {
  width: 15px;
  height: 15px;
}
.data-rings {
  width: 107px;
  height: 107px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  border: 1px solid var(--rule);
  position: relative;
}
.data-rings:before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid var(--rule);
  border-radius: 50%;
}
.data-rings .icon {
  width: 34px;
  height: 34px;
  color: var(--green);
}
.data-output {
  margin-top: 17px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.data-output .icon {
  width: 15px;
  height: 15px;
}
.flow-call {
  background: var(--purple);
  border-radius: 6px;
  color: #fff;
  box-shadow: 0 18px 30px -23px #26078699;
  padding-top: 20px;
  margin-top: -20px;
}
.flow-call .flow-order {
  color: #d0c3ff;
}
.call-symbol {
  height: 107px;
  width: 107px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid #8665ec;
  border-radius: 50%;
}
.call-symbol > .icon {
  width: 41px;
  height: 41px;
  stroke-width: 1.4;
}
.call-wave {
  position: absolute;
  inset: 12px;
  border: 1px solid #8665ec;
  border-radius: 50%;
}
.flow-call p {
  color: #ded2ff;
}
.flow-call h3 {
  font-size: 27px;
}
.atlas-lane {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  margin-top: 16px;
  color: #ded2ff;
}
.atlas-lane .atlas-mark {
  width: 13px;
  height: 13px;
}
.qualification-icon {
  width: 86px;
  height: 86px;
  margin: 10px 0 11px;
  background: var(--mint);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid #b9cdbd;
}
.qualification-icon > .icon {
  width: 33px;
  height: 33px;
}
.qualification-checks {
  list-style: none;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.qualification-checks li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qualification-checks .icon {
  color: var(--green);
  width: 12px;
  height: 12px;
}
.calendar-art {
  width: 95px;
  height: 91px;
  margin: 8px 0;
  background: var(--white);
  border: 1px solid #a9bcae;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 12px 12px;
  gap: 7px;
  position: relative;
  box-shadow: 5px 5px 0 var(--mint);
}
.calendar-art > div {
  position: absolute;
  height: 23px;
  border-bottom: 1px solid #ced9cc;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 19px;
}
.calendar-art i {
  position: relative;
  top: -5px;
  width: 3px;
  height: 10px;
  background: #758979;
  border-radius: 2px;
}
.calendar-art > span {
  height: 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.calendar-art .calendar-filled {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.calendar-filled .icon {
  height: 12px;
  width: 12px;
}
.workflow-base {
  border-top: 1px solid var(--rule);
  margin-top: 20px;
  padding-top: 19px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.exclusion-row {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  color: var(--muted);
}
.exclusion-row > span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.exclusion-row .icon {
  width: 14px;
  height: 14px;
}
.exclusion-row ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.exclusion-row li {
  text-decoration: line-through;
  text-decoration-color: #aeb8aa;
}
.feedback-return {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
}
.feedback-return .icon {
  width: 13px;
  height: 13px;
}
.workflow-panel.mode-change .account-stack i {
  animation: account-pass 0.6s ease both;
}
.workflow-panel.mode-change .account-stack i:nth-child(2n) {
  animation-delay: 0.08s;
}
.workflow-panel.mode-change .call-wave {
  animation: call-pass 0.7s ease both;
}
@keyframes account-pass {
  0% {
    opacity: 0.15;
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes call-pass {
  0% {
    transform: scale(0.75);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.proof-band {
  background: var(--white);
  border-block: 1px solid var(--rule);
  padding: 27px 0;
  text-align: center;
}
.proof-band > .wrap > p:first-child {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}
.name-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.name-rail span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}
.proof-band .fine {
  margin: 22px 0 0;
  font-size: 11px;
}
.proof-band .text-link {
  font-size: 11px;
  margin-left: 8px;
}
.proof-band .icon {
  height: 13px;
  width: 13px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading .kicker {
  grid-column: 1/-1;
}
.section-heading > p:last-child {
  font-size: 18px;
  color: var(--muted);
  max-width: 485px;
  margin: 0;
}
.section-heading.center {
  display: block;
  text-align: center;
  max-width: 950px;
  margin-inline: auto;
}
.section-heading.center > p:last-child {
  max-width: 590px;
  margin: 24px auto 0;
}
.channel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}
.channel-map {
  display: grid;
  grid-template-columns: 1.2fr 45px 1fr;
  align-items: center;
  padding: 30px 0;
}
.channel-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.channel-inputs > span {
  padding: 14px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.channel-inputs .icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
}
.channel-inputs .channel-atlas {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  font-size: 18px;
  padding: 13px 12px;
}
.channel-atlas .atlas-mark {
  width: 23px;
  height: 23px;
}
.channel-atlas .icon {
  margin-left: auto;
  color: #fff;
}
.channel-bracket {
  height: 219px;
  margin-top: -2px;
  background: linear-gradient(var(--rule), var(--rule)) left 19px center/25px
    1px no-repeat;
  position: relative;
}
.channel-bracket:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  border: 1px solid var(--rule);
  border-left: 0;
  border-radius: 0 10px 10px 0;
}
.channel-output {
  text-align: center;
  padding: 26px 8px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #eaf0e7;
}
.channel-output > .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
  color: var(--green);
}
.channel-output b {
  display: block;
  font-size: 17px;
}
.channel-output span {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.use-cases article {
  position: relative;
  padding: 23px 0 23px 24px;
  border-bottom: 1px solid var(--rule);
}
.use-cases article:first-child {
  padding-top: 0;
}
.use-cases article:last-child {
  border: 0;
}
.use-cases h3 {
  font-size: 22px;
}
.use-cases p {
  font-size: 15px;
  color: var(--muted);
  margin: 10px 0 0;
}
.use-marker {
  position: absolute;
  left: 0;
  top: 32px;
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 1px;
}
.use-cases article:first-child .use-marker {
  top: 9px;
}
.systems-section {
  background: #202923;
  color: #f6f8f4;
}
.systems-heading {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 70px;
  align-items: end;
}
.systems-heading .kicker {
  color: #b2cfbe;
}
.systems-heading h2 {
  font-size: 46px;
}
.systems-heading > p {
  font-size: 17px;
  color: #b3c0b5;
  margin: 0;
  max-width: 350px;
}
.system-layers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 62px 0 44px;
}
.system-layers article {
  border-top: 1px solid #4b594d;
  padding: 26px 26px 0 0;
  position: relative;
}
.system-layers article:not(:last-child) {
  border-right: 1px solid #3c493e;
}
.system-layers article:not(:first-child) {
  padding-left: 26px;
}
.system-layers article:before {
  content: "";
  height: 7px;
  width: 7px;
  position: absolute;
  left: 0;
  top: -4px;
  background: #b6cfb8;
  border-radius: 50%;
}
.system-layers article:not(:first-child):before {
  left: 26px;
}
.layer-number {
  font-size: 12px;
  color: #aebcaf;
}
.system-layers h3 {
  font-size: 23px;
  margin: 20px 0 12px;
}
.system-layers p {
  color: #c8d2c8;
  font-size: 14px;
  min-height: 44px;
}
.system-layers ul {
  list-style: none;
  color: #aebcaf;
  font-size: 13px;
  line-height: 1.6;
}
.system-layers li {
  padding: 7px 0;
}
.systems-bottom {
  border-top: 1px solid #3c493e;
  padding-top: 27px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.systems-bottom p {
  font-size: 14px;
  margin: 0;
  color: #bdcabe;
}
.systems-bottom .text-link {
  color: #fff;
}
.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.method-lead > p:not(.kicker) {
  font-size: 17px;
  color: var(--muted);
  max-width: 430px;
  margin: 25px 0 30px;
}
.method-list {
  list-style: none;
}
.method-list > li {
  display: flex;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}
.method-list > li:first-child {
  padding-top: 0;
}
.method-list > li:last-child {
  border: 0;
}
.method-list > li > span {
  font-size: 13px;
  color: var(--green);
  padding-top: 4px;
}
.method-list h3 {
  font-size: 21px;
}
.method-list p {
  color: var(--muted);
  font-size: 15px;
  margin: 10px 0 0;
}
.proof-section {
  background: var(--white);
  border-block: 1px solid var(--rule);
}
.proof-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 46px;
}
.proof-source {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 22px;
  align-items: center;
}
.proof-number {
  font: 500 88px/1 var(--display);
  grid-row: span 2;
}
.proof-source p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.proof-source > span {
  font-size: 11px;
  color: var(--muted);
  align-self: start;
  margin-top: 8px;
}
.account-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.account-editorial > span {
  min-height: 98px;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid var(--rule);
}
.proof-disclosure {
  font-size: 12px;
  color: var(--muted);
  max-width: 840px;
  margin: 24px 0;
}
.all-accounts summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  padding: 17px 0;
  list-style: none;
}
.all-accounts summary > span {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--muted);
}
summary::-webkit-details-marker {
  display: none;
}
details[open] > summary .icon {
  transform: rotate(45deg);
}
summary .icon {
  transition: transform 0.2s;
}
.account-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
  padding: 25px 0;
  font-size: 13px;
  border-top: 1px solid var(--rule);
}
.selected-work {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  margin: 65px 0 30px;
  gap: 30px;
}
.selected-work > div > h3 {
  font-size: 25px;
}
.selected-work > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.work-teaser {
  position: relative;
  border-top: 2px solid var(--rule);
  padding: 23px 20px 30px 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.work-teaser > span {
  font-size: 12px;
  color: var(--muted);
}
.work-teaser h3 {
  font-size: 23px;
  margin: 14px 0 20px;
}
.work-teaser p {
  font-size: 14px;
  margin-top: auto;
  margin-bottom: 0;
}
.work-teaser p > b {
  display: block;
  font-size: 32px;
  font-family: var(--display);
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 3px;
}
.work-teaser > .icon {
  position: absolute;
  bottom: 30px;
  right: 2px;
}
.work-teaser:hover {
  border-color: var(--purple);
}
.engagement-section {
  background: #eef3ed;
}
.engagement-scopes {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-width: 1070px;
  margin: 50px auto 0;
  border-block: 1px solid #c8d5c7;
}
.engagement-scopes article {
  padding: 35px 48px 36px 0;
}
.engagement-scopes .main-scope {
  border-left: 1px solid #c8d5c7;
  padding-left: 58px;
  padding-right: 0;
}
.scope-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 28px;
}
.scope-label > span:last-child {
  color: #5a6b58;
}
.engagement-scopes h3 {
  font-size: 28px;
}
.scope-price {
  font: 500 58px/1 var(--display);
  margin: 26px 0;
}
.scope-price small {
  font: 400 14px/1.4 var(--body);
  display: block;
  color: var(--muted);
  margin-top: 13px;
}
.engagement-scopes article > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
}
.trial-scope .button {
  margin: 9px 0 20px;
}
.engagement-scopes article .fine {
  font-size: 12px;
  margin: 0;
}
.scope-inclusions {
  list-style: none;
  margin: 22px 0 25px;
  font-size: 14px;
  line-height: 1.5;
}
.scope-inclusions li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 11px;
}
.scope-inclusions .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--green);
}
.guarantee {
  max-width: 1070px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 210px;
  background: #dfeade;
  border-radius: 4px;
  padding: 27px 30px;
  gap: 36px;
}
.guarantee-copy {
  display: flex;
  gap: 19px;
}
.guarantee-copy > .icon {
  width: 26px;
  height: 26px;
  color: var(--green);
  margin-top: 1px;
}
.guarantee h3 {
  font-size: 23px;
  line-height: 1.25;
}
.guarantee p {
  font-size: 14px;
  color: #4d6252;
  margin: 11px 0 0;
}
.refund-example {
  border-left: 1px solid #bed0bb;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.refund-example > span {
  font-size: 11px;
  color: #526856;
}
.refund-example > b {
  font: 500 39px/1.2 var(--display);
  margin: 7px 0;
  color: #365942;
}
.terms-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 1030px;
  margin: 24px auto 0;
}
.operator-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 115px;
  align-items: start;
}
.operator-identity {
  padding: 6px 0 20px;
}
.brand-seal {
  width: 144px;
  height: 144px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 28px;
}
.operator-identity h3 {
  font-size: 24px;
}
.operator-identity > p {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 24px;
}
.operator-identity .text-link {
  font-size: 13px;
}
.operator-layout h2 {
  font-size: 42px;
}
.operator-layout > div:last-child > p:not(.kicker) {
  font-size: 16px;
  color: var(--muted);
  max-width: 650px;
}
.operator-layout .operator-statement {
  font-family: var(--display);
  font-size: 23px !important;
  line-height: 1.5;
  color: var(--ink) !important;
  margin: 28px 0 20px;
}
.career-proof {
  display: flex;
  gap: 65px;
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  margin: 30px 0 20px;
}
.career-proof > div {
  display: flex;
  flex-direction: column;
}
.career-proof b {
  font: 500 39px var(--display);
}
.career-proof span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.operator-layout .fine {
  font-size: 11px !important;
}
.questions-section {
  border-top: 1px solid var(--rule);
  background: var(--white);
}
.questions-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
}
.questions-layout > div:first-child > p:not(.kicker) {
  color: var(--muted);
  max-width: 320px;
  font-size: 16px;
  margin: 25px 0;
}
.faq-list details {
  border-top: 1px solid var(--rule);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-weight: 500;
  list-style: none;
  padding: 23px 0;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.4;
}
.faq-list details > p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 32px 24px 0;
  margin: 0;
}
.faq-list summary:hover {
  color: var(--purple);
}
.booking-section {
  background: var(--purple);
  color: #fff;
  padding: 85px 0;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 110px;
  align-items: center;
}
.booking-section .kicker {
  color: #cebef8;
}
.booking-section h2 {
  font-size: 56px;
}
.booking-copy {
  max-width: 555px;
  font-size: 17px;
  color: #d7cafa;
  margin: 26px 0 30px;
}
.booking-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.booking-actions > .text-link {
  color: #e3d9ff;
}
.booking-offer {
  font-size: 12px;
  margin: 22px 0 0;
  color: #d7cafa;
}
.booking-note {
  border-top: 1px solid #8060d8;
  border-bottom: 1px solid #8060d8;
  padding: 27px 0;
}
.note-label {
  font-size: 13px;
  color: #d7cafa;
}
.booking-note ol {
  padding-left: 19px;
  font-size: 16px;
  line-height: 2.1;
  margin: 20px 0 30px;
}
.operator-signoff {
  display: flex;
  gap: 16px;
  align-items: center;
}
.operator-signoff b {
  font-size: 15px;
  display: block;
}
.operator-signoff small {
  font-size: 12px;
  color: #d7cafa;
  display: block;
  margin-top: 4px;
}
.site-footer {
  padding: 65px 0 0;
  background: var(--paper);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.footer-top > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
}
.footer-links {
  display: flex;
  gap: 105px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  font-size: 14px;
}
.footer-links > div > span {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--purple);
}
.footer-links .icon {
  height: 13px;
  width: 13px;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-bottom .icon {
  width: 14px;
  height: 14px;
}
.page-hero {
  padding: 70px 0 64px;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 38px;
}
.breadcrumb a {
  text-decoration: none;
}
.page-hero h1 {
  font-size: 68px;
  max-width: 1050px;
}
.page-hero .lead {
  font-size: 21px;
  color: var(--muted);
  max-width: 690px;
  margin: 28px 0;
}
.page-hero .hero-actions {
  justify-content: start;
}
.page-deck {
  border-top: 1px solid var(--rule);
  padding: 24px 0;
  margin-top: 38px;
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: var(--muted);
}
.engineering-overview {
  padding: 55px 0;
  background: var(--mint);
}
.engineering-overview > .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.engineering-overview h2 {
  font-size: 32px;
}
.engineering-overview p {
  font-size: 16px;
  margin: 0;
  color: #4f6456;
}
.engineering-layer {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 35px;
}
.engineering-layer > .layer-number {
  font: 500 42px var(--display);
  color: #74846f;
}
.engineering-layer h2 {
  font-size: 34px;
  margin-bottom: 15px;
}
.engineering-layer h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.engineering-layer p {
  font-size: 16px;
  color: var(--muted);
}
.engineering-layer ul {
  padding-left: 17px;
  font-size: 15px;
}
.engineering-output {
  font-size: 13px !important;
  border-left: 3px solid var(--purple);
  padding-left: 16px;
  color: var(--ink) !important;
  margin-top: 23px;
}
.stack-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 65px;
}
.stack-table article {
  padding: 27px 0;
  border-top: 1px solid var(--rule);
}
.stack-table h3 {
  font-size: 24px;
}
.stack-table p {
  color: var(--muted);
  font-size: 16px;
  margin: 14px 0;
}
.stack-table small {
  font-size: 12px;
  color: var(--green);
}
.build-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.build-examples article {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.build-examples h3 {
  font-size: 24px;
}
.build-examples p {
  font-size: 16px;
  color: var(--muted);
  margin: 18px 0;
}
.scope-distinction {
  background: var(--mint);
  padding: 38px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.scope-distinction h3 {
  font-size: 24px;
  margin-bottom: 18px;
}
.scope-distinction p {
  font-size: 16px;
  color: var(--muted);
}
.work-index {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-top: 35px;
}
.work-index a {
  font-size: 14px;
  color: var(--muted);
}
.case-study {
  padding: 65px 0;
  border-top: 1px solid var(--rule);
}
.case-top {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.case-top h2 {
  font-size: 42px;
}
.case-top > p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  align-self: end;
}
.case-metrics {
  display: flex;
  gap: 60px;
  margin: 38px 0;
  padding: 27px 0;
  background: var(--mint);
}
.case-metrics > div {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.case-metrics b {
  font: 500 38px var(--display);
  color: var(--green);
}
.case-metrics span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.case-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.case-detail h3 {
  font-size: 21px;
  margin-bottom: 15px;
}
.case-detail p {
  font-size: 16px;
  color: var(--muted);
}
.case-study .fine {
  max-width: 820px;
  font-size: 12px;
}
.tools-link-band {
  padding: 35px 0;
  border-top: 1px solid var(--rule);
}
.tools-link-band > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.tools-link-band p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.not-found {
  min-height: 60vh;
  padding: 100px 0;
}
.not-found h1 {
  font-size: 65px;
  max-width: 820px;
}
.not-found p {
  color: var(--muted);
  margin: 25px 0;
}
@media (min-width: 1600px) {
  .wrap {
    width: min(1320px, calc(100% - 160px));
  }
  .hero {
    padding-top: 78px;
  }
  .hero h1 {
    font-size: 84px;
  }
  .hero-copy {
    font-size: 20px;
  }
  .section {
    padding: 112px 0;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .brand span {
    font-size: 29px;
  }
  .header-cta {
    font-size: 12px;
    padding: 9px 12px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .flow-unit {
    padding-inline: 8px;
  }
  .flow-order {
    font-size: 9px;
  }
  .flow-unit h3 {
    font-size: 17px;
  }
  .flow-call h3 {
    font-size: 25px;
  }
  .flow-unit p {
    font-size: 11px;
  }
  .qualification-checks {
    font-size: 10px;
  }
  .channel-layout,
  .method-layout,
  .questions-layout {
    gap: 65px;
  }
  .section-heading {
    gap: 0 50px;
  }
  .systems-heading {
    gap: 40px;
  }
  .systems-heading h2 {
    font-size: 42px;
  }
  .system-layers h3 {
    font-size: 20px;
  }
  .booking-layout {
    gap: 65px;
  }
  .booking-section h2 {
    font-size: 48px;
  }
  .operator-layout {
    grid-template-columns: 230px 1fr;
    gap: 60px;
  }
  .operator-layout h2 {
    font-size: 36px;
  }
  .selected-work {
    gap: 24px;
  }
  .work-teaser h3 {
    font-size: 21px;
  }
  .account-editorial > span {
    font-size: 20px;
  }
  .footer-links {
    gap: 70px;
  }
}
@media (max-width: 940px) {
  :root {
    --header: 72px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 13px;
  }
  .menu-toggle {
    display: grid;
  }
  .wrap {
    width: calc(100% - 48px);
  }
  h2 {
    font-size: 40px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    font-size: 18px;
  }
  .workflow-top {
    gap: 18px;
  }
  .segmented button {
    font-size: 12px;
    padding: 9px 12px;
  }
  .workflow-intro {
    gap: 30px;
  }
  .workflow-intro h2 {
    font-size: 19px;
  }
  .workflow-intro p {
    max-width: 320px;
    font-size: 12px;
  }
  .flow-unit {
    padding-inline: 4px;
  }
  .flow-unit h3 {
    font-size: 14px;
    white-space: normal;
    min-height: 34px;
  }
  .flow-call h3 {
    font-size: 23px;
  }
  .flow-unit p {
    font-size: 11px;
  }
  .flow-order {
    font-size: 8px;
  }
  .account-stack {
    grid-template-columns: repeat(4, 13px);
    padding-inline: 12px;
    gap: 5px;
  }
  .qualification-checks {
    font-size: 9px;
  }
  .qualification-checks li {
    gap: 4px;
  }
  .suppression-stamp,
  .atlas-lane,
  .data-output {
    font-size: 9px;
  }
  .data-rings,
  .call-symbol {
    width: 93px;
    height: 107px;
    border-radius: 48%;
  }
  .qualification-icon {
    width: 75px;
    height: 75px;
    margin: 16px 0;
  }
  .calendar-art {
    width: 82px;
  }
  .exclusion-row {
    gap: 15px;
    flex-wrap: wrap;
  }
  .exclusion-row ul {
    gap: 18px;
  }
  .name-rail {
    justify-content: center;
    gap: 20px 35px;
  }
  .name-rail span {
    font-size: 19px;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .channel-layout {
    gap: 40px;
  }
  .channel-map {
    grid-template-columns: 1.1fr 20px 1fr;
  }
  .channel-bracket {
    background-size: 0;
  }
  .channel-inputs > span {
    font-size: 11px;
    gap: 6px;
    padding-inline: 8px;
  }
  .channel-output b {
    font-size: 15px;
  }
  .channel-output span {
    font-size: 11px;
  }
  .systems-heading {
    grid-template-columns: 1fr;
  }
  .systems-heading > p {
    max-width: 600px;
  }
  .system-layers {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0;
    margin: 40px 0;
  }
  .system-layers article:nth-child(3) {
    padding-left: 0;
  }
  .system-layers article:nth-child(3):before {
    left: 0;
  }
  .system-layers article:nth-child(2) {
    border-right: 0;
  }
  .system-layers h3 {
    font-size: 24px;
  }
  .system-layers p {
    min-height: 0;
  }
  .systems-bottom {
    align-items: flex-start;
  }
  .method-layout {
    gap: 45px;
  }
  .method-list h3 {
    font-size: 19px;
  }
  .method-list p {
    font-size: 14px;
  }
  .proof-heading {
    gap: 30px;
  }
  .proof-number {
    font-size: 72px;
  }
  .account-editorial > span {
    font-size: 18px;
    padding-right: 18px;
  }
  .selected-work {
    grid-template-columns: repeat(3, 1fr);
  }
  .selected-work > div {
    grid-column: 1/-1;
  }
  .engagement-scopes article {
    padding-right: 32px;
  }
  .engagement-scopes .main-scope {
    padding-left: 32px;
  }
  .engagement-scopes h3 {
    font-size: 23px;
  }
  .scope-price {
    font-size: 49px;
  }
  .guarantee {
    grid-template-columns: 1fr 170px;
    gap: 25px;
    padding: 25px;
  }
  .guarantee h3 {
    font-size: 20px;
  }
  .refund-example {
    padding-left: 22px;
  }
  .operator-layout {
    gap: 50px;
    grid-template-columns: 180px 1fr;
  }
  .operator-layout h2 {
    font-size: 34px;
  }
  .brand-seal {
    width: 125px;
    height: 125px;
  }
  .career-proof {
    gap: 40px;
  }
  .questions-layout {
    gap: 40px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .booking-layout {
    gap: 50px;
  }
  .booking-section h2 {
    font-size: 40px;
  }
  .booking-copy {
    font-size: 16px;
  }
  .booking-note ol {
    font-size: 13px;
  }
  .booking-actions {
    gap: 20px;
  }
  .booking-actions .button {
    font-size: 13px;
    padding: 13px 17px;
  }
  .booking-actions .text-link {
    font-size: 13px;
  }
  .engineering-overview > .wrap {
    gap: 50px;
  }
  .engineering-layer {
    grid-template-columns: 50px 1fr 1fr;
    gap: 25px;
  }
  .engineering-layer h2 {
    font-size: 30px;
  }
  .build-examples {
    gap: 30px;
  }
  .build-examples h3 {
    font-size: 21px;
  }
  .case-top {
    gap: 40px;
  }
  .case-metrics {
    gap: 30px;
  }
  .case-metrics b {
    font-size: 32px;
  }
  .case-detail {
    gap: 40px;
  }
  .page-hero h1 {
    font-size: 55px;
  }
}
@media (max-width: 640px) {
  :root {
    --header: 68px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  body {
    font-size: 16px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand .atlas-mark {
    width: 27px;
    height: 27px;
  }
  .brand span {
    font-size: 29px;
  }
  .header-cta {
    padding: 9px 11px;
    font-size: 12px;
    gap: 9px;
  }
  .header-cta .icon {
    height: 15px;
    width: 15px;
  }
  .menu-toggle {
    width: 35px;
  }
  .hero {
    padding: 39px 0 35px;
  }
  .hero-label {
    font-size: 11px;
    gap: 7px;
    margin-bottom: 24px;
  }
  .hero-label .atlas-mark {
    width: 14px;
    height: 14px;
  }
  .hero h1 {
    font-size: 41px;
    line-height: 1.07;
    max-width: 480px;
  }
  .hero h1 br {
    display: none;
  }
  .hero-copy {
    font-size: 16px;
    margin: 22px 0;
    line-height: 1.6;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 19px;
  }
  .hero-actions .button {
    padding-inline: 20px;
    min-width: 270px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .offer-line {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .offer-line > span {
    padding: 0 5px;
  }
  .workflow-section {
    padding-bottom: 35px;
  }
  .workflow-top {
    padding: 19px 0 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .segmented {
    width: 100%;
    padding: 3px;
    gap: 0;
  }
  .segmented button {
    padding: 8px 6px;
    flex: 1;
    font-size: 11px;
    min-height: 40px;
  }
  .diagram-caption {
    text-align: center;
    font-size: 10px;
  }
  .workflow-intro {
    display: block;
    padding-bottom: 28px;
    min-height: 120px;
  }
  .workflow-intro h2 {
    font-size: 23px;
    line-height: 1.2;
    text-wrap: pretty;
    margin-bottom: 12px;
    max-width: 320px;
  }
  .workflow-intro p {
    max-width: none;
    font-size: 13px;
    line-height: 1.6;
  }
  .pipeline-flow {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pipeline-flow:before {
    top: 0;
    bottom: 0;
    left: 43px;
    width: 1px;
    height: auto;
    right: auto;
  }
  .flow-unit {
    display: grid;
    grid-template-columns: 87px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    text-align: left;
    align-items: start;
    padding: 15px 0 18px;
    min-height: 140px;
  }
  .flow-unit:not(:first-child):before {
    top: -10px;
    left: 40px;
    transform: rotate(135deg);
    width: 7px;
    height: 7px;
  }
  .flow-order {
    grid-column: 2;
    grid-row: 1;
    font-size: 10px;
    padding: 0 0 9px;
    white-space: normal;
  }
  .flow-unit > div:not(.suppression-stamp):not(.data-output) {
    grid-column: 1;
    grid-row: 1/4;
    align-self: center;
    margin: 0;
    transform: scale(0.78);
    transform-origin: center;
  }
  .flow-unit h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 23px;
    min-height: 0;
    margin: 0 0 10px;
    white-space: normal;
  }
  .flow-unit p {
    grid-column: 2;
    grid-row: 3;
    font-size: 13px;
  }
  .flow-unit .suppression-stamp {
    grid-column: 2;
    font-size: 10px;
    margin-top: 11px;
  }
  .flow-unit .data-output {
    grid-column: 2;
    grid-row: 4;
    font-size: 10px;
    margin-top: 10px;
  }
  .account-stack {
    width: 87px;
    height: 93px;
    grid-template-columns: repeat(4, 13px);
    padding: 8px;
    gap: 5px;
    transform: none !important;
  }
  .flow-unit .data-rings {
    width: 99px;
    height: 99px;
    transform: scale(0.8) !important;
    transform-origin: left center !important;
  }
  .flow-call {
    margin: 0;
    padding: 23px 14px 22px 0;
    min-height: 168px;
  }
  .flow-call h3 {
    font-size: 28px;
  }
  .call-symbol {
    width: 96px;
    height: 96px;
    transform-origin: left center !important;
  }
  .flow-call .atlas-lane {
    grid-column: 2;
    grid-row: 4;
    margin-top: 14px;
    font-size: 10px;
  }
  .qualification-icon {
    justify-self: center;
  }
  .qualification-checks {
    grid-column: 2;
    grid-row: 3;
    font-size: 12px;
  }
  .qualification-checks .icon {
    height: 13px;
    width: 13px;
  }
  .flow-handoff > div.calendar-art {
    transform: scale(0.85);
    justify-self: center;
  }
  .workflow-base {
    margin-top: 10px;
  }
  .exclusion-row {
    display: block;
    font-size: 10px;
  }
  .exclusion-row > span {
    margin-bottom: 12px;
    font-size: 11px;
  }
  .exclusion-row ul {
    gap: 8px 16px;
    flex-wrap: wrap;
  }
  .feedback-return {
    font-size: 10px;
    justify-content: flex-start;
    margin-top: 7px;
    line-height: 1.5;
    align-items: flex-start;
  }
  .proof-band {
    padding: 25px 0;
  }
  .name-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 18px;
  }
  .name-rail span {
    font-size: 19px;
  }
  .proof-band .fine {
    font-size: 10px;
  }
  .proof-band .text-link {
    margin-top: 6px;
  }
  .section {
    padding: 62px 0;
  }
  h2 {
    font-size: 35px;
  }
  .kicker {
    font-size: 12px;
    margin-bottom: 19px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading > p:last-child {
    font-size: 16px;
    margin-top: 23px;
  }
  .channel-layout {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .channel-map {
    grid-template-columns: 1.15fr 30px 1fr;
    padding: 12px 0 20px;
  }
  .channel-inputs > span {
    font-size: 12px;
    padding: 13px 10px;
    gap: 10px;
  }
  .channel-inputs > .channel-atlas {
    font-size: 19px;
  }
  .channel-bracket {
    height: 216px;
    background-size: 10px 1px;
  }
  .channel-output {
    padding: 25px 10px;
  }
  .channel-output b {
    font-size: 16px;
  }
  .channel-output span {
    font-size: 11px;
  }
  .use-cases article {
    padding: 23px 0 23px 19px;
  }
  .use-cases h3 {
    font-size: 23px;
  }
  .use-cases p {
    font-size: 15px;
  }
  .systems-heading {
    gap: 22px;
  }
  .systems-heading h2 {
    font-size: 34px;
  }
  .systems-heading > p {
    font-size: 16px;
  }
  .system-layers {
    grid-template-columns: 1fr;
    margin: 33px 0 26px;
    gap: 28px;
  }
  .system-layers article,
  .system-layers article:not(:first-child) {
    padding: 21px 0 0;
    border-right: 0;
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 0 13px;
  }
  .system-layers article:not(:first-child):before {
    left: 0;
  }
  .layer-number {
    grid-column: 1;
    font-size: 11px;
    margin-top: 6px;
  }
  .system-layers h3 {
    grid-column: 2;
    margin: 0 0 10px;
    font-size: 25px;
  }
  .system-layers p {
    grid-column: 2;
    margin: 0 0 12px;
  }
  .system-layers ul {
    grid-column: 2;
    font-size: 13px;
  }
  .system-layers li {
    padding: 4px 0;
  }
  .systems-bottom {
    flex-direction: column;
    gap: 23px;
  }
  .systems-bottom p {
    font-size: 13px;
  }
  .systems-bottom .text-link {
    font-size: 14px;
  }
  .method-layout {
    display: block;
  }
  .method-lead > p:not(.kicker) {
    font-size: 16px;
    margin: 23px 0;
  }
  .method-list {
    margin-top: 39px;
  }
  .method-list > li {
    gap: 17px;
    padding: 24px 0;
  }
  .method-list h3 {
    font-size: 22px;
  }
  .method-list p {
    font-size: 15px;
  }
  .proof-heading {
    display: block;
    margin-bottom: 28px;
  }
  .proof-source {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 31px;
    justify-content: flex-start;
  }
  .proof-source .proof-number {
    font-size: 76px;
  }
  .proof-source p {
    font-size: 14px;
  }
  .proof-source > span {
    width: 100%;
    margin-top: -5px;
    font-size: 11px;
  }
  .account-editorial {
    grid-template-columns: 1fr 1fr;
  }
  .account-editorial > span {
    font-size: 19px;
    min-height: 82px;
    padding: 20px 14px 20px 0;
  }
  .proof-disclosure {
    font-size: 11px;
    line-height: 1.7;
  }
  .all-accounts summary {
    font-size: 13px;
    line-height: 1.5;
  }
  .all-accounts summary > span {
    font-size: 10px;
    gap: 12px;
    max-width: 90px;
    flex-shrink: 0;
  }
  .account-list {
    grid-template-columns: 1fr 1fr;
    gap: 13px 18px;
    font-size: 12px;
  }
  .all-accounts .fine {
    font-size: 11px;
  }
  .selected-work {
    display: block;
    margin: 38px 0 25px;
  }
  .selected-work > div > h3 {
    font-size: 26px;
  }
  .work-teaser {
    margin-top: 25px;
    padding: 20px 24px 22px 0;
    min-height: 0;
  }
  .work-teaser h3 {
    font-size: 26px;
    margin: 12px 0 18px;
  }
  .work-teaser p > b {
    font-size: 31px;
    display: inline;
    margin-right: 5px;
  }
  .work-teaser > .icon {
    bottom: 25px;
  }
  .section-heading.center {
    text-align: left;
  }
  .section-heading.center h2 {
    font-size: 35px;
    text-wrap: pretty;
  }
  .section-heading.center h2 br {
    display: none;
  }
  .section-heading.center > p:last-child {
    font-size: 16px;
    margin-top: 22px;
  }
  .engagement-scopes {
    display: block;
    margin-top: 35px;
  }
  .engagement-scopes article {
    padding: 27px 0 32px;
  }
  .engagement-scopes .main-scope {
    border-left: 0;
    border-top: 1px solid #c8d5c7;
    padding: 27px 0 33px;
  }
  .scope-label {
    margin-bottom: 20px;
  }
  .engagement-scopes h3 {
    font-size: 26px;
  }
  .scope-price {
    font-size: 55px;
    margin: 21px 0;
  }
  .engagement-scopes article > p {
    font-size: 16px;
  }
  .trial-scope .button {
    margin-top: 4px;
  }
  .scope-inclusions {
    font-size: 13px;
  }
  .guarantee {
    display: block;
    padding: 24px 20px;
    margin-top: 23px;
  }
  .guarantee-copy {
    gap: 12px;
  }
  .guarantee-copy > .icon {
    width: 21px;
    height: 21px;
  }
  .guarantee h3 {
    font-size: 23px;
  }
  .guarantee p {
    font-size: 14px;
  }
  .refund-example {
    border: 0;
    border-top: 1px solid #bed0bb;
    margin-top: 24px;
    padding: 19px 0 0 33px;
  }
  .refund-example > b {
    font-size: 39px;
  }
  .terms-note {
    font-size: 11px;
    line-height: 1.7;
  }
  .operator-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 36px;
  }
  .operator-layout h2 {
    font-size: 35px;
  }
  .operator-layout h2 br {
    display: none;
  }
  .operator-layout .operator-statement {
    font-size: 22px !important;
  }
  .operator-layout > div:last-child > p:not(.kicker) {
    font-size: 16px;
  }
  .career-proof {
    gap: 37px;
  }
  .career-proof b {
    font-size: 35px;
  }
  .career-proof span {
    font-size: 11px;
  }
  .operator-identity {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 0 23px;
    padding: 0;
  }
  .brand-seal {
    width: 85px;
    height: 85px;
    grid-row: 1/4;
    margin: 0;
  }
  .operator-identity h3 {
    font-size: 23px;
  }
  .operator-identity p {
    font-size: 12px;
    margin: 8px 0;
  }
  .operator-identity .text-link {
    font-size: 12px;
    grid-column: 2;
    white-space: normal;
  }
  .questions-layout {
    display: block;
  }
  .questions-layout > div:first-child > p:not(.kicker) {
    margin: 23px 0;
    font-size: 16px;
  }
  .faq-list {
    margin-top: 32px;
  }
  .faq-list summary {
    padding: 22px 0;
    font-size: 16px;
  }
  .faq-list details > p {
    font-size: 15px;
    padding-right: 5px;
  }
  .booking-section {
    padding: 58px 0;
  }
  .booking-layout {
    display: block;
  }
  .booking-section h2 {
    font-size: 40px;
  }
  .booking-copy {
    font-size: 16px;
    margin: 23px 0;
  }
  .booking-actions {
    gap: 24px;
  }
  .booking-actions .button {
    font-size: 14px;
    min-height: 52px;
    padding: 14px 18px;
  }
  .booking-offer {
    font-size: 11px;
    max-width: 300px;
  }
  .booking-note {
    margin-top: 35px;
    padding: 23px 0;
  }
  .booking-note ol {
    font-size: 15px;
    margin: 17px 0 23px;
  }
  .site-footer {
    padding-top: 43px;
  }
  .footer-top {
    display: block;
  }
  .footer-top > div > p {
    font-size: 13px;
    margin-top: 18px;
  }
  .footer-links {
    gap: 50px;
    margin-top: 35px;
  }
  .footer-links > div {
    font-size: 13px;
    gap: 12px;
  }
  .footer-links > div > span {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 10px;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 22px 0;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom a {
    margin-left: auto;
  }
  .page-hero {
    padding: 38px 0;
  }
  .breadcrumb {
    font-size: 11px;
    margin-bottom: 26px;
  }
  .page-hero h1 {
    font-size: 43px;
  }
  .page-hero .lead {
    font-size: 18px;
    margin: 24px 0;
  }
  .page-hero .hero-actions {
    align-items: flex-start;
  }
  .page-deck {
    gap: 12px 25px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 12px;
  }
  .engineering-overview {
    padding: 36px 0;
  }
  .engineering-overview > .wrap {
    display: block;
  }
  .engineering-overview h2 {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .engineering-overview p {
    font-size: 16px;
  }
  .engineering-layer {
    grid-template-columns: 33px 1fr;
    gap: 0 17px;
    padding: 40px 0;
  }
  .engineering-layer > .layer-number {
    font-size: 26px;
  }
  .engineering-layer > div:last-child {
    grid-column: 2;
  }
  .engineering-layer h2 {
    font-size: 29px;
  }
  .engineering-layer h3 {
    margin-top: 10px;
  }
  .engineering-layer p {
    font-size: 15px;
  }
  .engineering-layer ul {
    font-size: 14px;
  }
  .stack-table,
  .build-examples,
  .scope-distinction {
    display: block;
  }
  .stack-table article {
    padding: 24px 0;
  }
  .stack-table h3 {
    font-size: 25px;
  }
  .stack-table p {
    font-size: 15px;
  }
  .build-examples article {
    margin-top: 24px;
  }
  .build-examples h3 {
    font-size: 25px;
  }
  .build-examples p {
    font-size: 15px;
  }
  .scope-distinction {
    padding: 26px 23px;
  }
  .scope-distinction > div + div {
    margin-top: 30px;
    border-top: 1px solid #c6d5c5;
    padding-top: 25px;
  }
  .scope-distinction p {
    font-size: 15px;
  }
  .case-study {
    padding: 40px 0;
  }
  .case-top {
    display: block;
  }
  .case-top h2 {
    font-size: 32px;
    margin-bottom: 23px;
  }
  .case-top > p {
    font-size: 16px;
  }
  .case-metrics {
    flex-wrap: wrap;
    gap: 25px 0;
    padding: 23px 0;
    margin: 26px 0;
  }
  .case-metrics > div {
    padding-left: 20px;
    min-width: 45%;
  }
  .case-metrics b {
    font-size: 29px;
  }
  .case-metrics span {
    font-size: 11px;
  }
  .case-detail {
    display: block;
  }
  .case-detail h3 {
    font-size: 23px;
  }
  .case-detail p {
    font-size: 15px;
  }
  .case-study .fine {
    font-size: 11px;
  }
  .work-index {
    gap: 12px 20px;
  }
  .work-index a {
    font-size: 12px;
  }
  .tools-link-band > .wrap {
    display: block;
  }
  .tools-link-band .text-link {
    margin-top: 15px;
  }
  .not-found {
    padding: 60px 0;
  }
  .not-found h1 {
    font-size: 43px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 37px;
  }
  .header-cta {
    font-size: 11px;
  }
  .brand span {
    font-size: 25px;
  }
  .brand .atlas-mark {
    width: 23px;
    height: 23px;
  }
  .segmented button {
    font-size: 10px;
  }
  .account-editorial > span {
    font-size: 17px;
  }
  .flow-unit {
    grid-template-columns: 77px 1fr;
    gap: 0 15px;
  }
  .pipeline-flow:before {
    left: 38px;
  }
  .flow-unit:not(:first-child):before {
    left: 35px;
  }
  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }
  .hero-actions {
    width: 100%;
  }
}
.nojs-nav {
  display: none;
}
@media (max-width: 940px) {
  .nojs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }
}
.workflow-controls {
  display: flex;
  align-items: center;
  gap: 23px;
}
.trace-button {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  padding: 10px 0;
}
.trace-button .icon {
  width: 14px;
  height: 14px;
}
.trace-button:hover {
  color: var(--purple);
}
button.flow-order {
  background: transparent;
  font-family: var(--body);
  cursor: pointer;
}
button.flow-order:hover {
  text-decoration: underline;
}
button.flow-order[aria-pressed="true"] {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--purple);
}
.flow-call button.flow-order[aria-pressed="true"] {
  color: #fff;
}
.stage-note {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 0;
  min-height: 66px;
  font-size: 12px;
}
.stage-note b {
  font-weight: 500;
  color: var(--green);
  min-width: 145px;
}
.stage-note span {
  color: var(--muted);
  max-width: 870px;
}
.trace-active .data-rings,
.trace-active .qualification-icon,
.trace-active .calendar-art {
  outline: 2px solid #7c9f80;
  outline-offset: 5px;
}
.trace-complete:not(:first-child):before {
  border-color: var(--green);
}
.workflow-panel[data-stage] .account-stack i:nth-child(4n),
.workflow-panel[data-stage] .account-stack i:nth-child(7) {
  transform: translateY(15px);
  opacity: 0.1;
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.trace-active .call-wave {
  animation: call-pass 0.7s ease;
}
.flow-call.trace-active {
  box-shadow: 0 0 0 4px #dbcefc;
}
.stage-note + .workflow-base {
  margin-top: 10px;
}
@media (max-width: 640px) {
  .workflow-controls {
    justify-content: center;
    gap: 20px;
  }
  .trace-button {
    font-size: 10px;
    padding: 4px 0;
  }
  .trace-button .icon {
    width: 12px;
    height: 12px;
  }
  .stage-note {
    display: block;
    min-height: 122px;
    padding: 19px 0 10px;
    font-size: 12px;
  }
  .stage-note b {
    display: block;
    margin-bottom: 9px;
  }
  .stage-note span {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
