:root {
  --paper: #f6f7f4;
  --card: #fff;
  --ink: #16232e;
  --muted: #50616b;
  --line: #d7ded8;
  --teal: #0e5e63;
  --green: #1e9e6a;
  --tint: #e9efea;
  --mono: "IBM Plex Mono", monospace;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --display: "Archivo", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(43px, 5.5vw, 76px);
  max-width: 15ch;
}
h2 {
  font-size: clamp(32px, 3.8vw, 49px);
  max-width: 22ch;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}
p + p {
  margin-top: 16px;
}
a {
  color: var(--teal);
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #c98700;
  outline-offset: 5px;
}
::selection {
  background: #bde0d1;
  color: var(--ink);
}
.wrap {
  max-width: 1200px;
  padding-inline: 32px;
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 20;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.eyebrow {
  font: 500 12px/1.6 var(--mono);
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.muted {
  color: var(--muted);
}
.text-link {
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.text-link::after {
  content: " ↗";
  padding-left: 5px;
}
.text-link:hover {
  text-decoration: underline;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  min-height: 50px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
}
.button::after {
  content: "↗";
  font-weight: 400;
}
.button:hover {
  background: #08484c;
  border-color: #08484c;
}
.button.secondary {
  background: transparent;
  color: var(--teal);
}
.button.secondary:hover {
  background: var(--tint);
}
.site-header {
  background: rgba(246, 247, 244, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 86px;
}
.brand {
  font: 600 20px var(--mono);
  letter-spacing: -1px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}
.brand i {
  font-style: normal;
  color: var(--green);
  font-size: 16px;
  padding: 0 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav > a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.main-nav > a:hover {
  color: var(--teal);
  text-decoration: underline;
}
.language {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 12px var(--mono);
}
.language a {
  padding: 6px 0;
  color: var(--muted);
  text-decoration: none;
}
.language a[aria-current] {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}
.header-cta {
  padding: 10px 15px;
  min-height: 43px;
  font-size: 14px;
}
.menu-button {
  display: none;
}
.hero {
  padding: 86px 0 62px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 76px;
  align-items: center;
}
.hero h1 em {
  color: var(--teal);
  font-style: normal;
}
.hero .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 51ch;
  margin-top: 26px;
  line-height: 1.55;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.hero-proof {
  border: 1px solid var(--line);
  background: #edf1ec;
  padding: 30px 30px 0;
  border-radius: 6px;
  position: relative;
}
.hero-proof .eyebrow {
  margin-bottom: 13px;
}
.hero-proof h2 {
  font-size: 28px;
  max-width: 19ch;
}
.journey {
  list-style: none;
  padding: 25px 0 28px;
  display: grid;
  gap: 0;
}
.journey li {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 11px 0;
}
.journey li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 22px;
  background: #adc4b9;
  position: absolute;
  top: 46px;
  left: 19px;
}
.journey .number {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid #b8cbc0;
  border-radius: 50%;
  font: 500 12px var(--mono);
  background: var(--paper);
  flex-shrink: 0;
  z-index: 1;
}
.journey strong {
  display: block;
  font-weight: 500;
  line-height: 1.35;
}
.journey small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.proof-foot {
  margin: 0 -30px;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 30px;
  display: flex;
  gap: 20px;
  border-radius: 0 0 5px 5px;
}
.proof-foot b {
  display: block;
  font: 600 23px var(--display);
}
.proof-foot span {
  font: 400 11px var(--mono);
  color: #c1d0d4;
  display: block;
  margin-top: 4px;
}
.trust-strip {
  padding: 26px 0;
  border-block: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}
.trust-strip span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal);
}
.section {
  padding: 94px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading p:not(.eyebrow) {
  max-width: 43ch;
  color: var(--muted);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.problem {
  border-top: 2px solid var(--teal);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.problem .index {
  font: 500 12px var(--mono);
  color: var(--muted);
  margin-bottom: 22px;
}
.problem h3 {
  font-size: 25px;
  max-width: 22ch;
}
.problem p {
  margin: 16px 0 22px;
  font-size: 16px;
  color: var(--muted);
}
.problem a {
  margin-top: auto;
  font-size: 15px;
}
.case-band {
  background: var(--ink);
  color: var(--paper);
  padding: 74px 0;
}
.case-band .eyebrow {
  color: #8fcab2;
}
.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 86px;
  align-items: center;
}
.case-band p:not(.eyebrow) {
  color: #c0cdd3;
  margin-top: 24px;
  max-width: 60ch;
}
.case-band .text-link {
  color: #b8e7d3;
  margin-top: 24px;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.stat {
  padding: 22px 0;
  border-top: 1px solid #42525c;
}
.stat strong {
  display: block;
  font: 600 48px/1 var(--display);
  letter-spacing: -0.03em;
  color: white;
}
.stat span {
  display: block;
  color: #b5c6ce;
  font-size: 14px;
  margin-top: 11px;
}
.services-section {
  background: #edf1ec;
}
.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  background: white;
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 36px;
  margin-bottom: 20px;
}
.service-feature h3 {
  font-size: 32px;
}
.service-feature p {
  color: var(--muted);
  margin-top: 16px;
}
.price {
  font: 500 25px var(--mono);
  white-space: nowrap;
  margin: 20px 0 12px;
}
.price small {
  font: 400 14px var(--sans);
  white-space: normal;
  color: var(--muted);
}
.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
}
.service-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f9faf7;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-card .eyebrow {
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 24px;
}
.service-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
}
.service-card .price {
  font-size: 23px;
}
.service-card .checklist {
  margin-top: 18px;
  margin-bottom: 10px;
}
.service-card .checklist li {
  font-size: 14px;
}
.service-card .text-link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 15px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
}
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 30px 55px;
}
.steps li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 0;
  font: 500 15px var(--mono);
  color: var(--teal);
}
.steps h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.steps p {
  font-size: 16px;
  color: var(--muted);
}
.about-note {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  margin-top: 35px;
  font-size: 16px;
  max-width: 48ch;
}
.about-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.faq-section {
  padding-top: 0;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 23px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font: 400 24px var(--mono);
  color: var(--teal);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 36px 24px 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 76ch;
}
.contact-shell {
  padding-bottom: 64px;
}
.contact {
  padding: 55px;
  background: var(--teal);
  border-radius: 7px;
  color: white;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  scroll-margin-top: 110px;
}
.contact .eyebrow {
  color: #c1dfd1;
}
.contact h2 {
  font-size: clamp(32px, 3.7vw, 46px);
}
.contact-intro > p:not(.eyebrow) {
  margin-top: 24px;
  color: #e0ece8;
  max-width: 42ch;
}
.contact-next {
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #528286;
  list-style: none;
  font-size: 15px;
  color: #e0ece8;
}
.contact-next li {
  padding: 5px 0;
}
.contact-next li::before {
  content: "✓";
  margin-right: 12px;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  font-size: 14px;
  font-weight: 500;
}
.optional {
  font-size: 12px;
  font-weight: 400;
  color: #d4e4df;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid #e4ece7;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}
.field-hint {
  font-size: 12px;
  color: #d4e4df;
  line-height: 1.55;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #667780;
  opacity: 1;
}
.contact-form .button {
  background: var(--ink);
  border-color: var(--ink);
  justify-self: start;
}
.contact-form .button:hover {
  background: #0c1a22;
}
.contact-form .button:disabled {
  opacity: 0.8;
  cursor: wait;
}
.contact-form .button:disabled::after {
  content: "…";
}
.privacy-note {
  font-size: 12px;
  color: #d4e4df;
}
.privacy-note a {
  color: white;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  font-size: 14px;
}
.form-status:empty {
  display: none;
}
.notice {
  border: 0;
  padding: 32px;
  border-radius: 8px;
  max-width: 450px;
  width: calc(100% - 40px);
  color: var(--ink);
  background: var(--paper);
}
.notice::backdrop {
  background: rgba(22, 35, 46, 0.65);
}
.notice h2 {
  font-size: 29px;
}
.notice p {
  margin: 18px 0 25px;
  color: var(--muted);
}
.footer-top {
  border-top: 1px solid var(--line);
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.footer-top p {
  font-size: 14px;
  max-width: 40ch;
  color: var(--muted);
  margin-top: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-content: start;
  font-size: 14px;
  max-width: 480px;
}
.footer-nav a {
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px 0;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--muted);
  margin-left: 20px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 35px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
}
.inner-hero {
  padding: 45px 0 75px;
}
.inner-hero .hero-grid {
  gap: 80px;
  align-items: start;
}
.inner-hero h1 {
  font-size: clamp(40px, 4.8vw, 65px);
  max-width: 18ch;
}
.scope-card {
  background: var(--tint);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 6px;
}
.scope-card h2 {
  font-size: 24px;
}
.scope-card .price {
  font-size: 29px;
  margin-top: 25px;
}
.scope-card .checklist {
  margin-top: 24px;
}
.scope-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.ruled {
  border-top: 1px solid var(--line);
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 50px;
}
.capability {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.capability h3 {
  font-size: 25px;
}
.capability p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}
.capability ul {
  margin-top: 16px;
}
.capability .checklist li {
  font-size: 15px;
}
.wide-intro {
  max-width: 70ch;
  color: var(--muted);
  font-size: 18px;
  margin: 24px 0 38px;
}
.brief-panel {
  padding: 32px;
  background: var(--tint);
  border-radius: 5px;
}
.brief-panel h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.brief-panel p {
  font-size: 16px;
  color: var(--muted);
}
.brief-panel p + p {
  margin-top: 18px;
}
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.stack span {
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 3px;
  font: 400 12px var(--mono);
  background: var(--paper);
}
.architecture {
  background: var(--tint);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.architecture .layer {
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  padding: 20px 14px;
}
.architecture .layer strong {
  display: block;
  font-size: 19px;
}
.architecture .layer span {
  font-size: 13px;
  color: var(--muted);
}
.architecture .connector {
  text-align: center;
  color: var(--teal);
  font-size: 22px;
  padding: 8px;
}
.architecture .layer.endpoints {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.architecture .layer.endpoints span {
  display: block;
  font-size: 12px;
}
.architecture .caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.case-intro {
  max-width: 850px;
}
.case-intro h1 {
  max-width: 20ch;
}
.case-intro .lead {
  max-width: 64ch;
}
.case-intro .eyebrow {
  margin-top: 15px;
}
.case-body .split {
  align-items: start;
}
.inline-note {
  font-size: 14px;
  color: var(--muted);
  border-left: 2px solid var(--teal);
  padding-left: 20px;
  margin-top: 26px;
}
.technical {
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.technical h3 {
  font-size: 23px;
}
.technical p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 15px;
  max-width: 78ch;
}
@media (min-width: 1450px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1000px) {
  .header-inner {
    gap: 20px;
  }
  .main-nav {
    gap: 18px;
  }
  .hero-grid {
    gap: 35px;
    grid-template-columns: 1.15fr 0.85fr;
  }
  .hero-proof {
    padding: 24px 22px 0;
  }
  .proof-foot {
    margin-inline: -22px;
    padding: 20px 22px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .case-grid,
  .split,
  .contact {
    gap: 44px;
  }
  .service-card {
    padding: 23px;
  }
  .inner-hero .hero-grid {
    gap: 40px;
  }
  .contact {
    padding: 38px;
  }
  .section {
    padding-block: 72px;
  }
  .faq-section {
    padding-top: 0;
  }
}
@media (max-width: 800px) {
  .wrap {
    padding-inline: 24px;
  }
  .header-inner {
    min-height: 74px;
    gap: 18px;
  }
  .brand {
    font-size: 18px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-button {
    display: block;
    background: none;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
    color: var(--ink);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    margin: 0;
    box-shadow: 0 10px 15px #16232e08;
  }
  .main-nav.is-open {
    display: flex;
    flex-wrap: wrap;
  }
  .language {
    margin-left: auto;
  }
  .hero {
    padding-top: 56px;
  }
  .hero-grid {
    gap: 38px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero .lead {
    font-size: 18px;
  }
  .hero-proof h2 {
    font-size: 24px;
  }
  .proof-foot {
    gap: 15px;
  }
  .proof-foot b {
    font-size: 21px;
  }
  .proof-foot span {
    font-size: 10px;
  }
  .section-heading {
    display: block;
  }
  .section-heading p:not(.eyebrow) {
    margin-top: 20px;
  }
  .problem-grid {
    gap: 24px;
  }
  .problem h3 {
    font-size: 22px;
  }
  .case-grid {
    gap: 40px;
  }
  .stats {
    gap: 24px;
  }
  .stat strong {
    font-size: 39px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
  .service-card h3,
  .service-card .eyebrow,
  .service-card .price,
  .service-card > p {
    grid-column: 1;
  }
  .service-card .checklist {
    grid-column: 2;
    grid-row: 1/5;
    margin: 0;
    align-self: center;
  }
  .service-card .text-link {
    grid-column: 1/-1;
  }
  .service-feature {
    gap: 30px;
    padding: 28px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-intro > p:not(.eyebrow) {
    max-width: 60ch;
  }
  .contact-next {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin-top: 20px;
    padding-top: 15px;
  }
  .contact h2 {
    max-width: 22ch;
  }
  .inner-hero .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
  }
  .inner-hero h1 {
    font-size: 44px;
  }
  .scope-card {
    padding: 23px;
  }
  .scope-card .price {
    font-size: 25px;
  }
  .split {
    gap: 35px;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-nav {
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 94px;
  }
  .wrap {
    padding-inline: 20px;
  }
  .header-inner {
    gap: 12px;
    min-height: 70px;
  }
  .brand {
    font-size: 17px;
  }
  .header-cta {
    font-size: 12px;
    min-height: 38px;
    padding: 9px 11px;
    gap: 8px;
  }
  .header-cta::after {
    display: none;
  }
  .menu-button {
    font-size: 12px;
    padding: 8px;
  }
  .main-nav {
    top: 70px;
  }
  .main-nav > a {
    font-size: 15px;
  }
  .hero {
    padding: 44px 0 36px;
  }
  .hero-grid,
  .inner-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(40px, 10vw, 58px);
    max-width: 15ch;
  }
  .hero .lead {
    font-size: 18px;
    margin-top: 22px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .actions {
    gap: 18px;
    margin-top: 25px;
  }
  .hero .actions .button {
    padding: 13px 18px;
    font-size: 15px;
  }
  .hero .actions .text-link {
    font-size: 15px;
  }
  .hero-note {
    font-size: 12px;
  }
  .hero-proof {
    padding: 25px 25px 0;
  }
  .hero-proof h2 {
    max-width: 22ch;
    font-size: 27px;
  }
  .journey {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .journey li {
    display: block;
    padding: 0;
  }
  .journey li:not(:last-child)::after {
    display: none;
  }
  .journey .number {
    width: 30px;
    height: 30px;
    margin-bottom: 9px;
  }
  .journey strong {
    font-size: 15px;
  }
  .journey small {
    font-size: 11px;
  }
  .proof-foot {
    margin-inline: -25px;
    padding: 18px 25px;
    justify-content: space-between;
  }
  .proof-foot b {
    font-size: 25px;
  }
  .proof-foot span {
    font-size: 11px;
  }
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    font-size: 12px;
    padding: 23px 0;
  }
  .trust-strip span::before {
    margin-right: 6px;
  }
  .section {
    padding: 58px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2,
  h2 {
    font-size: 33px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }
  .problem-grid,
  .split,
  .case-grid,
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-grid {
    gap: 28px;
  }
  .problem .index {
    margin-bottom: 12px;
  }
  .problem h3 {
    font-size: 25px;
    max-width: 25ch;
  }
  .problem p {
    margin: 12px 0 16px;
  }
  .case-band {
    padding: 50px 0;
  }
  .case-band h2 {
    font-size: 34px;
  }
  .case-band p:not(.eyebrow) {
    font-size: 16px;
  }
  .case-grid {
    gap: 25px;
  }
  .stats {
    gap: 15px 30px;
  }
  .stat {
    padding: 20px 0 0;
  }
  .stat strong {
    font-size: 39px;
  }
  .stat span {
    font-size: 13px;
  }
  .service-feature {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px;
  }
  .service-feature h3 {
    font-size: 29px;
  }
  .service-feature p {
    font-size: 16px;
  }
  .service-feature .price {
    font-size: 25px;
  }
  .service-feature .actions {
    margin-top: 18px;
  }
  .service-grid {
    gap: 15px;
  }
  .service-card {
    display: flex;
    padding: 25px;
  }
  .service-card .checklist {
    margin: 20px 0 0;
    align-self: auto;
  }
  .service-card .text-link {
    padding-top: 18px;
  }
  .service-card .price {
    margin-top: 18px;
  }
  .steps li {
    padding-left: 44px;
    padding-bottom: 26px;
  }
  .about-note {
    margin-top: 25px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-list summary {
    font-size: 17px;
    padding: 20px 0;
    gap: 20px;
  }
  .faq-list details p {
    font-size: 15px;
    padding-right: 15px;
  }
  .contact-shell {
    padding-bottom: 40px;
  }
  .contact {
    padding: 28px 22px;
    gap: 32px;
  }
  .contact h2 {
    font-size: 33px;
  }
  .contact-intro > p:not(.eyebrow) {
    font-size: 16px;
    margin-top: 20px;
  }
  .contact-next {
    display: block;
    font-size: 14px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-form .button {
    width: 100%;
  }
  .contact .eyebrow {
    font-size: 10px;
  }
  .footer-top {
    display: block;
  }
  .footer-nav {
    max-width: none;
    margin-top: 25px;
    gap: 13px 20px;
  }
  .footer-bottom {
    gap: 12px;
    padding-block: 26px;
  }
  .footer-bottom a {
    margin: 0 16px 0 0;
  }
  .inner-hero {
    padding-top: 26px;
  }
  .breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
  }
  .inner-hero h1 {
    font-size: 42px;
    max-width: 18ch;
  }
  .scope-card {
    padding: 26px;
  }
  .scope-card .checklist {
    margin-top: 20px;
  }
  .inner-hero .hero-grid {
    gap: 32px;
  }
  .wide-intro {
    font-size: 17px;
    margin: 20px 0 30px;
  }
  .brief-panel {
    padding: 26px;
  }
  .architecture {
    padding: 22px;
  }
  .architecture .layer {
    padding: 16px 10px;
  }
  .architecture .layer.endpoints {
    gap: 5px;
  }
  .architecture .layer.endpoints strong {
    font-size: 15px;
  }
  .architecture .layer.endpoints span {
    font-size: 11px;
  }
  .case-intro h1 {
    max-width: 20ch;
  }
  .technical {
    margin-top: 30px;
  }
  .notice {
    padding: 27px;
  }
}
.hero-grid > * {
  min-width: 0;
}
h1 {
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 380px) {
  .inner-hero h1 {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
