:root {
  --ink: #111827;
  --ink-2: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --paper: #f5f5f7;
  --white: #ffffff;
  --blue: #0071e3;
  --blue-2: #2997ff;
  --cyan: #4cc9f0;
  --teal: #00a99d;
  --aws: #ff9f0a;
  --green: #30d158;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  --nav-h: 56px;
  --type-nav: 15px;
  --type-button: 16px;
  --type-display: clamp(44px, 6vw, 76px);
  --type-page-title: clamp(40px, 5vw, 64px);
  --type-section-title: clamp(32px, 3.8vw, 52px);
  --type-card-title: clamp(24px, 2.2vw, 32px);
  --type-lede: clamp(18px, 1.6vw, 21px);
  --type-body: 18px;
  --type-small: 15px;
  --type-meta: 13px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI",
    sans-serif;
  line-height: 1.47;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.utility {
  display: none;
}

.nav {
  width: min(1240px, calc(100% - 44px));
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  width: 136px;
  height: 40px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.55vw, 22px);
  color: rgba(29, 29, 31, 0.78);
  font-size: var(--type-nav);
  font-weight: 550;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--nav-h);
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--ink-2);
}

.nav-link.is-active {
  color: var(--blue);
  font-weight: 700;
}

.nav-link.is-active::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--nav-h);
}

.nav-link--dropdown::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu__panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 360px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-menu:hover .nav-menu__panel,
.nav-menu:focus-within .nav-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu__panel a {
  display: block;
  padding: 11px 15px;
  border-radius: 6px;
  color: var(--ink-2);
  font-size: var(--type-nav);
  font-weight: 600;
  line-height: 1.2;
}

.nav-menu__panel a:hover,
.nav-menu__panel a.is-current {
  background: var(--paper);
  color: var(--blue);
}

.nav-link--menu::after {
  display: none;
}

.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink-2);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 600;
  font-size: var(--type-button);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button--dark {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.18);
}

.button--dark:hover {
  background: #0077ed;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.button.is-active-button {
  background: #005bbf;
}

.button--light {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}

.button--light:hover {
  background: var(--blue);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  padding: clamp(64px, 7vw, 112px) 22px clamp(28px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(41, 151, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 58%, #eceef3 100%);
}

.hero__content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section__label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: var(--type-display);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(90deg, #0071e3, #00a99d 48%, #7b61ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lede {
  max-width: 790px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.3;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__panel {
  position: relative;
  width: min(1120px, 100%);
  min-height: clamp(430px, 48vw, 660px);
  display: grid;
  align-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 22%, rgba(76, 201, 240, 0.35), transparent 28%),
    radial-gradient(circle at 28% 66%, rgba(0, 169, 157, 0.25), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f6f8fc 52%, #e9edf6 100%);
  box-shadow:
    0 42px 100px rgba(17, 24, 39, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  isolation: isolate;
  overflow: hidden;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.86), rgba(0, 169, 157, 0.68)),
    #0071e3;
  filter: blur(0.2px);
  opacity: 0.14;
  z-index: -1;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 9% 13% auto;
  width: min(420px, 48%);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--aws));
  box-shadow: 0 18px 60px rgba(255, 159, 10, 0.28);
}

.hero__panel-copy {
  max-width: 660px;
}

.hero__panel-copy p,
.hero__panel-copy span {
  margin: 0;
  color: var(--blue);
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero__panel-copy h2 {
  margin: 12px 0;
  font-size: var(--type-section-title);
  line-height: 0.96;
  letter-spacing: 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.signal-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.signal-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.62);
}

.signal-grid dt {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0;
}

.signal-grid dd {
  margin: 0;
  font-size: var(--type-nav);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.proof-strip {
  width: min(1120px, calc(100% - 44px));
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px auto 0;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  position: relative;
  z-index: 2;
}

.proof-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: 700;
}

.proof-strip__items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-2);
  font-size: var(--type-small);
  font-weight: 650;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding: clamp(84px, 10vw, 150px) 22px;
  border-bottom: 0;
}

.section--intro {
  background: var(--white);
}

.section__label,
.section__body {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section__body h2,
.aws-band h2,
.outcomes h2,
.why h2,
.contact h2,
.contact h1,
.page-hero h1,
.page-band h1,
.page-band h2,
.split-feature h2,
.outcome-stories h2 {
  margin: 0;
  max-width: 920px;
  font-size: var(--type-page-title);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.section__body > p,
.section-heading p,
.contact__copy p,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.page-hero {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: clamp(84px, 11vw, 160px) 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(41, 151, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.page-hero > div {
  width: min(980px, 100%);
}

.page-hero p {
  margin: 28px auto 0;
}

.page-hero--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(41, 151, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #050816 0%, #111827 100%);
}

.page-hero--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.page-section {
  padding: clamp(84px, 10vw, 150px) max(22px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.page-section--white {
  background: var(--white);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list p,
.insight-grid article {
  margin: 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intro-insights {
  margin-top: clamp(34px, 5vw, 58px);
}

.intro-insights article {
  border: 1px solid rgba(0, 113, 227, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.insight-grid h3 {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: var(--type-card-title);
  line-height: 1.05;
}

.insight-grid p {
  margin: 0;
}

.outcome-stories {
  display: grid;
  gap: 18px;
}

.outcome-stories article {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 16%, rgba(41, 151, 255, 0.2), transparent 32%),
    var(--white);
}

.outcome-stories span {
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 700;
}

.outcome-stories h2 {
  margin-top: 24px;
}

.outcome-stories p {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--type-lede);
}

.article-hub {
  padding: clamp(78px, 10vw, 132px) max(22px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

.article-hub__header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  margin-bottom: 28px;
}

.article-hub__header span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 800;
}

.article-hub__header h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.article-hub__header p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: 30px;
  border-radius: 8px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-card--featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.18), transparent 34%),
    linear-gradient(145deg, #07101f 0%, #142c4b 100%);
  color: var(--white);
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card__meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--white);
  color: #515154;
  font-size: var(--type-meta);
  font-weight: 750;
}

.article-card--featured .article-card__meta span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.article-card h3 {
  max-width: 680px;
  margin: 0;
  color: var(--ink-2);
  font-size: var(--type-card-title);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-card--featured h3 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
}

.article-card p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.42;
}

.article-card--featured p {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-lede);
}

.article-card a {
  color: var(--blue);
  font-size: var(--type-button);
  font-weight: 800;
}

.article-card--featured a {
  color: #7cc4ff;
}

.blog-article {
  padding: clamp(64px, 8vw, 108px) max(22px, calc((100vw - 900px) / 2));
  background: var(--white);
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.blog-article__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #515154;
  font-size: var(--type-meta);
  font-weight: 750;
}

.blog-article__body {
  display: grid;
  gap: 28px;
}

.blog-article__body h2 {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-article__body p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.45;
}

.blog-article__body ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.42;
}

.blog-article__body li::marker {
  color: var(--blue);
}

.blog-article__callout {
  margin: 10px 0;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: #f5f5f7;
  color: var(--ink-2);
  font-size: var(--type-lede);
  line-height: 1.38;
}

.blog-article__back {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: var(--blue);
  font-size: var(--type-button);
  font-weight: 800;
}

.page-band {
  min-height: calc(100vh - var(--nav-h));
}

.detail-header {
  width: min(980px, 100%);
  margin-bottom: 42px;
}

.detail-header h2,
.architecture-panel h2,
.operating-rhythm h2 {
  margin: 0;
  max-width: 900px;
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.detail-header p,
.architecture-panel p,
.operating-rhythm p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.detail-grid,
.case-grid,
.motion-grid,
.phase-grid,
.next-step-grid {
  display: grid;
  gap: 18px;
}

.detail-grid,
.motion-grid,
.phase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.next-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.case-grid article,
.motion-grid article,
.phase-grid article,
.next-step-grid article {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background: var(--white);
}

.page-section--white .detail-card,
.page-section--white .case-grid article,
.page-section--white .motion-grid article,
.page-section--white .phase-grid article,
.page-section--white .next-step-grid article {
  background: var(--paper);
}

.detail-card h3,
.case-grid h3,
.motion-grid h3,
.phase-grid h3,
.next-step-grid h3 {
  margin: 0 0 18px;
  font-size: var(--type-card-title);
  line-height: 1.05;
  letter-spacing: 0;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.detail-card p + ul {
  margin-top: 24px;
}

.detail-card ul,
.phase-grid ul,
.architecture-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.phase-grid li,
.architecture-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: var(--type-body);
}

.detail-card li::before,
.phase-grid li::before,
.architecture-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leader-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(26px, 3vw, 38px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.leader-card > img {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.leader-card__body {
  display: grid;
  gap: 24px;
}

.leader-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 700;
}

.leader-card h3 {
  margin: 0;
  font-size: var(--type-card-title);
  line-height: 1.05;
  letter-spacing: 0;
}

.leader-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.leader-card a {
  width: fit-content;
  color: var(--blue);
  font-size: var(--type-button);
  font-weight: 700;
  text-decoration: none;
}

.leader-card a:hover {
  text-decoration: underline;
}

.deliverable-strip,
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-strip article,
.metric-row article {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
}

.deliverable-strip span,
.case-grid span,
.phase-grid span,
.next-step-grid span {
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 700;
}

.deliverable-strip p,
.case-grid p,
.motion-grid p,
.phase-grid p,
.next-step-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.case-grid article {
  min-height: 520px;
  display: grid;
  align-content: end;
}

.case-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.case-grid dl div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 113, 227, 0.07);
}

.case-grid dt {
  margin-bottom: 8px;
  color: var(--ink-2);
  font-weight: 700;
}

.case-grid dd {
  margin: 0;
  color: var(--muted);
}

.metric-row article {
  background: #111827;
  color: var(--white);
}

.metric-row strong {
  display: block;
  margin-bottom: 18px;
  font-size: var(--type-section-title);
  line-height: 0.95;
  letter-spacing: 0;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-body);
  line-height: 1.35;
}

.why-deploi {
  padding: clamp(70px, 9vw, 118px) max(22px, calc((100vw - 1120px) / 2));
  background: var(--white);
}

.why-deploi__header {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  margin-bottom: 34px;
}

.why-deploi__header h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.why-deploi__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-deploi__grid article {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f5f8ff 0%, #ffffff 72%);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-deploi__grid span {
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 800;
}

.why-deploi__grid h3 {
  margin: 0;
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1.08;
  letter-spacing: 0;
}

.why-deploi__grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.4;
}

.credibility-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.08);
}

.credibility-metrics article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: var(--paper);
}

.credibility-metrics--dark article {
  background: #111827;
  color: var(--white);
}

.credibility-metrics strong {
  display: block;
  color: var(--ink-2);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1;
  letter-spacing: 0;
}

.credibility-metrics--dark strong {
  color: var(--white);
}

.credibility-metrics span {
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.35;
}

.credibility-metrics--dark span {
  color: rgba(255, 255, 255, 0.72);
}

.credential-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  margin-bottom: 28px;
}

.credential-showcase__copy > span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 800;
}

.credential-showcase__copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-2);
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.credential-showcase__copy p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.partner-badge {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 153, 0, 0.2), transparent 36%),
    linear-gradient(145deg, #111827 0%, #1f2937 100%);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.partner-badge span {
  color: #ff9900;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.partner-badge strong {
  margin-top: -18px;
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.credential-grid article {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
}

.credential-grid span {
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 800;
}

.credential-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--ink-2);
  font-size: var(--type-meta);
  font-weight: 650;
}

.architecture-panel,
.operating-rhythm {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.architecture-panel ul {
  margin-top: 0;
  padding: 34px;
  border-radius: 8px;
  background: var(--paper);
}

.operating-rhythm > div {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.service-detail-layout h2 {
  margin: 0;
  max-width: 860px;
  font-size: var(--type-section-title);
  line-height: 1.02;
}

.service-detail-layout p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

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

.section-heading p {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.service-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 80% 0%, rgba(41, 151, 255, 0.13), transparent 30%),
    var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.09);
}

.service-card__number {
  color: var(--blue);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0;
}

.service-card h3 {
  margin: 26px 0 16px;
  font-size: var(--type-card-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-card p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.36;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card li {
  border: 0;
  border-radius: 999px;
  background: #f5f5f7;
  padding: 9px 13px;
  color: #515154;
  font-size: var(--type-meta);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.service-card a {
  margin-top: 26px;
  color: var(--blue);
  font-size: var(--type-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.service-card a::after {
  content: " >";
  color: var(--blue);
}

.services-work {
  background: var(--paper);
}

.services-hero {
  min-height: 500px;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.service-portfolio {
  padding: clamp(62px, 7vw, 96px) max(22px, calc((100vw - 1120px) / 2)) clamp(84px, 10vw, 140px);
  background: var(--white);
}

.service-portfolio__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.service-portfolio__intro h2,
.service-model h2,
.services-cta h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-portfolio__intro p,
.service-model > div > p,
.services-cta p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.service-portfolio__list {
  display: grid;
  gap: 12px;
}

.service-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 max(22px, calc((100vw - 1120px) / 2)) clamp(58px, 8vw, 96px);
  background: #f5f5f7;
}

.service-answer-grid article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-answer-grid span {
  color: var(--blue);
  font-size: var(--type-meta);
  font-weight: 800;
}

.service-answer-grid h2 {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--type-card-title);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-answer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.4;
}

.service-row {
  display: grid;
  grid-template-columns: 56px minmax(320px, 1.15fr) minmax(220px, 0.85fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  min-height: 190px;
  padding: clamp(26px, 3.4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.06), transparent 48%),
    var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-row__index {
  color: var(--blue);
  font-size: var(--type-body);
  font-weight: 800;
}

.service-row h3 {
  margin: 0 0 14px;
  font-size: var(--type-card-title);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.service-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #515154;
  font-size: var(--type-meta);
  font-weight: 650;
}

.service-row a {
  justify-self: end;
  color: var(--blue);
  font-size: var(--type-button);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.service-row a::after {
  content: " >";
}

.service-model {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
  padding: clamp(84px, 10vw, 140px) max(22px, calc((100vw - 1120px) / 2));
  background: #f5f5f7;
}

.service-model > div > p {
  margin-top: 22px;
}

.service-model__steps {
  display: grid;
  gap: 12px;
}

.service-model__steps article {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.service-model__steps span {
  color: var(--blue);
  font-size: var(--type-button);
  font-weight: 800;
}

.service-model__steps p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.38;
}

.services-cta {
  display: grid;
  justify-items: start;
  gap: 24px;
  padding: clamp(84px, 10vw, 140px) max(22px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 76% 18%, rgba(41, 151, 255, 0.27), transparent 32%),
    linear-gradient(145deg, #050816 0%, #111827 100%);
  color: var(--white);
}

.services-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.home-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.home-results article {
  min-height: 320px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 169, 157, 0.13), transparent 32%),
    #111827;
  color: var(--white);
}

.home-results span {
  color: var(--blue-2);
  font-size: var(--type-nav);
  font-weight: 700;
}

.home-results h3 {
  max-width: 620px;
  margin: 26px 0 14px;
  font-size: var(--type-card-title);
  line-height: 1.03;
}

.home-results p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-body);
}

.aws-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 70px;
  align-items: center;
  min-height: 760px;
  padding: clamp(82px, 9vw, 150px) max(22px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 74% 26%, rgba(41, 151, 255, 0.34), transparent 26%),
    radial-gradient(circle at 24% 78%, rgba(255, 159, 10, 0.22), transparent 30%),
    linear-gradient(145deg, #020713 0%, #07142f 56%, #111827 100%);
}

.aws-band__panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(30px, 4vw, 54px);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.aws-band__panel h3 {
  margin: 22px 0 18px;
  font-size: var(--type-card-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.aws-band__panel h2 {
  margin: 22px 0 18px;
  font-size: var(--type-card-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.aws-band__panel p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-lede);
}

.badge {
  display: inline-flex;
  margin: 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 159, 10, 0.16);
  color: #ffd08a;
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
  background: transparent;
}

.timeline__item {
  min-height: 320px;
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
}

.timeline__item:last-child {
  border-right: 0;
}

.timeline__item span {
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 700;
  letter-spacing: 0;
}

.timeline__item h3 {
  margin: 70px 0 12px;
  font-size: var(--type-card-title);
}

.timeline__item p {
  color: var(--muted);
  font-size: var(--type-body);
}

.outcomes {
  padding: clamp(84px, 10vw, 150px) 22px;
  background: var(--white);
  border-bottom: 0;
}

.outcomes > .eyebrow,
.outcomes__grid {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
}

.outcomes__grid > div > p {
  max-width: 620px;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.35;
}

.work-grid {
  display: grid;
  gap: 14px;
  border: 0;
}

.work-grid article {
  min-height: 280px;
  padding: clamp(30px, 4vw, 46px);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
}

.work-grid span {
  color: var(--blue);
  font-size: var(--type-nav);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.work-grid h3 {
  margin: 28px 0 14px;
  max-width: 620px;
  font-size: var(--type-card-title);
  line-height: 1.03;
  letter-spacing: 0;
}

.work-grid p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 70px;
  padding: clamp(84px, 10vw, 150px) max(22px, calc((100vw - 1120px) / 2));
  border-bottom: 0;
  background: var(--paper);
}

.why__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: 0;
}

.why__points p {
  min-height: 190px;
  margin: 0;
  display: flex;
  align-items: end;
  padding: 28px;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: inset 0 5px 0 var(--teal);
  color: var(--ink-2);
  font-size: var(--type-card-title);
  line-height: 1.05;
  font-weight: 750;
}

.why__points p:nth-child(2) {
  box-shadow: inset 0 5px 0 var(--green);
}

.why__points p:nth-child(3) {
  box-shadow: inset 0 5px 0 var(--aws);
}

.why__points p:nth-child(4) {
  box-shadow: inset 0 5px 0 var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 70px;
  padding: clamp(84px, 10vw, 150px) max(22px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 85% 20%, rgba(41, 151, 255, 0.32), transparent 26%),
    linear-gradient(145deg, #050816 0%, #111827 100%);
  color: var(--white);
}

.contact__copy {
  position: sticky;
  top: 96px;
  align-self: start;
}

.contact__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact__copy a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-size: var(--type-lede);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form .form-honeypot {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #515154;
  font-size: var(--type-meta);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink-2);
  font: inherit;
  padding: 14px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.contact-form select {
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  padding-right: 42px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-2) 50%),
    linear-gradient(135deg, var(--ink-2) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(29, 29, 31, 0.32);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}

.footer {
  padding: 34px max(22px, calc((100vw - 1120px) / 2));
  background: #f5f5f7;
  color: #86868b;
  font-size: var(--type-meta);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer--credibility {
  display: flex;
  justify-content: flex-end;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer__contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer__contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer__contact a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 1160px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-deploi__grid,
  .credibility-metrics,
  .credential-showcase,
  .credential-grid,
  .article-grid,
  .service-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav {
    width: min(100% - 32px, 1180px);
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 28px;
    background: rgba(251, 251, 253, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.11);
    backdrop-filter: saturate(180%) blur(22px);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 15px 0;
    font-size: var(--type-lede);
  }

  .nav-menu {
    display: grid;
    min-height: auto;
  }

  .nav-menu__panel {
    position: static;
    width: 100%;
    display: grid;
    padding: 0 0 10px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu__panel a {
    padding: 10px 0;
    color: var(--muted);
    font-size: var(--type-button);
  }

  .nav__links .button {
    margin-top: 10px;
  }

  .section-heading,
  .aws-band,
  .outcomes__grid,
  .why,
  .contact,
  .split-feature,
  .why-deploi__header,
  .credential-showcase,
  .article-hub__header,
  .article-grid,
  .insight-grid,
  .detail-grid,
  .motion-grid,
  .phase-grid,
  .next-step-grid,
  .deliverable-strip,
  .metric-row,
  .why-deploi__grid,
  .credibility-metrics,
  .credential-grid,
  .footer--credibility,
  .architecture-panel,
  .operating-rhythm,
  .service-portfolio__intro,
  .service-answer-grid,
  .service-model,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-card--featured {
    grid-column: span 1;
  }

  .service-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .service-row ul,
  .service-row a {
    grid-column: 2;
    justify-self: start;
  }

  .service-model__steps article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer__contact {
    justify-items: start;
    text-align: left;
  }

  .case-grid dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-heading {
    display: grid;
    gap: 18px;
  }

  .aws-band {
    min-height: auto;
  }

  .contact__copy {
    position: static;
  }

  .leader-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .leader-card > img {
    width: min(160px, 45vw);
  }
}

@media (max-width: 700px) {
  .brand {
    width: 136px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: var(--type-display);
  }

  .hero__lede {
    font-size: var(--type-lede);
  }

  .button {
    width: 100%;
  }

  .proof-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .proof-strip__items {
    justify-content: flex-start;
  }

  .hero__panel {
    min-height: 440px;
  }

  .services-hero {
    min-height: auto;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-row ul,
  .service-row a {
    grid-column: auto;
  }

  .signal-grid,
  .service-grid,
  .timeline,
  .why__points,
  .contact-form,
  .home-results,
  .leader-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    gap: 24px;
  }

  .leader-card > img {
    width: min(180px, 58vw);
  }

  .service-card,
  .timeline__item,
  .work-grid article,
  .why__points p {
    min-height: auto;
  }

  .timeline__item h3 {
    margin-top: 34px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
