@font-face {
  font-family: Edsonna;
  src: url('/assets/fonts/403edsonna-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Edsonna;
  src: url('/assets/fonts/403edsonna-slant-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/instrument-sans-regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/instrument-sans-semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #060d0e;
  --pine: #0c251e;
  --lime: #33da6a;
  --paper: #f3f4ee;
  --muted: #acbcb5;
  --line: rgba(231,245,236,.17);
  --display: Edsonna,'Arial Narrow',sans-serif;
  --body: 'Instrument Sans',Arial,sans-serif;
}

*,*::before,*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,input {
  font: inherit;
}

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

h1,h2,h3 {
  font-family: var(--display);
  font-weight: 400;
}

em {
  font-weight: 400;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}

[hidden] {
  display: none!important;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  background: var(--lime);
  color: var(--ink);
  padding: 12px 20px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.ip-shell {
  width: min(100% - 112px,1328px);
  margin-inline: auto;
}

.ip-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6,13,14,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.ip-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 94px;
}

.ip-brand {
  display: inline-block;
  flex-shrink: 0;
}

.ip-brand img {
  width: 184px;
  height: auto;
}

.ip-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  color: #c5d0ca;
}

.ip-nav a {
  padding-block: 12px;
}

.ip-nav a:hover {
  color: var(--lime);
}

.ip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 17px 22px;
  background: var(--lime);
  border: 1px solid var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: background .2s,transform .2s;
}

.ip-button:hover {
  background: #62e88d;
  transform: translateY(-2px);
}

.ip-button span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.ip-button--small {
  padding: 12px 18px;
  gap: 25px;
  font-size: 13px;
}

.ip-button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.ip-button--dark:hover {
  background: var(--pine);
}

.ip-eyebrow,.ip-overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .105em;
  text-transform: uppercase;
  line-height: 1.6;
}

.ip-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.ip-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px #33da6a55;
}

.ip-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 91% 40%,#103c294a,transparent 58%);
}

.ip-hero::before {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  opacity: .15;
  background-image: linear-gradient(to right,#81988a30 1px,transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(to right,transparent,#000);
}

.ip-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 7%;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 70px;
}

.ip-hero .ip-eyebrow {
  color: #bed3c6;
  font-size: 10px;
  letter-spacing: .09em;
}

.ip-hero h1 {
  font-size: clamp(64px,6.7vw,102px);
  line-height: 1.01;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}

.ip-hero h1 em {
  color: var(--lime);
}

.ip-hero__intro {
  max-width: 450px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.ip-hero__description {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.ip-hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.ip-hero__actions .ip-button {
  font-size: 13px;
  gap: 25px;
}

.ip-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: gap .2s;
}

.ip-text-link:hover {
  gap: 25px;
}

.ip-text-link span {
  font-size: 19px;
  font-weight: 400;
}

.ip-hero__note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

.ip-hero__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 11px;
  color: var(--muted);
}

.ip-hero__bottom a {
  color: var(--paper);
}

.ip-hero__bottom a span {
  margin-left: 24px;
}

.ip-workflow {
  background: #0b1916;
  border: 1px solid #547d5755;
  padding: 27px 28px 18px;
  box-shadow: 0 25px 90px #0003;
  position: relative;
}

.ip-workflow::before,.ip-workflow::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--lime);
  background: var(--ink);
  top: -4px;
}

.ip-workflow::before {
  left: -4px;
}

.ip-workflow::after {
  right: -4px;
}

.ip-workflow__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
  color: #cad8ce;
}

.ip-workflow__heading .ip-overline {
  font-size: 9px;
}

.ip-workflow__index {
  font-size: 9px;
  color: #8a9d93;
}

.ip-workflow__switch {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border: 1px solid var(--line);
  padding: 4px;
  margin: 0 0 28px;
  min-width: 0;
  background: #060e0a;
}

.ip-workflow__switch label {
  position: relative;
  cursor: pointer;
}

.ip-workflow__switch input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.ip-workflow__switch span {
  display: block;
  text-align: center;
  font-size: 11px;
  padding: 9px 7px;
  color: var(--muted);
}

.ip-workflow__switch input:checked+span {
  background: #254631;
  color: #e0f6e5;
}

.ip-workflow__switch input:focus-visible+span {
  outline: 2px solid var(--lime);
  outline-offset: 0;
}

.ip-workflow__source {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--paper);
  color: var(--ink);
  padding: 17px;
}

.ip-envelope {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid #ced7cf;
}

.ip-envelope svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.ip-workflow__source strong,.ip-workflow__engine strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.ip-workflow__source div>span,.ip-workflow__engine div>span {
  display: block;
  font-size: 10px;
  color: #5a6a5e;
  margin-top: 2px;
}

.ip-workflow__source-tag {
  font-size: 9px;
  border: 1px solid #c5cfc7;
  padding: 3px 7px;
  margin-left: auto;
}

.ip-workflow__connector {
  height: 43px;
  width: 1px;
  background: #3e654c;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
}

.ip-workflow__connector i {
  display: block;
  width: 3px;
  height: 3px;
  background: var(--lime);
}

.ip-workflow__engine {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #33da6a70;
  background: #123c26;
}

.ip-workflow__engine img {
  width: 38px;
  height: 29px;
  object-fit: contain;
}

.ip-workflow__engine div>span {
  color: #bbd4c4;
}

.ip-workflow__engine>.ip-status-dot {
  margin-left: auto;
}

.ip-workflow__branches {
  height: 35px;
  display: flex;
  justify-content: space-around;
  position: relative;
  margin: 0 16.6%;
}

.ip-workflow__branches::before {
  content: '';
  height: 18px;
  width: 1px;
  background: #3e654c;
  position: absolute;
  top: 0;
  left: 50%;
}

.ip-workflow__branches::after {
  content: '';
  height: 1px;
  width: 100%;
  background: #3e654c;
  position: absolute;
  top: 18px;
}

.ip-workflow__branches span {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 17px;
  background: #3e654c;
}

.ip-workflow__branches span:first-child {
  left: 0;
}

.ip-workflow__branches span:last-child {
  right: 0;
}

.ip-workflow__outputs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.ip-workflow__outputs>div {
  text-align: center;
  border: 1px solid var(--line);
  padding: 15px 3px 12px;
  background: #122019;
}

.ip-workflow__outputs strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
  margin: 11px 0 2px;
}

.ip-workflow__outputs div>span:last-child {
  display: block;
  font-size: 8px;
  color: #a2b4a9;
}

.ip-folder {
  display: block;
  position: relative;
  border: 1px solid #6cba85;
  border-radius: 1px;
  width: 23px;
  height: 16px;
  margin: 5px auto 0;
}

.ip-folder::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 4px;
  border: 1px solid #6cba85;
  bottom: 100%;
  left: -1px;
}

.ip-review-icon {
  display: block;
  border: 1px solid #6cba85;
  color: #7ee19b;
  border-radius: 50%;
  font-size: 11px;
  width: 21px;
  height: 21px;
  line-height: 20px;
  margin-inline: auto;
}

.ip-workflow__result {
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  min-height: 116px;
}

.ip-workflow__result div>span {
  display: block;
  font-size: 10px;
  color: #a6bcae;
}

.ip-workflow__result p {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 60px;
  line-height: 1.15;
}

.ip-workflow__result s {
  color: #879b8b;
  font-family: var(--display);
  font-size: 27px;
  text-decoration-thickness: 1px;
}

.ip-workflow__result b {
  color: #7b927f;
  font-weight: 400;
}

.ip-workflow__result strong {
  font-family: var(--display);
  font-size: 45px;
  color: var(--lime);
  font-weight: 400;
  letter-spacing: -.04em;
}

.ip-workflow__result small {
  font-size: 22px;
  letter-spacing: 0;
}

.ip-workflow__caption {
  font-size: 8px;
  letter-spacing: .015em;
  color: #8c9f92;
  margin-top: 20px;
  text-align: center;
}

.ip-workflow[data-workflow='manual'] .ip-workflow__engine {
  background: #263129;
  border-color: #6b7a63;
}

.ip-workflow[data-workflow='manual'] .ip-workflow__engine img {
  opacity: .4;
  filter: grayscale(1);
}

.ip-workflow[data-workflow='manual'] .ip-workflow__engine>.ip-status-dot {
  background: #c9bea0;
  box-shadow: none;
}

.ip-workflow[data-workflow='manual'] .ip-workflow__outputs {
  opacity: .5;
}

.ip-workflow[data-workflow='manual'] .ip-workflow__result strong {
  color: #e0d4b7;
}

.ip-section {
  padding-block: 108px;
}

.ip-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 52px;
}

.ip-section h2 {
  font-size: clamp(42px,4.3vw,66px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.ip-section-heading>p {
  max-width: 350px;
  font-size: 14px;
  line-height: 1.9;
  padding-bottom: 5px;
}

.ip-results {
  background: var(--paper);
  color: var(--ink);
}

.ip-results .ip-eyebrow,.ip-approach .ip-eyebrow {
  color: #4c6254;
}

.ip-results h2 em,.ip-approach h2 em {
  color: #397249;
}

.ip-results .ip-section-heading>p,.ip-approach .ip-section-heading>p {
  color: #526157;
}

.ip-case-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

.ip-case {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  background: #fafbf7;
  border: 1px solid #cad3c7;
  padding: 32px 32px 28px;
}

.ip-case__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  color: #506656;
  margin-bottom: 33px;
}

.ip-case__top>span:last-child {
  font-size: 11px;
}

.ip-case h3 {
  font-size: 34px;
  letter-spacing: -.035em;
  line-height: 1.14;
  max-width: 330px;
  min-height: 78px;
}

.ip-case>p {
  font-size: 13px;
  line-height: 1.85;
  color: #506055;
}

.ip-case .ip-case__intro {
  margin-top: 13px;
  min-height: 49px;
}

.ip-case__metric {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border-block: 1px solid #d2dacf;
  width: 100%;
  padding-block: 23px;
  margin-block: 26px;
}

.ip-case__metric div>span {
  display: block;
  font-size: 9px;
  color: #657265;
  margin-bottom: 8px;
}

.ip-case__metric strong {
  font-family: var(--display);
  font-size: 39px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.ip-case__metric div:last-child strong {
  color: #257040;
}

.ip-case__metric small {
  font-size: 19px;
  letter-spacing: 0;
}

.ip-case__arrow {
  font-size: 22px;
  color: #7c8d7b;
  margin-top: 18px;
}

.ip-case__benefits {
  list-style: none;
  padding: 0;
  margin: 22px 0 32px;
  font-size: 12px;
  line-height: 2.2;
}

.ip-case__benefits li::before {
  content: '↳';
  margin-right: 12px;
  color: #287c43;
}

.ip-case>.ip-text-link {
  margin-top: auto;
  font-size: 12px;
  width: 100%;
  padding-bottom: 9px;
  border-color: #c8d2c3;
}

.ip-results__note {
  font-size: 10px;
  line-height: 1.8;
  color: #617061;
  max-width: 770px;
  margin-top: 22px;
}

.ip-capacity {
  background: var(--pine);
  position: relative;
}

.ip-capacity .ip-eyebrow,.ip-capacity h2 em {
  color: var(--lime);
}

.ip-capacity .ip-section-heading>p {
  color: var(--muted);
}

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

.ip-outcomes article {
  padding: 30px 35px 10px 0;
}

.ip-outcomes article+article {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}

.ip-outcomes__number {
  font-size: 10px;
  color: #94b29f;
  display: block;
  margin-bottom: 35px;
}

.ip-outcomes h3 {
  font-size: 29px;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 260px;
}

.ip-outcomes p {
  font-size: 13px;
  color: #b3c8bb;
  line-height: 1.9;
  max-width: 310px;
}

.ip-capacity__callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding-top: 35px;
  margin-top: 45px;
}

.ip-capacity__callout p {
  font-size: 17px;
  line-height: 1.65;
  color: #a1bdab;
}

.ip-capacity__callout strong {
  color: var(--paper);
  font-weight: 400;
}

.ip-approach {
  background: #e7ebe2;
  color: var(--ink);
}

.ip-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.ip-steps li {
  position: relative;
  border-top: 1px solid #b9c5b6;
  padding-top: 24px;
}

.ip-steps li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #487852;
  position: absolute;
  top: -4px;
  left: 0;
}

.ip-steps__number {
  display: block;
  font-family: var(--display);
  font-size: 50px;
  color: #6c896b;
  letter-spacing: -.04em;
  margin-bottom: 27px;
}

.ip-steps h3 {
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}

.ip-steps p {
  font-size: 13px;
  line-height: 1.9;
  color: #53624f;
}

.ip-steps__deliverable {
  display: block;
  margin-top: 30px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #486044;
}

.ip-faq {
  background: var(--paper);
  color: var(--ink);
}

.ip-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10%;
}

.ip-faq .ip-eyebrow {
  font-size: 10px;
  color: #53664f;
}

.ip-faq h2 em {
  color: #397249;
}

.ip-faq__intro {
  max-width: 300px;
  font-size: 14px;
  color: #586553;
  margin-top: 25px;
  line-height: 1.85;
}

.ip-faq details {
  border-top: 1px solid #cad2c4;
}

.ip-faq details:last-child {
  border-bottom: 1px solid #cad2c4;
}

.ip-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.ip-faq summary::-webkit-details-marker {
  display: none;
}

.ip-faq summary span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ip-faq summary span::before,.ip-faq summary span::after {
  content: '';
  height: 1px;
  width: 12px;
  position: absolute;
  top: 7px;
  left: 0;
  background: currentColor;
}

.ip-faq summary span::after {
  transform: rotate(90deg);
  transition: transform .2s;
}

.ip-faq details[open] summary span::after {
  transform: rotate(0);
}

.ip-faq details p {
  font-size: 13px;
  line-height: 1.9;
  color: #596650;
  margin: 0 25px 25px 0;
  max-width: 500px;
}

.ip-contact {
  background: var(--lime);
  color: var(--ink);
  padding-block: 84px;
  overflow: hidden;
}

.ip-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ip-contact h2 {
  font-size: clamp(42px,4.7vw,72px);
  line-height: 1.07;
  letter-spacing: -.045em;
}

.ip-contact p:not(.ip-eyebrow) {
  font-size: 15px;
  margin-top: 24px;
}

.ip-contact .ip-button {
  margin-top: 30px;
}

.ip-contact__mark {
  width: 230px;
  height: auto;
  opacity: .9;
  flex-shrink: 0;
}

.ip-footer {
  padding-block: 55px 24px;
}

.ip-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 45px;
}

.ip-footer__main p {
  font-size: 12px;
  color: #b0bdb4;
  margin-top: 20px;
}

.ip-footer nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  padding-top: 12px;
}

.ip-footer nav a:hover,.ip-footer__bottom a:hover {
  color: var(--lime);
}

.ip-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #a5b3aa;
  font-size: 10px;
}

.ip-footer__bottom>div {
  display: flex;
  gap: 24px;
}

@media(min-width:1600px) {
  .ip-hero__grid {
    padding-block: 100px;
  }
  .ip-hero h1 {
    font-size: 108px;
  }
  .ip-hero__intro {
    font-size: 23px;
  }
  .ip-hero__description {
    font-size: 16px;
  }
}

@media(max-width:1150px) {
  .ip-shell {
    width: calc(100% - 72px);
  }
  .ip-hero__grid {
    gap: 4%;
  }
  .ip-hero h1 {
    font-size: clamp(56px,7.2vw,84px);
  }
  .ip-hero__intro {
    font-size: 18px;
  }
  .ip-hero__actions {
    gap: 20px;
  }
  .ip-workflow {
    padding: 22px 21px 17px;
  }
  .ip-case {
    padding: 28px 24px;
  }
  .ip-case__metric {
    gap: 15px;
  }
  .ip-case__metric strong {
    font-size: 34px;
  }
  .ip-section {
    padding-block: 85px;
  }
  .ip-contact__mark {
    width: 180px;
  }
}

@media(max-width:900px) {
  .ip-nav {
    gap: 22px;
  }
  .ip-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 55px;
  }
  .ip-hero h1 {
    font-size: 60px;
  }
  .ip-hero .ip-eyebrow {
    font-size: 9px;
  }
  .ip-hero__description {
    font-size: 13px;
  }
  .ip-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .ip-workflow__heading .ip-overline {
    font-size: 8px;
  }
  .ip-workflow__index {
    display: none;
  }
  .ip-workflow__source {
    padding: 12px;
    gap: 9px;
  }
  .ip-workflow__source-tag {
    display: none;
  }
  .ip-workflow__outputs strong {
    font-size: 8px;
  }
  .ip-workflow__outputs div>span:last-child {
    font-size: 7px;
  }
  .ip-workflow__result p {
    gap: 14px;
  }
  .ip-workflow__result strong {
    font-size: 37px;
  }
  .ip-workflow__result s {
    font-size: 24px;
  }
  .ip-section-heading {
    gap: 35px;
  }
  .ip-section-heading>p {
    max-width: 290px;
  }
  .ip-case__metric {
    gap: 10px;
  }
  .ip-case__metric strong {
    font-size: 31px;
  }
  .ip-case__metric small {
    font-size: 16px;
  }
  .ip-case h3 {
    font-size: 30px;
    min-height: 69px;
  }
  .ip-outcomes article {
    padding-right: 23px;
  }
  .ip-outcomes article+article {
    padding-left: 23px;
  }
  .ip-outcomes h3 {
    font-size: 25px;
  }
  .ip-steps {
    gap: 26px;
  }
  .ip-steps h3 {
    font-size: 24px;
  }
  .ip-faq__grid {
    gap: 6%;
  }
  .ip-contact__mark {
    width: 140px;
  }
}

@media(max-width:720px) {
  html {
    scroll-padding-top: 85px;
  }
  .ip-shell {
    width: calc(100% - 40px);
  }
  .ip-header__inner {
    height: 76px;
    gap: 16px;
  }
  .ip-brand img {
    width: 150px;
  }
  .ip-nav {
    display: none;
  }
  .ip-button--small {
    font-size: 12px;
    padding: 10px 13px;
    gap: 16px;
  }
  .ip-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 45px;
    padding-bottom: 40px;
    gap: 40px;
  }
  .ip-hero .ip-eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .ip-hero h1 {
    font-size: clamp(46px,12.8vw,78px);
    margin-bottom: 24px;
  }
  .ip-hero__intro {
    font-size: 20px;
    max-width: 380px;
  }
  .ip-hero__description {
    font-size: 14px;
    max-width: 480px;
  }
  .ip-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
  }
  .ip-workflow {
    max-width: 480px;
    width: 100%;
    padding: 26px;
    margin-inline: auto;
  }
  .ip-workflow__heading .ip-overline {
    font-size: 9px;
  }
  .ip-workflow__index {
    display: block;
  }
  .ip-workflow__source {
    padding: 16px;
    gap: 13px;
  }
  .ip-workflow__source-tag {
    display: block;
  }
  .ip-workflow__outputs strong {
    font-size: 10px;
  }
  .ip-workflow__outputs div>span:last-child {
    font-size: 9px;
  }
  .ip-workflow__result strong {
    font-size: 45px;
  }
  .ip-workflow__result p {
    gap: 22px;
  }
  .ip-hero__bottom {
    font-size: 10px;
    padding-block: 20px;
  }
  .ip-hero__bottom>span {
    max-width: 190px;
  }
  .ip-hero__bottom a {
    align-self: center;
    white-space: nowrap;
  }
  .ip-hero__bottom a span {
    margin-left: 8px;
  }
  .ip-section {
    padding-block: 64px;
  }
  .ip-section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .ip-section h2 {
    font-size: 44px;
  }
  .ip-eyebrow {
    font-size: 10px;
    margin-bottom: 21px;
  }
  .ip-section-heading>p {
    max-width: 460px;
    margin-top: 23px;
    font-size: 14px;
  }
  .ip-case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ip-case {
    padding: 26px;
  }
  .ip-case__top {
    margin-bottom: 26px;
  }
  .ip-case h3 {
    font-size: 34px;
    min-height: 0;
    max-width: none;
  }
  .ip-case .ip-case__intro {
    min-height: 0;
  }
  .ip-case__metric {
    gap: 20px;
  }
  .ip-case__metric strong {
    font-size: 41px;
  }
  .ip-case__metric small {
    display: block;
    margin-top: 8px;
    font-size: 16px;
  }
  .ip-case__metric div>span {
    font-size: 10px;
  }
  .ip-case>p,.ip-case__benefits {
    font-size: 13px;
  }
  .ip-results__note {
    font-size: 10px;
  }
  .ip-outcomes {
    grid-template-columns: 1fr;
  }
  .ip-outcomes article,.ip-outcomes article+article {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0 20px;
    padding: 27px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .ip-outcomes__number {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-top: 5px;
    margin-bottom: 0;
  }
  .ip-outcomes h3 {
    max-width: none;
    font-size: 28px;
    margin-bottom: 11px;
  }
  .ip-outcomes p {
    grid-column: 2;
    max-width: 480px;
  }
  .ip-capacity__callout {
    align-items: flex-start;
    flex-direction: column;
    border-top: 0;
    margin-top: 0;
    padding-top: 30px;
    gap: 24px;
  }
  .ip-capacity__callout p {
    font-size: 16px;
  }
  .ip-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ip-steps li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 0 18px;
    padding-top: 24px;
  }
  .ip-steps__number {
    grid-column: 1;
    grid-row: 1 / 4;
    font-size: 36px;
    margin-top: -5px;
  }
  .ip-steps h3 {
    font-size: 28px;
  }
  .ip-steps p,.ip-steps__deliverable {
    grid-column: 2;
  }
  .ip-steps__deliverable {
    margin-top: 18px;
  }
  .ip-faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ip-faq__intro {
    max-width: 380px;
  }
  .ip-faq summary {
    font-size: 14px;
  }
  .ip-contact {
    padding-block: 62px;
  }
  .ip-contact h2 {
    font-size: 43px;
  }
  .ip-contact__mark {
    display: none;
  }
  .ip-contact p:not(.ip-eyebrow) {
    max-width: 290px;
    font-size: 14px;
  }
  .ip-contact .ip-button {
    font-size: 13px;
    gap: 25px;
  }
  .ip-footer {
    padding-block: 38px 24px;
  }
  .ip-footer__main {
    flex-direction: column;
    padding-bottom: 30px;
  }
  .ip-footer nav {
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 0;
  }
  .ip-footer__bottom {
    gap: 19px;
    font-size: 10px;
  }
  .ip-footer__bottom>div {
    gap: 20px;
  }
}

@media(max-width:370px) {
  .ip-shell {
    width: calc(100% - 32px);
  }
  .ip-brand img {
    width: 130px;
  }
  .ip-header__inner {
    gap: 12px;
  }
  .ip-hero .ip-eyebrow {
    font-size: 8px;
    gap: 7px;
  }
  .ip-hero h1 {
    font-size: 43px;
  }
  .ip-hero__actions .ip-button {
    font-size: 12px;
    padding-inline: 17px;
    gap: 16px;
  }
  .ip-workflow {
    padding: 21px 17px;
  }
  .ip-workflow__outputs strong {
    font-size: 9px;
  }
  .ip-workflow__outputs div>span:last-child {
    font-size: 8px;
  }
  .ip-hero__bottom {
    font-size: 9px;
  }
  .ip-hero__bottom>span {
    max-width: 150px;
  }
  .ip-case {
    padding: 23px 20px;
  }
  .ip-case__metric {
    gap: 10px;
  }
  .ip-case__metric strong {
    font-size: 34px;
  }
  .ip-case__metric div>span {
    font-size: 9px;
  }
  .ip-case>.ip-text-link {
    font-size: 11px;
  }
  .ip-contact .ip-button {
    font-size: 12px;
    padding-inline: 18px;
    gap: 20px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    transition: none!important;
  }
  .ip-button:hover {
    transform: none;
  }
}
