@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- Base ---- */
body {
  margin: 0;
  background: #FFFFFF;
  color: #16181C;
  font-family: Outfit, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1D6BF3;
  text-decoration: none;
}

a:hover {
  opacity: .72;
}

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

svg {
  flex-shrink: 0;
}

/* ---- Container ---- */
.cstm_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* ---- Rails ---- */
.rail {
  display: flex;
  gap: 22px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  box-sizing: border-box;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding-inline: max(40px, calc((100% - 1320px) / 2));
  padding: 4px max(40px, calc((100% - 1320px) / 2)) 8px;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail>* {
  scroll-snap-align: start;
  box-sizing: border-box;
}

.rail_nav {
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8A8F99;
}

.rail_nav svg {
  width: 20px;
  height: 20px;
}

.rail_nav .btn {
  width: 46px;
  height: 46px;
  border-radius: 100px;
  border: 1px solid #E2E4E9;
  background: #fff;
  color: #8A8F99;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: color .18s, border-color .18s;
}

.rail_nav .btn:hover {
  color: #16181C;
  border-color: #16181C;
}

/* ---- Header ---- */
.header_sec {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

.header_sec .cstm_container {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header_sec .logo img {
  height: 82px;
  width: auto;
}

.header_sec .nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 17.5px;
  font-weight: 500;
}

.header_sec .nav a {
  color: #16181C;
}

.header_sec .nav a.active {
  color: #1D6BF3;
}

.header_sec .nav .btn {
  border: 1.5px solid #1D6BF3;
  color: #1D6BF3;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap;
}

.header_sec .nav .btn.fill {
  background: #1D6BF3;
  color: #fff;
}

/* drawer-only parts, hidden on desktop */
.header_sec .nav_top,
.header_sec .nav_foot,
.header_sec .nav_backdrop {
  display: none;
}

.header_sec .toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #16181C;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}

.header_sec .toggle:hover {
  background: #2A2D33;
  box-shadow: 0 8px 20px rgba(22, 24, 28, .22);
}

.header_sec .toggle:active {
  transform: scale(.94);
}

.header_sec .toggle:focus-visible {
  outline: 2px solid #1D6BF3;
  outline-offset: 3px;
}

.header_sec .toggle .bars {
  display: block;
  position: relative;
  width: 20px;
  height: 14px;
  margin: 0 auto;
}

.header_sec .toggle .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .18s ease;
}

.header_sec .toggle .bars span:nth-child(1) {
  top: 0;
}

.header_sec .toggle .bars span:nth-child(2) {
  top: 6px;
}

.header_sec .toggle .bars span:nth-child(3) {
  top: 12px;
}

/* bars fold into a cross while the drawer opens */
.header_sec .toggle.open .bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header_sec .toggle.open .bars span:nth-child(2) {
  opacity: 0;
}

.header_sec .toggle.open .bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- Home hero ---- */
.hero_sec {
  position: relative;
  padding-top: 44px;
  text-align: center;
}

.hero_sec::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 100%;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(29, 107, 243, .12), rgba(150, 120, 255, .07) 46%, transparent 72%);
  filter: blur(26px);
}

.hero_sec .cstm_container {
  position: relative;
}

.hero_sec .title {
  margin: 0 auto;
  max-width: 1060px;
  font-size: 92px;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: pretty;
}

.hero_sec .title span {
  color: #1D6BF3;
}

.hero_sec .text {
  margin: 30px auto 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.45;
  color: #4A4E57;
  max-width: 860px;
}

.hero_sec .actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero_sec .link {
  font-size: 18px;
  font-weight: 600;
  color: #16181C;
}

.hero_sec .meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-size: 16px;
  color: #61656E;
}

.hero_sec .meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero_sec .meta svg {
  color: #1D6BF3;
  width: 1em;
  height: 1em;
  vertical-align: -.125em;
}

.hero_sec .meta .line {
  width: 1px;
  height: 18px;
  background: #DCDEE4;
}

/* ---- Buttons ---- */
.btn_primary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #1D6BF3;
  color: #fff;
  padding: 13px 13px 13px 38px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 20px 48px rgba(29, 107, 243, .30);
}

.btn_primary .icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #fff;
  color: #1D6BF3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.btn_primary .icon svg {
  width: 1em;
  height: 1em;
  vertical-align: -.125em;
}

.btn_outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid #16181C;
  color: #16181C;
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap;
}

.btn_outline svg {
  width: .9em;
  height: .9em;
}

.btn_store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1.5px solid #16181C;
  color: #16181C;
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap;
}

.btn_store svg {
  width: 18px;
  height: 18px;
}

.btn_send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #1D6BF3;
  color: #fff;
  padding: 12px 12px 12px 32px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(29, 107, 243, .28);
}

.btn_send .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 100px;
  background: #fff;
  color: #1D6BF3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_send .icon svg {
  width: 20px;
  height: 20px;
}

/* ---- Ratings ---- */
.ratings_sec {
  padding-top: 96px;
}

.ratings_sec .box {
  border-radius: 36px;
  background: #16181C;
  color: #fff;
  padding: 56px;
}

.ratings_sec .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.ratings_sec .head h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 700;
  letter-spacing: -.038em;
  line-height: 1.08;
}

.ratings_sec .head .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
}

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

.ratings_sec .item {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.ratings_sec .item:first-child {
  padding: 0 40px 0 0;
  border-left: 0;
}

.ratings_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: #8DB4FB;
}

.ratings_sec .score {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 22px;
}

.ratings_sec .num {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
}

.ratings_sec .stars {
  font-size: 19px;
  color: #8DB4FB;
  letter-spacing: .08em;
}

.ratings_sec .title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-top: 22px;
}

.ratings_sec .text {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .66);
  margin-top: 6px;
}

/* ---- Why teams stay ---- */
.why_sec {
  padding-top: 70px
}

.why_sec .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.why_sec .head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

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

.why_sec .card {
  border-radius: 32px;
  padding: 48px 48px 52px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  text-wrap: pretty;
  background: #F4F5F7;
}

.why_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.why_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.why_sec .card.dark .tag {
  color: #8DB4FB;
}

.why_sec h3 {
  margin: 60px 0 0;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.why_sec .lead {
  margin: 28px 0 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: #61656E;
}

.why_sec .card.dark .lead {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.4;
  color: #fff;
}

.why_sec .text {
  margin: 16px 0 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: #61656E;
}

.why_sec .card.dark .text {
  color: rgba(255, 255, 255, .64);
}

/* ---- What we do ---- */
.services_sec {
  padding-top: 70px;
}

.services_sec h2 {
  margin: 0 0 44px;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.services_sec h2 span {
  color: #8A8F99;
}

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

.services_sec .card {
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  background: #F4F5F7;
  padding: 48px 44px;
  min-height: 400px;
}

.services_sec .card.wide {
  grid-column: span 2;
}

.services_sec .card.mobile {
  padding: 56px 56px 0;
  overflow: hidden;
  min-height: 470px;
}

.services_sec .card.design {
  background: #EDE9FE;
  min-height: 470px;
}

.services_sec .card.ai {
  background: #16181C;
  color: #fff;
  padding: 48px 56px;
}

.services_sec h3 {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 54px);
  overflow-wrap: break-word;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.services_sec .card.mobile h3,
.services_sec .card.ai h3 {
  font-size: clamp(30px, 4.6vw, 68px);
}

.services_sec .card.mobile h3 {
  max-width: 620px;
}

.services_sec .lead {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: #16181C;
}

.services_sec .card.mobile .lead,
.services_sec .card.ai .lead {
  margin-top: 24px;
  font-size: 24px;
}

.services_sec .card.mobile .lead {
  max-width: 560px;
}

.services_sec .card.ai .lead {
  color: #fff;
  max-width: 620px;
}

.services_sec .text {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color: #61656E;
}

.services_sec .card.design .text {
  color: rgba(22, 24, 28, .66);
}

.services_sec .card.mobile .text {
  font-size: 19px;
  max-width: 520px;
}

.services_sec .card.ai .text {
  font-size: 19px;
  color: rgba(255, 255, 255, .64);
  max-width: 580px;
}

.services_sec .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.services_sec .tag {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  background: #fff;
  color: #4A4E57;
}

.services_sec .card.design .tag {
  background: rgba(255, 255, 255, .72);
}

.services_sec .card.ai .tag {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .86);
}

.services_sec .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 32px;
}

.services_sec .bottom .tags {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 48px;
}

.services_sec .card.ai .bottom {
  gap: 28px;
  padding-top: 30px;
  flex-wrap: wrap;
}

.services_sec .card.ai .bottom .tags {
  padding-bottom: 0;
}

.services_sec .card.ai .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #16181C;
  padding: 12px 12px 12px 26px;
  border-radius: 100px;
  font-size: 16.5px;
  font-weight: 600;
  white-space: nowrap;
}

.services_sec .card.ai .btn .icon {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: #16181C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.services_sec .card.ai .btn .icon svg {
  width: 1em;
  height: 1em;
}

.services_sec .phone {
  width: 210px;
  flex-shrink: 0;
  border-radius: 30px 30px 0 0;
  background: #16181C;
  padding: 8px 8px 0;
}

.services_sec .screen {
  border-radius: 23px 23px 0 0;
  background: #fff;
  padding: 15px 14px 0;
  height: 186px;
  overflow: hidden;
}

.services_sec .bar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
}

.services_sec .cover {
  margin-top: 12px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(140deg, #1D6BF3, #6B5BF0);
}

.services_sec .row {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.services_sec .row span {
  flex: 1;
  height: 40px;
  border-radius: 12px;
  background: #F1F2F5;
}

.services_sec .line {
  margin-top: 10px;
  height: 10px;
  width: 72%;
  border-radius: 3px;
  background: #E9EAEE;
}

/* ---- Work rail ---- */
.work_sec {
  padding-top: 70px;
}

.work_sec .head {
  padding-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.work_sec .head h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.032em;
  line-height: 1.1;
}

.work_sec .head h2 span {
  color: #8A8F99;
}

.work_sec .rail {
  gap: 22px;
  align-items: stretch;
}

.work_sec .card {
  flex: 0 0 632px;
  border-radius: 36px;
  padding: 48px 48px 0;
  display: flex;
  flex-direction: column;
  color: #16181C;
  overflow: hidden;
}

.work_sec .card.c1 {
  background: #C4B5FD;
}

.work_sec .card.c2 {
  background: #7FE9C3;
}

.work_sec .card.c3 {
  background: #A5C8FF;
}

.work_sec .card.c4 {
  background: #FDBA74;
}

.work_sec .card.c5 {
  background: #FDA4C3;
}

.work_sec .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.work_sec .name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.work_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(22, 24, 28, .12);
}

.work_sec h3 {
  margin: 62px 0 0;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.work_sec .text {
  margin: 20px 0 36px;
  font-size: 18.5px;
  line-height: 1.5;
  color: rgba(22, 24, 28, .72);
  max-width: 340px;
}

.work_sec .phone_wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.work_sec .phone {
  width: 272px;
  border-radius: 34px 34px 0 0;
  background: #16181C;
  padding: 9px 9px 0;
}

.work_sec .screen {
  border-radius: 27px 27px 0 0;
  background: #fff;
  padding: 18px 17px 0;
  height: 262px;
  overflow: hidden;
}

.work_sec .bar {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #16181C;
}

.work_sec .panel {
  margin-top: 12px;
  border-radius: 14px;
  color: #fff;
}

.work_sec .c1 .panel {
  padding: 13px;
  background: #6D28D9;
}

.work_sec .c2 .panel {
  padding: 12px 13px;
  background: #047857;
}

.work_sec .c4 .panel {
  padding: 15px 13px;
  background: #C2410C;
}

.work_sec .panel .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .82;
}

.work_sec .c2 .panel .cap,
.work_sec .c4 .panel .cap {
  opacity: .85;
}

.work_sec .c1 .panel .title {
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 5px;
}

.work_sec .c2 .panel .title {
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.3;
}

.work_sec .c4 .panel .price {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.035em;
  margin-top: 4px;
}

.work_sec .c4 .panel .sub {
  font-size: 10px;
  opacity: .88;
  margin-top: 3px;
}

.work_sec .eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
  margin-top: 11px;
}

.work_sec .eq span {
  flex: 1;
  border-radius: 2px;
}

.work_sec .list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.work_sec .list .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work_sec .list .thumb {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #EDE9FE;
  flex-shrink: 0;
}

.work_sec .list .lines {
  flex: 1;
}

.work_sec .list .lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: #E9EAEE;
}

.work_sec .list .lines span+span {
  background: #F1F2F5;
  margin-top: 5px;
}

.work_sec .map {
  margin-top: 12px;
  height: 84px;
  border-radius: 14px;
  background: repeating-linear-gradient(115deg, #E8F7F1 0 9px, #D8F0E6 9px 18px);
  position: relative;
  overflow: hidden;
}

.work_sec .map .pin {
  position: absolute;
  left: 34%;
  top: 38%;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: #047857;
  box-shadow: 0 0 0 6px rgba(4, 120, 87, .22);
}

.work_sec .map .dot {
  position: absolute;
  left: 68%;
  top: 22%;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #34A87C;
}

.work_sec .tabs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.work_sec .tabs span {
  flex: 1;
  height: 32px;
  border-radius: 11px;
  background: #F1F2F5;
}

.work_sec .tabs span.on {
  background: #E8F7F1;
}

.work_sec .stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.work_sec .stats .box {
  flex: 1;
  border-radius: 12px;
  background: #F1F2F5;
  padding: 11px;
}

.work_sec .stats .num {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.work_sec .stats .cap {
  font-size: 9px;
  color: #8A8F99;
  margin-top: 2px;
}

.work_sec .chart {
  margin-top: 12px;
  border-radius: 14px;
  background: #F7F8FA;
  padding: 13px 12px;
}

.work_sec .chart .bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}

.work_sec .chart .bars span {
  flex: 1;
  background: #C9DCFB;
  border-radius: 3px;
}

.work_sec .chart .bars span.on {
  background: #1D6BF3;
}

.work_sec .status {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.work_sec .status .item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.work_sec .status .dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: #2FB37E;
  flex-shrink: 0;
}

.work_sec .status .bar_line {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: #E9EAEE;
}

.work_sec .fares {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.work_sec .fares .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 11px;
  background: #F1F2F5;
  padding: 10px 12px;
}

.work_sec .fares .item span:first-child {
  height: 6px;
  border-radius: 3px;
  background: #E1E3E8;
}

.work_sec .fares .item span:last-child {
  font-size: 10.5px;
  font-weight: 700;
}

.work_sec .c5 .cover {
  margin-top: 12px;
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(140deg, #E11D48, #9F1239);
}

.work_sec .c5 .lines {
  margin-top: 11px;
}

.work_sec .c5 .lines span {
  display: block;
  height: 8px;
  border-radius: 3px;
  background: #E9EAEE;
}

.work_sec .c5 .lines span+span {
  margin-top: 6px;
}

.work_sec .unlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  border-radius: 12px;
  background: #FEF0F4;
  padding: 11px 13px;
}

.work_sec .unlock span {
  font-size: 11px;
  font-weight: 700;
  color: #9F1239;
}

/* ---- Reviews ---- */
.reviews_sec {
  padding-top: 70px;
}

.reviews_sec .head {
  padding-bottom: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews_sec .head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.reviews_sec .head h2 span {
  color: #8A8F99;
}

.reviews_sec .rail {
  gap: 20px;
}

.reviews_sec .card {
  flex: 0 0 470px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 40px 38px 34px;
  display: flex;
  flex-direction: column;
  background: #F4F5F7;
  color: #16181C;
}

.reviews_sec .card.wide {
  flex-basis: 524px;
}

.reviews_sec .card.dark {
  background: #16181C;
  color: #FFFFFF;
}

.reviews_sec .card.purple {
  background: #C4B5FD;
}

.reviews_sec .card.blue {
  background: #DCE8FE;
}

.reviews_sec .card::before {
  content: "\201D";
  position: absolute;
  right: 34px;
  top: 56px;
  font-family: Georgia, serif;
  font-size: 132px;
  line-height: .8;
  opacity: .16;
  pointer-events: none;
  color: #1D6BF3;
}

.reviews_sec .stars {
  position: relative;
  display: block;
  font-size: 16px;
  letter-spacing: .16em;
  color: #1D6BF3;
}

.reviews_sec .card.dark::before,
.reviews_sec .card.dark .stars {
  color: #8DB4FB;
}

.reviews_sec .card.purple::before,
.reviews_sec .card.purple .stars {
  color: #4B3F8F;
}

.reviews_sec .card.blue::before,
.reviews_sec .card.blue .stars {
  color: #1A5FD9;
}

.reviews_sec .figure {
  position: relative;
  margin-top: 30px;
}

.reviews_sec .figure .num {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
}

.reviews_sec .figure .cap {
  font-size: 15.5px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
}

.reviews_sec .card.purple .figure .cap {
  color: #4B3F8F;
}

.reviews_sec .text {
  position: relative;
  margin: 32px 0 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.015em;
  text-wrap: pretty;
}

.reviews_sec .figure+.text {
  margin-top: 26px;
  font-size: 18px;
}

.reviews_sec .author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 30px;
}

.reviews_sec .avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 100px;
  background: #FFFFFF;
  color: #16181C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.reviews_sec .card.dark .avatar {
  background: rgba(255, 255, 255, .14);
  color: #FFFFFF;
}

.reviews_sec .card.purple .avatar {
  background: rgba(22, 24, 28, .1);
}

.reviews_sec .card.blue .avatar {
  background: rgba(255, 255, 255, .7);
}

.reviews_sec .name {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
}

.reviews_sec .role {
  display: block;
  font-size: 15px;
  margin-top: 1px;
  color: #61656E;
}

.reviews_sec .card.dark .role {
  color: rgba(255, 255, 255, .62);
}

.reviews_sec .card.purple .role {
  color: #4B3F8F;
}

.reviews_sec .card.blue .role {
  color: #3C5A8C;
}

/* ---- Shared: page hero ---- */
.about_hero_sec,
.process_hero_sec,
.blog_hero_sec,
.careers_hero_sec {
  padding-top: 40px;
}

.cases_hero_sec {
  padding-top: 40px;
}

.about_hero_sec .tag,
.process_hero_sec .tag,
.blog_hero_sec .tag,
.careers_hero_sec .tag,
.cases_hero_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: #1D6BF3;
}

.about_hero_sec h1,
.process_hero_sec h1,
.blog_hero_sec h1,
.careers_hero_sec h1,
.cases_hero_sec h1 {
  margin: 26px 0 0;
  max-width: 1000px;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: pretty;
}

.about_hero_sec h1 {
  max-width: 1060px;
}

.process_hero_sec h1 {
  max-width: 1080px;
}

.careers_hero_sec h1 {
  max-width: 1020px;
}

.about_hero_sec .text,
.process_hero_sec .text,
.blog_hero_sec .text,
.careers_hero_sec .text,
.cases_hero_sec .text {
  margin: 28px 0 0;
  font-size: 23px;
  line-height: 1.5;
  color: #4A4E57;
  max-width: 720px;
}

.process_hero_sec .text,
.cases_hero_sec .text {
  max-width: 700px;
}

.blog_hero_sec .text {
  max-width: 680px;
}

.about_hero_sec .stats,
.process_hero_sec .stats,
.careers_hero_sec .stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid #E7E8EC;
  border-bottom: 1px solid #E7E8EC;
}

.about_hero_sec .num,
.careers_hero_sec .num,
.numbers_sec .num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

.careers_hero_sec .num {
  font-size: 40px;
}

.process_hero_sec .num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.about_hero_sec .num span,
.careers_hero_sec .num span,
.numbers_sec .num span {
  color: #1D6BF3;
}

.about_hero_sec .cap,
.process_hero_sec .cap,
.careers_hero_sec .cap,
.numbers_sec .cap {
  font-size: 16.5px;
  color: #61656E;
  margin-top: 12px;
}

.process_hero_sec .cap {
  line-height: 1.5;
}

/* ---- Shared: bordered 4-column strip ---- */
.glance_sec .grid,
.numbers_sec .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #E7E8EC;
  border-bottom: 1px solid #E7E8EC;
}

.about_hero_sec .box,
.process_hero_sec .box,
.careers_hero_sec .box,
.glance_sec .box,
.numbers_sec .box {
  padding: 34px 32px;
  border-left: 1px solid #E7E8EC;
}

.about_hero_sec .box:first-child,
.process_hero_sec .box:first-child,
.careers_hero_sec .box:first-child,
.glance_sec .box:first-child,
.numbers_sec .box:first-child {
  padding: 34px 32px 34px 0;
  border-left: 0;
}

.about_hero_sec .box:last-child,
.process_hero_sec .box:last-child,
.careers_hero_sec .box:last-child,
.glance_sec .box:last-child,
.numbers_sec .box:last-child {
  padding: 34px 0 34px 32px;
}

/* ---- Shared: split heading block ---- */
.story_sec .head,
.models_sec .head,
.faq_sec .head,
.stack_sec .head,
.challenge_sec .head,
.approach_sec .head,
.contribution_sec .head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.models_sec .head,
.stack_sec .head,
.approach_sec .head {
  margin-bottom: 44px;
}

.story_sec .head h2,
.models_sec .head h2,
.faq_sec .head h2,
.stack_sec .head h2,
.challenge_sec .head h2,
.approach_sec .head h2,
.contribution_sec .head h2,
.reviews_sec .head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.models_sec .head p,
.stack_sec .head p,
.approach_sec .head p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #4A4E57;
  padding-top: 6px;
}

/* ---- Shared: section heading rows ---- */
.latest_sec .head,
.roles_sec .head,
.credentials_sec .head,
.related_sec .head,
.next_sec .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.latest_sec .head h2,
.roles_sec .head h2,
.credentials_sec .head h2,
.related_sec .head h2,
.next_sec .head h2,
.principles_sec h2,
.perks_sec h2,
.solutions_sec h2,
.shipped_sec h2,
.included_sec h2,
.build_sec h2,
.commitments_sec h2,
.timeline_sec .head h2,
.phases_sec .head h2,
.series_sec .head h2,
.screens_sec .head h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.principles_sec h2,
.perks_sec h2,
.solutions_sec h2,
.shipped_sec h2,
.included_sec h2,
.build_sec h2 {
  margin-bottom: 44px;
}

.commitments_sec h2,
.phases_sec .head h2,
.series_sec .head h2 {
  margin-bottom: 12px;
}

.principles_sec h2 span,
.perks_sec h2 span,
.solutions_sec h2 span,
.included_sec h2 span,
.phases_sec .head h2 span,
.series_sec .head h2 span,
.screens_sec .head h2 span {
  color: #8A8F99;
}

.latest_sec .head .label,
.roles_sec .head .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .16em;
  color: #8A8F99;
}

/* ---- Shared: dark panel ---- */
.week_sec,
.team_sec,
.hiring_sec,
.reassurance_sec,
.proof_sec,
.tech_sec {
  padding-top: 70px;
}

.week_sec .box,
.team_sec .box,
.hiring_sec .box,
.reassurance_sec .box,
.proof_sec .box,
.tech_sec .box {
  border-radius: 40px;
  background: #16181C;
  color: #fff;
  padding: 64px 56px 68px;
}

.week_sec .head,
.team_sec .head,
.hiring_sec .head,
.reassurance_sec .head,
.proof_sec .head,
.tech_sec .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.week_sec .head h2,
.team_sec .head h2,
.hiring_sec .head h2,
.reassurance_sec .head h2,
.proof_sec .head h2,
.tech_sec .head h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.week_sec .head .label,
.team_sec .head .label,
.hiring_sec .head .label,
.reassurance_sec .head .label,
.proof_sec .head .label,
.tech_sec .head .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .5);
}

.week_sec .grid,
.team_sec .grid,
.hiring_sec .grid,
.reassurance_sec .grid,
.proof_sec .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.week_sec .item,
.team_sec .item,
.hiring_sec .item,
.reassurance_sec .item,
.proof_sec .item {
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.tech_sec .item {
  padding: 0 40px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.week_sec .item:first-child,
.team_sec .item:first-child,
.hiring_sec .item:first-child,
.reassurance_sec .item:first-child,
.proof_sec .item:first-child {
  padding: 0 36px 0 0;
  border-left: 0;
}

.tech_sec .item:first-child {
  padding: 0 40px 0 0;
  border-left: 0;
}

.week_sec .item:last-child,
.team_sec .item:last-child,
.hiring_sec .item:last-child,
.reassurance_sec .item:last-child,
.proof_sec .item:last-child {
  padding: 0 0 0 36px;
}

.tech_sec .item:last-child {
  padding: 0 0 0 40px;
}

.week_sec .tag,
.hiring_sec .tag,
.reassurance_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #8DB4FB;
}

.tech_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #6EE7B7;
}

.week_sec .title,
.hiring_sec .title,
.reassurance_sec .title,
.tech_sec .title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.025em;
  margin-top: 18px;
  line-height: 1.25;
}

.hiring_sec .title,
.reassurance_sec .title {
  font-size: 20px;
}

.tech_sec .title {
  margin-top: 20px;
}

.week_sec .text,
.hiring_sec .text,
.reassurance_sec .text {
  margin: 10px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .64);
}

.tech_sec .text {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .64);
}

.team_sec .num,
.proof_sec .num {
  font-size: clamp(38px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
}

.proof_sec .num {
  font-size: clamp(46px, 4.6vw, 66px);
  line-height: .92;
}

.team_sec .title,
.proof_sec .title {
  font-size: 17.5px;
  font-weight: 600;
  margin-top: 18px;
}

.proof_sec .title {
  margin-top: 20px;
}

.team_sec .cap,
.proof_sec .cap {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .64);
  margin-top: 5px;
}

.team_sec .note {
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 18.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  max-width: 820px;
}

/* ---- Shared: promo box ---- */
.subscribe_sec,
.careers_cta_sec {
  padding-top: 70px;
}

.speculative_sec {
  padding: 112px 0;
}

.subscribe_sec .box,
.careers_cta_sec .box,
.speculative_sec .box {
  border-radius: 40px;
  background: #F4F5F7;
  padding: 56px 52px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
}

.subscribe_sec h2,
.careers_cta_sec h2,
.speculative_sec h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.subscribe_sec .text,
.careers_cta_sec .text,
.speculative_sec .text {
  margin: 18px 0 0;
  font-size: 18.5px;
  line-height: 1.6;
  color: #61656E;
}

.subscribe_sec .form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.subscribe_sec .input {
  flex: 1 1 220px;
  min-width: 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 17px;
  color: #A8ACB5;
}

.subscribe_sec .btn {
  background: #1D6BF3;
  color: #fff;
  padding: 18px 30px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.careers_cta_sec .actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.careers_cta_sec .actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  color: #16181C;
  font-size: 17.5px;
  font-weight: 600;
}

.careers_cta_sec .actions svg {
  width: 17px;
  height: 17px;
}

.speculative_sec .actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.speculative_sec .note {
  font-size: 16.5px;
  color: #61656E;
  text-align: center;
}

/* ---- Shared: filter chips ---- */
.blog_hero_sec .filters,
.cases_hero_sec .filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.blog_hero_sec .filters button,
.cases_hero_sec .filters button {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 11px 22px;
  border: 0;
  border-radius: 100px;
  background: #F4F5F7;
  color: #4A4E57;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s, color .18s;
}

.blog_hero_sec .filters button:hover,
.cases_hero_sec .filters button:hover {
  background: #E7E8EC;
}

.blog_hero_sec .filters button.on,
.cases_hero_sec .filters button.on {
  font-weight: 600;
  background: #16181C;
  color: #fff;
}

/* ---- Filtered-out items / empty state ---- */
.latest_sec .card.hide,
.cases_sec .card.hide {
  display: none;
}

.latest_sec .empty,
.cases_sec .empty {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 17.5px;
  color: #61656E;
}

/* ---- Shared: FAQ ---- */
.faq_sec {
  padding-top: 70px;
}

.faq_sec .item {
  padding: 26px 0;
  border-bottom: 1px solid #E7E8EC;
}

.faq_sec .item:first-child {
  padding: 0 0 26px;
}

.faq_sec .item:last-child {
  padding: 26px 0 0;
  border-bottom: 0;
}

.faq_sec h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.faq_sec p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #61656E;
}

/* ---- Shared: back link ---- */
.service_hero_sec .back,
.cs_hero_sec .back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #61656E;
}

.service_hero_sec .back svg,
.cs_hero_sec .back svg {
  width: 16px;
  height: 16px;
}

/* ---- Story / challenge ---- */
.story_sec,
.challenge_sec {
  padding-top: 70px;
}

.story_sec .lead,
.challenge_sec .lead {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.015em;
  text-wrap: pretty;
}

.story_sec .text,
.challenge_sec .text {
  margin: 18px 0 0;
  font-size: 18.5px;
  line-height: 1.65;
  color: #61656E;
}

.story_sec .lead+.text,
.challenge_sec .lead+.text {
  margin-top: 22px;
}

/* ---- Principles ---- */
.principles_sec {
  padding-top: 70px;
}

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

.principles_sec .card {
  border-radius: 32px;
  background: #F4F5F7;
  padding: 44px 42px 46px;
}

.principles_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.principles_sec .card.blue {
  background: #E9F0FE;
}

.principles_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.principles_sec .card.dark .tag {
  color: #8DB4FB;
}

.principles_sec h3 {
  margin: 24px 0 0;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.06;
}

.principles_sec .text {
  margin: 18px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.principles_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.principles_sec .card.blue .text {
  color: #4A4E57;
}

/* ---- Timeline ---- */
.timeline_sec {
  padding-top: 70px;
}

.timeline_sec .head,
.phases_sec .head,
.series_sec .head,
.screens_sec .head {
  padding-bottom: 44px;
}

.timeline_sec .head p,
.phases_sec .head p,
.series_sec .head p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #4A4E57;
  max-width: 720px;
}

.timeline_sec .card {
  flex: 0 0 340px;
  background: #F4F5F7;
  border-radius: 32px;
  padding: 40px 36px 42px;
  display: flex;
  flex-direction: column;
}

.timeline_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.timeline_sec .card.purple {
  background: #C4B5FD;
}

.timeline_sec .year {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

.timeline_sec h3 {
  margin: 24px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.timeline_sec .text {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: #61656E;
}

.timeline_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.timeline_sec .card.purple .text {
  color: rgba(22, 24, 28, .72);
}

/* ---- Credentials ---- */
.credentials_sec {
  padding-top: 70px;
}

.credentials_sec .head .label {
  font-size: 16.5px;
  color: #61656E;
}

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

.credentials_sec .card {
  border-radius: 24px;
  background: #F4F5F7;
  padding: 30px 30px 32px;
}

.credentials_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.credentials_sec .title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-top: 20px;
}

.credentials_sec .text {
  font-size: 16px;
  line-height: 1.55;
  color: #61656E;
  margin-top: 6px;
}

/* ---- Engagement models ---- */
.models_sec {
  padding-top: 70px;
}

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

.models_sec .card {
  border-radius: 32px;
  background: #F4F5F7;
  padding: 40px 38px 42px;
  display: flex;
  flex-direction: column;
}

.models_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.models_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.models_sec .card.dark .tag {
  color: #8DB4FB;
}

.models_sec h3 {
  margin: 24px 0 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.models_sec .text {
  margin: 16px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.models_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.models_sec .list {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(22, 24, 28, .12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  color: #4A4E57;
}

.models_sec .card.dark .list {
  border-top-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .72);
}

.models_sec .list strong {
  color: #16181C;
  font-weight: 600;
}

.models_sec .card.dark .list strong {
  color: #fff;
}

/* ---- Phases ---- */
.phases_sec {
  padding-top: 70px;
}

.phases_sec .card {
  flex: 0 0 424px;
  background: #F4F5F7;
  color: #16181C;
  border-radius: 32px;
  padding: 40px 38px 42px;
  display: flex;
  flex-direction: column;
}

.phases_sec .card.blue {
  background: #E9F0FE;
}

.phases_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.phases_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.phases_sec .card.dark .tag {
  color: #8DB4FB;
}

.phases_sec h3 {
  margin: 26px 0 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.phases_sec .sub {
  font-size: 16.5px;
  color: #61656E;
  margin-top: 8px;
}

.phases_sec .text {
  margin: 22px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.phases_sec .card.dark .sub,
.phases_sec .card.dark .text {
  color: rgba(255, 255, 255, .64);
}

.phases_sec .out {
  margin-top: auto;
  padding-top: 30px;
}

.phases_sec .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: #61656E;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(22, 24, 28, .12);
}

.phases_sec .card.dark .cap {
  color: rgba(255, 255, 255, .64);
  border-bottom-color: rgba(255, 255, 255, .16);
}

.phases_sec .items {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 16px;
}

.phases_sec .items span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 500;
}

.phases_sec .items svg {
  width: 16px;
  height: 16px;
}

/* ---- Team & tools ---- */
.tools_sec {
  padding-top: 70px;
}

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

.tools_sec .card {
  border-radius: 32px;
  background: #F4F5F7;
  padding: 44px 42px 46px;
}

.tools_sec h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.tools_sec .text {
  margin: 16px 0 30px;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.tools_sec .rows {
  border-top: 1px solid rgba(22, 24, 28, .12);
}

.tools_sec .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(22, 24, 28, .12);
}

.tools_sec .row:last-child {
  border-bottom: 0;
}

.tools_sec .row span:first-child {
  font-size: 17.5px;
  font-weight: 600;
}

.tools_sec .row span:last-child {
  font-size: 16px;
  color: #61656E;
  text-align: right;
}

.tools_sec .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tools_sec .tags span {
  font-size: 16.5px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 100px;
  background: #fff;
  color: #4A4E57;
}

.tools_sec .notes {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(22, 24, 28, .12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tools_sec .notes span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 500;
}

.tools_sec .notes svg {
  width: 17px;
  height: 17px;
}

/* ---- Commitments ---- */
.commitments_sec {
  padding-top: 70px;
}

.commitments_sec .intro {
  margin: 0 0 44px;
  font-size: 20px;
  line-height: 1.6;
  color: #4A4E57;
  max-width: 720px;
}

.commitments_sec .grid,
.perks_sec .grid,
.included_sec .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.commitments_sec .card,
.included_sec .card {
  border-radius: 28px;
  background: #F4F5F7;
  padding: 34px 32px 36px;
}

.commitments_sec .card.blue,
.included_sec .card.blue,
.perks_sec .card.blue {
  background: #E9F0FE;
}

.commitments_sec .tag,
.perks_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.commitments_sec h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.commitments_sec .text,
.included_sec .text,
.perks_sec .text {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #61656E;
}

.commitments_sec .card.blue .text,
.included_sec .card.blue .text,
.perks_sec .card.blue .text {
  color: #4A4E57;
}

/* ---- Blog featured ---- */
.featured_sec {
  padding-top: 56px;
}

.featured_sec .card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
  border-radius: 40px;
  background: #16181C;
  color: #fff;
  padding: 60px 56px 64px;
}

.featured_sec .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.featured_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .14);
  color: #8DB4FB;
}

.featured_sec .info {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
}

.featured_sec h2 {
  margin: 30px 0 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 800;
  letter-spacing: -.042em;
  line-height: 1.04;
  text-wrap: pretty;
}

.featured_sec .text {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  max-width: 620px;
}

.featured_sec .author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 36px;
}

.featured_sec .avatar {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.featured_sec .name {
  display: block;
  font-size: 16.5px;
  font-weight: 600;
}

.featured_sec .role {
  display: block;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .6);
}

.featured_sec .stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured_sec .box {
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  padding: 22px 24px;
}

.featured_sec .num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.featured_sec .cap {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .62);
  margin-top: 6px;
}

/* ---- Blog latest ---- */
.latest_sec {
  padding-top: 70px;
}

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

.latest_sec .card {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: #F4F5F7;
  color: #16181C;
  padding: 34px 32px 36px;
}

.latest_sec .thumb {
  height: 156px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  margin-bottom: 26px;
  background: #DCE8FE;
}

.latest_sec .thumb.violet {
  background: #EDE9FE;
}

.latest_sec .thumb.mint {
  background: #D6F7EA;
}

.latest_sec .thumb.grey {
  background: #F1F2F5;
}

.latest_sec .thumb span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.04em;
  color: #1A5FD9;
}

.latest_sec .thumb.violet span {
  color: #4B3F8F;
}

.latest_sec .thumb.mint span {
  color: #0B5E45;
}

.latest_sec .thumb.grey span {
  color: #61656E;
}

.latest_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.latest_sec .tag.violet {
  color: #4B3F8F;
}

.latest_sec .tag.mint {
  color: #0B5E45;
}

.latest_sec h3 {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.18;
}

.latest_sec .text {
  margin: 12px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #61656E;
}

.latest_sec .meta {
  margin-top: auto;
  padding-top: 26px;
  font-size: 15.5px;
  color: #8A8F99;
}

/* ---- Blog series ---- */
.series_sec {
  padding-top: 70px;
}

.series_sec .card {
  flex: 0 0 424px;
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  background: #F4F5F7;
  color: #16181C;
  padding: 40px 38px 42px;
}

.series_sec .card.purple {
  background: #C4B5FD;
}

.series_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.series_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.series_sec .card.purple .tag {
  color: #4B3F8F;
}

.series_sec .card.dark .tag {
  color: #8DB4FB;
}

.series_sec h3 {
  margin: 26px 0 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.06;
}

.series_sec .text {
  margin: 18px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.series_sec .card.purple .text {
  color: rgba(22, 24, 28, .72);
}

.series_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.series_sec .meta {
  margin-top: auto;
  padding-top: 30px;
  font-size: 16px;
  color: #8A8F99;
}

.series_sec .card.purple .meta {
  color: rgba(22, 24, 28, .6);
}

.series_sec .card.dark .meta {
  color: rgba(255, 255, 255, .55);
}

/* ---- Careers perks ---- */
.perks_sec {
  padding-top: 70px;
}

.perks_sec .card {
  border-radius: 28px;
  background: #F4F5F7;
  padding: 36px 34px 38px;
}

.perks_sec h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
}

/* ---- Careers roles ---- */
.roles_sec {
  padding-top: 70px;
}

.roles_sec .list {
  border-top: 1px solid #E7E8EC;
}

.roles_sec .row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) 40px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #E7E8EC;
  color: #16181C;
}

.roles_sec .title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.025em;
}

.roles_sec .sub {
  font-size: 16.5px;
  color: #61656E;
  margin-top: 5px;
}

.roles_sec .cell {
  font-size: 16.5px;
  color: #61656E;
}

.roles_sec .row svg {
  width: 20px;
  height: 20px;
  justify-self: end;
}

/* ---- Get a quote ---- */
.quote_sec {
  padding-top: 56px;
}

.quote_sec .grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}

.quote_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: #1D6BF3;
}

.quote_sec h1 {
  margin: 26px 0 0;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: pretty;
}

.quote_sec .text {
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.5;
  color: #4A4E57;
}

.quote_sec .steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E7E8EC;
}

.quote_sec .step {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #E7E8EC;
}

.quote_sec .step:last-child {
  border-bottom: 0;
}

.quote_sec .n {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 100px;
  background: #E9F0FE;
  color: #1A5FD9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
}

.quote_sec .step .title {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.quote_sec .step .sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: #61656E;
  margin-top: 5px;
}

.quote_sec .direct {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #E7E8EC;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote_sec .direct .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #8A8F99;
}

.quote_sec .direct a {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.quote_sec .direct a.dark {
  color: #16181C;
}

.quote_sec .direct .note {
  font-size: 16.5px;
  color: #61656E;
  margin-top: 4px;
}

.quote_sec .form {
  border-radius: 36px;
  background: #F4F5F7;
  padding: 48px 44px 50px;
}

.quote_sec .fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.quote_sec label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quote_sec .label {
  font-size: 15.5px;
  font-weight: 600;
}

.quote_sec .input {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 16.5px;
}

.quote_sec .area {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  font-size: 16.5px;
  line-height: 1.55;
  min-height: 152px;
}

.quote_sec .group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.quote_sec .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.quote_sec .chip {
  font-size: 15.5px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 100px;
  background: #fff;
  color: #4A4E57;
}

.quote_sec .opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote_sec .opt {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  color: #4A4E57;
}

.quote_sec .check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 13px;
}

.quote_sec .check .box {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 7px;
  background: #1D6BF3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote_sec .check svg {
  width: 14px;
  height: 14px;
}

.quote_sec .check span {
  font-size: 16.5px;
  line-height: 1.55;
  color: #4A4E57;
}

.quote_sec .form .note {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #8A8F99;
  text-align: center;
}

/* ---- Service hero ---- */
.service_hero_sec {
  padding-top: 40px;
}

.service_hero_sec .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 56px;
  align-items: center;
  margin-top: 44px;
}

.service_hero_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .18em;
  color: #1D6BF3;
}

.service_hero_sec h1 {
  margin: 26px 0 0;
  font-size: clamp(38px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: pretty;
}

.service_hero_sec .text {
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.5;
  color: #4A4E57;
  max-width: 580px;
}

.service_hero_sec .actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.service_hero_sec .link {
  font-size: 18px;
  font-weight: 600;
  color: #16181C;
}

.service_hero_sec .btn_primary .icon svg {
  width: 21px;
  height: 21px;
}

.service_hero_sec .art {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.service_hero_sec .art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  max-width: 100%;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(29, 107, 243, .14), rgba(150, 120, 255, .08) 46%, transparent 72%);
  filter: blur(26px);
}

.service_hero_sec .phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.service_hero_sec .phone {
  min-width: 0;
  box-sizing: border-box;
  background: #16181C;
}

.service_hero_sec .phone.sm {
  flex: 0 1 180px;
  border-radius: 32px;
  padding: 7px;
  box-shadow: 0 30px 70px rgba(22, 24, 28, .16);
}

.service_hero_sec .phone.lg {
  flex: 0 1 244px;
  border-radius: 40px;
  padding: 9px;
  box-shadow: 0 44px 96px rgba(22, 24, 28, .22);
}

.service_hero_sec .phone.sm .screen {
  border-radius: 26px;
  background: #fff;
  padding: 14px 13px 16px;
  overflow: hidden;
}

.service_hero_sec .phone.lg .screen {
  border-radius: 32px;
  background: #fff;
  padding: 18px 16px 20px;
  overflow: hidden;
}

.service_hero_sec .bar {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-weight: 700;
}

.service_hero_sec .phone.lg .bar {
  font-size: 10.5px;
}

.service_hero_sec .cover {
  margin-top: 12px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(140deg, #1D6BF3, #6B5BF0);
}

.service_hero_sec .rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.service_hero_sec .rows span {
  height: 38px;
  border-radius: 12px;
  background: #F1F2F5;
}

.service_hero_sec .rows span.on {
  background: #E9F0FE;
}

.service_hero_sec .panel {
  margin-top: 14px;
  border-radius: 18px;
  padding: 18px 17px;
  background: #1D6BF3;
  color: #fff;
}

.service_hero_sec .panel .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .12em;
  opacity: .82;
}

.service_hero_sec .panel .title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 5px;
}

.service_hero_sec .stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.service_hero_sec .stats .box {
  flex: 1;
  border-radius: 14px;
  background: #F1F2F5;
  padding: 13px 12px;
}

.service_hero_sec .stats .num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.service_hero_sec .stats .cap {
  font-size: 9.5px;
  color: #8A8F99;
  margin-top: 2px;
}

.service_hero_sec .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.service_hero_sec .list .item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.service_hero_sec .list .thumb {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #E9F0FE;
  flex-shrink: 0;
}

.service_hero_sec .list .lines {
  flex: 1;
}

.service_hero_sec .list .lines span {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #E9EAEE;
}

.service_hero_sec .list .lines span+span {
  background: #F1F2F5;
  margin-top: 5px;
}

/* ---- At a glance ---- */
.glance_sec {
  padding-top: 70px;
}

.glance_sec .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  color: #8A8F99;
}

.glance_sec .val {
  font-size: 18.5px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin-top: 14px;
  line-height: 1.4;
}

/* ---- Stack choice ---- */
.stack_sec {
  padding-top: 70px;
}

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

.stack_sec .card {
  border-radius: 32px;
  background: #F4F5F7;
  padding: 44px 42px 46px;
}

.stack_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.stack_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #1A5FD9;
}

.stack_sec .card.dark .tag {
  color: #8DB4FB;
}

.stack_sec h3 {
  margin: 26px 0 0;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.stack_sec .text {
  margin: 18px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.stack_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.stack_sec .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.stack_sec .tags span {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  background: #fff;
  color: #4A4E57;
}

.stack_sec .card.dark .tags span {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
}

/* ---- What's included ---- */
.included_sec {
  padding-top: 70px;
}

.included_sec svg {
  width: 26px;
  height: 26px;
}

.included_sec h3 {
  margin: 20px 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
}

/* ---- Build / approach steps ---- */
.build_sec,
.approach_sec {
  padding-top: 70px;
}

.build_sec .grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

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

.approach_sec .grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.approach_sec .grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.build_sec .step,
.approach_sec .step {
  border-top: 2px solid #D6D8DE;
  padding-top: 24px;
}

.build_sec .step.on {
  border-top-color: #1D6BF3;
}

.approach_sec .step.on {
  border-top-color: #047857;
}

.build_sec .tag,
.approach_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  color: #A8ACB5;
}

.build_sec .step.on .tag {
  color: #1A5FD9;
}

.approach_sec .step.on .tag {
  color: #0B5E45;
}

.build_sec h3,
.approach_sec h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.build_sec .text,
.approach_sec .text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #61656E;
}

/* ---- Related / next case ---- */
.related_sec,
.next_sec {
  padding-top: 70px;
}

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

.related_sec .card,
.next_sec .card {
  display: block;
  border-radius: 32px;
  padding: 44px 42px 46px;
  color: #16181C;
}

.related_sec .card.purple,
.next_sec .card.purple {
  background: #C4B5FD;
}

.related_sec .card.green,
.next_sec .card.green {
  background: #7FE9C3;
}

.related_sec .top,
.next_sec .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.related_sec .name,
.next_sec .name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.related_sec .tag,
.next_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(22, 24, 28, .12);
}

.related_sec .title,
.next_sec .title {
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-top: 40px;
}

.related_sec .text,
.next_sec .text {
  font-size: 17.5px;
  line-height: 1.55;
  color: rgba(22, 24, 28, .72);
  margin-top: 16px;
}

/* ---- Case studies index ---- */
.cases_sec {
  padding-top: 56px;
}

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

.cases_sec .card {
  display: flex;
  flex-direction: column;
  border-radius: 36px;
  background: #F4F5F7;
  color: #16181C;
  padding: 44px 42px 46px;
}

.cases_sec .card.wide {
  grid-column: span 2;
  padding: 48px 44px 50px;
}

.cases_sec .card.green {
  background: #7FE9C3;
}

.cases_sec .card.purple {
  background: #C4B5FD;
}

.cases_sec .card.dark {
  background: #16181C;
  color: #FFFFFF;
}

.cases_sec .inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px;
  align-items: center;
}

.cases_sec .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cases_sec .wide .top {
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cases_sec .name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.cases_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(22, 24, 28, .12);
  color: #16181C;
}

.cases_sec .card.dark .tag {
  background: rgba(255, 255, 255, .14);
  color: #FFFFFF;
}

.cases_sec .card.plain .tag {
  background: rgba(22, 24, 28, .08);
  color: #61656E;
}

.cases_sec h2 {
  margin: 40px 0 0;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.cases_sec .wide h2 {
  margin: 32px 0 0;
  font-size: clamp(32px, 3.4vw, 46px);
  letter-spacing: -.042em;
  line-height: 1.04;
  text-wrap: pretty;
}

.cases_sec .text {
  margin: 16px 0 0;
  font-size: 17.5px;
  line-height: 1.55;
  color: rgba(22, 24, 28, .72);
}

.cases_sec .card.plain .text {
  color: #61656E;
}

.cases_sec .wide .text {
  margin: 20px 0 0;
  font-size: 18.5px;
  line-height: 1.6;
  max-width: 560px;
}

.cases_sec .card.dark .text {
  color: rgba(255, 255, 255, .66);
}

.cases_sec .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cases_sec .chips span {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .6);
  color: #16181C;
}

.cases_sec .card.plain .chips span {
  background: #fff;
  color: #4A4E57;
}

.cases_sec .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 34px;
  font-size: 17px;
  font-weight: 600;
  color: #16181C;
}

.cases_sec .more svg {
  width: 16px;
  height: 16px;
}

.cases_sec .card.plain .more {
  color: #1D6BF3;
}

.cases_sec .wide .more {
  margin-top: 32px;
  padding-top: 0;
  font-size: 17.5px;
}

.cases_sec .wide .more svg {
  width: 17px;
  height: 17px;
}

.cases_sec .card.dark .more {
  color: #8DB4FB;
}

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

.cases_sec .figs .box {
  border-radius: 20px;
  background: rgba(255, 255, 255, .55);
  padding: 22px 24px;
}

.cases_sec .card.dark .figs .box {
  background: rgba(255, 255, 255, .08);
}

.cases_sec .figs .num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.cases_sec .figs .cap {
  font-size: 15px;
  color: rgba(22, 24, 28, .72);
  margin-top: 5px;
}

.cases_sec .card.dark .figs .cap {
  color: rgba(255, 255, 255, .66);
}

.numbers_sec {
  padding-top: 70px
}

/* ---- Case study hero ---- */
.cs_hero_sec {
  padding-top: 40px;
}

.cs_hero_sec .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
  margin-top: 44px;
}

.cs_hero_sec .top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cs_hero_sec .name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.cs_hero_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  padding: 6px 12px;
  border-radius: 100px;
  background: #D6F7EA;
  color: #0B5E45;
}

.cs_hero_sec .tag.grey {
  background: #F4F5F7;
  color: #61656E;
}

.cs_hero_sec h1 {
  margin: 28px 0 0;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: pretty;
}

.cs_hero_sec .lead {
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.5;
  color: #4A4E57;
  max-width: 580px;
}

.cs_hero_sec .text {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #61656E;
  max-width: 580px;
}

.cs_hero_sec .actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.cs_hero_sec .note {
  font-size: 16px;
  color: #8A8F99;
}

.cs_hero_sec .art {
  position: relative;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs_hero_sec .art::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  max-width: 100%;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(16, 185, 129, .18), rgba(29, 107, 243, .08) 48%, transparent 72%);
  filter: blur(26px);
}

.cs_hero_sec .phone {
  position: relative;
  width: 320px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 44px;
  background: #16181C;
  padding: 10px;
  box-shadow: 0 40px 90px rgba(22, 24, 28, .18);
}

.cs_hero_sec .screen {
  border-radius: 35px;
  background: #fff;
  padding: 20px 18px 22px;
  overflow: hidden;
}

.cs_hero_sec .bar {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 700;
}

.cs_hero_sec .panel {
  margin-top: 16px;
  border-radius: 18px;
  padding: 20px;
  background: #047857;
  color: #fff;
}

.cs_hero_sec .panel .cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .82;
}

.cs_hero_sec .panel .big {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.25;
  margin-top: 10px;
}

.cs_hero_sec .panel .trip {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-top: 8px;
}

.cs_hero_sec .figure {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 8px;
}

.cs_hero_sec .figure .num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
}

.cs_hero_sec .figure .unit {
  font-size: 17px;
  font-weight: 600;
  opacity: .82;
}

.cs_hero_sec .bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 18px;
}

.cs_hero_sec .bars span {
  flex: 1;
  border-radius: 3px;
}

.cs_hero_sec .panel .foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11.5px;
  opacity: .85;
}

.cs_hero_sec .panel .dot {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .24);
  flex-shrink: 0;
}

.cs_hero_sec .faces {
  display: flex;
}

.cs_hero_sec .faces span {
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .34);
}

.cs_hero_sec .faces span+span {
  background: rgba(255, 255, 255, .24);
  margin-left: -7px;
}

.cs_hero_sec .faces span+span+span {
  background: rgba(255, 255, 255, .44);
}

.cs_hero_sec .stats {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.cs_hero_sec .stats .box {
  flex: 1;
  border-radius: 14px;
  background: #F1F2F5;
  padding: 12px;
}

.cs_hero_sec .stats .box.on {
  background: #D6F7EA;
}

.cs_hero_sec .stats .num {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.cs_hero_sec .stats .cap {
  font-size: 10.5px;
  color: #8A8F99;
  margin-top: 2px;
}

.cs_hero_sec .stats .box.on .cap {
  color: #0B5E45;
}

.cs_hero_sec .list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.cs_hero_sec .list .item {
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
  background: #F8F9FA;
  padding: 11px 12px;
}

.cs_hero_sec .list .thumb {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #D6F7EA;
  flex-shrink: 0;
}

.cs_hero_sec .list .thumb.grey {
  background: #F1F2F5;
}

.cs_hero_sec .list .body {
  flex: 1;
}

.cs_hero_sec .list .t {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.cs_hero_sec .list .s {
  display: block;
  font-size: 10.5px;
  color: #8A8F99;
  margin-top: 2px;
}

.cs_hero_sec .cta {
  margin-top: 14px;
  border-radius: 100px;
  background: #16181C;
  color: #fff;
  padding: 13px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
}

/* ---- Challenges & solutions ---- */
.solutions_sec {
  padding-top: 70px
}

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

.solutions_sec .card {
  border-radius: 32px;
  background: #F4F5F7;
  padding: 44px 42px 46px;
}

.solutions_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.solutions_sec .card.mint {
  background: #D6F7EA;
}

.solutions_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: #0B5E45;
}

.solutions_sec .card.dark .tag {
  color: #6EE7B7;
}

.solutions_sec h3 {
  margin: 26px 0 0;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.06;
}

.solutions_sec .text {
  margin: 20px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: #61656E;
}

.solutions_sec .card.dark .text {
  color: rgba(255, 255, 255, .62);
}

.solutions_sec .card.mint .text {
  color: rgba(11, 94, 69, .78);
}

.solutions_sec .answer {
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 24, 28, .12);
  font-size: 17.5px;
  line-height: 1.6;
  color: #16181C;
}

.solutions_sec .card.dark .answer {
  border-top-color: rgba(255, 255, 255, .16);
  color: #fff;
}

.solutions_sec .card.mint .answer {
  border-top-color: rgba(11, 94, 69, .2);
}

/* ---- Product screens ---- */
.screens_sec {
  padding-top: 70px
}

.screens_sec .card {
  flex: 0 0 384px;
  background: #F4F5F7;
  border-radius: 32px;
  padding: 36px 34px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screens_sec .card.green {
  background: #7FE9C3;
}

.screens_sec .card.dark {
  background: #16181C;
  color: #fff;
}

.screens_sec h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.screens_sec .text {
  margin: 14px 0 30px;
  font-size: 17px;
  line-height: 1.55;
  color: #61656E;
}

.screens_sec .card.green .text {
  color: rgba(22, 24, 28, .72);
}

.screens_sec .card.dark .text {
  color: rgba(255, 255, 255, .64);
}

.screens_sec .phone_wrap {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.screens_sec .phone {
  width: 244px;
  border-radius: 32px 32px 0 0;
  background: #16181C;
  padding: 9px 9px 0;
}

.screens_sec .card.dark .phone {
  background: #2A2D33;
}

.screens_sec .screen {
  border-radius: 25px 25px 0 0;
  background: #fff;
  height: 300px;
  overflow: hidden;
}

.screens_sec .screen.black {
  background: #0B0B0C;
}

.screens_sec img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  -webkit-user-select: none;
  user-select: none;
}

.screens_sec img.mid {
  object-position: center center;
}

.screens_sec img.low {
  object-position: center bottom;
}

.screens_sec img.p62 {
  object-position: center 62%;
}

/* ---- Everything we shipped ---- */
.shipped_sec {
  padding-top: 70px
}

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

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

.shipped_sec .grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shipped_sec .card {
  border-radius: 26px;
  background: #F4F5F7;
  padding: 30px 28px 32px;
}

.shipped_sec .card.mint {
  background: #D6F7EA;
}

.shipped_sec .title {
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.shipped_sec .text {
  font-size: 16px;
  line-height: 1.55;
  color: #61656E;
  margin-top: 8px;
}

.shipped_sec .card.mint .text {
  color: rgba(11, 94, 69, .82);
}

/* ---- Our contribution ---- */
.contribution_sec {
  padding-top: 70px
}

.contribution_sec .head p {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: #4A4E57;
}

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

.contribution_sec .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #E7E8EC;
  font-size: 17.5px;
  font-weight: 500;
}

.contribution_sec .item svg {
  width: 17px;
  height: 17px;
}

/* ---- Final outcome ---- */
.outcome_sec {
  padding-top: 70px;
}

.outcome_sec .box {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  background: #7FE9C3;
  padding: 64px 56px 60px;
}

.outcome_sec .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: .16em;
  color: #0B5E45;
}

.outcome_sec .lead {
  position: relative;
  margin: 30px 0 0;
  max-width: 1000px;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -.035em;
  text-wrap: pretty;
}

.outcome_sec .text {
  margin: 26px 0 0;
  max-width: 780px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(11, 94, 69, .86);
}

.outcome_sec .foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(11, 94, 69, .2);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.025em;
}


/* ---- Contact CTA ---- */
.cta_sec {
  padding: 70px 0;
}

.cta_sec .box {
  border-radius: 40px;
  background: #16181C;
  padding: 70px 30px;
  text-align: center;
}

.cta_sec .label {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  color: #FFFFFF;
}

.cta_sec h2 {
  margin: 22px auto 0;
  max-width: 900px;
  font-size: clamp(34px, 5.6vw, 82px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
  color: #FFFFFF;
  text-wrap: pretty;
}

.cta_sec h2 span {
  color: #8DB4FB;
}

.cta_sec .actions {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.cta_sec .btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #16181C;
  padding: 12px 12px 12px 36px;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cta_sec .btn .icon {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  background: #16181C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.cta_sec .btn .icon svg {
  width: 1em;
  height: 1em;
}

.cta_sec .note {
  margin: 26px 0 0;
  font-size: 16px;
  color: #FFFFFF;
}

/* ---- Footer ---- */
.footer_sec {
  background: #16181C;
  color: #fff;
}

.footer_sec .cstm_container {
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer_sec .top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 2fr);
  gap: 64px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer_sec .logo img {
  height: 76px;
  width: auto;
  filter: invert(1);
}

.footer_sec .about {
  margin: 24px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .66);
  max-width: 340px;
}

.footer_sec .social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.footer_sec .social a {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_sec .social svg {
  width: 18px;
  height: 18px;
}

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

.footer_sec .title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px;
}

.footer_sec .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_sec .list a {
  color: rgba(255, 255, 255, .72);
  font-size: 16.5px;
}

.footer_sec .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 30px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, .55);
}

.footer_sec .legal {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer_sec .legal a {
  color: rgba(255, 255, 255, .55);
}

/* ---- Device mock proportions ---- */
.cs_hero_sec .bars span:nth-child(1) {
  height: 46%;
  background: rgba(255, 255, 255, .42);
}

.cs_hero_sec .bars span:nth-child(2) {
  height: 68%;
  background: rgba(255, 255, 255, .55);
}

.cs_hero_sec .bars span:nth-child(3) {
  height: 54%;
  background: rgba(255, 255, 255, .48);
}

.cs_hero_sec .bars span:nth-child(4) {
  height: 88%;
  background: rgba(255, 255, 255, .78);
}

.cs_hero_sec .bars span:nth-child(5) {
  height: 62%;
  background: rgba(255, 255, 255, .52);
}

.cs_hero_sec .bars span:nth-child(6) {
  height: 100%;
  background: #fff;
}

.cs_hero_sec .bars span:nth-child(7) {
  height: 40%;
  background: rgba(255, 255, 255, .4);
}

.work_sec .eq span:nth-child(1) {
  height: 40%;
  background: rgba(255, 255, 255, .5);
}

.work_sec .eq span:nth-child(2) {
  height: 85%;
  background: rgba(255, 255, 255, .85);
}

.work_sec .eq span:nth-child(3) {
  height: 58%;
  background: rgba(255, 255, 255, .65);
}

.work_sec .eq span:nth-child(4) {
  height: 100%;
  background: #fff;
}

.work_sec .eq span:nth-child(5) {
  height: 44%;
  background: rgba(255, 255, 255, .55);
}

.work_sec .eq span:nth-child(6) {
  height: 72%;
  background: rgba(255, 255, 255, .78);
}

.work_sec .eq span:nth-child(7) {
  height: 30%;
  background: rgba(255, 255, 255, .45);
}

.work_sec .chart .bars span:nth-child(1) {
  height: 42%;
}

.work_sec .chart .bars span:nth-child(2) {
  height: 66%;
}

.work_sec .chart .bars span:nth-child(3) {
  height: 52%;
}

.work_sec .chart .bars span:nth-child(4) {
  height: 90%;
}

.work_sec .chart .bars span:nth-child(5) {
  height: 62%;
}

.work_sec .chart .bars span:nth-child(6) {
  height: 76%;
}

.work_sec .list .item:nth-child(1) .lines span:nth-child(1) {
  width: 78%;
}

.work_sec .list .item:nth-child(1) .lines span:nth-child(2) {
  width: 46%;
}

.work_sec .list .item:nth-child(2) .lines span:nth-child(1) {
  width: 64%;
}

.work_sec .list .item:nth-child(2) .lines span:nth-child(2) {
  width: 38%;
}

.work_sec .fares .item:nth-child(1) span:first-child {
  width: 52%;
}

.work_sec .fares .item:nth-child(2) span:first-child {
  width: 40%;
}

.work_sec .fares .item:nth-child(3) span:first-child {
  width: 58%;
}

.work_sec .c5 .lines span:nth-child(1) {
  width: 88%;
}

.work_sec .c5 .lines span:nth-child(2) {
  width: 62%;
}

.service_hero_sec .list .item:nth-child(1) .lines span:nth-child(1) {
  width: 74%;
}

.service_hero_sec .list .item:nth-child(1) .lines span:nth-child(2) {
  width: 44%;
}

.service_hero_sec .list .item:nth-child(2) .lines span:nth-child(1) {
  width: 60%;
}

.service_hero_sec .list .item:nth-child(2) .lines span:nth-child(2) {
  width: 38%;
}

/* ---- Form controls ---- */
.quote_sec .input,
.quote_sec .area,
.subscribe_sec .input {
  width: 100%;
  border: 0;
  outline: 0;
  font-family: inherit;
  color: #16181C;
  box-sizing: border-box;
}

.quote_sec .area {
  resize: vertical;
}

.quote_sec .input::placeholder,
.quote_sec .area::placeholder,
.subscribe_sec .input::placeholder {
  color: #A8ACB5;
}

.quote_sec .input:focus,
.quote_sec .area:focus,
.subscribe_sec .input:focus {
  box-shadow: 0 0 0 2px #1D6BF3;
}

.quote_sec .chips input,
.quote_sec .opts input,
.quote_sec .check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote_sec .chip,
.quote_sec .opt,
.quote_sec .check {
  cursor: pointer;
}

.quote_sec input:checked+.chip {
  font-weight: 600;
  background: #16181C;
  color: #fff;
}

.quote_sec input:checked+.opt {
  background: #16181C;
  color: #fff;
  font-weight: 600;
}

.quote_sec .chips input:focus-visible+.chip,
.quote_sec .opts input:focus-visible+.opt,
.quote_sec .check input:focus-visible+.box {
  box-shadow: 0 0 0 2px #1D6BF3;
}

.quote_sec .check input:not(:checked)+.box {
  background: #fff;
  box-shadow: inset 0 0 0 1.5px #C9CCD3;
}

.quote_sec .check input:not(:checked)+.box svg {
  display: none;
}

.subscribe_sec .btn,
.btn_send {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

/* ---- Contact page footer spacing ---- */
.faq_sec+.footer_sec {
  margin-top: 70px
}

/* ---- 1399.98px ---- */
@media (max-width: 1399.98px) {
  .hero_sec .title {
    font-size: 76px;
  }

  .work_sec h3 {
    font-size: 46px;
  }

  .work_sec .card {
    flex: 0 0 560px;
  }

  .reviews_sec .card,
  .reviews_sec .card.wide {
    flex-basis: 452px;
  }

  .shipped_sec .grid.five {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ---- 1199.98px ---- */
@media (max-width: 1199.98px) {
  .header_sec .nav {
    gap: 30px;
    font-size: 16.5px;
  }

  .header_sec .nav .btn {
    padding: 12px 22px;
  }

  .hero_sec .title {
    font-size: 62px;
  }

  .hero_sec .text {
    font-size: 22px;
  }

  .services_sec .grid,
  .services_sec .card.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: span 2;
  }

  .services_sec .card {
    min-height: 0;
  }

  .services_sec .card.mobile,
  .services_sec .card.design {
    min-height: 0;
  }

  .why_sec .card {
    min-height: 0;
    padding: 40px 36px 44px;
  }

  .why_sec h3 {
    margin-top: 40px;
  }

  .work_sec .card {
    flex: 0 0 480px;
    padding: 40px 40px 0;
  }

  .work_sec h3 {
    font-size: 40px;
    margin-top: 44px;
  }

  .reviews_sec .card,
  .reviews_sec .card.wide {
    flex-basis: 420px;
  }

  .build_sec .grid,
  .approach_sec .grid.five,
  .shipped_sec .grid,
  .shipped_sec .grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .build_sec .grid,
  .approach_sec .grid.five {
    gap: 36px 22px;
  }

  .approach_sec .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .week_sec .box,
  .team_sec .box,
  .hiring_sec .box,
  .reassurance_sec .box,
  .proof_sec .box,
  .tech_sec .box {
    padding: 48px 40px 52px;
  }

  /* four columns squeeze the copy to ~187px here â€” go to two */
  .week_sec .grid,
  .team_sec .grid,
  .hiring_sec .grid,
  .reassurance_sec .grid,
  .proof_sec .grid,
  .tech_sec .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 0;
  }

  .week_sec .item,
  .team_sec .item,
  .hiring_sec .item,
  .reassurance_sec .item,
  .proof_sec .item,
  .week_sec .item:first-child,
  .team_sec .item:first-child,
  .hiring_sec .item:first-child,
  .reassurance_sec .item:first-child,
  .proof_sec .item:first-child,
  .week_sec .item:last-child,
  .team_sec .item:last-child,
  .hiring_sec .item:last-child,
  .reassurance_sec .item:last-child,
  .proof_sec .item:last-child,
  .tech_sec .item,
  .tech_sec .item:first-child,
  .tech_sec .item:last-child {
    padding: 0 0 0 32px;
    border-left: 1px solid rgba(255, 255, 255, .16);
  }

  .week_sec .item:nth-child(odd),
  .team_sec .item:nth-child(odd),
  .hiring_sec .item:nth-child(odd),
  .reassurance_sec .item:nth-child(odd),
  .proof_sec .item:nth-child(odd),
  .tech_sec .item:nth-child(odd) {
    padding: 0 32px 0 0;
    border-left: 0;
  }

  .ratings_sec .box {
    padding: 44px 40px;
  }

  .cases_sec .card,
  .cases_sec .card.wide {
    padding: 40px 36px 42px;
  }

  .cases_sec .inner {
    gap: 36px;
  }

  .featured_sec .card {
    gap: 40px;
    padding: 48px 40px 52px;
  }

  .subscribe_sec .box,
  .careers_cta_sec .box,
  .speculative_sec .box {
    gap: 40px;
    padding: 48px 40px 52px;
  }

  .cta_sec .box {
    padding: 96px 40px 100px;
  }

  .service_hero_sec .art {
    min-height: 460px;
  }

  .quote_sec .grid,
  .story_sec .head,
  .models_sec .head,
  .faq_sec .head,
  .stack_sec .head,
  .challenge_sec .head,
  .approach_sec .head,
  .contribution_sec .head {
    gap: 44px;
  }
}

/* ---- 991.98px ---- */
@media (max-width: 991.98px) {

  .models_sec .head p,
  .stack_sec .head p,
  .approach_sec .head p {
    font-size: 18px;
  }

  .process_hero_sec .num {
    font-size: 26px;
  }

  .timeline_sec .head p,
  .phases_sec .head p,
  .series_sec .head p {
    font-size: 18px;
  }

  .models_sec .head,
  .stack_sec .head,
  .approach_sec .head {
    margin-bottom: 24px;
  }

  .about_hero_sec,
  .process_hero_sec,
  .blog_hero_sec,
  .careers_hero_sec {
    padding-top: 40px;
  }

  .commitments_sec .intro {
    margin: 0 0 24px;
  }

  .tools_sec .card {
    padding: 36px 30px;
  }

  .about_hero_sec .text,
  .process_hero_sec .text,
  .blog_hero_sec .text,
  .careers_hero_sec .text,
  .cases_hero_sec .text {
    margin: 20px 0 0;
    font-size: 18px;
  }

  .related_sec .card,
  .next_sec .card {
    padding: 26px 20px;
  }

  .latest_sec .head,
  .roles_sec .head,
  .credentials_sec .head,
  .related_sec .head,
  .next_sec .head {
    margin-bottom: 24px;
  }

  .outcome_sec .foot {
    margin-top: 20px;
    padding-top: 20px;
    font-size: 18px;
  }

  .outcome_sec .box {
    padding: 40px 30px;
  }

  .solutions_sec .card {
    padding: 26px 20px;
  }

  .approach_sec .grid {
    gap: 24px 16px;
  }

  .story_sec .lead,
  .challenge_sec .lead {
    font-size: 20px;
  }

  .cs_hero_sec .actions {
    margin-top: 24px;
  }

  .cs_hero_sec .lead {
    margin: 20px 0 0;
    font-size: 18px;
    max-width: 100%;
  }

  .quote_sec .grid,
  .story_sec .head,
  .models_sec .head,
  .faq_sec .head,
  .stack_sec .head,
  .challenge_sec .head,
  .approach_sec .head,
  .contribution_sec .head {
    gap: 14px;
  }

  .service_hero_sec .text {
    margin: 18px 0 0;
    font-size: 18px;
  }

  .why_sec .head {
    margin-bottom: 24px;
  }

  .services_sec h2 {
    margin: 0px 0 24px;
  }

  .why_sec h3 {
    margin-top: 22px;
  }

  .why_sec .text {
    font-size: 16px;
  }

  .why_sec .card.dark .lead {
    font-size: 18px;
  }

  .why_sec .lead {
    margin: 18px 0 0;
    font-size: 16px;
  }

  .why_sec .card {
    padding: 30px 20px;
  }

  .header_sec .cstm_container {
    height: 90px;
  }

  .cstm_container {
    padding: 0 20px;
  }

  /* rails are full-bleed, so their inline padding must track the container */
  .rail {
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-inline: 20px;
  }

  /* backdrop-filter would trap the fixed drawer inside the header */
  .header_sec {
    background: #FFFFFF;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid #EDEEF1;
  }

  .header_sec .toggle {
    display: block;
  }

  /* ---- Slide-in drawer ---- */
  .header_sec .nav_backdrop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(22, 24, 28, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .header_sec .nav_backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .header_sec .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 340px;
    max-width: 86vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: #FFFFFF;
    box-shadow: 20px 0 60px rgba(22, 24, 28, .22);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility .32s;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header_sec .nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .header_sec .nav_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid #E7E8EC;
  }

  .header_sec .nav_title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .18em;
    color: #8A8F99;
  }

  .header_sec .nav_close {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    padding: 0;
    border: 1.5px solid #E2E4E9;
    border-radius: 12px;
    background: none;
    color: #16181C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .18s, background .18s;
  }

  .header_sec .nav_close:hover {
    border-color: #16181C;
    background: #F4F5F7;
  }

  .header_sec .nav_close svg {
    width: 19px;
    height: 19px;
  }

  /* :not(.btn) keeps this off the pill button, whose own border must survive */
  .header_sec .nav a:not(.btn) {
    display: block;
    padding: 16px 22px;
    border-bottom: 1px solid #F1F2F5;
    font-size: 18px;
    font-weight: 500;
  }

  .header_sec .nav a.active {
    color: #1D6BF3;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #1D6BF3;
  }

  .header_sec .nav .btn {
    margin: 24px 22px 4px;
    padding: 15px 24px;
    text-align: center;
  }

  .header_sec .nav_foot {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding: 30px 22px 26px;
  }

  .header_sec .nav_foot .cap {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .16em;
    color: #8A8F99;
    margin-bottom: 8px;
  }

  /* extra .nav beats the generic drawer-link rule above */
  .header_sec .nav .nav_foot a {
    display: block;
    padding: 5px 0;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: #16181C;
  }

  /* the drawer has its own close button â€” don't show a second one behind it */
  body.nav_open .header_sec .toggle {
    opacity: 0;
  }

  body.nav_open {
    overflow: hidden;
  }

  .hero_sec .title {
    font-size: 50px;
  }

  .hero_sec .text {
    font-size: 18px;
    margin: 20px auto 0;
  }

  .ratings_sec {
    padding-top: 60px;
  }

  .hero_sec .actions {
    margin-top: 24px;
  }

  .why_sec .grid,
  .principles_sec .grid,
  .stack_sec .grid,
  .solutions_sec .grid,
  .tools_sec .grid,
  .related_sec .grid,
  .next_sec .grid,
  .models_sec .grid,
  .credentials_sec .grid,
  .commitments_sec .grid,
  .perks_sec .grid,
  .included_sec .grid,
  .latest_sec .grid,
  .ratings_sec .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ratings_sec .item,
  .ratings_sec .item:first-child {
    padding: 0 0 0 32px;
    border-left: 1px solid rgba(255, 255, 255, .16);
  }

  .ratings_sec .item:nth-child(odd) {
    padding: 0 32px 0 0;
    border-left: 0;
  }

  .ratings_sec .item:nth-child(n + 3) {
    margin-top: 36px;
  }

  .services_sec .grid,
  .services_sec .card.wide,
  .cases_sec .grid,
  .cases_sec .card.wide,
  .cases_sec .inner,
  .featured_sec .card,
  .subscribe_sec .box,
  .careers_cta_sec .box,
  .speculative_sec .box,
  .service_hero_sec .grid,
  .cs_hero_sec .grid,
  .quote_sec .grid,
  .story_sec .head,
  .models_sec .head,
  .faq_sec .head,
  .stack_sec .head,
  .challenge_sec .head,
  .approach_sec .head,
  .contribution_sec .head,
  .footer_sec .top {
    grid-template-columns: minmax(0, 1fr);
    grid-column: auto;
  }

  .services_sec .bottom {
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .services_sec .card.mobile {
    padding: 30px 30px 0;
  }


  .reviews_sec .figure .num {
    font-size: 34px;
  }

  .work_sec .head {
    padding-bottom: 24px;
  }

  .reviews_sec .head {
    padding-bottom: 24px;
  }

  .services_sec .card.ai {
    padding: 30px;
  }

  .services_sec .bottom .tags {
    padding-bottom: 0;
  }

  .services_sec .phone {
    margin: 0 auto;
  }

  .about_hero_sec .stats,
  .process_hero_sec .stats,
  .careers_hero_sec .stats,
  .glance_sec .grid,
  .numbers_sec .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about_hero_sec .box,
  .process_hero_sec .box,
  .careers_hero_sec .box,
  .glance_sec .box,
  .numbers_sec .box,
  .about_hero_sec .box:first-child,
  .process_hero_sec .box:first-child,
  .careers_hero_sec .box:first-child,
  .glance_sec .box:first-child,
  .numbers_sec .box:first-child,
  .about_hero_sec .box:last-child,
  .process_hero_sec .box:last-child,
  .careers_hero_sec .box:last-child,
  .glance_sec .box:last-child,
  .numbers_sec .box:last-child {
    padding: 28px 0 28px 28px;
    border-left: 1px solid #E7E8EC;
  }

  .about_hero_sec .box:nth-child(odd),
  .process_hero_sec .box:nth-child(odd),
  .careers_hero_sec .box:nth-child(odd),
  .glance_sec .box:nth-child(odd),
  .numbers_sec .box:nth-child(odd) {
    padding: 28px 28px 28px 0;
    border-left: 0;
  }

  .about_hero_sec .box:nth-child(n + 3),
  .process_hero_sec .box:nth-child(n + 3),
  .careers_hero_sec .box:nth-child(n + 3),
  .glance_sec .box:nth-child(n + 3),
  .numbers_sec .box:nth-child(n + 3) {
    border-top: 1px solid #E7E8EC;
  }

  /* copy leads on a phone; the artwork follows it */
  .service_hero_sec .art,
  .cs_hero_sec .art {
    min-height: 0;
  }

  .cs_hero_sec .grid,
  .service_hero_sec .grid {
    gap: 44px;
  }

  .contribution_sec .head p {
    margin-top: 16px;
  }

  .footer_sec .bottom {
    padding-top: 20px;
  }

  .footer_sec .bottom {
    font-size: 14px;
  }

  .footer_sec .about {
    max-width: 500px;
  }

  .cta_sec .box {
    padding: 50px 32px;
  }

  .work_sec .card {
    flex: 0 0 420px;
  }

  .reviews_sec .card,
  .reviews_sec .card.wide {
    flex-basis: 380px;
  }

  .phases_sec .card,
  .series_sec .card {
    flex: 0 0 360px;
  }

  .footer_sec .top {
    gap: 44px;
  }

  .roles_sec .row {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) 32px;
    gap: 20px;
  }

  .roles_sec .row .cell:last-of-type {
    display: none;
  }

  /* Comfortable tap area for short text links, without moving the layout */
  .service_hero_sec .back,
  .cs_hero_sec .back,
  .hero_sec .link,
  .service_hero_sec .link,
  .quote_sec .direct a {
    padding: 11px 0;
    margin: -11px 0;
  }
}

/* ---- 767.98px ---- */
@media (max-width: 767.98px) {

  .quote_sec .direct {
    margin-top: 14px;
  }

  .quote_sec .steps {
    margin-top: 24px;
  }

  .timeline_sec .head,
  .phases_sec .head,
  .series_sec .head,
  .screens_sec .head {
    padding-bottom: 24px;
  }

  .timeline_sec .text {
    font-size: 16px;
  }

  .timeline_sec h3 {
    margin: 20px 0 0;
    font-size: 18px;
  }

  .timeline_sec .year {
    font-size: 28px;
  }

  .cta_sec .btn {
    font-size: 14px;
  }

  .cta_sec .btn .icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .cta_sec .actions {
    margin-top: 24px;
  }

  .work_sec .head {
    gap: 16px;
  }

  .services_sec .card.ai .text {
    font-size: 16px;
  }

  .services_sec .text {
    font-size: 16px;
  }

  .services_sec .card.mobile .text {
    font-size: 16px;
  }

  .services_sec .card.mobile .lead,
  .services_sec .card.ai .lead {
    margin-top: 18px;
    font-size: 20px;
  }

  .services_sec .tags {
    padding-top: 18px;
  }

  .services_sec .lead {
    margin: 16px 0 0;
    font-size: 18px;
  }

  .btn_primary {
    gap: 14px;
    ;
    padding: 10px 10px 10px 38px;
    font-size: 16px;
  }

  .btn_primary .icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .cstm_container {
    padding: 0 24px;
  }

  .rail {
    padding-left: 24px;
    padding-right: 24px;
    scroll-padding-inline: 24px;
  }

  .hero_sec {
    padding-top: 32px;
  }

  .ratings_sec .head {
    margin-bottom: 24px;
  }

  .hero_sec .title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero_sec .text {
    font-size: 16px;
  }

  .hero_sec .actions {
    gap: 20px;
  }

  .hero_sec::before {
    top: 90px;
    height: 380px;
  }

  .ratings_sec,
  .why_sec,
  .services_sec,
  .work_sec,
  .reviews_sec,
  .story_sec,
  .principles_sec,
  .timeline_sec,
  .team_sec,
  .credentials_sec,
  .careers_cta_sec,
  .models_sec,
  .phases_sec,
  .week_sec,
  .tools_sec,
  .commitments_sec,
  .faq_sec,
  .latest_sec,
  .series_sec,
  .subscribe_sec,
  .perks_sec,
  .roles_sec,
  .hiring_sec,
  .reassurance_sec,
  .glance_sec,
  .stack_sec,
  .included_sec,
  .build_sec,
  .proof_sec,
  .related_sec,
  .next_sec,
  .numbers_sec,
  .challenge_sec,
  .approach_sec,
  .solutions_sec,
  .screens_sec,
  .shipped_sec,
  .tech_sec,
  .contribution_sec,
  .outcome_sec {
    padding-top: 40px;
  }

  .about_hero_sec,
  .process_hero_sec,
  .blog_hero_sec,
  .careers_hero_sec,
  .cases_hero_sec,
  .service_hero_sec,
  .cs_hero_sec,
  .quote_sec,
  .featured_sec,
  .cases_sec {
    padding-top: 36px;
  }

  .cta_sec,
  .speculative_sec {
    padding: 40px 0;
  }

  .about_hero_sec h1,
  .process_hero_sec h1,
  .blog_hero_sec h1,
  .careers_hero_sec h1,
  .cases_hero_sec h1,
  .service_hero_sec h1,
  .cs_hero_sec h1,
  .quote_sec h1 {
    margin-top: 20px;
  }

  .about_hero_sec .text,
  .process_hero_sec .text,
  .blog_hero_sec .text,
  .careers_hero_sec .text,
  .cases_hero_sec .text {
    font-size: 16px;
    margin-top: 20px;
  }

  .principles_sec .text {
    margin: 12px 0 0;
    font-size: 16px;
  }

  .about_hero_sec .stats,
  .process_hero_sec .stats,
  .careers_hero_sec .stats {
    margin-top: 36px;
  }

  .why_sec .grid,
  .principles_sec .grid,
  .stack_sec .grid,
  .solutions_sec .grid,
  .tools_sec .grid,
  .related_sec .grid,
  .next_sec .grid,
  .models_sec .grid,
  .credentials_sec .grid,
  .commitments_sec .grid,
  .perks_sec .grid,
  .included_sec .grid,
  .latest_sec .grid,
  .services_sec .grid,
  .cases_sec .grid,
  .build_sec .grid,
  .approach_sec .grid,
  .approach_sec .grid.four,
  .approach_sec .grid.five,
  .shipped_sec .grid,
  .shipped_sec .grid.three,
  .shipped_sec .grid.five,
  .contribution_sec .list,
  .cases_sec .figs,
  .quote_sec .two,
  .footer_sec .links {
    grid-template-columns: minmax(0, 1fr);
  }

  .services_sec .card.wide,
  .cases_sec .card.wide {
    grid-column: auto;
  }

  .ratings_sec .grid,
  .week_sec .grid,
  .team_sec .grid,
  .hiring_sec .grid,
  .reassurance_sec .grid,
  .proof_sec .grid,
  .tech_sec .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px 0;
  }

  .ratings_sec .item,
  .ratings_sec .item:first-child,
  .ratings_sec .item:nth-child(odd),
  .week_sec .item,
  .team_sec .item,
  .hiring_sec .item,
  .reassurance_sec .item,
  .proof_sec .item,
  .tech_sec .item,
  .week_sec .item:first-child,
  .team_sec .item:first-child,
  .hiring_sec .item:first-child,
  .reassurance_sec .item:first-child,
  .proof_sec .item:first-child,
  .tech_sec .item:first-child,
  .week_sec .item:last-child,
  .team_sec .item:last-child,
  .hiring_sec .item:last-child,
  .reassurance_sec .item:last-child,
  .proof_sec .item:last-child,
  .tech_sec .item:last-child,
  .week_sec .item:nth-child(odd),
  .team_sec .item:nth-child(odd),
  .hiring_sec .item:nth-child(odd),
  .reassurance_sec .item:nth-child(odd),
  .proof_sec .item:nth-child(odd),
  .tech_sec .item:nth-child(odd) {
    padding: 0;
    border-left: 0;
    margin-top: 0;
  }

  .about_hero_sec .stats,
  .process_hero_sec .stats,
  .careers_hero_sec .stats,
  .glance_sec .grid,
  .numbers_sec .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about_hero_sec .box,
  .process_hero_sec .box,
  .careers_hero_sec .box,
  .glance_sec .box,
  .numbers_sec .box,
  .about_hero_sec .box:first-child,
  .process_hero_sec .box:first-child,
  .careers_hero_sec .box:first-child,
  .glance_sec .box:first-child,
  .numbers_sec .box:first-child,
  .about_hero_sec .box:last-child,
  .process_hero_sec .box:last-child,
  .careers_hero_sec .box:last-child,
  .glance_sec .box:last-child,
  .numbers_sec .box:last-child,
  .about_hero_sec .box:nth-child(odd),
  .process_hero_sec .box:nth-child(odd),
  .careers_hero_sec .box:nth-child(odd),
  .glance_sec .box:nth-child(odd),
  .numbers_sec .box:nth-child(odd) {
    padding: 22px 0;
    border-left: 0;
  }

  .about_hero_sec .box+.box,
  .process_hero_sec .box+.box,
  .careers_hero_sec .box+.box,
  .glance_sec .box+.box,
  .numbers_sec .box+.box {
    border-top: 1px solid #E7E8EC;
  }

  .why_sec .card,
  .principles_sec .card,
  .stack_sec .card,
  .solutions_sec .card,
  .tools_sec .card,
  .related_sec .card,
  .next_sec .card,
  .models_sec .card,
  .phases_sec .card,
  .series_sec .card,
  .cases_sec .card,
  .cases_sec .card.wide {
    padding: 32px 26px 34px;
  }

  .why_sec h3 {
    margin-top: 28px;
  }

  .services_sec .card,
  .services_sec .card.ai {
    padding: 34px 28px 36px;
  }

  .services_sec .card.mobile {
    padding: 34px 28px 0;
  }

  .work_sec .card {
    flex: 0 0 300px;
    padding: 32px 28px 0;
  }

  .work_sec .rail {
    gap: 14px;
  }

  .work_sec h3 {
    font-size: 22px;
    margin-top: 25px;
  }

  .work_sec .head h2,
  .work_sec .text {
    font-size: 16px;
    margin: 20px 0 16px;
  }

  .work_sec .head h2 {
    font-size: 30px;
  }

  .reviews_sec .card,
  .reviews_sec .card.wide {
    flex-basis: 300px;
    padding: 30px 26px 26px;
  }

  .reviews_sec .text,
  .reviews_sec .figure+.text {
    font-size: 17px;
  }

  .phases_sec .card,
  .series_sec .card,
  .timeline_sec .card {
    flex: 0 0 300px;
  }

  .screens_sec .card {
    flex: 0 0 286px;
    padding: 30px 26px 0;
  }

  .screens_sec h3 {
    font-size: 26px;
  }

  /* trim the service mock so the hero art does not swallow a phone screen */
  .service_hero_sec .phone.sm {
    flex: 0 1 150px;
  }

  .service_hero_sec .phone.lg {
    flex: 0 1 200px;
  }

  .service_hero_sec .cover {
    height: 60px;
    border-radius: 13px;
  }

  .service_hero_sec .rows {
    gap: 9px;
  }

  .service_hero_sec .rows span {
    height: 30px;
    border-radius: 10px;
  }

  .service_hero_sec .rows span:nth-child(n + 5) {
    display: none;
  }

  .service_hero_sec .panel {
    padding: 14px 13px;
    border-radius: 15px;
  }

  .service_hero_sec .stats .box {
    padding: 11px 10px;
    border-radius: 12px;
  }

  .service_hero_sec .list {
    gap: 9px;
    margin-top: 12px;
  }

  .service_hero_sec .list .thumb {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .service_hero_sec .list .item:nth-child(n + 5) {
    display: none;
  }

  .work_sec .phone,
  .screens_sec .phone {
    width: 100%;
    box-sizing: border-box;
  }

  .work_sec .phone {
    max-width: 272px;
  }

  .screens_sec .phone {
    max-width: 244px;
  }

  .week_sec .box,
  .team_sec .box,
  .hiring_sec .box,
  .reassurance_sec .box,
  .proof_sec .box,
  .tech_sec .box,
  .outcome_sec .box {
    border-radius: 28px;
    padding: 36px 26px 40px;
  }

  .ratings_sec .box {
    border-radius: 28px;
    padding: 34px 26px 36px;
  }

  .featured_sec .card,
  .subscribe_sec .box,
  .careers_cta_sec .box,
  .speculative_sec .box,
  .cta_sec .box {
    border-radius: 28px;
    padding: 36px 26px 40px;
  }

  .cta_sec .box {
    padding: 56px 24px 60px;
  }

  .quote_sec .form {
    border-radius: 28px;
    padding: 32px 26px 34px;
  }

  .quote_sec .text {
    font-size: 19px;
  }

  .about_hero_sec .num,
  .careers_hero_sec .num,
  .numbers_sec .num {
    font-size: 30px;
  }

  .story_sec .text,
  .challenge_sec .text {
    font-size: 16px;
  }

  .story_sec .lead,
  .challenge_sec .lead {
    font-size: 18px;
  }

  .cs_hero_sec .lead,
  .service_hero_sec .text {
    font-size: 19px;
  }

  .outcome_sec .foot {
    font-size: 19px;
    margin-top: 30px;
    padding-top: 26px;
  }

  .team_sec .note {
    margin-top: 20px;
    padding-top: 18px;
    font-size: 16px;
  }

  .footer_sec .cstm_container {
    padding-top: 30px;
  }

  .footer_sec .bottom {
    justify-content: center;
    gap: 12px;
  }

  .footer_sec .about {
    font-size: 16px;
    margin: 14px 0 0;
  }

  .footer_sec .top {
    gap: 36px;
    padding-bottom: 36px;
  }

  .footer_sec .links {
    gap: 28px;
  }

  .footer_sec .list a,
  .footer_sec .legal a {
    padding: 5px 0;
    margin: -5px 0;
  }
}

/* ---- 575.98px ---- */
@media (max-width: 575.98px) {

  .service_hero_sec .grid {

    margin-top: 24px;
  }

  .week_sec .head,
  .team_sec .head,
  .hiring_sec .head,
  .reassurance_sec .head,
  .proof_sec .head,
  .tech_sec .head {
    gap: 20px;
    margin-bottom: 24px;
  }

  .quote_sec .text {
    font-size: 16px;
  }

  .cases_sec .figs .num {
    font-size: 20px;
  }

  .cases_sec .wide .more {
    margin-top: 15px;
    font-size: 16px;
  }

  .cases_sec .inner {
    gap: 20px;
  }

  .cases_sec .wide .text {
    font-size: 16px;
  }

  .blog_hero_sec .filters,
  .cases_hero_sec .filters {
    margin-top: 20px;
  }

  .about_hero_sec .num,
  .careers_hero_sec .num,
  .numbers_sec .num {
    font-size: 34px;
  }

  .footer_sec .logo img {
    height: 86px;
  }

  .rail_nav {
    justify-content: center;
    margin-top: 10px;
  }

  .why_sec .head {
    gap: 20px;
  }

  .cstm_container {
    padding: 0 20px;
  }

  .rail {
    padding-left: 20px;
    padding-right: 20px;
    scroll-padding-inline: 20px;
  }

  .header_sec .cstm_container {
    height: 84px;
  }

  .header_sec .logo img {
    height: 62px;
  }

  .hero_sec .title {
    font-size: 33px;
  }

  .hero_sec .text {
    font-size: 17px;
  }

  .hero_sec .meta {
    gap: 14px;
    font-size: 15px;
  }

  .hero_sec .meta .line {
    display: none;
  }

  .btn_primary {
    gap: 14px;
    padding: 10px 10px 10px 26px;
    font-size: 16.5px;
  }

  .btn_primary .icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .cta_sec .btn,
  .btn_send {
    gap: 14px;
    padding: 10px 10px 10px 26px;
    font-size: 15.5px;
  }

  .cta_sec .btn .icon,
  .btn_send .icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .about_hero_sec h1,
  .process_hero_sec h1,
  .blog_hero_sec h1,
  .careers_hero_sec h1,
  .cases_hero_sec h1,
  .service_hero_sec h1,
  .cs_hero_sec h1,
  .quote_sec h1 {
    font-size: 34px;
  }

  .work_sec .card,
  .reviews_sec .card,
  .reviews_sec .card.wide,
  .phases_sec .card,
  .series_sec .card,
  .timeline_sec .card,
  .screens_sec .card {
    flex: 0 0 84vw;
  }

  .work_sec h3 {
    font-size: 28px;
  }

  .work_sec .head h2,
  .reviews_sec .head h2 {
    font-size: 27px;
  }

  .services_sec h2,
  .principles_sec h2,
  .perks_sec h2,
  .solutions_sec h2,
  .shipped_sec h2,
  .included_sec h2,
  .build_sec h2,
  .commitments_sec h2 {
    margin-bottom: 28px;
  }

  .cs_hero_sec .phone {
    width: 100%;
  }

  .cs_hero_sec .actions,
  .service_hero_sec .actions,
  .hero_sec .actions {
    gap: 16px;
    margin-top: 20px;

  }

  .btn_store {
    padding: 12px 20px;
    font-size: 15.5px;
  }

  .roles_sec .row {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 14px;
  }

  .roles_sec .row .cell {
    display: none;
  }

  .roles_sec .title {
    font-size: 19px;
  }

  .quote_sec .direct a {
    font-size: 19px;
  }

  .footer_sec .bottom {
    gap: 14px;
  }

  .footer_sec .legal {
    gap: 16px;
  }

  .footer_sec .about {
    font-size: 15px;
  }

  .footer_sec .legal {
    gap: 12px;
    justify-content: center;
  }

  .footer_sec .list a {
    font-size: 15px;
  }

  .outcome_sec .box {
    padding: 30px 22px 34px;
  }

  .tools_sec .row {
    flex-direction: column;
    gap: 4px;
  }

  .tools_sec .row span:last-child {
    text-align: left;
  }

  .service_hero_sec .phones {
    gap: 12px;
  }

  /* the clamp floor is too tall for a phone */
  .cta_sec h2 {
    font-size: 34px;
  }

  .cta_sec .label {
    font-size: 18px;
  }

  .cta_sec .note {
    font-size: 15px;
  }

  .featured_sec h2,
  .outcome_sec .lead {
    font-size: 26px;
  }

  .solutions_sec h3,
  .principles_sec h3,
  .stack_sec h3,
  .related_sec .title,
  .next_sec .title,
  .cases_sec h2,
  .cases_sec .wide h2 {
    font-size: 24px;
  }

  .ratings_sec .num {
    font-size: 46px;
  }

  .team_sec .num,
  .proof_sec .num {
    font-size: 32px;
  }

  .latest_sec .head,
  .roles_sec .head,
  .credentials_sec .head,
  .related_sec .head,
  .next_sec .head {
    margin-bottom: 24px;
  }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .cstm_container {
    padding: 0 16px;
  }

  .rail {
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-inline: 16px;
  }

  .header_sec .cstm_container {
    height: 74px;
  }


  .header_sec .toggle {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .header_sec .toggle .bars {
    width: 18px;
    height: 13px;
  }

  .header_sec .toggle .bars span:nth-child(2) {
    top: 5.5px;
  }

  .header_sec .toggle .bars span:nth-child(3) {
    top: 11px;
  }

  .header_sec .toggle.open .bars span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .header_sec .toggle.open .bars span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .hero_sec {
    padding-top: 24px;
  }


  .hero_sec .text {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero_sec .actions {
    margin-top: 26px;
  }

  .hero_sec .meta {
    font-size: 14px;
    margin-top: 26px;
  }

  .hero_sec::before {
    top: 70px;
    height: 300px;
  }

  .about_hero_sec,
  .process_hero_sec,
  .blog_hero_sec,
  .careers_hero_sec,
  .cases_hero_sec,
  .service_hero_sec,
  .cs_hero_sec,
  .quote_sec,
  .featured_sec,
  .cases_sec {
    padding-top: 28px;
  }

  .cta_sec,
  .speculative_sec {
    padding: 56px 0;
  }

  .faq_sec+.footer_sec {
    margin-top: 56px;
  }

  /* headings */
  .about_hero_sec h1,
  .process_hero_sec h1,
  .blog_hero_sec h1,
  .careers_hero_sec h1,
  .cases_hero_sec h1,
  .service_hero_sec h1,
  .cs_hero_sec h1,
  .quote_sec h1 {
    font-size: 29px;
    margin-top: 16px;
  }

  .about_hero_sec .text,
  .process_hero_sec .text,
  .blog_hero_sec .text,
  .careers_hero_sec .text,
  .cases_hero_sec .text,
  .quote_sec .text,
  .cs_hero_sec .lead,
  .service_hero_sec .text {
    font-size: 17px;
    margin-top: 18px;
  }

  .story_sec .lead,
  .challenge_sec .lead {
    font-size: 19px;
  }

  .story_sec .text,
  .challenge_sec .text {
    font-size: 17px;
  }

  .cta_sec h2 {
    font-size: 28px;
  }

  .cta_sec .label {
    font-size: 16.5px;
  }

  .work_sec .head h2,
  .reviews_sec .head h2 {
    font-size: 24px;
  }

  .services_sec h2,
  .principles_sec h2,
  .perks_sec h2,
  .solutions_sec h2,
  .shipped_sec h2,
  .included_sec h2,
  .build_sec h2,
  .commitments_sec h2,
  .latest_sec .head h2,
  .roles_sec .head h2,
  .credentials_sec .head h2,
  .related_sec .head h2,
  .next_sec .head h2,
  .timeline_sec .head h2,
  .phases_sec .head h2,
  .series_sec .head h2,
  .screens_sec .head h2,
  .story_sec .head h2,
  .models_sec .head h2,
  .faq_sec .head h2,
  .stack_sec .head h2,
  .challenge_sec .head h2,
  .approach_sec .head h2,
  .contribution_sec .head h2,
  .week_sec .head h2,
  .team_sec .head h2,
  .hiring_sec .head h2,
  .reassurance_sec .head h2,
  .proof_sec .head h2,
  .tech_sec .head h2,
  .tools_sec h2,
  .subscribe_sec h2,
  .careers_cta_sec h2,
  .speculative_sec h2 {
    font-size: 26px;
  }

  .featured_sec h2,
  .outcome_sec .lead {
    font-size: 23px;
  }

  .solutions_sec h3,
  .principles_sec h3,
  .stack_sec h3,
  .related_sec .title,
  .next_sec .title,
  .cases_sec h2,
  .cases_sec .wide h2 {
    font-size: 22px;
  }

  .work_sec h3,
  .screens_sec h3,
  .series_sec h3,
  .phases_sec h3 {
    font-size: 25px;
  }

  .models_sec h3,
  .timeline_sec h3,
  .latest_sec h3 {
    font-size: 21px;
  }

  /* card padding */
  .why_sec .card,
  .principles_sec .card,
  .stack_sec .card,
  .solutions_sec .card,
  .tools_sec .card,
  .related_sec .card,
  .next_sec .card,
  .models_sec .card,
  .phases_sec .card,
  .series_sec .card,
  .cases_sec .card,
  .cases_sec .card.wide,
  .services_sec .card,
  .services_sec .card.ai {
    padding: 26px 20px 28px;
  }

  .services_sec .card.mobile {
    padding: 26px 20px 0;
  }

  .work_sec .card {
    padding: 26px 20px 0;
  }

  .screens_sec .card {
    padding: 26px 20px 0;
  }

  .latest_sec .card,
  .perks_sec .card,
  .commitments_sec .card,
  .included_sec .card,
  .credentials_sec .card,
  .shipped_sec .card {
    padding: 24px 20px 26px;
  }

  .week_sec .box,
  .team_sec .box,
  .hiring_sec .box,
  .reassurance_sec .box,
  .proof_sec .box,
  .tech_sec .box,
  .outcome_sec .box,
  .ratings_sec .box,
  .featured_sec .card,
  .subscribe_sec .box,
  .careers_cta_sec .box,
  .speculative_sec .box,
  .quote_sec .form {
    border-radius: 22px;
    padding: 28px 20px 30px;
  }

  .cta_sec .box {
    border-radius: 22px;
    padding: 44px 18px 48px;
  }

  /* rails fill the screen edge to edge */
  .work_sec .card,
  .reviews_sec .card,
  .reviews_sec .card.wide,
  .phases_sec .card,
  .series_sec .card,
  .timeline_sec .card,
  .screens_sec .card {
    flex: 0 0 calc(100vw - 32px);
  }

  .work_sec .phone,
  .screens_sec .phone {
    max-width: 232px;
  }

  /* buttons */
  .btn_primary,
  .cta_sec .btn,
  .btn_send {
    gap: 12px;
    padding: 9px 9px 9px 22px;
    font-size: 15px;
  }

  .btn_primary .icon,
  .cta_sec .btn .icon,
  .btn_send .icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .btn_outline,
  .btn_store {
    padding: 11px 18px;
    font-size: 15px;
  }

  .rail_nav .btn {
    width: 42px;
    height: 42px;
  }

  /* chips and tags */
  .blog_hero_sec .filters button,
  .cases_hero_sec .filters button {
    font-size: 14.5px;
    padding: 9px 16px;
  }

  .quote_sec .chip {
    font-size: 14.5px;
    padding: 10px 16px;
  }

  .tools_sec .tags span {
    font-size: 15px;
    padding: 10px 18px;
  }

  .cs_hero_sec .tag,
  .related_sec .tag,
  .next_sec .tag,
  .cases_sec .tag,
  .work_sec .tag {
    font-size: 9.5px;
    letter-spacing: .1em;
    padding: 5px 10px;
  }

  /* misc */
  .glance_sec .val,
  .contribution_sec .item {
    font-size: 17px;
  }

  .outcome_sec .foot {
    font-size: 17.5px;
  }

  .roles_sec .title {
    font-size: 18px;
  }

  .quote_sec .direct a {
    font-size: 18px;
  }

  .footer_sec .logo img {
    height: 70px;
  }

  /* one row / one card less again on the narrowest screens */
  .service_hero_sec .rows span:nth-child(n + 4),
  .service_hero_sec .list .item:nth-child(n + 4) {
    display: none;
  }
}